Class V1EndpointHints
EndpointHints provides hints describing how an endpoint should be consumed.
Inheritance
V1EndpointHints
Assembly: KubernetesClient.dll
Syntax
public record V1EndpointHints : IEquatable<V1EndpointHints>
Constructors
V1EndpointHints()
Declaration
V1EndpointHints(V1EndpointHints)
Declaration
protected V1EndpointHints(V1EndpointHints original)
Parameters
Properties
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
ForNodes
forNodes indicates the node(s) this endpoint should be consumed by when using
topology aware routing. May contain a maximum of 8 entries.
Declaration
[JsonPropertyName("forNodes")]
public IList<V1ForNode> ForNodes { get; set; }
Property Value
ForZones
forZones indicates the zone(s) this endpoint should be consumed by when using
topology aware routing. May contain a maximum of 8 entries.
Declaration
[JsonPropertyName("forZones")]
public IList<V1ForZone> ForZones { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1EndpointHints?)
Declaration
public virtual bool Equals(V1EndpointHints? 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 ==(V1EndpointHints?, V1EndpointHints?)
Declaration
public static bool operator ==(V1EndpointHints? left, V1EndpointHints? right)
Parameters
Returns
operator !=(V1EndpointHints?, V1EndpointHints?)
Declaration
public static bool operator !=(V1EndpointHints? left, V1EndpointHints? right)
Parameters
Returns
Implements