
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("bdlempwlpikqmppi")
public suspend fun backendPoolNames(`value`: Output>) {
this.backendPoolNames = value
}
@JvmName("nxakukyxjukanhvw")
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("qwymbbtrcwobxkux")
public suspend fun backendPoolNames(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy