mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-09 17:52:34 -05:00
* add getOptionsFromProfile request * update deploy and generate script to accept options * fix tests * update message * update message to say what isn't supported * bump sqltoolsservice version
22 lines
787 B
TypeScript
22 lines
787 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { DeploymentOptions } from '../../../mssql/src/mssql';
|
|
|
|
export interface IPublishSettings {
|
|
databaseName: string;
|
|
connectionUri: string;
|
|
upgradeExisting: boolean;
|
|
sqlCmdVariables?: Record<string, string>;
|
|
deploymentOptions?: DeploymentOptions;
|
|
}
|
|
|
|
export interface IGenerateScriptSettings {
|
|
databaseName: string;
|
|
connectionUri: string;
|
|
sqlCmdVariables?: Record<string, string>;
|
|
deploymentOptions?: DeploymentOptions;
|
|
}
|