UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

24 lines 704 B
/** * Copyright (c) Spectro Cloud * SPDX-License-Identifier: Apache-2.0 */ /** * Generated by orval v7.17.0 🍺 * Do not edit manually. * Palette APIs - 4.8 * 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