
com.pulumi.gcp.edgecontainer.kotlin.inputs.ClusterControlPlaneRemoteArgs.kt Maven / Gradle / Ivy
@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("qfgbfejupnxdqvbr")
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("ybtlvqaccavnlcuy")
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 - 2025 Weber Informatics LLC | Privacy Policy