struct

Kubernetes::NamespaceCondition

Inherits YAML::Serializable < JSON::Serializable < Kubernetes::Serializable < Struct < Value < Object

NamespaceCondition contains details about state of namespace.

Constructors

new(pull : ::JSON::PullParser)
new(*, __pull_for_json_serializable pull : ::JSON::PullParser)
new(*, __context_for_yaml_serializable ctx : YAML::ParseContext, __node_for_yaml_serializable node : YAML::Nodes::Node)

Instance methods

last_transition_time

Last time the condition transitioned from one status to another.

Source
last_transition_time=(last_transition_time : Time | Nil)

Last time the condition transitioned from one status to another.

Source
message

Human-readable message indicating details about last transition.

Source
message=(message : String | Nil)

Human-readable message indicating details about last transition.

Source
reason

Unique, one-word, CamelCase reason for the condition's last transition.

Source
reason=(reason : String | Nil)

Unique, one-word, CamelCase reason for the condition's last transition.

Source
status

Status of the condition, one of True, False, Unknown.

Source
status=(status : String | Nil)

Status of the condition, one of True, False, Unknown.

Source
type

Type of namespace controller condition.

Source
type=(type : String | Nil)

Type of namespace controller condition.

Source

Macros

field(name, type = nil, **options, &block)

Helper macro for defining fields with automatic camelCase conversion

Source