From 89d5c5febcdd2e5d39253e27e5ddcf55ea330d01 Mon Sep 17 00:00:00 2001 From: Brian Bergeron Date: Fri, 18 Sep 2020 07:37:47 -0700 Subject: [PATCH] fix postgres product name (#12443) Co-authored-by: Brian Bergeron --- extensions/arc/package.json | 1 - extensions/arc/package.nls.json | 6 +++--- extensions/arc/src/localizedConstants.ts | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/extensions/arc/package.json b/extensions/arc/package.json index f915c0be9c..8126ef5f7f 100644 --- a/extensions/arc/package.json +++ b/extensions/arc/package.json @@ -723,7 +723,6 @@ "textValidationRequired": true, "textValidationRegex": "^[a-z]([-a-z0-9]{0,8}[a-z0-9])?$", "textValidationDescription": "%arc.postgres.server.group.name.validation.description%", - "defaultValue": "postgres1", "required": true }, { diff --git a/extensions/arc/package.nls.json b/extensions/arc/package.nls.json index b4dadc2cb8..12d841a7f2 100644 --- a/extensions/arc/package.nls.json +++ b/extensions/arc/package.nls.json @@ -67,7 +67,7 @@ "resource.type.arc.sql.display.name": "Azure SQL managed instance - Azure Arc (preview)", "resource.type.arc.postgres.display.name": "PostgreSQL Hyperscale 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.arc.postgres.description": "Deploy PosgreSQL Hyperscale server groups into an Azure Arc environment", "arc.controller": "Target Azure Arc Controller", @@ -101,7 +101,7 @@ "arc.azure.subscription": "Azure subscription", "arc.azure.resource.group": "Azure resource group", "arc.azure.location": "Azure location", - "arc.postgres.new.dialog.title": "Deploy a PostgreSQL server group on Azure Arc (preview)", + "arc.postgres.new.dialog.title": "Deploy an Azure Arc enabled PostgreSQL Hyperscale server group (Preview)", "arc.postgres.settings.section.title": "PostgreSQL server group settings", "arc.postgres.settings.resource.title": "PostgreSQL server group resource settings", "arc.postgres.settings.storage.title": "PostgreSQL server group storage settings", @@ -125,6 +125,6 @@ "arc.postgres.server.group.memory.limit": "Max memory MB (per node) to allow", "arc.agreement": "I accept {0} and {1}.", "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.agreement.postgres.terms.conditions":"Azure Arc enabled PostgreSQL Hyperscale terms and conditions", "arc.deploy.action":"Deploy" } diff --git a/extensions/arc/src/localizedConstants.ts b/extensions/arc/src/localizedConstants.ts index 534b3f58fb..4ac07c29fb 100644 --- a/extensions/arc/src/localizedConstants.ts +++ b/extensions/arc/src/localizedConstants.ts @@ -13,7 +13,7 @@ export function miaaDashboard(name: string): string { return localize('arc.miaaD export function postgresDashboard(name: string): string { return localize('arc.postgresDashboard', "Postgres Dashboard (Preview) - {0}", name); } export const dataControllersType = localize('arc.dataControllersType', "Azure Arc Data Controller"); -export const pgSqlType = localize('arc.pgSqlType', "PostgreSQL Server group - Azure Arc"); +export const pgSqlType = localize('arc.pgSqlType', "PostgreSQL Hyperscale - Azure Arc"); export const miaaType = localize('arc.miaaType', "SQL instance - Azure Arc"); export const overview = localize('arc.overview', "Overview");