import { VolumeTypeEnum } from '../../volume/VolumeTypeEnum';
/** Region volume create */
export interface Create {
    /** Availability zone to create the volume on */
    availabilityZone?: string;
    /** Volume description */
    description: string;
    /** Image ID */
    imageId: string;
    /** Instance ID */
    instanceId: string;
    /** Volume name */
    name: string;
    /** Volume size */
    size: number;
    /** Snapshot ID */
    snapshotId: string;
    /** Type of the volume */
    type: VolumeTypeEnum;
}
//# sourceMappingURL=Create.d.ts.map