# Zilla::IoK8sApiCoreV1PodCondition ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **last_probe_time** | **Time** | Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers. | [optional] | | **last_transition_time** | **Time** | Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers. | [optional] | | **message** | **String** | Human-readable message indicating details about last transition. | [optional] | | **reason** | **String** | Unique, one-word, CamelCase reason for the condition's last transition. | [optional] | | **status** | **String** | Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions | | | **type** | **String** | Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions | | ## Example ```ruby require 'zilla' instance = Zilla::IoK8sApiCoreV1PodCondition.new( last_probe_time: null, last_transition_time: null, message: null, reason: null, status: null, type: null ) ```