UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

21 lines 795 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 { VmDownwardApiVolumeFile } from './vmDownwardApiVolumeFile'; /** * DownwardAPIVolumeSource represents a volume containing downward API info. */ export type VmDownwardApiVolumeSource = { /** Fields is a list of downward API volume file */ fields?: VmDownwardApiVolumeFile[]; /** The volume label of the resulting disk inside the VMI. Different bootstrapping mechanisms require different values. Typical values are "cidata" (cloud-init), "config-2" (cloud-init) or "OEMDRV" (kickstart). */ volumeLabel?: string; }; //# sourceMappingURL=vmDownwardApiVolumeSource.d.ts.map