class K8S::Api::Core::V1::PodCondition
- K8S::Api::Core::V1::PodCondition
 - Reference
 - Object
 
Overview
PodCondition contains details for the current condition of this pod.
Included Modules
- JSON::Serializable
 - YAML::Serializable
 
Defined in:
versions/v1.21/api/core/v1/pod_condition.crConstructors
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
 - .new(pull : JSON::PullParser)
 - .new(*, status : String, type : String, last_probe_time : Time? = nil, last_transition_time : Time? = nil, message : String? = nil, reason : String? = nil)
 
Instance Method Summary
- #last_probe_time : Time?
 - #last_probe_time=(last_probe_time : Time?)
 - #last_transition_time : Time?
 - #last_transition_time=(last_transition_time : Time?)
 - #message : String?
 - #message=(message : String?)
 - #reason : String?
 - #reason=(reason : String?)
 - #status : String
 - #status=(status : String)
 - #type : String
 - #type=(type : String)
 
Constructor Detail
        
        def self.new(*, status : String, type : String, last_probe_time : Time? = nil, last_transition_time : Time? = nil, message : String? = nil, reason : String? = nil)
        #