
com.pulumi.gcp.container.kotlin.outputs.ClusterEnterpriseConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.container.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property clusterTier The effective tier of the cluster.
* @property desiredTier Sets the tier of the cluster. Available options include `STANDARD` and `ENTERPRISE`.
*/
public data class ClusterEnterpriseConfig(
public val clusterTier: String? = null,
public val desiredTier: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.ClusterEnterpriseConfig): ClusterEnterpriseConfig = ClusterEnterpriseConfig(
clusterTier = javaType.clusterTier().map({ args0 -> args0 }).orElse(null),
desiredTier = javaType.desiredTier().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy