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

pub struct PersistentVolumeClaimSpec {
    pub access_modes: Option<Vec<String>>,
    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

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

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

A label query over volumes to consider for binding.

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

volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. This is an alpha feature and may change in the future.

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

Trait Implementations

impl Clone for PersistentVolumeClaimSpec
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PersistentVolumeClaimSpec
[src]

Formats the value using the given formatter. Read more

impl Default for PersistentVolumeClaimSpec
[src]

Returns the "default value" for a type. Read more

impl PartialEq for PersistentVolumeClaimSpec
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for PersistentVolumeClaimSpec
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations