com.pulumi.azure.workloadssap.kotlin.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerLoadBalancerArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.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
© 2015 - 2025 Weber Informatics LLC | Privacy Policy