# Zilla::IoK8sApiCoreV1ReplicationControllerStatus ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **available_replicas** | **Integer** | The number of available replicas (ready for at least minReadySeconds) for this replication controller. | [optional] | | **conditions** | [**Array<IoK8sApiCoreV1ReplicationControllerCondition>**](IoK8sApiCoreV1ReplicationControllerCondition.md) | Represents the latest available observations of a replication controller's current state. | [optional] | | **fully_labeled_replicas** | **Integer** | The number of pods that have labels matching the labels of the pod template of the replication controller. | [optional] | | **observed_generation** | **Integer** | ObservedGeneration reflects the generation of the most recently observed replication controller. | [optional] | | **ready_replicas** | **Integer** | The number of ready replicas for this replication controller. | [optional] | | **replicas** | **Integer** | Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller | | ## Example ```ruby require 'zilla' instance = Zilla::IoK8sApiCoreV1ReplicationControllerStatus.new( available_replicas: null, conditions: null, fully_labeled_replicas: null, observed_generation: null, ready_replicas: null, replicas: null ) ```