mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
1. making cpucount and phy mem props optional in ServerInfo 2. Moving the 2 props to azdata.proposed
This commit is contained in:
@@ -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
8
src/sql/azdata.d.ts
vendored
@@ -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.
|
||||||
*/
|
*/
|
||||||
|
|||||||
11
src/sql/azdata.proposed.d.ts
vendored
11
src/sql/azdata.proposed.d.ts
vendored
@@ -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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user