Add autoCutoverConfiguration to local storage (#16772)

This commit is contained in:
Rachel Kim
2021-08-13 15:13:16 -07:00
committed by GitHub
parent 5049bf0c7f
commit 4efdb0e651
5 changed files with 18 additions and 28 deletions

View File

@@ -438,10 +438,7 @@ export interface StartDatabaseMigrationRequest {
password: string
},
scope: string,
autoCutoverConfiguration?: {
autoCutover?: boolean,
lastBackupName?: string
},
autoCutoverConfiguration: AutoCutoverConfiguration,
}
}
@@ -507,7 +504,7 @@ export interface BackupConfiguration {
export interface AutoCutoverConfiguration {
autoCutover: boolean;
lastBackupName: string;
lastBackupName?: string;
}
export interface ErrorInfo {