mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Add Configure SLO section to Create Database dialog for Azure servers (#23359)
This commit is contained in:
@@ -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[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user