@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
27 lines • 837 B
TypeScript
import { Execution } from './Execution';
/** List your automated backups */
export interface Backup {
/** Backup name */
backupName: string;
/** Creation date of the workflow */
createdAt: string;
/** Workflow cron pattern */
cron: string;
/** Name of the distant backup if the workflow creates a distant backup */
distantBackupName?: string;
/** Name of the distant region if the workflow creates a distant backup */
distantRegion?: string;
/** Executions logs */
executions?: Execution[];
/** Workflow id */
id: string;
/** Instance id */
instanceId: string;
/** Workflow name identifier */
name: string;
/** Next execution time */
nextExecutionTime: string;
/** Number of backup to keep */
rotation: number;
}
//# sourceMappingURL=Backup.d.ts.map