/** * 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 { V1ClusterTrustBundleProjection } from '../models/V1ClusterTrustBundleProjection.js'; import { V1ConfigMapProjection } from '../models/V1ConfigMapProjection.js'; import { V1DownwardAPIProjection } from '../models/V1DownwardAPIProjection.js'; import { V1PodCertificateProjection } from '../models/V1PodCertificateProjection.js'; import { V1SecretProjection } from '../models/V1SecretProjection.js'; import { V1ServiceAccountTokenProjection } from '../models/V1ServiceAccountTokenProjection.js'; /** * Projection that may be projected along with other supported volume types. Exactly one of these fields must be set. */ export declare class V1VolumeProjection { 'clusterTrustBundle'?: V1ClusterTrustBundleProjection; 'configMap'?: V1ConfigMapProjection; 'downwardAPI'?: V1DownwardAPIProjection; 'podCertificate'?: V1PodCertificateProjection; 'secret'?: V1SecretProjection; 'serviceAccountToken'?: V1ServiceAccountTokenProjection; 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(); }