Class V1FlockerVolumeSource
Represents a Flocker volume mounted by the Flocker agent. One and only one of
datasetName and datasetUUID should be set. Flocker volumes do not support
ownership management or SELinux relabeling.
Inheritance
V1FlockerVolumeSource
Assembly: KubernetesClient.dll
Syntax
public record V1FlockerVolumeSource : IEquatable<V1FlockerVolumeSource>
Constructors
View Source
V1FlockerVolumeSource()
Declaration
public V1FlockerVolumeSource()
View Source
V1FlockerVolumeSource(V1FlockerVolumeSource)
Declaration
protected V1FlockerVolumeSource(V1FlockerVolumeSource original)
Parameters
Properties
View Source
DatasetName
datasetName is Name of the dataset stored as metadata -> name on the dataset for
Flocker should be considered as deprecated
Declaration
[JsonPropertyName("datasetName")]
public string DatasetName { get; set; }
Property Value
View Source
DatasetUUID
datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker
dataset
Declaration
[JsonPropertyName("datasetUUID")]
public string DatasetUUID { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
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(V1FlockerVolumeSource?)
Declaration
public virtual bool Equals(V1FlockerVolumeSource? 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 ==(V1FlockerVolumeSource?, V1FlockerVolumeSource?)
Declaration
public static bool operator ==(V1FlockerVolumeSource? left, V1FlockerVolumeSource? right)
Parameters
Returns
View Source
operator !=(V1FlockerVolumeSource?, V1FlockerVolumeSource?)
Declaration
public static bool operator !=(V1FlockerVolumeSource? left, V1FlockerVolumeSource? right)
Parameters
Returns
Implements