UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 461 B
/** Autobackup params */ export interface AutoBackup { /** Unix Cron pattern (eg: '0 0 * * *') */ cron: string; /** Name of the distant image */ distantImageName?: string; /** Name of the distant region */ distantRegionName?: string; /** Name of the image */ imageName: string; /** Name of your workflow */ name: string; /** Number of backup to keep */ rotation: number; } //# sourceMappingURL=AutoBackup.d.ts.map