[][src]Struct k8s_openapi::api::core::v1::PersistentVolumeClaimSpec

pub struct PersistentVolumeClaimSpec {
    pub access_modes: Option<Vec<String>>,
    pub data_source: Option<TypedLocalObjectReference>,
    pub resources: Option<ResourceRequirements>,
    pub selector: Option<LabelSelector>,
    pub storage_class_name: Option<String>,
    pub volume_mode: Option<String>,
    pub volume_name: Option<String>,
}

PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes

Fields

access_modes: Option<Vec<String>>

AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1

data_source: Option<TypedLocalObjectReference>

This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) * An existing custom resource that implements data population (Alpha) In order to use custom resource types that implement data population, the AnyVolumeDataSource feature gate must be enabled. If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source.

resources: Option<ResourceRequirements>

Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources

selector: Option<LabelSelector>

A label query over volumes to consider for binding.

storage_class_name: Option<String>

Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1

volume_mode: Option<String>

volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.

volume_name: Option<String>

VolumeName is the binding reference to the PersistentVolume backing this claim.

Trait Implementations

impl Clone for PersistentVolumeClaimSpec[src]

impl Debug for PersistentVolumeClaimSpec[src]

impl Default for PersistentVolumeClaimSpec[src]

impl<'de> Deserialize<'de> for PersistentVolumeClaimSpec[src]

impl PartialEq<PersistentVolumeClaimSpec> for PersistentVolumeClaimSpec[src]

impl Serialize for PersistentVolumeClaimSpec[src]

impl StructuralPartialEq for PersistentVolumeClaimSpec[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.