com.pulumi.gcp.gkeonprem.kotlin.inputs.VMwareClusterNetworkConfigStaticIpConfigIpBlockArgs.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.VMwareClusterNetworkConfigStaticIpConfigIpBlockArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property gateway The network gateway used by the VMware User Cluster.
* @property ips The node's network configurations used by the VMware User Cluster.
* Structure is documented below.
* @property netmask The netmask used by the VMware User Cluster.
*/
public data class VMwareClusterNetworkConfigStaticIpConfigIpBlockArgs(
public val gateway: Output,
public val ips: Output>,
public val netmask: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.gkeonprem.inputs.VMwareClusterNetworkConfigStaticIpConfigIpBlockArgs =
com.pulumi.gcp.gkeonprem.inputs.VMwareClusterNetworkConfigStaticIpConfigIpBlockArgs.builder()
.gateway(gateway.applyValue({ args0 -> args0 }))
.ips(ips.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.netmask(netmask.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [VMwareClusterNetworkConfigStaticIpConfigIpBlockArgs].
*/
@PulumiTagMarker
public class VMwareClusterNetworkConfigStaticIpConfigIpBlockArgsBuilder internal constructor() {
private var gateway: Output? = null
private var ips: Output>? = null
private var netmask: Output? = null
/**
* @param value The network gateway used by the VMware User Cluster.
*/
@JvmName("uiqefpmddueyyhfv")
public suspend fun gateway(`value`: Output) {
this.gateway = value
}
/**
* @param value The node's network configurations used by the VMware User Cluster.
* Structure is documented below.
*/
@JvmName("klfsntcbtqtgmnin")
public suspend fun ips(`value`: Output>) {
this.ips = value
}
@JvmName("gnyxaloccteldvlw")
public suspend fun ips(vararg values: Output) {
this.ips = Output.all(values.asList())
}
/**
* @param values The node's network configurations used by the VMware User Cluster.
* Structure is documented below.
*/
@JvmName("rswcgtfcibhuspue")
public suspend fun ips(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy