/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1.18.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 { V1EnvFromSource } from './v1EnvFromSource'; import { V1EnvVar } from './v1EnvVar'; import { V1LabelSelector } from './v1LabelSelector'; import { V1Volume } from './v1Volume'; import { V1VolumeMount } from './v1VolumeMount'; /** * PodPresetSpec is a description of a pod preset. */ export declare class V1alpha1PodPresetSpec { /** * Env defines the collection of EnvVar to inject into containers. */ 'env'?: Array; /** * EnvFrom defines the collection of EnvFromSource to inject into containers. */ 'envFrom'?: Array; 'selector'?: V1LabelSelector; /** * VolumeMounts defines the collection of VolumeMount to inject into containers. */ 'volumeMounts'?: Array; /** * Volumes defines the collection of Volume to inject into the pod. */ 'volumes'?: Array; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }