com.pulumi.azure.workloadssap.kotlin.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerVirtualMachineArgs.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.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerVirtualMachineArgs.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 dataDisks One or more `data_disk` blocks as defined below. Changing this forces a new resource to be created.
* @property hostName The full name of the host of the Virtual Machine. Changing this forces a new resource to be created.
* @property networkInterfaceNames A list of full names for the Network Interface of the Virtual Machine. Changing this forces a new resource to be created.
* @property osDiskName The full name of the OS Disk attached to the Virtual Machine. Changing this forces a new resource to be created.
* @property virtualMachineName The full name of the Virtual Machine in a single server SAP system. Changing this forces a new resource to be created.
*/
public data class
ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerVirtualMachineArgs(
public val dataDisks:
Output>? =
null,
public val hostName: Output? = null,
public val networkInterfaceNames: Output>? = null,
public val osDiskName: Output? = null,
public val virtualMachineName: Output? = null,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.workloadssap.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerVirtualMachineArgs =
com.pulumi.azure.workloadssap.inputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerVirtualMachineArgs.builder()
.dataDisks(
dataDisks?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.hostName(hostName?.applyValue({ args0 -> args0 }))
.networkInterfaceNames(networkInterfaceNames?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.osDiskName(osDiskName?.applyValue({ args0 -> args0 }))
.virtualMachineName(virtualMachineName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerVirtualMachineArgs].
*/
@PulumiTagMarker
public class
ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerVirtualMachineArgsBuilder
internal constructor() {
private var dataDisks:
Output>? =
null
private var hostName: Output? = null
private var networkInterfaceNames: Output>? = null
private var osDiskName: Output? = null
private var virtualMachineName: Output? = null
/**
* @param value One or more `data_disk` blocks as defined below. Changing this forces a new resource to be created.
*/
@JvmName("afdlxdknxiiqfxog")
public suspend
fun dataDisks(`value`: Output>) {
this.dataDisks = value
}
@JvmName("oxkrjteywqnbifjo")
public suspend fun dataDisks(
vararg
values: Output,
) {
this.dataDisks = Output.all(values.asList())
}
/**
* @param values One or more `data_disk` blocks as defined below. Changing this forces a new resource to be created.
*/
@JvmName("anoeefedtkcprejh")
public suspend
fun dataDisks(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy