@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 525 B
TypeScript
/** Missing description */
export interface ProjectRegionWorkflowBackupCreation {
/** Unix Cron pattern (eg: '* * * * *') */
cron: string;
/** Instance ID to backup */
instanceId: string;
/** Number of execution to process before ending the job. Null value means that the job will never end. */
maxExecutionCount?: number;
/** Name of your backup job */
name: string;
/** Number of backup to keep */
rotation: number;
}
//# sourceMappingURL=ProjectRegionWorkflowBackupCreation.d.ts.map