UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

35 lines (34 loc) 1.45 kB
/** * KubeVirt API * This is KubeVirt API an add-on for Kubernetes. * * The version of the OpenAPI document: 1.0.0 * Contact: kubevirt-dev@googlegroups.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { K8sIoApiCoreV1DownwardAPIVolumeFile } from './'; /** * DownwardAPIVolumeSource represents a volume containing downward API info. * @export * @interface V1DownwardAPIVolumeSource */ export interface V1DownwardAPIVolumeSource { /** * Fields is a list of downward API volume file * @type {Array<K8sIoApiCoreV1DownwardAPIVolumeFile>} * @memberof V1DownwardAPIVolumeSource */ fields?: Array<K8sIoApiCoreV1DownwardAPIVolumeFile>; /** * 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). * @type {string} * @memberof V1DownwardAPIVolumeSource */ volumeLabel?: string; } export declare function V1DownwardAPIVolumeSourceFromJSON(json: any): V1DownwardAPIVolumeSource; export declare function V1DownwardAPIVolumeSourceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1DownwardAPIVolumeSource; export declare function V1DownwardAPIVolumeSourceToJSON(value?: V1DownwardAPIVolumeSource | null): any;