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

com.pulumi.gcp.container.kotlin.outputs.GetClusterReleaseChannel.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.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