mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-06 17:23:53 -05:00
* initial changes * Enable cloud console * Delete unnecessary code * error handling * error handling * Deal with promises * Fix externals * Fix externals for ws * Cleanup name of terminal * Update yarn.lock * Fix yarn.lock * Fix externals * Cleanup parts of the code * Fix more issues * Fix cloud terminal * Go back to our client ID * Fix message * Respect preferred location * Fix govt cloud * Some more messaging * Enable items on right click * Some feedback * Change to status message
26 lines
1.2 KiB
TypeScript
26 lines
1.2 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 enum AzureResourceItemType {
|
|
account = 'azure.resource.itemType.account',
|
|
subscription = 'azure.resource.itemType.subscription',
|
|
databaseContainer = 'azure.resource.itemType.databaseContainer',
|
|
database = 'azure.resource.itemType.database',
|
|
databaseServerContainer = 'azure.resource.itemType.databaseServerContainer',
|
|
databaseServer = 'azure.resource.itemType.databaseServer',
|
|
sqlInstance = 'azure.resource.itemType.sqlInstance',
|
|
message = 'azure.resource.itemType.message'
|
|
}
|
|
|
|
export enum AzureResourceServiceNames {
|
|
resourceService = 'AzureResourceService',
|
|
cacheService = 'AzureResourceCacheService',
|
|
accountService = 'AzureResourceAccountService',
|
|
subscriptionService = 'AzureResourceSubscriptionService',
|
|
subscriptionFilterService = 'AzureResourceSubscriptionFilterService',
|
|
tenantService = 'AzureResourceTenantService',
|
|
terminalService = 'AzureTerminalService',
|
|
}
|