Class V1NodeDaemonEndpoints
NodeDaemonEndpoints lists ports opened by daemons running on the Node.
Inheritance
V1NodeDaemonEndpoints
Assembly: KubernetesClient.dll
Syntax
public record V1NodeDaemonEndpoints : IEquatable<V1NodeDaemonEndpoints>
Constructors
V1NodeDaemonEndpoints()
Declaration
public V1NodeDaemonEndpoints()
V1NodeDaemonEndpoints(V1NodeDaemonEndpoints)
Declaration
protected V1NodeDaemonEndpoints(V1NodeDaemonEndpoints original)
Parameters
Properties
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
KubeletEndpoint
Endpoint on which Kubelet is listening.
Declaration
[JsonPropertyName("kubeletEndpoint")]
public V1DaemonEndpoint KubeletEndpoint { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1NodeDaemonEndpoints?)
Declaration
public virtual bool Equals(V1NodeDaemonEndpoints? other)
Parameters
Returns
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
operator ==(V1NodeDaemonEndpoints?, V1NodeDaemonEndpoints?)
Declaration
public static bool operator ==(V1NodeDaemonEndpoints? left, V1NodeDaemonEndpoints? right)
Parameters
Returns
operator !=(V1NodeDaemonEndpoints?, V1NodeDaemonEndpoints?)
Declaration
public static bool operator !=(V1NodeDaemonEndpoints? left, V1NodeDaemonEndpoints? right)
Parameters
Returns
Implements