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

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-10 13:06:36 -07:00
committed by GitHub
parent 71a7b388f4
commit 4bc75ef6d6
3 changed files with 12 additions and 9 deletions

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.
*/
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.
*/

View File

@@ -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;
}
}