Add BDC create controller action (#11019)

This commit is contained in:
Charles Gagnon
2020-06-19 16:11:54 -07:00
committed by GitHub
parent 74c2853f14
commit 99d26fb769
11 changed files with 52 additions and 63 deletions

View File

@@ -12,14 +12,15 @@
"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"
"onCommand:bigDataClusters.command.mount",
"onCommand:bigDataClusters.command.refreshmount",
"onCommand:bigDataClusters.command.deletemount",
"onCommand:bigDataClusters.command.createController",
"onCommand:bigDataClusters.command.connectController",
"onCommand:bigDataClusters.command.deleteController",
"onCommand:bigDataClusters.command.manageController",
"onCommand:bigDataClusters.command.refreshController",
"onView:sqlBigDataCluster"
],
"repository": {
"type": "git",
@@ -38,7 +39,11 @@
"menus": {
"commandPalette": [
{
"command": "bigDataClusters.command.addController",
"command": "bigDataClusters.command.createController",
"when": "false"
},
{
"command": "bigDataClusters.command.connectController",
"when": "false"
},
{
@@ -68,9 +73,14 @@
],
"view/title": [
{
"command": "bigDataClusters.command.addController",
"command": "bigDataClusters.command.createController",
"when": "view == sqlBigDataCluster",
"group": "navigation"
"group": "navigation@1"
},
{
"command": "bigDataClusters.command.connectController",
"when": "view == sqlBigDataCluster",
"group": "navigation@2"
}
],
"view/item/context": [
@@ -110,10 +120,15 @@
},
"commands": [
{
"command": "bigDataClusters.command.addController",
"title": "%command.addController.title%",
"command": "bigDataClusters.command.createController",
"title": "%command.createController.title%",
"icon": "$(add)"
},
{
"command": "bigDataClusters.command.connectController",
"title": "%command.connectController.title%",
"icon": "$(disconnect)"
},
{
"command": "bigDataClusters.command.deleteController",
"title": "%command.deleteController.title%",
@@ -154,7 +169,7 @@
}
},
"dependencies": {
"ads-kerberos": "^1.1.3",
"ads-kerberos": "^1.1.3",
"request": "^2.88.0",
"vscode-nls": "^4.0.0"
},