com.pulumi.kubernetes.apiextensions.v1.kotlin.outputs.CustomResourceDefinitionCondition.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-kubernetes-kotlin Show documentation
Show all versions of pulumi-kubernetes-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.kubernetes.apiextensions.v1.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* CustomResourceDefinitionCondition contains details for the current condition of this pod.
* @property lastTransitionTime lastTransitionTime last time the condition transitioned from one status to another.
* @property message message is a human-readable message indicating details about last transition.
* @property reason reason is a unique, one-word, CamelCase reason for the condition's last transition.
* @property status status is the status of the condition. Can be True, False, Unknown.
* @property type type is the type of the condition. Types include Established, NamesAccepted and Terminating.
*/
public data class CustomResourceDefinitionCondition(
public val lastTransitionTime: String? = null,
public val message: String? = null,
public val reason: String? = null,
public val status: String,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.kubernetes.apiextensions.v1.outputs.CustomResourceDefinitionCondition): CustomResourceDefinitionCondition = CustomResourceDefinitionCondition(
lastTransitionTime = javaType.lastTransitionTime().map({ args0 -> args0 }).orElse(null),
message = javaType.message().map({ args0 -> args0 }).orElse(null),
reason = javaType.reason().map({ args0 -> args0 }).orElse(null),
status = javaType.status(),
type = javaType.type(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy