class K8S::Api::Core::V1::ReplicationControllerStatus
- K8S::Api::Core::V1::ReplicationControllerStatus
- Reference
- Object
Overview
ReplicationControllerStatus represents the current status of a replication controller.
Included Modules
- JSON::Serializable
- JSON::Serializable::Unmapped
- YAML::Serializable
- YAML::Serializable::Unmapped
Defined in:
versions/v1.18/api/core/v1/replication_controller_status.crConstructors
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
- .new(pull : JSON::PullParser)
- .new(*, replicas : Int32, available_replicas : Int32? = nil, conditions : Array(Api::Core::V1::ReplicationControllerCondition)? = nil, fully_labeled_replicas : Int32? = nil, observed_generation : Int32? = nil, ready_replicas : Int32? = nil)
Instance Method Summary
- #available_replicas : Int32?
- #available_replicas=(available_replicas : Int32?)
- #conditions : Array(Api::Core::V1::ReplicationControllerCondition)?
- #conditions=(conditions : Array(Api::Core::V1::ReplicationControllerCondition)?)
- #fully_labeled_replicas : Int32?
- #fully_labeled_replicas=(fully_labeled_replicas : Int32?)
- #observed_generation : Int32?
- #observed_generation=(observed_generation : Int32?)
- #ready_replicas : Int32?
- #ready_replicas=(ready_replicas : Int32?)
- #replicas : Int32
- #replicas=(replicas : Int32)
Constructor Detail
def self.new(*, replicas : Int32, available_replicas : Int32? = nil, conditions : Array(Api::Core::V1::ReplicationControllerCondition)? = nil, fully_labeled_replicas : Int32? = nil, observed_generation : Int32? = nil, ready_replicas : Int32? = nil)
#