@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
21 lines • 678 B
TypeScript
import { VolumeTypeEnum } from './volume/VolumeTypeEnum';
/** Missing description */
export interface ProjectVolumeCreation {
/** Availability zone of the volume (required for 3AZ regions, forbidden for classic type) */
availabilityZone?: string;
/** 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