Class V1FlowSchemaCondition
FlowSchemaCondition describes conditions for a FlowSchema.
Inheritance
V1FlowSchemaCondition
Assembly: KubernetesClient.dll
Syntax
public record V1FlowSchemaCondition : IEquatable<V1FlowSchemaCondition>
Constructors
View Source
V1FlowSchemaCondition()
Declaration
public V1FlowSchemaCondition()
View Source
V1FlowSchemaCondition(V1FlowSchemaCondition)
Declaration
protected V1FlowSchemaCondition(V1FlowSchemaCondition original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
LastTransitionTime
lastTransitionTime is the last time the condition transitioned from one status
to another.
Declaration
[JsonPropertyName("lastTransitionTime")]
public DateTime? LastTransitionTime { get; set; }
Property Value
View Source
Message
message is a human-readable message indicating details about last transition.
Declaration
[JsonPropertyName("message")]
public string Message { get; set; }
Property Value
View Source
Reason
reason is a 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. Required.
Declaration
[JsonPropertyName("status")]
public string Status { get; set; }
Property Value
View Source
Type
type is the type of the condition. Required.
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(V1FlowSchemaCondition?)
Declaration
public virtual bool Equals(V1FlowSchemaCondition? 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 ==(V1FlowSchemaCondition?, V1FlowSchemaCondition?)
Declaration
public static bool operator ==(V1FlowSchemaCondition? left, V1FlowSchemaCondition? right)
Parameters
Returns
View Source
operator !=(V1FlowSchemaCondition?, V1FlowSchemaCondition?)
Declaration
public static bool operator !=(V1FlowSchemaCondition? left, V1FlowSchemaCondition? right)
Parameters
Returns
Implements