com.pulumi.gcp.cloudrun.kotlin.outputs.GetServiceStatusCondition.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.cloudrun.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property message Human readable message indicating details about the current status.
* @property reason One-word CamelCase reason for the condition's current status.
* @property status Status of the condition, one of True, False, Unknown.
* @property type Type of domain mapping condition.
*/
public data class GetServiceStatusCondition(
public val message: String,
public val reason: String,
public val status: String,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.cloudrun.outputs.GetServiceStatusCondition): GetServiceStatusCondition = GetServiceStatusCondition(
message = javaType.message(),
reason = javaType.reason(),
status = javaType.status(),
type = javaType.type(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy