mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Update Arc Extension with New Strings and azdata Version (#11148)
* Strings and azdata version changes * change azdata description
This commit is contained in:
@@ -25,9 +25,9 @@
|
||||
"source": [
|
||||
"\n",
|
||||
" \n",
|
||||
"## Deploy Azure SQL DB managed instance on an existing Azure Arc data cluster\n",
|
||||
"## Deploy Azure SQL managed instance on an existing Azure Arc data cluster\n",
|
||||
" \n",
|
||||
"This notebook walks through the process of deploying a <a href=\"https://docs.microsoft.com/azure/sql-database/sql-database-managed-instance\">Azure SQL DB managed instance</a> on an existing Azure Arc data cluster.\n",
|
||||
"This notebook walks through the process of deploying a <a href=\"https://docs.microsoft.com/azure/sql-database/sql-database-managed-instance\">Azure SQL managed instance</a> on an existing Azure Arc data cluster.\n",
|
||||
" \n",
|
||||
"* Follow the instructions in the **Prerequisites** cell to install the tools if not already installed.\n",
|
||||
"* Make sure you have the target Azure Arc data cluster already created.\n",
|
||||
|
||||
@@ -187,10 +187,10 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "%arc.control.plane.docker.account.title%",
|
||||
"title": "%arc.control.plane.container.registry.title%",
|
||||
"fields": [
|
||||
{
|
||||
"label": "%arc.control.plane.docker.account.name%",
|
||||
"label": "%arc.control.plane.container.registry.name%",
|
||||
"variableName": "AZDATA_NB_VAR_ARC_DOCKER_USERNAME",
|
||||
"type": "text",
|
||||
"required": true,
|
||||
@@ -198,7 +198,7 @@
|
||||
"enabled": true
|
||||
},
|
||||
{
|
||||
"label": "%arc.control.plane.docker.account.password%",
|
||||
"label": "%arc.control.plane.container.registry.password%",
|
||||
"variableName": "AZDATA_NB_VAR_ARC_DOCKER_PASSWORD",
|
||||
"type": "password",
|
||||
"userName": "docker",
|
||||
@@ -654,7 +654,7 @@
|
||||
},
|
||||
{
|
||||
"name": "azdata",
|
||||
"version": "15.0.2100"
|
||||
"version": "20.0.0"
|
||||
}
|
||||
],
|
||||
"when": "resourceType=sql.managed.instance"
|
||||
@@ -892,7 +892,7 @@
|
||||
},
|
||||
{
|
||||
"name": "azdata",
|
||||
"version": "15.0.4003"
|
||||
"version": "20.0.0"
|
||||
}
|
||||
],
|
||||
"when": "resourceType=postgres"
|
||||
|
||||
@@ -22,9 +22,9 @@
|
||||
"arc.control.plane.cluster.environment.title": "What is your target existing Kubernetes cluster environment?",
|
||||
"arc.control.plane.select.cluster.title": "Select from installed existing Kubernetes clusters",
|
||||
"arc.control.plane.kube.cluster.context": "Cluster context",
|
||||
"arc.control.plane.docker.account.title": "Docker account details",
|
||||
"arc.control.plane.docker.account.name": "Docker account login",
|
||||
"arc.control.plane.docker.account.password": "Password",
|
||||
"arc.control.plane.container.registry.title": "Container registry details",
|
||||
"arc.control.plane.container.registry.name": "Container registry login",
|
||||
"arc.control.plane.container.registry.password": "Container registry password",
|
||||
"arc.control.plane.cluster.config.profile.title": "Choose the config profile",
|
||||
"arc.control.plane.cluster.config.profile": "Config profile",
|
||||
"arc.control.plane.data.controller.create.title": "Provide details to create Azure Arc data controller and register it with Azure",
|
||||
@@ -72,14 +72,14 @@
|
||||
"deploy.arc.control.plane.action":"Script to notebook",
|
||||
|
||||
|
||||
"resource.type.arc.sql.display.name": "Azure SQL DB managed instance - Azure Arc (preview)",
|
||||
"resource.type.arc.sql.display.name": "Azure SQL managed instance - Azure Arc (preview)",
|
||||
"resource.type.arc.postgres.display.name": "PostgreSQL server groups - Azure Arc (preview)",
|
||||
"resource.type.arc.sql.description": "Managed SQL Instance service for app developers in a customer-managed environment",
|
||||
"resource.type.arc.postgres.description": "Deploy PostgreSQL server groups into an Azure Arc environment",
|
||||
"resource.type.picker.display.name": "Resource Type",
|
||||
"sql.managed.instance.display.name": "SQL DB managed instance - Azure Arc",
|
||||
"sql.managed.instance.display.name": "Azure SQL managed instance - Azure Arc",
|
||||
"postgres.server.group.display.name": "PostgreSQL server groups - Azure Arc",
|
||||
"arc.sql.new.dialog.title": "Deploy Azure SQL DB managed instance - Azure Arc (preview)",
|
||||
"arc.sql.new.dialog.title": "Deploy Azure SQL managed instance - Azure Arc (preview)",
|
||||
"arc.sql.settings.section.title": "SQL Connection information",
|
||||
"arc.azure.section.title": "Azure information",
|
||||
"arc.sql.instance.name": "Instance name (lower case letters and digits only)",
|
||||
@@ -126,7 +126,7 @@
|
||||
"arc.postgres.server.group.backup.retention.max.description": "A list of trim settings that specifies the maximum number of days/size/counts of backups to preserve per tier. Each trim setting contains 1 or more trim values separated by commas and each tier is separated by a semicolon. Possible trim values include '7d', '10GB', or '50'.",
|
||||
"arc.postgres.server.group.backup.retention.max.validation.description": "Maximum trim settings must contain 1 or more trim values separated by commas with each tier separated by a semicolon.",
|
||||
"arc.agreement": "I accept {0}, {1} and {2}.",
|
||||
"arc.agreement.sql.terms.conditions":"Azure SQL DB managed instance - Azure Arc terms and conditions",
|
||||
"arc.agreement.sql.terms.conditions":"Azure SQL managed instance - Azure Arc terms and conditions",
|
||||
"arc.agreement.postgres.terms.conditions":"PostgreSQL server groups - Azure Arc terms and conditions",
|
||||
"arc.deploy.action":"Deploy"
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@ export class AzdataTool extends ToolBase {
|
||||
}
|
||||
|
||||
get description(): string {
|
||||
return localize('resourceDeployment.AzdataDescription', "Bootstraps and manages the Big Data Cluster");
|
||||
return localize('resourceDeployment.AzdataDescription', "Azure Data command line interface");
|
||||
}
|
||||
|
||||
get type(): ToolType {
|
||||
|
||||
Reference in New Issue
Block a user