diff --git a/extensions/mssql/config.json b/extensions/mssql/config.json index 02ea8f9d39..5a0f88d9b0 100644 --- a/extensions/mssql/config.json +++ b/extensions/mssql/config.json @@ -1,6 +1,6 @@ { "downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/v{#version#}/microsoft.sqltools.servicelayer-{#fileName#}", - "version": "3.0.0-release.120", + "version": "3.0.0-release.121", "downloadFileNames": { "Windows_86": "win-x86-net5.0.zip", "Windows_64": "win-x64-net5.0.zip", diff --git a/src/sql/azdata.d.ts b/src/sql/azdata.d.ts index 7c7024ba31..864aedc491 100644 --- a/src/sql/azdata.d.ts +++ b/src/sql/azdata.d.ts @@ -503,14 +503,6 @@ declare module 'azdata' { * The Operating System version string of the machine running the instance. */ osVersion: string; - /** - * The CPU count of the host running the server. - */ - cpuCount: number; - /** - * The physical memory of the host running the server. - */ - physicalMemoryInMb: number; /** * options for all new server properties. */ diff --git a/src/sql/azdata.proposed.d.ts b/src/sql/azdata.proposed.d.ts index b91a240da5..6aa65747bb 100644 --- a/src/sql/azdata.proposed.d.ts +++ b/src/sql/azdata.proposed.d.ts @@ -1040,4 +1040,15 @@ declare module 'azdata' { */ showToggleButton?: boolean; } + + export interface ServerInfo { + /** + * The CPU count of the host running the server. + */ + cpuCount?: number; + /** + * The physical memory of the host running the server. + */ + physicalMemoryInMb?: number; + } }