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

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

package com.pulumi.azure.compute.kotlin.inputs

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

/**
 *
 * @property storageAccountUri The Primary/Secondary Endpoint for the Azure Storage Account which should be used to store Boot Diagnostics, including Console Output and Screenshots from the Hypervisor.
 * > **NOTE:** Passing a null value will utilize a Managed Storage Account to store Boot Diagnostics
 */
public data class WindowsVirtualMachineScaleSetBootDiagnosticsArgs(
    public val storageAccountUri: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava():
        com.pulumi.azure.compute.inputs.WindowsVirtualMachineScaleSetBootDiagnosticsArgs =
        com.pulumi.azure.compute.inputs.WindowsVirtualMachineScaleSetBootDiagnosticsArgs.builder()
            .storageAccountUri(storageAccountUri?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [WindowsVirtualMachineScaleSetBootDiagnosticsArgs].
 */
@PulumiTagMarker
public class WindowsVirtualMachineScaleSetBootDiagnosticsArgsBuilder internal constructor() {
    private var storageAccountUri: Output? = null

    /**
     * @param value The Primary/Secondary Endpoint for the Azure Storage Account which should be used to store Boot Diagnostics, including Console Output and Screenshots from the Hypervisor.
     * > **NOTE:** Passing a null value will utilize a Managed Storage Account to store Boot Diagnostics
     */
    @JvmName("dmxafojvpyrpmkal")
    public suspend fun storageAccountUri(`value`: Output) {
        this.storageAccountUri = value
    }

    /**
     * @param value The Primary/Secondary Endpoint for the Azure Storage Account which should be used to store Boot Diagnostics, including Console Output and Screenshots from the Hypervisor.
     * > **NOTE:** Passing a null value will utilize a Managed Storage Account to store Boot Diagnostics
     */
    @JvmName("uoolnkqdhpdbofia")
    public suspend fun storageAccountUri(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.storageAccountUri = mapped
    }

    internal fun build(): WindowsVirtualMachineScaleSetBootDiagnosticsArgs =
        WindowsVirtualMachineScaleSetBootDiagnosticsArgs(
            storageAccountUri = storageAccountUri,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy