com.pulumi.gcp.gkeonprem.kotlin.inputs.VMwareClusterLoadBalancerVipConfigArgs.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.gkeonprem.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.gkeonprem.inputs.VMwareClusterLoadBalancerVipConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property controlPlaneVip The VIP which you previously set aside for the Kubernetes API of this cluster.
* @property ingressVip The VIP which you previously set aside for ingress traffic into this cluster.
* The `f5_config` block supports:
*/
public data class VMwareClusterLoadBalancerVipConfigArgs(
public val controlPlaneVip: Output? = null,
public val ingressVip: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.gkeonprem.inputs.VMwareClusterLoadBalancerVipConfigArgs =
com.pulumi.gcp.gkeonprem.inputs.VMwareClusterLoadBalancerVipConfigArgs.builder()
.controlPlaneVip(controlPlaneVip?.applyValue({ args0 -> args0 }))
.ingressVip(ingressVip?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [VMwareClusterLoadBalancerVipConfigArgs].
*/
@PulumiTagMarker
public class VMwareClusterLoadBalancerVipConfigArgsBuilder internal constructor() {
private var controlPlaneVip: Output? = null
private var ingressVip: Output? = null
/**
* @param value The VIP which you previously set aside for the Kubernetes API of this cluster.
*/
@JvmName("mnqaghyjnrxarweg")
public suspend fun controlPlaneVip(`value`: Output) {
this.controlPlaneVip = value
}
/**
* @param value The VIP which you previously set aside for ingress traffic into this cluster.
* The `f5_config` block supports:
*/
@JvmName("shpippnrbjbjvrln")
public suspend fun ingressVip(`value`: Output) {
this.ingressVip = value
}
/**
* @param value The VIP which you previously set aside for the Kubernetes API of this cluster.
*/
@JvmName("hwkvsbiriiknlpnr")
public suspend fun controlPlaneVip(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.controlPlaneVip = mapped
}
/**
* @param value The VIP which you previously set aside for ingress traffic into this cluster.
* The `f5_config` block supports:
*/
@JvmName("pdxcfmbbbnmhkcls")
public suspend fun ingressVip(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.ingressVip = mapped
}
internal fun build(): VMwareClusterLoadBalancerVipConfigArgs =
VMwareClusterLoadBalancerVipConfigArgs(
controlPlaneVip = controlPlaneVip,
ingressVip = ingressVip,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy