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

pub struct ScaleIOVolumeSource {
    pub fs_type: Option<String>,
    pub gateway: String,
    pub protection_domain: Option<String>,
    pub read_only: Option<bool>,
    pub secret_ref: LocalObjectReference,
    pub ssl_enabled: Option<bool>,
    pub storage_mode: Option<String>,
    pub storage_pool: Option<String>,
    pub system: String,
    pub volume_name: Option<String>,
}

ScaleIOVolumeSource represents a persistent ScaleIO volume

Fields

fs_type: Option<String>

Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs".

gateway: String

The host address of the ScaleIO API Gateway.

protection_domain: Option<String>

The name of the ScaleIO Protection Domain for the configured storage.

read_only: Option<bool>

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

secret_ref: LocalObjectReference

SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.

ssl_enabled: Option<bool>

Flag to enable/disable SSL communication with Gateway, default false

storage_mode: Option<String>

Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.

storage_pool: Option<String>

The ScaleIO Storage Pool associated with the protection domain.

system: String

The name of the storage system as configured in ScaleIO.

volume_name: Option<String>

The name of a volume already created in the ScaleIO system that is associated with this volume source.

Trait Implementations

impl Clone for ScaleIOVolumeSource[src]

impl Debug for ScaleIOVolumeSource[src]

impl Default for ScaleIOVolumeSource[src]

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

impl PartialEq<ScaleIOVolumeSource> for ScaleIOVolumeSource[src]

impl Serialize for ScaleIOVolumeSource[src]

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