Take SQL MI billing Business Critical out of preview (#19361)

* Added values for business critical price per core

* Remove Preview tag for business critical

Co-authored-by: Candice Ye <canye@microsoft.com>
This commit is contained in:
Candice Ye
2022-05-12 15:38:24 -07:00
committed by GitHub
parent 7b4181dd13
commit 63c6c0631e
2 changed files with 3 additions and 9 deletions

View File

@@ -105,7 +105,7 @@
"arc.sql.high.availability": "High availability", "arc.sql.high.availability": "High availability",
"arc.sql.high.availability.description": "Enable additional replicas for high availabilty. The compute and storage configuration selected below will be applied to all replicas.", "arc.sql.high.availability.description": "Enable additional replicas for high availabilty. The compute and storage configuration selected below will be applied to all replicas.",
"arc.sql.service.tier.general.purpose": "General Purpose (Up to 24 vCores and 128 Gi of RAM, standard high availability)", "arc.sql.service.tier.general.purpose": "General Purpose (Up to 24 vCores and 128 Gi of RAM, standard high availability)",
"arc.sql.service.tier.business.critical": "[PREVIEW] Business Critical (Unlimited vCores and RAM, advanced high availability)", "arc.sql.service.tier.business.critical": "Business Critical (Unlimited vCores and RAM, advanced high availability)",
"arc.sql.one.replica": "1 replica", "arc.sql.one.replica": "1 replica",
"arc.sql.two.replicas": "2 replicas", "arc.sql.two.replicas": "2 replicas",
"arc.sql.three.replicas": "3 replicas", "arc.sql.three.replicas": "3 replicas",

View File

@@ -12,24 +12,19 @@ export const SqlManagedInstanceGeneralPurpose = {
licenseIncludedPricePerCore: 153, licenseIncludedPricePerCore: 153,
maxMemorySize: 128, maxMemorySize: 128,
maxVCores: 24, maxVCores: 24,
replicaOptions: [ replicaOptions: [
{ {
text: loc.replicaOne, text: loc.replicaOne,
value: 1, value: 1,
} }
], ],
defaultReplicaValue: 1 defaultReplicaValue: 1
}; };
const SqlManagedInstanceBusinessCritical = { const SqlManagedInstanceBusinessCritical = {
tierName: loc.businessCriticalLabel, tierName: loc.businessCriticalLabel,
basePricePerCore: 160,
// Set to real values when BC is ready licenseIncludedPricePerCore: 434,
basePricePerCore: 0,
licenseIncludedPricePerCore: 0,
replicaOptions: [ replicaOptions: [
{ {
text: loc.replicaTwo, text: loc.replicaTwo,
@@ -40,7 +35,6 @@ const SqlManagedInstanceBusinessCritical = {
value: 3, value: 3,
} }
], ],
defaultReplicaValue: 3 defaultReplicaValue: 3
}; };