com.pulumi.gcp.clouddeploy.kotlin.outputs.DeliveryPipelineConditionPipelineReadyCondition.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.clouddeploy.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property status True if the Pipeline is in a valid state. Otherwise at least one condition in `PipelineCondition` is in an invalid state. Iterate over those conditions and see which condition(s) has status = false to find out what is wrong with the Pipeline.
* @property updateTime Output only. Most recent time at which the pipeline was updated.
*/
public data class DeliveryPipelineConditionPipelineReadyCondition(
public val status: Boolean? = null,
public val updateTime: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.clouddeploy.outputs.DeliveryPipelineConditionPipelineReadyCondition): DeliveryPipelineConditionPipelineReadyCondition =
DeliveryPipelineConditionPipelineReadyCondition(
status = javaType.status().map({ args0 -> args0 }).orElse(null),
updateTime = javaType.updateTime().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy