mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-02 01:25:39 -05:00
16 lines
628 B
TypeScript
16 lines
628 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 IDeploySettings {
|
|
databaseName: string;
|
|
serverName: string;
|
|
connectionUri: string;
|
|
sqlCmdVariables?: Record<string, string>;
|
|
deploymentOptions?: DeploymentOptions;
|
|
profileUsed?: boolean;
|
|
}
|