Show / Hide Table of Contents

Class V1FlowSchemaCondition

FlowSchemaCondition describes conditions for a FlowSchema.

Inheritance
object
V1FlowSchemaCondition
Implements
IEquatable<V1FlowSchemaCondition>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
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
Type Name Description
V1FlowSchemaCondition original

Properties

View Source

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type
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
Type Description
DateTime?
View Source

Message

message is a human-readable message indicating details about last transition.

Declaration
[JsonPropertyName("message")]
public string Message { get; set; }
Property Value
Type Description
string
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
Type Description
string
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
Type Description
string
View Source

Type

type is the type of the condition. Required.

Declaration
[JsonPropertyName("type")]
public string Type { get; set; }
Property Value
Type Description
string

Methods

View Source

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)
View Source

Equals(V1FlowSchemaCondition?)

Declaration
public virtual bool Equals(V1FlowSchemaCondition? other)
Parameters
Type Name Description
V1FlowSchemaCondition other
Returns
Type Description
bool
View Source

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()
View Source

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool
View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

View Source

operator ==(V1FlowSchemaCondition?, V1FlowSchemaCondition?)

Declaration
public static bool operator ==(V1FlowSchemaCondition? left, V1FlowSchemaCondition? right)
Parameters
Type Name Description
V1FlowSchemaCondition left
V1FlowSchemaCondition right
Returns
Type Description
bool
View Source

operator !=(V1FlowSchemaCondition?, V1FlowSchemaCondition?)

Declaration
public static bool operator !=(V1FlowSchemaCondition? left, V1FlowSchemaCondition? right)
Parameters
Type Name Description
V1FlowSchemaCondition left
V1FlowSchemaCondition right
Returns
Type Description
bool

Implements

IEquatable<T>
  • View Source
In this article
Back to top Generated by DocFX