Added missing properties in kustoTreeDataProvider and azuremonitorTreeDataProvider (#16153)

This commit is contained in:
Justin M
2021-07-14 17:20:12 -07:00
committed by GitHub
parent 5a428b83ae
commit 5496e9ac33
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