mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-01 01:25:38 -05:00
@@ -161,7 +161,7 @@
|
||||
"providers": [
|
||||
{
|
||||
"notebookWizard": {
|
||||
"notebook": "./notesbooks/arcDeployment/deploy.arc.control.plane.ipynb",
|
||||
"notebook": "./notebooks/arcDeployment/deploy.arc.control.plane.ipynb",
|
||||
"type": "new-arc-control-plane",
|
||||
"runNotebook": false,
|
||||
"codeCellInsertionPosition": 5,
|
||||
@@ -293,7 +293,10 @@
|
||||
"locations": [
|
||||
"East US",
|
||||
"East US 2",
|
||||
"Central US"
|
||||
"Central US",
|
||||
"West Europe",
|
||||
"Southeast Asia",
|
||||
"West US 2"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -591,7 +594,7 @@
|
||||
"providers": [
|
||||
{
|
||||
"dialog": {
|
||||
"notebook": "./notesbooks/arcDeployment/deploy.sql.existing.arc.ipynb",
|
||||
"notebook": "./notebooks/arcDeployment/deploy.sql.existing.arc.ipynb",
|
||||
"runNotebook": true,
|
||||
"taskName": "%arc.sql.new.dialog.title%",
|
||||
"actionText": "%arc.deploy.action%",
|
||||
@@ -699,7 +702,7 @@
|
||||
"providers": [
|
||||
{
|
||||
"dialog": {
|
||||
"notebook": "./notesbooks/arcDeployment/deploy.postgres.existing.arc.ipynb",
|
||||
"notebook": "./notebooks/arcDeployment/deploy.postgres.existing.arc.ipynb",
|
||||
"runNotebook": true,
|
||||
"taskName": "%arc.postgres.new.dialog.title%",
|
||||
"actionText": "%arc.deploy.action%",
|
||||
|
||||
@@ -920,8 +920,8 @@ async function handleSelectedSubscriptionChanged(context: AzureAccountFieldConte
|
||||
return;
|
||||
}
|
||||
if (response.errors.length > 0) {
|
||||
// If we got back some RG's then don't display the errors to the user - it's normal for users
|
||||
// to not necessarily have access to all RG's on a subscription so displaying the errors
|
||||
// If we got back some Resource Groups then don't display the errors to the user - it's normal for users
|
||||
// to not necessarily have access to all Resource Groups on a subscription so displaying the errors
|
||||
// in that case is usually just distracting and causes confusion
|
||||
const errMsg = response.errors.join(EOL);
|
||||
if (response.resourceGroups.length === 0) {
|
||||
@@ -948,7 +948,10 @@ async function handleSelectedSubscriptionChanged(context: AzureAccountFieldConte
|
||||
const knownAzureLocationNameMappings = new Map<string, string>([
|
||||
['East US', azurecore.AzureRegion.eastus],
|
||||
['East US 2', azurecore.AzureRegion.eastus2],
|
||||
['Central US', azurecore.AzureRegion.centralus]
|
||||
['Central US', azurecore.AzureRegion.centralus],
|
||||
['West Europe', azurecore.AzureRegion.westeurope],
|
||||
['Southeast Asia', azurecore.AzureRegion.southeastasia],
|
||||
['West US 2', azurecore.AzureRegion.westus2]
|
||||
]);
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user