com.pulumi.azure.workloadssap.kotlin.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerArgs.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.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property availabilitySetName The full name for the availability set. Changing this forces a new resource to be created.
* @property loadBalancer A `load_balancer` block as defined below. Changing this forces a new resource to be created.
* @property virtualMachines One or more `virtual_machine` blocks as defined below. Changing this forces a new resource to be created.
*/
public data class ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerArgs(
public val availabilitySetName: Output? = null,
public val loadBalancer:
Output? =
null,
public val virtualMachines:
Output>? =
null,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.workloadssap.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerArgs =
com.pulumi.azure.workloadssap.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerArgs.builder()
.availabilitySetName(availabilitySetName?.applyValue({ args0 -> args0 }))
.loadBalancer(loadBalancer?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.virtualMachines(
virtualMachines?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerArgs].
*/
@PulumiTagMarker
public class ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerArgsBuilder
internal constructor() {
private var availabilitySetName: Output? = null
private var loadBalancer:
Output? =
null
private var virtualMachines:
Output>? =
null
/**
* @param value The full name for the availability set. Changing this forces a new resource to be created.
*/
@JvmName("kkkgyrfhfhpiuttf")
public suspend fun availabilitySetName(`value`: Output) {
this.availabilitySetName = value
}
/**
* @param value A `load_balancer` block as defined below. Changing this forces a new resource to be created.
*/
@JvmName("jhifjfnrrdvlgvit")
public suspend
fun loadBalancer(`value`: Output) {
this.loadBalancer = value
}
/**
* @param value One or more `virtual_machine` blocks as defined below. Changing this forces a new resource to be created.
*/
@JvmName("klttiapqahfmvdmu")
public suspend
fun virtualMachines(`value`: Output>) {
this.virtualMachines = value
}
@JvmName("fhmtcdlgvcshqvtn")
public suspend fun virtualMachines(
vararg
values: Output,
) {
this.virtualMachines = Output.all(values.asList())
}
/**
* @param values One or more `virtual_machine` blocks as defined below. Changing this forces a new resource to be created.
*/
@JvmName("ncwrsemcqftbedfs")
public suspend
fun virtualMachines(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy