UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

22 lines 1.02 kB
/** * 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 */ /** * PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. Directly attached to the vmi via qemu. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims */ export type VmPersistentVolumeClaimVolumeSource = { /** ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims */ claimName: string; /** Hotpluggable indicates whether the volume can be hotplugged and hotunplugged. */ hotpluggable?: boolean; /** Will force the ReadOnly setting in VolumeMounts. Default false. */ readOnly?: boolean; }; //# sourceMappingURL=vmPersistentVolumeClaimVolumeSource.d.ts.map