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

View Source

V1CSINodeSpec()

Declaration
public V1CSINodeSpec()
View Source

V1CSINodeSpec(V1CSINodeSpec)

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

Properties

View Source

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>
View Source

EqualityContract

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

Methods

View Source

Equals(object?)

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

Equals(V1CSINodeSpec?)

Declaration
public virtual bool Equals(V1CSINodeSpec? other)
Parameters
Type Name Description
V1CSINodeSpec other
Returns
Type Description
bool
View Source

GetHashCode()

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

PrintMembers(StringBuilder)

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

ToString()

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

Operators

View Source

operator ==(V1CSINodeSpec?, V1CSINodeSpec?)

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

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>
  • View Source
In this article
Back to top Generated by DocFX