Class V1alpha1StorageVersionCondition
Describes the state of the storageVersion at a certain point.
Inheritance
V1alpha1StorageVersionCondition
Assembly: KubernetesClient.dll
Syntax
public record V1alpha1StorageVersionCondition : IEquatable<V1alpha1StorageVersionCondition>
Constructors
View Source
V1alpha1StorageVersionCondition()
Declaration
public V1alpha1StorageVersionCondition()
View Source
V1alpha1StorageVersionCondition(V1alpha1StorageVersionCondition)
Declaration
protected V1alpha1StorageVersionCondition(V1alpha1StorageVersionCondition 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
A human readable message indicating details about the transition.
Declaration
[JsonPropertyName("message")]
public string Message { get; set; }
Property Value
View Source
ObservedGeneration
If set, this represents the .metadata.generation that the condition was set
based upon.
Declaration
[JsonPropertyName("observedGeneration")]
public long? ObservedGeneration { get; set; }
Property Value
View Source
Reason
The reason for the condition's last transition.
Declaration
[JsonPropertyName("reason")]
public string Reason { get; set; }
Property Value
View Source
Status
Status of the condition, one of True, False, Unknown.
Declaration
[JsonPropertyName("status")]
public string Status { get; set; }
Property Value
View Source
Type
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(V1alpha1StorageVersionCondition?)
Declaration
public virtual bool Equals(V1alpha1StorageVersionCondition? 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 ==(V1alpha1StorageVersionCondition?, V1alpha1StorageVersionCondition?)
Declaration
public static bool operator ==(V1alpha1StorageVersionCondition? left, V1alpha1StorageVersionCondition? right)
Parameters
Returns
View Source
operator !=(V1alpha1StorageVersionCondition?, V1alpha1StorageVersionCondition?)
Declaration
public static bool operator !=(V1alpha1StorageVersionCondition? left, V1alpha1StorageVersionCondition? right)
Parameters
Returns
Implements