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

pub struct VsphereVirtualDiskVolumeSource {
    pub fs_type: Option<String>,
    pub storage_policy_id: Option<String>,
    pub storage_policy_name: Option<String>,
    pub volume_path: String,
}

Represents a vSphere volume resource.

Fields

Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.

Storage Policy Based Management (SPBM) profile name.

Path that identifies vSphere volume vmdk

Trait Implementations

impl Clone for VsphereVirtualDiskVolumeSource
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for VsphereVirtualDiskVolumeSource
[src]

Formats the value using the given formatter. Read more

impl Default for VsphereVirtualDiskVolumeSource
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for VsphereVirtualDiskVolumeSource
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations