@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
13 lines • 452 B
TypeScript
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