feat: add platform capability contracts
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
export type TPlatformBackupTarget = 'volume' | 'database' | 'bucket';
|
||||
|
||||
export interface IPlatformBackupBindingConfig {
|
||||
targets: Array<{
|
||||
type: TPlatformBackupTarget;
|
||||
name: string;
|
||||
}>;
|
||||
schedule: string;
|
||||
retentionDays?: number;
|
||||
}
|
||||
Reference in New Issue
Block a user