Class V1alpha1StorageVersionStatus
API server instances report the versions they can decode and the version they
encode objects to when persisting objects in the backend.
Inheritance
V1alpha1StorageVersionStatus
Assembly: KubernetesClient.dll
Syntax
public record V1alpha1StorageVersionStatus : IEquatable<V1alpha1StorageVersionStatus>
Constructors
View Source
V1alpha1StorageVersionStatus()
Declaration
public V1alpha1StorageVersionStatus()
View Source
V1alpha1StorageVersionStatus(V1alpha1StorageVersionStatus)
Declaration
protected V1alpha1StorageVersionStatus(V1alpha1StorageVersionStatus original)
Parameters
Properties
View Source
CommonEncodingVersion
If all API server instances agree on the same encoding storage version, then
this field is set to that version. Otherwise this field is left empty. API
servers should finish updating its storageVersionStatus entry before serving
write operations, so that this field will be in sync with the reality.
Declaration
[JsonPropertyName("commonEncodingVersion")]
public string CommonEncodingVersion { get; set; }
Property Value
View Source
Conditions
The latest available observations of the storageVersion's state.
Declaration
[JsonPropertyName("conditions")]
public IList<V1alpha1StorageVersionCondition> Conditions { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
StorageVersions
The reported versions per API server instance.
Declaration
[JsonPropertyName("storageVersions")]
public IList<V1alpha1ServerStorageVersion> StorageVersions { 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(V1alpha1StorageVersionStatus?)
Declaration
public virtual bool Equals(V1alpha1StorageVersionStatus? 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 ==(V1alpha1StorageVersionStatus?, V1alpha1StorageVersionStatus?)
Declaration
public static bool operator ==(V1alpha1StorageVersionStatus? left, V1alpha1StorageVersionStatus? right)
Parameters
Returns
View Source
operator !=(V1alpha1StorageVersionStatus?, V1alpha1StorageVersionStatus?)
Declaration
public static bool operator !=(V1alpha1StorageVersionStatus? left, V1alpha1StorageVersionStatus? right)
Parameters
Returns
Implements