mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-21 01:25:37 -05:00
27 lines
1.5 KiB
TypeScript
27 lines
1.5 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
export const serviceName = 'AzureMonitor Tools Service';
|
|
export const providerId = 'LOGANALYTICS';
|
|
export const serviceCrashLink = 'https://github.com/Microsoft/azuredatastudio/issues';
|
|
export const extensionConfigSectionName = 'azuremonitor';
|
|
export const packageName = 'Microsoft.azuremonitor';
|
|
|
|
// DATA PROTOCOL VALUES ///////////////////////////////////////////////////////////
|
|
export const azureMonitorClusterProviderName = 'azureMonitorCluster';
|
|
export const authenticationTypePropName = 'authenticationType';
|
|
export const integratedAuth = 'integrated';
|
|
export const serverPropName = 'server';
|
|
export const userPropName = 'user';
|
|
export const passwordPropName = 'password';
|
|
export const azuremonitorProviderName = 'LOGANALYTICS';
|
|
|
|
// SERVICE NAMES //////////////////////////////////////////////////////////
|
|
export const ObjectExplorerService = 'objectexplorer';
|
|
export const objectExplorerPrefix: string = 'objectexplorer://';
|
|
export const ViewType = 'view';
|
|
|
|
export const azuremonitorClusterNewNotebookTask = 'azuremonitorCluster.task.newNotebook';
|
|
export const azuremonitorClusterOpenNotebookTask = 'azuremonitorCluster.task.openNotebook';
|