com.pulumi.gcp.container.kotlin.outputs.GetClusterReleaseChannel.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.container.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property channel The selected release channel. Accepted values are:
* * UNSPECIFIED: Not set.
* * RAPID: Weekly upgrade cadence; Early testers and developers who requires new features.
* * REGULAR: Multiple per month upgrade cadence; Production users who need features not yet offered in the Stable channel.
* * STABLE: Every few months upgrade cadence; Production users who need stability above all else, and for whom frequent upgrades are too risky.
*/
public data class GetClusterReleaseChannel(
public val channel: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.GetClusterReleaseChannel): GetClusterReleaseChannel = GetClusterReleaseChannel(
channel = javaType.channel(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy