Add config to enable/disable the BDC extension provided tree view (#6528)

* Add config to enable/disable the BDC extension provided tree view

* Update description text
This commit is contained in:
Charles Gagnon
2019-07-30 10:12:17 -07:00
committed by GitHub
parent 6db84eefa3
commit 2c12b95e17
2 changed files with 9 additions and 2 deletions

View File

@@ -24,7 +24,8 @@
"sqlBigDataCluster": [
{
"id": "sqlBigDataCluster",
"name": "%text.sqlServerBigDataClusters%"
"name": "%text.sqlServerBigDataClusters%",
"when": "config.bigDataClusters.enabled"
}
]
},
@@ -69,6 +70,11 @@
"properties": {
"clusterControllers.controllers": {
"type": "array"
},
"bigDataClusters.enabled": {
"type": "boolean",
"default": false,
"description": "%text.sqlServerBigDataClustersEnabledConfig.description%"
}
}
},

View File

@@ -1,7 +1,8 @@
{
"description": "Support for managing SQL Server big data clusters",
"text.sqlServerBigDataClusters": "SQL Server big data clusters",
"text.sqlServerBigDataClustersEnabledConfig.description":"Whether the SQL Server big data clusters data explorer view is enabled",
"command.addController.title": "Connect to Controller",
"command.deleteController.title" : "Delete",
"command.refreshController.title" : "Refresh"
}
}