Class V1ServerAddressByClientCIDR
ServerAddressByClientCIDR helps the client to determine the server address that
they should use, depending on the clientCIDR that they match.
Inheritance
V1ServerAddressByClientCIDR
Assembly: KubernetesClient.dll
Syntax
public record V1ServerAddressByClientCIDR : IEquatable<V1ServerAddressByClientCIDR>
Constructors
View Source
V1ServerAddressByClientCIDR()
Declaration
public V1ServerAddressByClientCIDR()
View Source
V1ServerAddressByClientCIDR(V1ServerAddressByClientCIDR)
Declaration
protected V1ServerAddressByClientCIDR(V1ServerAddressByClientCIDR original)
Parameters
Properties
View Source
ClientCIDR
The CIDR with which clients can match their IP to figure out the server address
that they should use.
Declaration
[JsonPropertyName("clientCIDR")]
public string ClientCIDR { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
ServerAddress
Address of this server, suitable for a client that matches the above CIDR. This
can be a hostname, hostname:port, IP or IP:port.
Declaration
[JsonPropertyName("serverAddress")]
public string ServerAddress { 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(V1ServerAddressByClientCIDR?)
Declaration
public virtual bool Equals(V1ServerAddressByClientCIDR? 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 ==(V1ServerAddressByClientCIDR?, V1ServerAddressByClientCIDR?)
Declaration
public static bool operator ==(V1ServerAddressByClientCIDR? left, V1ServerAddressByClientCIDR? right)
Parameters
Returns
View Source
operator !=(V1ServerAddressByClientCIDR?, V1ServerAddressByClientCIDR?)
Declaration
public static bool operator !=(V1ServerAddressByClientCIDR? left, V1ServerAddressByClientCIDR? right)
Parameters
Returns
Implements