Struct k8s_openapi::v1_11::api::core::v1::AzureFileVolumeSource[][src]

pub struct AzureFileVolumeSource {
    pub read_only: Option<bool>,
    pub secret_name: 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

Share Name

Trait Implementations

impl Clone for AzureFileVolumeSource
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AzureFileVolumeSource
[src]

Formats the value using the given formatter. Read more

impl Default for AzureFileVolumeSource
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for AzureFileVolumeSource
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations