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

com.pulumi.azure.workloadssap.kotlin.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs.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: 6.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.workloadssap.kotlin.inputs

import com.pulumi.azure.workloadssap.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 *
 * @property backendPoolNames A list of Backend Pool names for the Load Balancer. Changing this forces a new resource to be created.
 * @property frontendIpConfigurationNames A list of Frontend IP Configuration names. Changing this forces a new resource to be created.
 * @property healthProbeNames A list of Health Probe names. Changing this forces a new resource to be created.
 * @property name The full resource name of the Load Balancer. Changing this forces a new resource to be created.
 */
public data class
ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs(
    public val backendPoolNames: Output>? = null,
    public val frontendIpConfigurationNames: Output>? = null,
    public val healthProbeNames: Output>? = null,
    public val name: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava():
        com.pulumi.azure.workloadssap.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs =
        com.pulumi.azure.workloadssap.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs.builder()
            .backendPoolNames(backendPoolNames?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .frontendIpConfigurationNames(
                frontendIpConfigurationNames?.applyValue({ args0 ->
                    args0.map({ args0 -> args0 })
                }),
            )
            .healthProbeNames(healthProbeNames?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .name(name?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs].
 */
@PulumiTagMarker
public class
ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgsBuilder
internal constructor() {
    private var backendPoolNames: Output>? = null

    private var frontendIpConfigurationNames: Output>? = null

    private var healthProbeNames: Output>? = null

    private var name: Output? = null

    /**
     * @param value A list of Backend Pool names for the Load Balancer. Changing this forces a new resource to be created.
     */
    @JvmName("oonabuycemawwsnj")
    public suspend fun backendPoolNames(`value`: Output>) {
        this.backendPoolNames = value
    }

    @JvmName("jclvijekkiqgaetq")
    public suspend fun backendPoolNames(vararg values: Output) {
        this.backendPoolNames = Output.all(values.asList())
    }

    /**
     * @param values A list of Backend Pool names for the Load Balancer. Changing this forces a new resource to be created.
     */
    @JvmName("vcveulmqgkhnryuf")
    public suspend fun backendPoolNames(values: List>) {
        this.backendPoolNames = Output.all(values)
    }

    /**
     * @param value A list of Frontend IP Configuration names. Changing this forces a new resource to be created.
     */
    @JvmName("ijfvkqrftebegnny")
    public suspend fun frontendIpConfigurationNames(`value`: Output>) {
        this.frontendIpConfigurationNames = value
    }

    @JvmName("jcmmwuplvvrigdmj")
    public suspend fun frontendIpConfigurationNames(vararg values: Output) {
        this.frontendIpConfigurationNames = Output.all(values.asList())
    }

    /**
     * @param values A list of Frontend IP Configuration names. Changing this forces a new resource to be created.
     */
    @JvmName("mblnkllfpseskhxu")
    public suspend fun frontendIpConfigurationNames(values: List>) {
        this.frontendIpConfigurationNames = Output.all(values)
    }

    /**
     * @param value A list of Health Probe names. Changing this forces a new resource to be created.
     */
    @JvmName("agnwlumsiaawvxmw")
    public suspend fun healthProbeNames(`value`: Output>) {
        this.healthProbeNames = value
    }

    @JvmName("abqhgbourpfyqnbp")
    public suspend fun healthProbeNames(vararg values: Output) {
        this.healthProbeNames = Output.all(values.asList())
    }

    /**
     * @param values A list of Health Probe names. Changing this forces a new resource to be created.
     */
    @JvmName("ktqhsuouduqvojjj")
    public suspend fun healthProbeNames(values: List>) {
        this.healthProbeNames = Output.all(values)
    }

    /**
     * @param value The full resource name of the Load Balancer. Changing this forces a new resource to be created.
     */
    @JvmName("slkhnehgfxsfqcri")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value A list of Backend Pool names for the Load Balancer. Changing this forces a new resource to be created.
     */
    @JvmName("euvveoxfdnyavyft")
    public suspend fun backendPoolNames(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.backendPoolNames = mapped
    }

    /**
     * @param values A list of Backend Pool names for the Load Balancer. Changing this forces a new resource to be created.
     */
    @JvmName("xwvvnpmfdemgxhuw")
    public suspend fun backendPoolNames(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.backendPoolNames = mapped
    }

    /**
     * @param value A list of Frontend IP Configuration names. Changing this forces a new resource to be created.
     */
    @JvmName("cqaufjqvxfyuklom")
    public suspend fun frontendIpConfigurationNames(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.frontendIpConfigurationNames = mapped
    }

    /**
     * @param values A list of Frontend IP Configuration names. Changing this forces a new resource to be created.
     */
    @JvmName("gcdilhsybqjlsong")
    public suspend fun frontendIpConfigurationNames(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.frontendIpConfigurationNames = mapped
    }

    /**
     * @param value A list of Health Probe names. Changing this forces a new resource to be created.
     */
    @JvmName("fgxffigplxkdecmx")
    public suspend fun healthProbeNames(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.healthProbeNames = mapped
    }

    /**
     * @param values A list of Health Probe names. Changing this forces a new resource to be created.
     */
    @JvmName("uyhfrpphtrwielmr")
    public suspend fun healthProbeNames(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.healthProbeNames = mapped
    }

    /**
     * @param value The full resource name of the Load Balancer. Changing this forces a new resource to be created.
     */
    @JvmName("gnuormewkhceqfgy")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    internal fun build():
        ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs =
        ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs(
            backendPoolNames = backendPoolNames,
            frontendIpConfigurationNames = frontendIpConfigurationNames,
            healthProbeNames = healthProbeNames,
            name = name,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy