Class V1AttachedVolume
AttachedVolume describes a volume attached to a node
Inheritance
V1AttachedVolume
Assembly: KubernetesClient.dll
Syntax
public record V1AttachedVolume : IEquatable<V1AttachedVolume>
Constructors
View Source
V1AttachedVolume()
Declaration
public V1AttachedVolume()
View Source
V1AttachedVolume(V1AttachedVolume)
Declaration
protected V1AttachedVolume(V1AttachedVolume original)
Parameters
Properties
View Source
DevicePath
DevicePath represents the device path where the volume should be available
Declaration
[JsonPropertyName("devicePath")]
public string DevicePath { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Name
Name of the attached volume
Declaration
[JsonPropertyName("name")]
public string Name { 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(V1AttachedVolume?)
Declaration
public virtual bool Equals(V1AttachedVolume? 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 ==(V1AttachedVolume?, V1AttachedVolume?)
Declaration
public static bool operator ==(V1AttachedVolume? left, V1AttachedVolume? right)
Parameters
Returns
View Source
operator !=(V1AttachedVolume?, V1AttachedVolume?)
Declaration
public static bool operator !=(V1AttachedVolume? left, V1AttachedVolume? right)
Parameters
Returns
Implements