Show / Hide Table of Contents

Class V1ScaleIOPersistentVolumeSource

ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume

Inheritance
object
V1ScaleIOPersistentVolumeSource
Implements
IEquatable<V1ScaleIOPersistentVolumeSource>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
Assembly: KubernetesClient.dll
Syntax
public record V1ScaleIOPersistentVolumeSource : IEquatable<V1ScaleIOPersistentVolumeSource>

Constructors

V1ScaleIOPersistentVolumeSource()

Declaration
public V1ScaleIOPersistentVolumeSource()

V1ScaleIOPersistentVolumeSource(V1ScaleIOPersistentVolumeSource)

Declaration
protected V1ScaleIOPersistentVolumeSource(V1ScaleIOPersistentVolumeSource original)
Parameters
Type Name Description
V1ScaleIOPersistentVolumeSource original

Properties

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type

FsType

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

Declaration
[JsonPropertyName("fsType")]
public string FsType { get; set; }
Property Value
Type Description
string

Gateway

gateway is the host address of the ScaleIO API Gateway.

Declaration
[JsonPropertyName("gateway")]
public string Gateway { get; set; }
Property Value
Type Description
string

ProtectionDomain

protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.

Declaration
[JsonPropertyName("protectionDomain")]
public string ProtectionDomain { get; set; }
Property Value
Type Description
string

ReadOnlyProperty

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

Declaration
[JsonPropertyName("readOnly")]
public bool? ReadOnlyProperty { get; set; }
Property Value
Type Description
bool?

SecretRef

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

Declaration
[JsonPropertyName("secretRef")]
public V1SecretReference SecretRef { get; set; }
Property Value
Type Description
V1SecretReference

SslEnabled

sslEnabled is the flag to enable/disable SSL communication with Gateway, default false

Declaration
[JsonPropertyName("sslEnabled")]
public bool? SslEnabled { get; set; }
Property Value
Type Description
bool?

StorageMode

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

Declaration
[JsonPropertyName("storageMode")]
public string StorageMode { get; set; }
Property Value
Type Description
string

StoragePool

storagePool is the ScaleIO Storage Pool associated with the protection domain.

Declaration
[JsonPropertyName("storagePool")]
public string StoragePool { get; set; }
Property Value
Type Description
string

System

system is the name of the storage system as configured in ScaleIO.

Declaration
[JsonPropertyName("system")]
public string System { get; set; }
Property Value
Type Description
string

VolumeName

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

Declaration
[JsonPropertyName("volumeName")]
public string VolumeName { get; set; }
Property Value
Type Description
string

Methods

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)

Equals(V1ScaleIOPersistentVolumeSource?)

Declaration
public virtual bool Equals(V1ScaleIOPersistentVolumeSource? other)
Parameters
Type Name Description
V1ScaleIOPersistentVolumeSource other
Returns
Type Description
bool

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

operator ==(V1ScaleIOPersistentVolumeSource?, V1ScaleIOPersistentVolumeSource?)

Declaration
public static bool operator ==(V1ScaleIOPersistentVolumeSource? left, V1ScaleIOPersistentVolumeSource? right)
Parameters
Type Name Description
V1ScaleIOPersistentVolumeSource left
V1ScaleIOPersistentVolumeSource right
Returns
Type Description
bool

operator !=(V1ScaleIOPersistentVolumeSource?, V1ScaleIOPersistentVolumeSource?)

Declaration
public static bool operator !=(V1ScaleIOPersistentVolumeSource? left, V1ScaleIOPersistentVolumeSource? right)
Parameters
Type Name Description
V1ScaleIOPersistentVolumeSource left
V1ScaleIOPersistentVolumeSource right
Returns
Type Description
bool

Implements

IEquatable<T>
In this article
Back to top Generated by DocFX