com.pulumi.azure.workloadssap.kotlin.outputs.ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfiguration.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.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property instanceCount The number of instances for the Central Server. Possible values are at least `1`. Changing this forces a new resource to be created.
* @property subnetId The resource ID of the Subnet for the Central Server. Changing this forces a new resource to be created.
* @property virtualMachineConfiguration A `virtual_machine_configuration` block as defined below. Changing this forces a new resource to be created.
*/
public data class ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfiguration(
public val instanceCount: Int,
public val subnetId: String,
public val virtualMachineConfiguration:
ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfiguration,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.workloadssap.outputs.ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfiguration):
ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfiguration =
ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfiguration(
instanceCount = javaType.instanceCount(),
subnetId = javaType.subnetId(),
virtualMachineConfiguration = javaType.virtualMachineConfiguration().let({ args0 ->
com.pulumi.azure.workloadssap.kotlin.outputs.ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfiguration.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy