Show / Hide Table of Contents

Class V1CSINodeSpec

CSINodeSpec holds information about the specification of all CSI drivers installed on a node

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

Constructors

V1CSINodeSpec()

Declaration
public V1CSINodeSpec()

V1CSINodeSpec(V1CSINodeSpec)

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

Properties

Drivers

drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.

Declaration
[JsonPropertyName("drivers")]
public IList<V1CSINodeDriver> Drivers { get; set; }
Property Value
Type Description
IList<V1CSINodeDriver>

EqualityContract

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

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(V1CSINodeSpec?)

Declaration
public virtual bool Equals(V1CSINodeSpec? other)
Parameters
Type Name Description
V1CSINodeSpec 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 ==(V1CSINodeSpec?, V1CSINodeSpec?)

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

operator !=(V1CSINodeSpec?, V1CSINodeSpec?)

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

Implements

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