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

com.pulumi.azure.compute.kotlin.inputs.LinuxVirtualMachineScaleSetAdditionalCapabilitiesArgs.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.inputs

import com.pulumi.azure.compute.inputs.LinuxVirtualMachineScaleSetAdditionalCapabilitiesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property ultraSsdEnabled Should the capacity to enable Data Disks of the `UltraSSD_LRS` storage account type be supported on this Virtual Machine Scale Set? Possible values are `true` or `false`. Defaults to `false`. Changing this forces a new resource to be created.
 */
public data class LinuxVirtualMachineScaleSetAdditionalCapabilitiesArgs(
    public val ultraSsdEnabled: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.compute.inputs.LinuxVirtualMachineScaleSetAdditionalCapabilitiesArgs =
        com.pulumi.azure.compute.inputs.LinuxVirtualMachineScaleSetAdditionalCapabilitiesArgs.builder()
            .ultraSsdEnabled(ultraSsdEnabled?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [LinuxVirtualMachineScaleSetAdditionalCapabilitiesArgs].
 */
@PulumiTagMarker
public class LinuxVirtualMachineScaleSetAdditionalCapabilitiesArgsBuilder internal constructor() {
    private var ultraSsdEnabled: Output? = null

    /**
     * @param value Should the capacity to enable Data Disks of the `UltraSSD_LRS` storage account type be supported on this Virtual Machine Scale Set? Possible values are `true` or `false`. Defaults to `false`. Changing this forces a new resource to be created.
     */
    @JvmName("rybodfuyevsfimqs")
    public suspend fun ultraSsdEnabled(`value`: Output) {
        this.ultraSsdEnabled = value
    }

    /**
     * @param value Should the capacity to enable Data Disks of the `UltraSSD_LRS` storage account type be supported on this Virtual Machine Scale Set? Possible values are `true` or `false`. Defaults to `false`. Changing this forces a new resource to be created.
     */
    @JvmName("ylfcyocyujdsnbbb")
    public suspend fun ultraSsdEnabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.ultraSsdEnabled = mapped
    }

    internal fun build(): LinuxVirtualMachineScaleSetAdditionalCapabilitiesArgs =
        LinuxVirtualMachineScaleSetAdditionalCapabilitiesArgs(
            ultraSsdEnabled = ultraSsdEnabled,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy