Class V1ReplicaSetStatus
ReplicaSetStatus represents the current status of a ReplicaSet.
Inheritance
V1ReplicaSetStatus
Assembly: KubernetesClient.dll
Syntax
public record V1ReplicaSetStatus : IEquatable<V1ReplicaSetStatus>
Constructors
V1ReplicaSetStatus()
Declaration
public V1ReplicaSetStatus()
V1ReplicaSetStatus(V1ReplicaSetStatus)
Declaration
protected V1ReplicaSetStatus(V1ReplicaSetStatus original)
Parameters
Properties
AvailableReplicas
The number of available non-terminating pods (ready for at least
minReadySeconds) for this replica set.
Declaration
[JsonPropertyName("availableReplicas")]
public int? AvailableReplicas { get; set; }
Property Value
Conditions
Represents the latest available observations of a replica set's current state.
Declaration
[JsonPropertyName("conditions")]
public IList<V1ReplicaSetCondition> Conditions { get; set; }
Property Value
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
FullyLabeledReplicas
The number of non-terminating pods that have labels matching the labels of the
pod template of the replicaset.
Declaration
[JsonPropertyName("fullyLabeledReplicas")]
public int? FullyLabeledReplicas { get; set; }
Property Value
ObservedGeneration
ObservedGeneration reflects the generation of the most recently observed
ReplicaSet.
Declaration
[JsonPropertyName("observedGeneration")]
public long? ObservedGeneration { get; set; }
Property Value
ReadyReplicas
The number of non-terminating pods targeted by this ReplicaSet with a Ready
Condition.
Declaration
[JsonPropertyName("readyReplicas")]
public int? ReadyReplicas { get; set; }
Property Value
Replicas
Declaration
[JsonPropertyName("replicas")]
public int Replicas { get; set; }
Property Value
TerminatingReplicas
The number of terminating pods for this replica set. Terminating pods have a
non-null .metadata.deletionTimestamp and have not yet reached the Failed or
Succeeded .status.phase.
This is a beta field and requires enabling
DeploymentReplicaSetTerminatingReplicas feature (enabled by default).
Declaration
[JsonPropertyName("terminatingReplicas")]
public int? TerminatingReplicas { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1ReplicaSetStatus?)
Declaration
public virtual bool Equals(V1ReplicaSetStatus? other)
Parameters
Returns
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
operator ==(V1ReplicaSetStatus?, V1ReplicaSetStatus?)
Declaration
public static bool operator ==(V1ReplicaSetStatus? left, V1ReplicaSetStatus? right)
Parameters
Returns
operator !=(V1ReplicaSetStatus?, V1ReplicaSetStatus?)
Declaration
public static bool operator !=(V1ReplicaSetStatus? left, V1ReplicaSetStatus? right)
Parameters
Returns
Implements