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

com.pulumi.azure.workloadssap.kotlin.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancerArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

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

import com.pulumi.azure.workloadssap.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancerArgs.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
ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancerArgs(
    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.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancerArgs =
        com.pulumi.azure.workloadssap.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancerArgs.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 [ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancerArgs].
 */
@PulumiTagMarker
public class
ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancerArgsBuilder
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("qiuwuxbfkhannpbr")
    public suspend fun backendPoolNames(`value`: Output>) {
        this.backendPoolNames = value
    }

    @JvmName("hslpjxbadxtugpqa")
    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("xcebckbnwtaryajo")
    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("rfkusfnvegnlgrvi")
    public suspend fun frontendIpConfigurationNames(`value`: Output>) {
        this.frontendIpConfigurationNames = value
    }

    @JvmName("semrjdykxlltmgdj")
    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("lmbchluqkskwibwi")
    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("gjmwutrrxmspmsun")
    public suspend fun healthProbeNames(`value`: Output>) {
        this.healthProbeNames = value
    }

    @JvmName("xosgcbwqaoswlgff")
    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("eopepiakrlplfxkl")
    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("khsbbnryaajpqfdw")
    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("wtfjtfmpkwhioafd")
    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("leqatbmhknkhgitv")
    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("vexrnijtiqgmwedv")
    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("dyiobjalsakdqqwy")
    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("puoemintypqgpglf")
    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("tlcelvayyqmtqgme")
    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("oioigadswqwpymdt")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy