All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.azurefleet.kotlin.outputs.VirtualMachineScaleSetHardwareProfileResponse.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 2.82.0.0
Show newest version
@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