Class V1FlowSchemaStatus
FlowSchemaStatus represents the current state of a FlowSchema.
Inheritance
V1FlowSchemaStatus
Assembly: KubernetesClient.dll
Syntax
public record V1FlowSchemaStatus : IEquatable<V1FlowSchemaStatus>
Constructors
View Source
V1FlowSchemaStatus()
Declaration
public V1FlowSchemaStatus()
View Source
V1FlowSchemaStatus(V1FlowSchemaStatus)
Declaration
protected V1FlowSchemaStatus(V1FlowSchemaStatus original)
Parameters
Properties
View Source
Conditions
conditions is a list of the current states of FlowSchema.
Declaration
[JsonPropertyName("conditions")]
public IList<V1FlowSchemaCondition> Conditions { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
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(V1FlowSchemaStatus?)
Declaration
public virtual bool Equals(V1FlowSchemaStatus? 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 ==(V1FlowSchemaStatus?, V1FlowSchemaStatus?)
Declaration
public static bool operator ==(V1FlowSchemaStatus? left, V1FlowSchemaStatus? right)
Parameters
Returns
View Source
operator !=(V1FlowSchemaStatus?, V1FlowSchemaStatus?)
Declaration
public static bool operator !=(V1FlowSchemaStatus? left, V1FlowSchemaStatus? right)
Parameters
Returns
Implements