mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* Add another command for bdc extension activation * spaces * Add other activation events * spacing
173 lines
4.6 KiB
JSON
173 lines
4.6 KiB
JSON
{
|
|
"name": "big-data-cluster",
|
|
"displayName": "%text.sqlServerBigDataClusters%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "Microsoft",
|
|
"preview": true,
|
|
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",
|
|
"icon": "images/sqlserver.png",
|
|
"engines": {
|
|
"vscode": "*",
|
|
"azdata": "*"
|
|
},
|
|
"activationEvents": [
|
|
"onCommand:bigDataClusters.command.mount",
|
|
"onCommand:bigDataClusters.command.refreshmount",
|
|
"onCommand:bigDataClusters.command.deletemount",
|
|
"onCommand:bigDataClusters.command.addController",
|
|
"onCommand:bigDataClusters.command.deleteController",
|
|
"onCommand:bigDataClusters.command.manageController",
|
|
"onCommand:bigDataClusters.command.refreshController",
|
|
"onView:sqlBigDataCluster"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
|
},
|
|
"main": "./out/extension",
|
|
"contributes": {
|
|
"dataExplorer": {
|
|
"sqlBigDataCluster": [
|
|
{
|
|
"id": "sqlBigDataCluster",
|
|
"name": "%text.sqlServerBigDataClusters%"
|
|
}
|
|
]
|
|
},
|
|
"menus": {
|
|
"commandPalette": [
|
|
{
|
|
"command": "bigDataClusters.command.addController",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "bigDataClusters.command.deleteController",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "bigDataClusters.command.refreshController",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "bigDataClusters.command.manageController",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "bigDataClusters.command.mount",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "bigDataClusters.command.refreshmount",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "bigDataClusters.command.deletemount",
|
|
"when": "false"
|
|
}
|
|
],
|
|
"view/title": [
|
|
{
|
|
"command": "bigDataClusters.command.addController",
|
|
"when": "view == sqlBigDataCluster",
|
|
"group": "navigation"
|
|
}
|
|
],
|
|
"view/item/context": [
|
|
{
|
|
"command": "bigDataClusters.command.manageController",
|
|
"when": "view == sqlBigDataCluster && viewItem == bigDataClusters.itemType.controllerNode",
|
|
"group": "navigation@1"
|
|
},
|
|
{
|
|
"command": "bigDataClusters.command.refreshController",
|
|
"when": "view == sqlBigDataCluster && viewItem == bigDataClusters.itemType.controllerNode",
|
|
"group": "navigation@2"
|
|
},
|
|
{
|
|
"command": "bigDataClusters.command.deleteController",
|
|
"when": "view == sqlBigDataCluster && viewItem == bigDataClusters.itemType.controllerNode",
|
|
"group": "navigation@3"
|
|
}
|
|
],
|
|
"objectExplorer/item/context": [
|
|
{
|
|
"command": "bigDataClusters.command.mount",
|
|
"when": "nodeType=~/^mssqlCluster/ && nodeType!=mssqlCluster:message && nodeSubType=~/^(?!:mount).*$/",
|
|
"group": "1mssqlCluster@10"
|
|
},
|
|
{
|
|
"command": "bigDataClusters.command.refreshmount",
|
|
"when": "nodeType == mssqlCluster:folder && nodeSubType==:mount:",
|
|
"group": "1mssqlCluster@11"
|
|
},
|
|
{
|
|
"command": "bigDataClusters.command.deletemount",
|
|
"when": "nodeType == mssqlCluster:folder && nodeSubType==:mount:",
|
|
"group": "1mssqlCluster@12"
|
|
}
|
|
]
|
|
},
|
|
"commands": [
|
|
{
|
|
"command": "bigDataClusters.command.addController",
|
|
"title": "%command.addController.title%",
|
|
"icon": {
|
|
"light": "resources/light/add.svg",
|
|
"dark": "resources/dark/add_inverse.svg"
|
|
}
|
|
},
|
|
{
|
|
"command": "bigDataClusters.command.deleteController",
|
|
"title": "%command.deleteController.title%",
|
|
"when": "viewItem == bigDataClusters.itemType.controllerNode"
|
|
},
|
|
{
|
|
"command": "bigDataClusters.command.refreshController",
|
|
"title": "%command.refreshController.title%",
|
|
"icon": {
|
|
"light": "resources/light/refresh.svg",
|
|
"dark": "resources/dark/refresh_inverse.svg"
|
|
}
|
|
},
|
|
{
|
|
"command": "bigDataClusters.command.manageController",
|
|
"title": "%command.manageController.title%"
|
|
},
|
|
{
|
|
"command": "bigDataClusters.command.mount",
|
|
"title": "%command.mount.title%"
|
|
},
|
|
{
|
|
"command": "bigDataClusters.command.refreshmount",
|
|
"title": "%command.refreshmount.title%"
|
|
},
|
|
{
|
|
"command": "bigDataClusters.command.deletemount",
|
|
"title": "%command.deletemount.title%"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "%bdc.configuration.title%",
|
|
"properties": {
|
|
"bigDataCluster.ignoreSslVerification": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%bdc.ignoreSslVerification.desc%"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"kerberos": "^1.1.3",
|
|
"request": "^2.88.0",
|
|
"vscode-nls": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/kerberos": "^1.1.0",
|
|
"@types/request": "^2.48.3",
|
|
"vscode": "^1.1.36"
|
|
}
|
|
}
|