com.pulumi.gcp.edgecontainer.kotlin.inputs.ClusterControlPlaneRemoteArgs.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.edgecontainer.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.edgecontainer.inputs.ClusterControlPlaneRemoteArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property nodeLocation Name of the Google Distributed Cloud Edge zones where this node pool
* will be created. For example: `us-central1-edge-customer-a`.
*/
public data class ClusterControlPlaneRemoteArgs(
public val nodeLocation: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.edgecontainer.inputs.ClusterControlPlaneRemoteArgs =
com.pulumi.gcp.edgecontainer.inputs.ClusterControlPlaneRemoteArgs.builder()
.nodeLocation(nodeLocation?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ClusterControlPlaneRemoteArgs].
*/
@PulumiTagMarker
public class ClusterControlPlaneRemoteArgsBuilder internal constructor() {
private var nodeLocation: Output? = null
/**
* @param value Name of the Google Distributed Cloud Edge zones where this node pool
* will be created. For example: `us-central1-edge-customer-a`.
*/
@JvmName("kkoexiularryrcad")
public suspend fun nodeLocation(`value`: Output) {
this.nodeLocation = value
}
/**
* @param value Name of the Google Distributed Cloud Edge zones where this node pool
* will be created. For example: `us-central1-edge-customer-a`.
*/
@JvmName("cjrqwgkbbfsrovyn")
public suspend fun nodeLocation(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.nodeLocation = mapped
}
internal fun build(): ClusterControlPlaneRemoteArgs = ClusterControlPlaneRemoteArgs(
nodeLocation = nodeLocation,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy