
com.pulumi.googlenative.gkehub.v1alpha2.kotlin.inputs.GkeClusterArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.gkehub.v1alpha2.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.gkehub.v1alpha2.inputs.GkeClusterArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* GkeCluster contains information specific to GKE clusters.
* @property resourceLink Immutable. Self-link of the Google Cloud resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal clusters are also supported.
*/
public data class GkeClusterArgs(
public val resourceLink: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.gkehub.v1alpha2.inputs.GkeClusterArgs =
com.pulumi.googlenative.gkehub.v1alpha2.inputs.GkeClusterArgs.builder()
.resourceLink(resourceLink?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [GkeClusterArgs].
*/
@PulumiTagMarker
public class GkeClusterArgsBuilder internal constructor() {
private var resourceLink: Output? = null
/**
* @param value Immutable. Self-link of the Google Cloud resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal clusters are also supported.
*/
@JvmName("nmrnolnxxjgqsmla")
public suspend fun resourceLink(`value`: Output) {
this.resourceLink = value
}
/**
* @param value Immutable. Self-link of the Google Cloud resource for the GKE cluster. For example: //container.googleapis.com/projects/my-project/locations/us-west1-a/clusters/my-cluster Zonal clusters are also supported.
*/
@JvmName("moqovbvtjxahheab")
public suspend fun resourceLink(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.resourceLink = mapped
}
internal fun build(): GkeClusterArgs = GkeClusterArgs(
resourceLink = resourceLink,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy