Class V1ReplicaSetStatus
ReplicaSetStatus represents the current status of a ReplicaSet.
Inheritance
V1ReplicaSetStatus
Assembly: KubernetesClient.dll
Syntax
public record V1ReplicaSetStatus : IEquatable<V1ReplicaSetStatus>
Constructors
View Source
V1ReplicaSetStatus()
Declaration
public V1ReplicaSetStatus()
View Source
V1ReplicaSetStatus(V1ReplicaSetStatus)
Declaration
protected V1ReplicaSetStatus(V1ReplicaSetStatus original)
Parameters
Properties
View Source
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
View Source
Conditions
Represents the latest available observations of a replica set's current state.
Declaration
[JsonPropertyName("conditions")]
public IList<V1ReplicaSetCondition> Conditions { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
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
View Source
ObservedGeneration
ObservedGeneration reflects the generation of the most recently observed
ReplicaSet.
Declaration
[JsonPropertyName("observedGeneration")]
public long? ObservedGeneration { get; set; }
Property Value
View Source
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
View Source
Replicas
Declaration
[JsonPropertyName("replicas")]
public int Replicas { get; set; }
Property Value
View Source
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 an alpha field. Enable DeploymentReplicaSetTerminatingReplicas to be
able to use this field.
Declaration
[JsonPropertyName("terminatingReplicas")]
public int? TerminatingReplicas { 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(V1ReplicaSetStatus?)
Declaration
public virtual bool Equals(V1ReplicaSetStatus? 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 ==(V1ReplicaSetStatus?, V1ReplicaSetStatus?)
Declaration
public static bool operator ==(V1ReplicaSetStatus? left, V1ReplicaSetStatus? right)
Parameters
Returns
View Source
operator !=(V1ReplicaSetStatus?, V1ReplicaSetStatus?)
Declaration
public static bool operator !=(V1ReplicaSetStatus? left, V1ReplicaSetStatus? right)
Parameters
Returns
Implements