All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.gkeonprem.kotlin.inputs.VMwareClusterLoadBalancerF5ConfigArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@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.VMwareClusterLoadBalancerF5ConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property address The load balancer's IP address.
 * @property partition he preexisting partition to be used by the load balancer. T
 * his partition is usually created for the admin cluster for example:
 * 'my-f5-admin-partition'.
 * @property snatPool The pool name. Only necessary, if using SNAT.
 */
public data class VMwareClusterLoadBalancerF5ConfigArgs(
    public val address: Output? = null,
    public val partition: Output? = null,
    public val snatPool: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.gkeonprem.inputs.VMwareClusterLoadBalancerF5ConfigArgs =
        com.pulumi.gcp.gkeonprem.inputs.VMwareClusterLoadBalancerF5ConfigArgs.builder()
            .address(address?.applyValue({ args0 -> args0 }))
            .partition(partition?.applyValue({ args0 -> args0 }))
            .snatPool(snatPool?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [VMwareClusterLoadBalancerF5ConfigArgs].
 */
@PulumiTagMarker
public class VMwareClusterLoadBalancerF5ConfigArgsBuilder internal constructor() {
    private var address: Output? = null

    private var partition: Output? = null

    private var snatPool: Output? = null

    /**
     * @param value The load balancer's IP address.
     */
    @JvmName("gqieftatostoevop")
    public suspend fun address(`value`: Output) {
        this.address = value
    }

    /**
     * @param value he preexisting partition to be used by the load balancer. T
     * his partition is usually created for the admin cluster for example:
     * 'my-f5-admin-partition'.
     */
    @JvmName("skmwpfiqcucaulpe")
    public suspend fun partition(`value`: Output) {
        this.partition = value
    }

    /**
     * @param value The pool name. Only necessary, if using SNAT.
     */
    @JvmName("kniphhcphknqmyff")
    public suspend fun snatPool(`value`: Output) {
        this.snatPool = value
    }

    /**
     * @param value The load balancer's IP address.
     */
    @JvmName("movbcbtktuhhgdvk")
    public suspend fun address(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.address = mapped
    }

    /**
     * @param value he preexisting partition to be used by the load balancer. T
     * his partition is usually created for the admin cluster for example:
     * 'my-f5-admin-partition'.
     */
    @JvmName("aknxjonngssrsetk")
    public suspend fun partition(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.partition = mapped
    }

    /**
     * @param value The pool name. Only necessary, if using SNAT.
     */
    @JvmName("plvdsjiduuoxpaqo")
    public suspend fun snatPool(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.snatPool = mapped
    }

    internal fun build(): VMwareClusterLoadBalancerF5ConfigArgs =
        VMwareClusterLoadBalancerF5ConfigArgs(
            address = address,
            partition = partition,
            snatPool = snatPool,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy