Class V1ClientIPConfig
ClientIPConfig represents the configurations of Client IP based session
affinity.
Inheritance
V1ClientIPConfig
Assembly: KubernetesClient.dll
Syntax
public record V1ClientIPConfig : IEquatable<V1ClientIPConfig>
Constructors
View Source
V1ClientIPConfig()
Declaration
public V1ClientIPConfig()
View Source
V1ClientIPConfig(V1ClientIPConfig)
Declaration
protected V1ClientIPConfig(V1ClientIPConfig original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
TimeoutSeconds
timeoutSeconds specifies the seconds of ClientIP type session sticky time. The
value must be >0 & & <=86400(for 1 day) if ServiceAffinity == "ClientIP". Default
value is 10800(for 3 hours).
Declaration
[JsonPropertyName("timeoutSeconds")]
public int? TimeoutSeconds { 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(V1ClientIPConfig?)
Declaration
public virtual bool Equals(V1ClientIPConfig? 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 ==(V1ClientIPConfig?, V1ClientIPConfig?)
Declaration
public static bool operator ==(V1ClientIPConfig? left, V1ClientIPConfig? right)
Parameters
Returns
View Source
operator !=(V1ClientIPConfig?, V1ClientIPConfig?)
Declaration
public static bool operator !=(V1ClientIPConfig? left, V1ClientIPConfig? right)
Parameters
Returns
Implements