51 lines
1.9 KiB
TypeScript
51 lines
1.9 KiB
TypeScript
/**
|
|
* Kubernetes
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: 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 './v1LabelSelector';
|
|
import { V1ResourceRequirements } from './v1ResourceRequirements';
|
|
import { V1TypedLocalObjectReference } from './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<string>;
|
|
'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 discriminator: string | undefined;
|
|
static attributeTypeMap: Array<{
|
|
name: string;
|
|
baseName: string;
|
|
type: string;
|
|
}>;
|
|
static getAttributeTypeMap(): {
|
|
name: string;
|
|
baseName: string;
|
|
type: string;
|
|
}[];
|
|
}
|