Updating mssql to get azure dashboard fixes: (#16658) (#16675)

1. making cpucount and phy mem props optional in ServerInfo
2. Moving the 2 props to azdata.proposed
This commit is contained in:
Aasim Khan
2021-08-11 10:41:03 -07:00
committed by GitHub
parent 4b12216c07
commit 2fbfb2ad61
3 changed files with 12 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
{ {
"downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/v{#version#}/microsoft.sqltools.servicelayer-{#fileName#}", "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": { "downloadFileNames": {
"Windows_86": "win-x86-net5.0.zip", "Windows_86": "win-x86-net5.0.zip",
"Windows_64": "win-x64-net5.0.zip", "Windows_64": "win-x64-net5.0.zip",

8
src/sql/azdata.d.ts vendored
View File

@@ -503,14 +503,6 @@ declare module 'azdata' {
* The Operating System version string of the machine running the instance. * The Operating System version string of the machine running the instance.
*/ */
osVersion: string; 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. * options for all new server properties.
*/ */

View File

@@ -1040,4 +1040,15 @@ declare module 'azdata' {
*/ */
showToggleButton?: boolean; 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;
}
} }