ReplicaSetStatus class
ReplicaSetStatus represents the current status of a ReplicaSet.
Constructors
-
ReplicaSetStatus({int? availableReplicas, List<
ReplicaSetCondition> ? conditions, int? fullyLabeledReplicas, int? observedGeneration, int? readyReplicas, required int replicas}) -
Default constructor.
const
-
ReplicaSetStatus.fromJson(Map<
String, dynamic> json) -
Creates a ReplicaSetStatus from JSON data.
factory
Properties
- availableReplicas → int?
-
The number of available replicas (ready for at least minReadySeconds) for this replica set.
final
-
conditions
→ List<
ReplicaSetCondition> ? -
Represents the latest available observations of a replica set's current state.
final
- fullyLabeledReplicas → int?
-
The number of pods that have labels matching the labels of the pod template of the replicaset.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- observedGeneration → int?
-
ObservedGeneration reflects the generation of the most recently observed ReplicaSet.
final
- readyReplicas → int?
-
readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition.
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 ReplicaSetStatus instance to JSON data.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited