com.pulumi.azure.workloadssap.kotlin.outputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerVirtualMachine.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.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @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
ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerVirtualMachine(
public val dataDisks:
List? =
null,
public val hostName: String? = null,
public val networkInterfaceNames: List? = null,
public val osDiskName: String? = null,
public val virtualMachineName: String? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.workloadssap.outputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerVirtualMachine):
ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerVirtualMachine =
ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerVirtualMachine(
dataDisks = javaType.dataDisks().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.workloadssap.kotlin.outputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesDatabaseServerVirtualMachineDataDisk.Companion.toKotlin(args0)
})
}),
hostName = javaType.hostName().map({ args0 -> args0 }).orElse(null),
networkInterfaceNames = javaType.networkInterfaceNames().map({ args0 -> args0 }),
osDiskName = javaType.osDiskName().map({ args0 -> args0 }).orElse(null),
virtualMachineName = javaType.virtualMachineName().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy