com.pulumi.gcp.gkehub.kotlin.outputs.FeatureSpecClusterupgradeGkeUpgradeOverrideUpgrade.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.String
import kotlin.Suppress
/**
*
* @property name Name of the upgrade, e.g., "k8s_control_plane". It should be a valid upgrade name. It must not exceet 99 characters.
* @property version Version of the upgrade, e.g., "1.22.1-gke.100". It should be a valid version. It must not exceet 99 characters.
*/
public data class FeatureSpecClusterupgradeGkeUpgradeOverrideUpgrade(
public val name: String,
public val version: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.gkehub.outputs.FeatureSpecClusterupgradeGkeUpgradeOverrideUpgrade): FeatureSpecClusterupgradeGkeUpgradeOverrideUpgrade =
FeatureSpecClusterupgradeGkeUpgradeOverrideUpgrade(
name = javaType.name(),
version = javaType.version(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy