Class V1PodIP
PodIP represents a single IP address allocated to the pod.
Assembly: KubernetesClient.dll
Syntax
public record V1PodIP : IEquatable<V1PodIP>
Constructors
V1PodIP()
Declaration
V1PodIP(V1PodIP)
Declaration
protected V1PodIP(V1PodIP original)
Parameters
| Type |
Name |
Description |
| V1PodIP |
original |
|
Properties
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Ip
IP is the IP address assigned to the pod
Declaration
[JsonPropertyName("ip")]
public string Ip { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1PodIP?)
Declaration
public virtual bool Equals(V1PodIP? other)
Parameters
| Type |
Name |
Description |
| V1PodIP |
other |
|
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 ==(V1PodIP?, V1PodIP?)
Declaration
public static bool operator ==(V1PodIP? left, V1PodIP? right)
Parameters
Returns
operator !=(V1PodIP?, V1PodIP?)
Declaration
public static bool operator !=(V1PodIP? left, V1PodIP? right)
Parameters
Returns
Implements