PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes
| Name | Type | Description | Notes |
|---|---|---|---|
| access_modes | list[str] | accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 | [optional] |
| data_source | V1TypedLocalObjectReference | [optional] | |
| data_source_ref | V1TypedObjectReference | [optional] | |
| resources | V1VolumeResourceRequirements | [optional] | |
| selector | V1LabelSelector | [optional] | |
| storage_class_name | str | storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 | [optional] |
| volume_attributes_class_name | str | volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, it can be changed after the claim is created. An empty string or nil value indicates that no VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state, this field can be reset to its previous value (including nil) to cancel the modification. If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists. More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ | [optional] |
| volume_mode | str | volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. | [optional] |
| volume_name | str | volumeName is the binding reference to the PersistentVolume backing this claim. | [optional] |