UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

21 lines 758 B
import { BackupDaysEnum } from './backup/BackupDaysEnum'; import { OfferTypeEnum } from './backup/OfferTypeEnum'; import { StateEnum } from './backup/StateEnum'; /** Backup job */ export interface BackupJob { /** Disk space allocated to the virtual machine */ allocatedDisk?: number; /** List of days your Virtual Machine will be backuped */ backupDays?: BackupDaysEnum[]; /** Backup is encrypted */ encryption?: boolean; /** Offer type of the backup job */ offerType?: OfferTypeEnum; /** Number of days before the backup is deleted */ retentionTime?: number; /** State of the backup job */ state: StateEnum; /** Name of the virtual Machine */ vmName?: string; } //# sourceMappingURL=BackupJob.d.ts.map