UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 578 B
import { UnitAndValueLong } from '../../complexType/UnitAndValueLong'; import { BackupTypeEnum } from './BackupTypeEnum'; /** Details about a restore point */ export interface RestorePoint { /** Creation time of the restore point */ creationTime?: string; /** Show if the restore point is corrupted */ isCorrupted?: boolean; /** Id of the restore point */ restorePointId: number; /** Size of the restore point */ size?: UnitAndValueLong; /** Type of the restore point */ type?: BackupTypeEnum; } //# sourceMappingURL=RestorePoint.d.ts.map