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