mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 01:25:36 -05:00
157 lines
5.1 KiB
TypeScript
157 lines
5.1 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
declare module 'sqldbproj' {
|
|
import * as vscode from 'vscode';
|
|
export const enum extension {
|
|
name = 'Microsoft.sql-database-projects'
|
|
}
|
|
|
|
/**
|
|
* sql database projects extension
|
|
*/
|
|
export interface IExtension {
|
|
/**
|
|
* Create a project
|
|
* @param name name of the project
|
|
* @param location the parent directory
|
|
* @param projectTypeId the ID of the project/template
|
|
* @param targetPlatform the target platform for the project. Default is SQL Server 2019
|
|
* @returns Uri of the newly created project file
|
|
*/
|
|
createProject(name: string, location: vscode.Uri, projectTypeId: string, targetPlatform: SqlTargetPlatform): Promise<vscode.Uri>;
|
|
|
|
/**
|
|
* Opens and loads a .sqlproj file
|
|
*/
|
|
openProject(projectFilePath: string): Promise<ISqlProject>;
|
|
|
|
/**
|
|
* Opens the data workspace new project dialog with only the sql database template
|
|
* @param allowedTargetPlatforms specific target platforms to allow. If not specified, all target platforms for sql will be listed
|
|
* @returns uri of the created the project or undefined if no project was created
|
|
*/
|
|
openSqlNewProjectDialog(allowedTargetPlatforms?: SqlTargetPlatform[]): Promise<vscode.Uri | undefined>;
|
|
}
|
|
|
|
export interface ISqlProject {
|
|
/**
|
|
* Reads the project setting and contents from the file
|
|
*/
|
|
readProjFile(): Promise<void>;
|
|
|
|
/**
|
|
* Adds the list of sql files and directories to the project, and saves the project file
|
|
* @param list list of files and folder Uris. Files and folders must already exist. No files or folders will be added if any do not exist.
|
|
* @param doNotThrowOnDuplicate Flag that indicates whether duplicate entries should be ignored or throw an error.
|
|
*/
|
|
addToProject(list: vscode.Uri[], doNotThrowOnDuplicate?: boolean): Promise<void>;
|
|
|
|
/**
|
|
* Adds a folder to the project, and saves the project file
|
|
* @param relativeFolderPath Relative path of the folder
|
|
* @param doNotThrowOnDuplicate
|
|
* Flag that indicates whether duplicate entries should be ignored or throw an error. If flag is set to `true` and
|
|
* item already exists in the project file, then existing entry will be returned.
|
|
*/
|
|
addFolderItem(relativeFolderPath: string, doNotThrowOnDuplicate?: boolean): Promise<IFileProjectEntry>;
|
|
|
|
/**
|
|
* Writes a file to disk if contents are provided, adds that file to the project, and writes it to disk
|
|
* @param relativeFilePath Relative path of the file
|
|
* @param contents Contents to be written to the new file
|
|
* @param itemType Type of the project entry to add. This maps to the build action for the item.
|
|
* @param doNotThrowOnDuplicate
|
|
* Flag that indicates whether duplicate entries should be ignored or throw an error. If flag is set to `true` and
|
|
* item already exists in the project file, then existing entry will be returned.
|
|
*/
|
|
addScriptItem(relativeFilePath: string, contents?: string, itemType?: string, doNotThrowOnDuplicate?: boolean): Promise<IFileProjectEntry>;
|
|
|
|
/**
|
|
* Adds a SQLCMD variable to the project
|
|
* @param name name of the variable
|
|
* @param defaultValue
|
|
*/
|
|
addSqlCmdVariable(name: string, defaultValue: string): Promise<void>;
|
|
|
|
/**
|
|
* Excludes entry from project by removing it from the project file
|
|
* @param entry
|
|
*/
|
|
exclude(entry: IFileProjectEntry): Promise<void>;
|
|
|
|
/**
|
|
* Deletes file or folder and removes it from the project file
|
|
* @param entry
|
|
*/
|
|
deleteFileFolder(entry: IFileProjectEntry): Promise<void>;
|
|
|
|
/**
|
|
* returns the sql version the project is targeting
|
|
*/
|
|
getProjectTargetVersion(): string;
|
|
|
|
/**
|
|
* Gets the default database collation set in the project.
|
|
*
|
|
* @returns Default collation for the database set in the project.
|
|
*/
|
|
getDatabaseDefaultCollation(): string;
|
|
|
|
/**
|
|
* Path where dacpac is output to after a successful build
|
|
*/
|
|
readonly dacpacOutputPath: string;
|
|
|
|
/**
|
|
* Path to folder containing the project file
|
|
*/
|
|
readonly projectFolderPath: string;
|
|
|
|
/**
|
|
* Project file path
|
|
*/
|
|
readonly projectFilePath: string;
|
|
|
|
/**
|
|
* Project file name
|
|
*/
|
|
readonly projectFileName: string;
|
|
|
|
/**
|
|
* Files and folders that are included in the project
|
|
*/
|
|
readonly files: IFileProjectEntry[];
|
|
|
|
/**
|
|
* SqlCmd variables and their values
|
|
*/
|
|
readonly sqlCmdVariables: Record<string, string>;
|
|
}
|
|
|
|
/**
|
|
* Represents an entry in a project file
|
|
*/
|
|
export interface IFileProjectEntry {
|
|
fsUri: vscode.Uri;
|
|
relativePath: string;
|
|
}
|
|
|
|
/**
|
|
* Target platforms for a sql project
|
|
*/
|
|
export const enum SqlTargetPlatform {
|
|
sqlServer2005 = 'SQL Server 2005',
|
|
sqlServer2008 = 'SQL Server 2008',
|
|
sqlServer2012 = 'SQL Server 2012',
|
|
sqlServer2014 = 'SQL Server 2014',
|
|
sqlServer2016 = 'SQL Server 2016',
|
|
sqlServer2017 = 'SQL Server 2017',
|
|
sqlServer2019 = 'SQL Server 2019',
|
|
sqlAzure = 'Microsoft Azure SQL Database',
|
|
sqlDW = 'Microsoft Azure SQL Data Warehouse'
|
|
}
|
|
}
|