com.pulumi.gcp.gkehub.kotlin.outputs.FeatureSpecClusterupgradeGkeUpgradeOverride.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.gkehub.kotlin.outputs
import kotlin.Suppress
/**
*
* @property postConditions Post conditions to override for the specified upgrade.
* Structure is documented below.
* @property upgrade Which upgrade to override.
* Structure is documented below.
*/
public data class FeatureSpecClusterupgradeGkeUpgradeOverride(
public val postConditions: FeatureSpecClusterupgradeGkeUpgradeOverridePostConditions,
public val upgrade: FeatureSpecClusterupgradeGkeUpgradeOverrideUpgrade,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.gkehub.outputs.FeatureSpecClusterupgradeGkeUpgradeOverride): FeatureSpecClusterupgradeGkeUpgradeOverride = FeatureSpecClusterupgradeGkeUpgradeOverride(
postConditions = javaType.postConditions().let({ args0 ->
com.pulumi.gcp.gkehub.kotlin.outputs.FeatureSpecClusterupgradeGkeUpgradeOverridePostConditions.Companion.toKotlin(args0)
}),
upgrade = javaType.upgrade().let({ args0 ->
com.pulumi.gcp.gkehub.kotlin.outputs.FeatureSpecClusterupgradeGkeUpgradeOverrideUpgrade.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy