@datatr-ux/ovhcloud-types
Version: 
TypeScript types for OVHCloud projects
19 lines • 499 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;
    /** Executions logs */
    executions?: Execution[];
    /** Workflow id */
    id: string;
    /** Instance id */
    instanceId: string;
    /** Workflow name identifier */
    name: string;
}
//# sourceMappingURL=Backup.d.ts.map