All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.cloudrun.kotlin.outputs.GetServiceStatusCondition.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@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