/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: v1.34.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { V1ConfigMapEnvSource } from '../models/V1ConfigMapEnvSource.js'; import { V1SecretEnvSource } from '../models/V1SecretEnvSource.js'; /** * EnvFromSource represents the source of a set of ConfigMaps or Secrets */ export declare class V1EnvFromSource { 'configMapRef'?: V1ConfigMapEnvSource; /** * Optional text to prepend to the name of each environment variable. May consist of any printable ASCII characters except \'=\'. */ 'prefix'?: string; 'secretRef'?: V1SecretEnvSource; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }