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