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

com.pulumi.azure.compute.kotlin.outputs.VirtualMachineAdditionalCapabilities.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.compute.kotlin.outputs

import kotlin.Boolean
import kotlin.Suppress

/**
 *
 * @property ultraSsdEnabled Should Ultra SSD disk be enabled for this Virtual Machine? Changing this forces a new resource to be created.
 * > **Note:** Azure Ultra Disk Storage is only available in a region that support availability zones and can only enabled on the following VM series: `ESv3`, `DSv3`, `FSv3`, `LSv2`, `M` and `Mv2`. For more information see the `Azure Ultra Disk Storage` [product documentation](https://docs.microsoft.com/azure/virtual-machines/windows/disks-enable-ultra-ssd).
 */
public data class VirtualMachineAdditionalCapabilities(
    public val ultraSsdEnabled: Boolean,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.compute.outputs.VirtualMachineAdditionalCapabilities): VirtualMachineAdditionalCapabilities = VirtualMachineAdditionalCapabilities(
            ultraSsdEnabled = javaType.ultraSsdEnabled(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy