ReplicationControllerStatus class

ReplicationControllerStatus represents the current status of a replication controller.

Constructors

ReplicationControllerStatus({int? availableReplicas, List<ReplicationControllerCondition>? conditions, int? fullyLabeledReplicas, int? observedGeneration, int? readyReplicas, required int replicas})
Default constructor.
const
ReplicationControllerStatus.fromJson(Map<String, dynamic> json)
Creates a ReplicationControllerStatus from JSON data.
factory

Properties

availableReplicas int?
The number of available replicas (ready for at least minReadySeconds) for this replication controller.
final
conditions List<ReplicationControllerCondition>?
Represents the latest available observations of a replication controller's current state.
final
fullyLabeledReplicas int?
The number of pods that have labels matching the labels of the pod template of the replication controller.
final
hashCode int
The hash code for this object.
no setterinherited
observedGeneration int?
ObservedGeneration reflects the generation of the most recently observed replication controller.
final
readyReplicas int?
The number of ready replicas for this replication controller.
final
replicas int
Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, Object>
Converts a ReplicationControllerStatus instance to JSON data.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited