UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

36 lines (35 loc) 1.62 kB
/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: unversioned * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * ConfigMapEnvSource selects a ConfigMap to populate the environment variables with. * * The contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables. * @export * @interface IoK8sApiCoreV1ConfigMapEnvSource */ export interface IoK8sApiCoreV1ConfigMapEnvSource { /** * Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names * @type {string} * @memberof IoK8sApiCoreV1ConfigMapEnvSource */ name?: string; /** * Specify whether the ConfigMap must be defined * @type {boolean} * @memberof IoK8sApiCoreV1ConfigMapEnvSource */ optional?: boolean; } export declare function IoK8sApiCoreV1ConfigMapEnvSourceFromJSON(json: any): IoK8sApiCoreV1ConfigMapEnvSource; export declare function IoK8sApiCoreV1ConfigMapEnvSourceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1ConfigMapEnvSource; export declare function IoK8sApiCoreV1ConfigMapEnvSourceToJSON(value?: IoK8sApiCoreV1ConfigMapEnvSource | null): any;