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

pub struct AzureFilePersistentVolumeSource {
    pub read_only: Option<bool>,
    pub secret_name: String,
    pub secret_namespace: Option<String>,
    pub share_name: String,
}

AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

Fields

Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

the name of secret that contains Azure Storage Account Name and Key

the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod

Share Name

Trait Implementations

impl Clone for AzureFilePersistentVolumeSource
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AzureFilePersistentVolumeSource
[src]

Formats the value using the given formatter. Read more

impl Default for AzureFilePersistentVolumeSource
[src]

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

impl PartialEq for AzureFilePersistentVolumeSource
[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 AzureFilePersistentVolumeSource
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for AzureFilePersistentVolumeSource
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations