import { VolumeTypeEnum } from '../../volume/VolumeTypeEnum';
/** Volume to create and/or attach to the instance */
export interface Volume {
    /** Existing volume ID to attach */
    id?: string;
    /** Volume name for new volume creation */
    name?: string;
    /** Volume size (in GiB) for new volume creation */
    size?: number;
    /** Volume type for new volume creation */
    type?: VolumeTypeEnum;
}
//# sourceMappingURL=Volume.d.ts.map