![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.workloadssap.kotlin.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerArgs.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.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerArgs.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 ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerArgs(
public val availabilitySetName: Output? = null,
public val loadBalancer: Output? =
null,
public val virtualMachines: Output>? =
null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.workloadssap.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerArgs =
com.pulumi.azure.workloadssap.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerArgs.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 [ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerArgs].
*/
@PulumiTagMarker
public class ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerArgsBuilder
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("faqsvpyxxlggodpm")
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("sxhtcgkgaasefafb")
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("jekkcdekranxjtyq")
public suspend fun virtualMachines(`value`: Output>) {
this.virtualMachines = value
}
@JvmName("ncqhnlghpxfvpfcf")
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("hgsqvyfswxcvwhsu")
public suspend fun virtualMachines(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy