ravendb
Version:
RavenDB client for Node.js
15 lines • 617 B
TypeScript
import { BackupEncryptionSettings } from "./BackupEncryptionSettings.js";
import { RestoreType } from "./RestoreType.js";
import { ShardedRestoreSettings } from "./Sharding/ShardedRestoreSettings.js";
export interface RestoreBackupConfigurationBase {
databaseName: string;
lastFileNameToRestore: string;
dataDirectory: string;
encryptionKey: string;
disableOngoingTasks: boolean;
skipIndexes: boolean;
type: RestoreType;
shardRestoreSettings: ShardedRestoreSettings;
backupEncryptionSettings: BackupEncryptionSettings;
}
//# sourceMappingURL=RestoreBackupConfigurationBase.d.ts.map