![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.compute.kotlin.outputs.VirtualMachineAdditionalCapabilities.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.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