Class V1APIServiceCondition
APIServiceCondition describes the state of an APIService at a particular point
Inheritance
V1APIServiceCondition
Assembly: KubernetesClient.dll
Syntax
public record V1APIServiceCondition : IEquatable<V1APIServiceCondition>
Constructors
View Source
V1APIServiceCondition()
Declaration
public V1APIServiceCondition()
View Source
V1APIServiceCondition(V1APIServiceCondition)
Declaration
protected V1APIServiceCondition(V1APIServiceCondition original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
LastTransitionTime
Last time the condition transitioned from one status to another.
Declaration
[JsonPropertyName("lastTransitionTime")]
public DateTime? LastTransitionTime { get; set; }
Property Value
View Source
Message
Human-readable message indicating details about last transition.
Declaration
[JsonPropertyName("message")]
public string Message { get; set; }
Property Value
View Source
Reason
Unique, one-word, CamelCase reason for the condition's last transition.
Declaration
[JsonPropertyName("reason")]
public string Reason { get; set; }
Property Value
View Source
Status
Status is the status of the condition. Can be True, False, Unknown.
Declaration
[JsonPropertyName("status")]
public string Status { get; set; }
Property Value
View Source
Type
Type is the type of the condition.
Declaration
[JsonPropertyName("type")]
public string Type { 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(V1APIServiceCondition?)
Declaration
public virtual bool Equals(V1APIServiceCondition? 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 ==(V1APIServiceCondition?, V1APIServiceCondition?)
Declaration
public static bool operator ==(V1APIServiceCondition? left, V1APIServiceCondition? right)
Parameters
Returns
View Source
operator !=(V1APIServiceCondition?, V1APIServiceCondition?)
Declaration
public static bool operator !=(V1APIServiceCondition? left, V1APIServiceCondition? right)
Parameters
Returns
Implements