struct

Kubernetes::PriorityLevelConfigurationCondition

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

PriorityLevelConfigurationCondition defines the condition of priority level.

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

lastTransitionTime is the last time the condition transitioned from one status to another.

Source
last_transition_time=(last_transition_time : Time | Nil)

lastTransitionTime is the last time the condition transitioned from one status to another.

Source
message

message is a human-readable message indicating details about last transition.

Source
message=(message : String | Nil)

message is a human-readable message indicating details about last transition.

Source
reason

reason is a unique, one-word, CamelCase reason for the condition's last transition.

Source
reason=(reason : String | Nil)

reason is a unique, one-word, CamelCase reason for the condition's last transition.

Source
status

status is the status of the condition. Can be True, False, Unknown. Required.

Source
status=(status : String | Nil)

status is the status of the condition. Can be True, False, Unknown. Required.

Source
type

type is the type of the condition. Required.

Source
type=(type : String | Nil)

type is the type of the condition. Required.

Source

Macros

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

Helper macro for defining fields with automatic camelCase conversion

Source