mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Refresh master with initial release/0.24 snapshot (#332)
* Initial port of release/0.24 source code * Fix additional headers * Fix a typo in launch.json
This commit is contained in:
@@ -46,10 +46,38 @@
|
||||
"path": "./snippets/mssql.json"
|
||||
}
|
||||
],
|
||||
"commands": [
|
||||
{
|
||||
"command": "extension.clearTokenCache",
|
||||
"title": "%extension.clearTokenCache%",
|
||||
"category": "Azure Accounts"
|
||||
}
|
||||
],
|
||||
"account-type": [
|
||||
{
|
||||
"id": "microsoft",
|
||||
"icon": {
|
||||
"light": "./out/account-provider/media/microsoft_account_light.svg",
|
||||
"dark": "./out/account-provider/media/microsoft_account_dark.svg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "work_school",
|
||||
"icon": {
|
||||
"light": "./out/account-provider/media/work_school_account_light.svg",
|
||||
"dark": "./out/account-provider/media/work_school_account_dark.svg"
|
||||
}
|
||||
}
|
||||
],
|
||||
"configuration": {
|
||||
"type": "object",
|
||||
"title": "MSSQL configuration",
|
||||
"properties": {
|
||||
"accounts.azure.enablePublicCloud": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%config.enablePublicCloudDescription%"
|
||||
},
|
||||
"mssql.query.displayBitAsNumber": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
@@ -101,13 +129,116 @@
|
||||
"default": false
|
||||
}
|
||||
}
|
||||
},
|
||||
"dashboard": {
|
||||
"provider": "MSSQL",
|
||||
"flavors": [
|
||||
{
|
||||
"flavor": "on_prem",
|
||||
"condition": {
|
||||
"field": "isCloud",
|
||||
"operator": "!=",
|
||||
"value": true
|
||||
},
|
||||
"databaseProperties": [
|
||||
{
|
||||
"displayName": "Recovery Model",
|
||||
"value": "recoveryModel"
|
||||
},
|
||||
{
|
||||
"displayName": "Last Database Backup",
|
||||
"value": "lastBackupDate",
|
||||
"ignore": [
|
||||
"1/1/0001 12:00:00 AM"
|
||||
]
|
||||
},
|
||||
{
|
||||
"displayName": "Last Log Backup",
|
||||
"value": "lastLogBackupDate",
|
||||
"ignore": [
|
||||
"1/1/0001 12:00:00 AM"
|
||||
]
|
||||
},
|
||||
{
|
||||
"displayName": "Compatibility Level",
|
||||
"value": "compatibilityLevel"
|
||||
},
|
||||
{
|
||||
"displayName": "Owner",
|
||||
"value": "owner"
|
||||
}
|
||||
],
|
||||
"serverProperties": [
|
||||
{
|
||||
"displayName": "Version",
|
||||
"value": "serverVersion"
|
||||
},
|
||||
{
|
||||
"displayName": "Edition",
|
||||
"value": "serverEdition"
|
||||
},
|
||||
{
|
||||
"displayName": "Computer Name",
|
||||
"value": "machineName"
|
||||
},
|
||||
{
|
||||
"displayName": "OS Version",
|
||||
"value": "osVersion"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"flavor": "cloud",
|
||||
"condition": {
|
||||
"field": "isCloud",
|
||||
"operator": "==",
|
||||
"value": true
|
||||
},
|
||||
"databaseProperties": [
|
||||
{
|
||||
"displayName": "Edition",
|
||||
"value": "azureEdition"
|
||||
},
|
||||
{
|
||||
"displayName": "Pricing Tier",
|
||||
"value": "serviceLevelObjective"
|
||||
},
|
||||
{
|
||||
"displayName": "Compatibility Level",
|
||||
"value": "compatibilityLevel"
|
||||
},
|
||||
{
|
||||
"displayName": "Owner",
|
||||
"value": "owner"
|
||||
}
|
||||
],
|
||||
"serverProperties": [
|
||||
{
|
||||
"displayName": "Version",
|
||||
"value": "serverVersion"
|
||||
},
|
||||
{
|
||||
"displayName": "Type",
|
||||
"value": "serverEdition"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"dataprotocol-client": "file:../../dataprotocol-node/client",
|
||||
"extensions-modules": "file:../../extensions-modules"
|
||||
"extensions-modules": "file:../../extensions-modules",
|
||||
"adal-node": "0.1.25",
|
||||
"decompress": "^4.0.0",
|
||||
"fs-extra-promise": "^1.0.1",
|
||||
"opener": "1.4.3",
|
||||
"request": "2.63.0",
|
||||
"vscode-extension-telemetry": "^0.0.8",
|
||||
"vscode-nls": "2.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"vscode": "1.0.1"
|
||||
"vscode": "1.0.1",
|
||||
"@types/node": "^8.0.24"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user