UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

19 lines 549 B
import { VolumeTypeEnum } from './volume/VolumeTypeEnum'; /** Missing description */ export interface ProjectVolumeCreation { /** Volume description */ description?: string; /** Id of image to create a bootable volume */ imageId?: string; /** Volume name */ name?: string; /** Volume region */ region: string; /** Volume size (in GiB) */ size: number; /** Source snapshot id */ snapshotId?: string; /** Volume type */ type: VolumeTypeEnum; } //# sourceMappingURL=ProjectVolumeCreation.d.ts.map