UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

23 lines 591 B
import { SnapshotStatusEnum } from './SnapshotStatusEnum'; /** Snapshot */ export interface Snapshot { /** Snapshot creation date */ creationDate: string; /** Snapshot description */ description: string; /** Snapshot id */ id: string; /** Snapshot name */ name: string; /** Order plan code */ planCode?: string; /** Snapshot region */ region: string; /** Snapshot size */ size: number; /** Snapshot status */ status: SnapshotStatusEnum; /** Volume source id */ volumeId: string; } //# sourceMappingURL=Snapshot.d.ts.map