Class V1HostIP
HostIP represents a single IP address allocated to the host.
Assembly: KubernetesClient.dll
Syntax
public record V1HostIP : IEquatable<V1HostIP>
Constructors
View Source
V1HostIP()
Declaration
View Source
V1HostIP(V1HostIP)
Declaration
protected V1HostIP(V1HostIP original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Ip
IP is the IP address assigned to the host
Declaration
[JsonPropertyName("ip")]
public string Ip { 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(V1HostIP?)
Declaration
public virtual bool Equals(V1HostIP? 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 ==(V1HostIP?, V1HostIP?)
Declaration
public static bool operator ==(V1HostIP? left, V1HostIP? right)
Parameters
Returns
View Source
operator !=(V1HostIP?, V1HostIP?)
Declaration
public static bool operator !=(V1HostIP? left, V1HostIP? right)
Parameters
Returns
Implements