mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-01 09:35:41 -05:00
* Revert "Revert "Port the Azure Resource Explorer extension to core." (#2770)"
This reverts commit 210447cd37.
* WIP1
* Add custom build task for azurecore extension
* Fix azurecore output path for macOS build
* Fix linux gulp task name
26 lines
702 B
TypeScript
26 lines
702 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
'use strict';
|
|
|
|
export interface AzureResourceSubscription {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
|
|
export interface AzureResourceDatabaseServer {
|
|
name: string;
|
|
fullName: string;
|
|
loginName: string;
|
|
defaultDatabaseName: string;
|
|
}
|
|
|
|
export interface AzureResourceDatabase {
|
|
name: string;
|
|
serverName: string;
|
|
serverFullName: string;
|
|
loginName: string;
|
|
}
|