Show / Hide Table of Contents

Class V1ServerAddressByClientCIDR

ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.

Inheritance
object
V1ServerAddressByClientCIDR
Implements
IEquatable<V1ServerAddressByClientCIDR>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
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
Type Name Description
V1ServerAddressByClientCIDR original

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
Type Description
string
View Source

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type
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
Type Description
string

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(V1ServerAddressByClientCIDR?)

Declaration
public virtual bool Equals(V1ServerAddressByClientCIDR? other)
Parameters
Type Name Description
V1ServerAddressByClientCIDR 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 ==(V1ServerAddressByClientCIDR?, V1ServerAddressByClientCIDR?)

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

operator !=(V1ServerAddressByClientCIDR?, V1ServerAddressByClientCIDR?)

Declaration
public static bool operator !=(V1ServerAddressByClientCIDR? left, V1ServerAddressByClientCIDR? right)
Parameters
Type Name Description
V1ServerAddressByClientCIDR left
V1ServerAddressByClientCIDR right
Returns
Type Description
bool

Implements

IEquatable<T>
  • View Source
In this article
Back to top Generated by DocFX