com.pulumi.azure.compute.kotlin.inputs.LinuxVirtualMachineBootDiagnosticsArgs.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.LinuxVirtualMachineBootDiagnosticsArgs.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 LinuxVirtualMachineBootDiagnosticsArgs(
public val storageAccountUri: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.compute.inputs.LinuxVirtualMachineBootDiagnosticsArgs =
com.pulumi.azure.compute.inputs.LinuxVirtualMachineBootDiagnosticsArgs.builder()
.storageAccountUri(storageAccountUri?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [LinuxVirtualMachineBootDiagnosticsArgs].
*/
@PulumiTagMarker
public class LinuxVirtualMachineBootDiagnosticsArgsBuilder 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("uiwkmcgdfvaqsmcf")
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("dshdipbvoqwcrdah")
public suspend fun storageAccountUri(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.storageAccountUri = mapped
}
internal fun build(): LinuxVirtualMachineBootDiagnosticsArgs =
LinuxVirtualMachineBootDiagnosticsArgs(
storageAccountUri = storageAccountUri,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy