PodConditionArgs

data class PodConditionArgs(val lastProbeTime: Output<String>? = null, val lastTransitionTime: Output<String>? = null, val message: Output<String>? = null, val reason: Output<String>? = null, val status: Output<String>, val type: Output<String>) : ConvertibleToJava<PodConditionArgs>

PodCondition contains details for the current condition of this pod.

Constructors

Link copied to clipboard
constructor(lastProbeTime: Output<String>? = null, lastTransitionTime: Output<String>? = null, message: Output<String>? = null, reason: Output<String>? = null, status: Output<String>, type: Output<String>)

Properties

Link copied to clipboard
val lastProbeTime: Output<String>? = null

Last time we probed the condition.

Link copied to clipboard
val lastTransitionTime: Output<String>? = null

Last time the condition transitioned from one status to another.

Link copied to clipboard
val message: Output<String>? = null

Human-readable message indicating details about last transition.

Link copied to clipboard
val reason: Output<String>? = null

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

Link copied to clipboard
val status: Output<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

Link copied to clipboard
val type: Output<String>

Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions

Functions

Link copied to clipboard
open override fun toJava(): PodConditionArgs