/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: v1.22.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { V1LabelSelector } from '../models/V1LabelSelector'; import { V1ResourceRequirements } from '../models/V1ResourceRequirements'; import { V1TypedLocalObjectReference } from '../models/V1TypedLocalObjectReference'; /** * PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes */ export declare class V1PersistentVolumeClaimSpec { /** * AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 */ 'accessModes'?: Array; 'dataSource'?: V1TypedLocalObjectReference; 'dataSourceRef'?: V1TypedLocalObjectReference; 'resources'?: V1ResourceRequirements; 'selector'?: V1LabelSelector; /** * Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 */ 'storageClassName'?: string; /** * volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. */ 'volumeMode'?: string; /** * VolumeName is the binding reference to the PersistentVolume backing this claim. */ 'volumeName'?: string; static readonly discriminator: 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(); }