mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-29 00:00:29 -04:00
Added azcli extension only (#16415)
* Changed azdata to az in azcli extension and resource-deployment, and some arc. Removed user, pass, url from controller connect blade. Commented out tests. Ported over work from old branch. * Changed unit tests, all unit tests passing. Changed parameters to new ones, fixed some Controller Connect issues. * Connect data controller and create dc working. * Changed az back to azdata in necessary places in resource-deployment. * Changed notebook values and added namespace to some params. * Reverted all changes that are not in azcli. Also deleted some unused variables in azcli constants.ts and some tests. * Fixed package.json * Deleted en-us from links, changed az. to azcli.arc in package.json * Addressed PR comments. Co-authored-by: Candice Ye <canye@microsoft.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "azcli",
|
||||
"displayName": "%azdata.displayName%",
|
||||
"description": "%azdata.description%",
|
||||
"displayName": "%azcli.arc.displayName%",
|
||||
"description": "%azcli.arc.description%",
|
||||
"version": "0.1.0",
|
||||
"publisher": "Microsoft",
|
||||
"preview": true,
|
||||
@@ -26,104 +26,19 @@
|
||||
"configuration": [
|
||||
{
|
||||
"type": "object",
|
||||
"title": "%azdata.config.title%",
|
||||
"title": "%azcli.arc.config.title%",
|
||||
"properties": {
|
||||
"azcli.logDebugInfo": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "%azdata.config.debug%"
|
||||
},
|
||||
"azcli.acceptEula": {
|
||||
"type": "string",
|
||||
"default": "prompt",
|
||||
"enum": [
|
||||
"dontPrompt",
|
||||
"prompt"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"%azdata.acceptEula.dontPrompt.description%",
|
||||
"%azdata.acceptEula.prompt.description%"
|
||||
],
|
||||
"description": "%azdata.acceptEula.description%"
|
||||
},
|
||||
"azcli.install": {
|
||||
"type": "string",
|
||||
"default": "prompt",
|
||||
"enum": [
|
||||
"dontPrompt",
|
||||
"prompt"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"%azdata.install.dontPrompt.description%",
|
||||
"%azdata.install.prompt.description%"
|
||||
],
|
||||
"description": "%azdata.install.description%"
|
||||
},
|
||||
"azcli.update": {
|
||||
"type": "string",
|
||||
"default": "prompt",
|
||||
"enum": [
|
||||
"dontPrompt",
|
||||
"prompt"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"%azdata.update.dontPrompt.description%",
|
||||
"%azdata.update.prompt.description%"
|
||||
],
|
||||
"description": "%azdata.update.description%"
|
||||
},
|
||||
"azcli.requiredUpdate": {
|
||||
"type": "string",
|
||||
"default": "prompt",
|
||||
"enum": [
|
||||
"dontPrompt",
|
||||
"prompt"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"%azdata.update.dontPrompt.description%",
|
||||
"%azdata.update.prompt.description%"
|
||||
],
|
||||
"description": "%azdata.requiredUpdate.description%"
|
||||
"description": "%azcli.arc.config.debug%"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"commands": [
|
||||
{
|
||||
"command": "azcli.acceptEula",
|
||||
"title": "%azdata.acceptEula.command.name%",
|
||||
"category": "%command.category%"
|
||||
},
|
||||
{
|
||||
"command": "azcli.install",
|
||||
"title": "%azdata.install.command.name%",
|
||||
"category": "%command.category%"
|
||||
},
|
||||
{
|
||||
"command": "azcli.update",
|
||||
"title": "%azdata.update.command.name%",
|
||||
"category": "%command.category%"
|
||||
}
|
||||
],
|
||||
"menus": {
|
||||
"commandPalette": [
|
||||
{
|
||||
"command": "azcli.acceptEula",
|
||||
"when": "!azcli.eulaAccepted"
|
||||
},
|
||||
{
|
||||
"command": "azcli.install",
|
||||
"when": "!azcli.found"
|
||||
},
|
||||
{
|
||||
"command": "azcli.update",
|
||||
"when": "azcli.found"
|
||||
}
|
||||
]
|
||||
},
|
||||
"resourceDeploymentOptionsSources": [
|
||||
{
|
||||
"id": "arc.controller.config.profiles"
|
||||
"id": "azcli.arc.controller.config.profiles"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user