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