Add Configure SLO section to Create Database dialog for Azure servers (#23359)

This commit is contained in:
Cory Rivera
2023-06-13 13:43:55 -07:00
committed by GitHub
parent d983355374
commit 398a91456d
4 changed files with 85 additions and 5 deletions

View File

@@ -430,6 +430,11 @@ export interface Database extends ObjectManagement.SqlObject {
recoveryModel?: string;
compatibilityLevel?: string;
containmentType?: string;
azureBackupRedundancyLevel?: string;
azureServiceLevelObjective?: string;
azureEdition?: string;
azureMaxSize?: string;
}
export interface DatabaseViewInfo extends ObjectManagement.ObjectViewInfo<Database> {
@@ -438,4 +443,15 @@ export interface DatabaseViewInfo extends ObjectManagement.ObjectViewInfo<Databa
compatibilityLevels: string[];
containmentTypes: string[];
recoveryModels: string[];
isAzureDB: boolean;
azureBackupRedundancyLevels: string[];
azureServiceLevelObjectives: AzureEditionDetails[];
azureEditions: string[];
azureMaxSizes: AzureEditionDetails[];
}
export interface AzureEditionDetails {
editionDisplayName: string;
details: string[];
}