class K8S::Api::Policy::V1beta1::PodDisruptionBudgetStatus
- K8S::Api::Policy::V1beta1::PodDisruptionBudgetStatus
- Reference
- Object
Overview
PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.
Included Modules
- JSON::Serializable
- JSON::Serializable::Unmapped
- YAML::Serializable
- YAML::Serializable::Unmapped
Defined in:
versions/v1.11/api/policy/v1beta1/pod_disruption_budget_status.crConstructors
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
- .new(pull : JSON::PullParser)
- .new(*, current_healthy : Int32, desired_healthy : Int32, disrupted_pods : Hash(String, Time), disruptions_allowed : Int32, expected_pods : Int32, observed_generation : Int32? = nil)
Instance Method Summary
- #current_healthy : Int32
- #current_healthy=(current_healthy : Int32)
- #desired_healthy : Int32
- #desired_healthy=(desired_healthy : Int32)
- #disrupted_pods : Hash(String, Time)
- #disrupted_pods=(disrupted_pods : Hash(String, Time))
- #disruptions_allowed : Int32
- #disruptions_allowed=(disruptions_allowed : Int32)
- #expected_pods : Int32
- #expected_pods=(expected_pods : Int32)
- #observed_generation : Int32?
- #observed_generation=(observed_generation : Int32?)
Constructor Detail
def self.new(*, current_healthy : Int32, desired_healthy : Int32, disrupted_pods : Hash(String, Time), disruptions_allowed : Int32, expected_pods : Int32, observed_generation : Int32? = nil)
#