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

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