![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.azurefleet.kotlin.outputs.VirtualMachineScaleSetHardwareProfileResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.azurefleet.kotlin.outputs
import kotlin.Suppress
/**
* Specifies the hardware settings for the virtual machine scale set.
* @property vmSizeProperties Specifies the properties for customizing the size of the virtual machine.
* Minimum api-version: 2021-11-01. Please follow the instructions in [VM
* Customization](https://aka.ms/vmcustomization) for more details.
*/
public data class VirtualMachineScaleSetHardwareProfileResponse(
public val vmSizeProperties: VMSizePropertiesResponse? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.azurefleet.outputs.VirtualMachineScaleSetHardwareProfileResponse): VirtualMachineScaleSetHardwareProfileResponse =
VirtualMachineScaleSetHardwareProfileResponse(
vmSizeProperties = javaType.vmSizeProperties().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.azurefleet.kotlin.outputs.VMSizePropertiesResponse.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy