Class V1CinderPersistentVolumeSource
Represents a cinder volume resource in Openstack. A Cinder volume must exist
before mounting to a container. The volume must also be in the same region as
the kubelet. Cinder volumes support ownership management and SELinux relabeling.
Inheritance
V1CinderPersistentVolumeSource
Assembly: KubernetesClient.dll
Syntax
public record V1CinderPersistentVolumeSource : IEquatable<V1CinderPersistentVolumeSource>
Constructors
View Source
V1CinderPersistentVolumeSource()
Declaration
public V1CinderPersistentVolumeSource()
View Source
V1CinderPersistentVolumeSource(V1CinderPersistentVolumeSource)
Declaration
protected V1CinderPersistentVolumeSource(V1CinderPersistentVolumeSource original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
FsType
Declaration
[JsonPropertyName("fsType")]
public string FsType { get; set; }
Property Value
View Source
ReadOnlyProperty
Declaration
[JsonPropertyName("readOnly")]
public bool? ReadOnlyProperty { get; set; }
Property Value
View Source
SecretRef
secretRef is Optional: points to a secret object containing parameters used to
connect to OpenStack.
Declaration
[JsonPropertyName("secretRef")]
public V1SecretReference SecretRef { get; set; }
Property Value
View Source
VolumeID
Declaration
[JsonPropertyName("volumeID")]
public string VolumeID { get; set; }
Property Value
Methods
View Source
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
View Source
Equals(V1CinderPersistentVolumeSource?)
Declaration
public virtual bool Equals(V1CinderPersistentVolumeSource? other)
Parameters
Returns
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
View Source
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
View Source
operator ==(V1CinderPersistentVolumeSource?, V1CinderPersistentVolumeSource?)
Declaration
public static bool operator ==(V1CinderPersistentVolumeSource? left, V1CinderPersistentVolumeSource? right)
Parameters
Returns
View Source
operator !=(V1CinderPersistentVolumeSource?, V1CinderPersistentVolumeSource?)
Declaration
public static bool operator !=(V1CinderPersistentVolumeSource? left, V1CinderPersistentVolumeSource? right)
Parameters
Returns
Implements