Class V1NodeDaemonEndpoints
NodeDaemonEndpoints lists ports opened by daemons running on the Node.
Inheritance
V1NodeDaemonEndpoints
Assembly: KubernetesClient.dll
Syntax
public record V1NodeDaemonEndpoints : IEquatable<V1NodeDaemonEndpoints>
Constructors
View Source
V1NodeDaemonEndpoints()
Declaration
public V1NodeDaemonEndpoints()
View Source
V1NodeDaemonEndpoints(V1NodeDaemonEndpoints)
Declaration
protected V1NodeDaemonEndpoints(V1NodeDaemonEndpoints original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
KubeletEndpoint
Endpoint on which Kubelet is listening.
Declaration
[JsonPropertyName("kubeletEndpoint")]
public V1DaemonEndpoint KubeletEndpoint { 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(V1NodeDaemonEndpoints?)
Declaration
public virtual bool Equals(V1NodeDaemonEndpoints? 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 ==(V1NodeDaemonEndpoints?, V1NodeDaemonEndpoints?)
Declaration
public static bool operator ==(V1NodeDaemonEndpoints? left, V1NodeDaemonEndpoints? right)
Parameters
Returns
View Source
operator !=(V1NodeDaemonEndpoints?, V1NodeDaemonEndpoints?)
Declaration
public static bool operator !=(V1NodeDaemonEndpoints? left, V1NodeDaemonEndpoints? right)
Parameters
Returns
Implements