/**
 * Copyright (c) Spectro Cloud
 * SPDX-License-Identifier: Apache-2.0
 */
/**
 * Generated by orval v7.10.0 🍺
 * Do not edit manually.
 * Palette APIs - 4.7
 * OpenAPI spec version: v1
 */
import type { VmQuantity } from './vmQuantity';
/**
 * Represents a disk created on the cluster level
 */
export type VmHostDisk = {
    capacity?: VmQuantity;
    /** The path to HostDisk image located on the cluster */
    path: string;
    /** Shared indicate whether the path is shared between nodes */
    shared?: boolean;
    /** Contains information if disk.img exists or should be created allowed options are 'Disk' and 'DiskOrCreate' */
    type: string;
};
//# sourceMappingURL=vmHostDisk.d.ts.map