Class V1ReplicationControllerStatus
ReplicationControllerStatus represents the current status of a replication
controller.
Inheritance
V1ReplicationControllerStatus
Assembly: KubernetesClient.dll
Syntax
public record V1ReplicationControllerStatus : IEquatable<V1ReplicationControllerStatus>
Constructors
View Source
V1ReplicationControllerStatus()
Declaration
public V1ReplicationControllerStatus()
View Source
V1ReplicationControllerStatus(V1ReplicationControllerStatus)
Declaration
protected V1ReplicationControllerStatus(V1ReplicationControllerStatus original)
Parameters
Properties
View Source
AvailableReplicas
The number of available replicas (ready for at least minReadySeconds) for this
replication controller.
Declaration
[JsonPropertyName("availableReplicas")]
public int? AvailableReplicas { get; set; }
Property Value
View Source
Conditions
Represents the latest available observations of a replication controller's
current state.
Declaration
[JsonPropertyName("conditions")]
public IList<V1ReplicationControllerCondition> Conditions { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
FullyLabeledReplicas
The number of pods that have labels matching the labels of the pod template of
the replication controller.
Declaration
[JsonPropertyName("fullyLabeledReplicas")]
public int? FullyLabeledReplicas { get; set; }
Property Value
View Source
ObservedGeneration
ObservedGeneration reflects the generation of the most recently observed
replication controller.
Declaration
[JsonPropertyName("observedGeneration")]
public long? ObservedGeneration { get; set; }
Property Value
View Source
ReadyReplicas
The number of ready replicas for this replication controller.
Declaration
[JsonPropertyName("readyReplicas")]
public int? ReadyReplicas { get; set; }
Property Value
View Source
Replicas
Declaration
[JsonPropertyName("replicas")]
public int Replicas { 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(V1ReplicationControllerStatus?)
Declaration
public virtual bool Equals(V1ReplicationControllerStatus? 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 ==(V1ReplicationControllerStatus?, V1ReplicationControllerStatus?)
Declaration
public static bool operator ==(V1ReplicationControllerStatus? left, V1ReplicationControllerStatus? right)
Parameters
Returns
View Source
operator !=(V1ReplicationControllerStatus?, V1ReplicationControllerStatus?)
Declaration
public static bool operator !=(V1ReplicationControllerStatus? left, V1ReplicationControllerStatus? right)
Parameters
Returns
Implements