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

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

read_only: Option<bool>

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

secret_name: String

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

secret_namespace: Option<String>

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

share_name: String

Share Name

Trait Implementations

impl Clone for AzureFilePersistentVolumeSource[src]

impl Debug for AzureFilePersistentVolumeSource[src]

impl Default for AzureFilePersistentVolumeSource[src]

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

impl PartialEq<AzureFilePersistentVolumeSource> for AzureFilePersistentVolumeSource[src]

impl Serialize for AzureFilePersistentVolumeSource[src]

impl StructuralPartialEq for AzureFilePersistentVolumeSource[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.