pub struct RuntimeComponentVolumesAzureFile {
pub read_only: Option<bool>,
pub secret_name: String,
pub share_name: String,
}Expand description
azureFile represents an Azure File Service mount on the host and bind mount to the pod. Deprecated: AzureFile is deprecated. All operations for the in-tree azureFile type are redirected to the file.csi.azure.com CSI driver.
Fields§
§read_only: Option<bool>readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
secret_name: StringsecretName is the name of secret that contains Azure Storage Account Name and Key
shareName is the azure share Name
Trait Implementations§
Source§impl Clone for RuntimeComponentVolumesAzureFile
impl Clone for RuntimeComponentVolumesAzureFile
Source§fn clone(&self) -> RuntimeComponentVolumesAzureFile
fn clone(&self) -> RuntimeComponentVolumesAzureFile
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for RuntimeComponentVolumesAzureFile
impl Default for RuntimeComponentVolumesAzureFile
Source§fn default() -> RuntimeComponentVolumesAzureFile
fn default() -> RuntimeComponentVolumesAzureFile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RuntimeComponentVolumesAzureFile
impl<'de> Deserialize<'de> for RuntimeComponentVolumesAzureFile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RuntimeComponentVolumesAzureFile
impl PartialEq for RuntimeComponentVolumesAzureFile
Source§fn eq(&self, other: &RuntimeComponentVolumesAzureFile) -> bool
fn eq(&self, other: &RuntimeComponentVolumesAzureFile) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RuntimeComponentVolumesAzureFile
Auto Trait Implementations§
impl Freeze for RuntimeComponentVolumesAzureFile
impl RefUnwindSafe for RuntimeComponentVolumesAzureFile
impl Send for RuntimeComponentVolumesAzureFile
impl Sync for RuntimeComponentVolumesAzureFile
impl Unpin for RuntimeComponentVolumesAzureFile
impl UnwindSafe for RuntimeComponentVolumesAzureFile
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more