Added missing properties in kustoTreeDataProvider and azuremonitorTreeDataProvider (#16153) (#16155)

This commit is contained in:
Justin M
2021-07-15 11:26:41 -07:00
committed by GitHub
parent 97881ce62a
commit 3f51fa42fd
2 changed files with 8 additions and 2 deletions

View File

@@ -50,7 +50,10 @@ export class AzureMonitorTreeDataProvider extends ResourceTreeDataProviderBase<a
providerName: 'LOGANALYTICS',
saveProfile: false,
options: {},
azureAccount: account.key.accountId
azureAccount: account.key.accountId,
azureTenantId: databaseServer.tenant,
azureResourceId: databaseServer.id,
azurePortalEndpoint: account.properties.providerSettings.settings.portalEndpoint
},
childProvider: 'LOGANALYTICS',
type: ExtensionNodeType.Server

View File

@@ -50,7 +50,10 @@ export class KustoTreeDataProvider extends ResourceTreeDataProviderBase<azureRes
providerName: 'KUSTO',
saveProfile: false,
options: {},
azureAccount: account.key.accountId
azureAccount: account.key.accountId,
azureTenantId: databaseServer.tenant,
azureResourceId: databaseServer.id,
azurePortalEndpoint: account.properties.providerSettings.settings.portalEndpoint
},
childProvider: 'KUSTO',
type: ExtensionNodeType.Server