11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
export type TPlatformBackupTarget = 'volume' | 'database' | 'bucket';
|
|
|
|
export interface IPlatformBackupBindingConfig {
|
|
targets: Array<{
|
|
type: TPlatformBackupTarget;
|
|
name: string;
|
|
}>;
|
|
schedule: string;
|
|
retentionDays?: number;
|
|
}
|