UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

30 lines 816 B
import { VolumeStatusEnum } from './VolumeStatusEnum'; import { VolumeTypeEnum } from './VolumeTypeEnum'; /** Volume */ export interface Volume { /** Volume attached to instances id */ attachedTo: string[]; /** Availability zone of the volume */ availabilityZone?: string; /** Volume bootable */ bootable: boolean; /** Volume creation date */ creationDate: string; /** Volume description */ description: string; /** Volume id */ id: string; /** Volume name */ name: string; /** Order plan code */ planCode?: string; /** Volume region */ region: string; /** Volume size (in GB) */ size: number; /** Volume status */ status: VolumeStatusEnum; /** Volume type */ type: VolumeTypeEnum; } //# sourceMappingURL=Volume.d.ts.map