com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotLogsHttpLogsArgs.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.appservice.kotlin.inputs
import com.pulumi.azure.appservice.inputs.WindowsWebAppSlotLogsHttpLogsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property azureBlobStorage A `azure_blob_storage_http` block as defined above.
* @property fileSystem A `file_system` block as defined above.
*/
public data class WindowsWebAppSlotLogsHttpLogsArgs(
public val azureBlobStorage: Output? = null,
public val fileSystem: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.appservice.inputs.WindowsWebAppSlotLogsHttpLogsArgs =
com.pulumi.azure.appservice.inputs.WindowsWebAppSlotLogsHttpLogsArgs.builder()
.azureBlobStorage(azureBlobStorage?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.fileSystem(fileSystem?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [WindowsWebAppSlotLogsHttpLogsArgs].
*/
@PulumiTagMarker
public class WindowsWebAppSlotLogsHttpLogsArgsBuilder internal constructor() {
private var azureBlobStorage: Output? = null
private var fileSystem: Output? = null
/**
* @param value A `azure_blob_storage_http` block as defined above.
*/
@JvmName("nffjjkkrelywfqyg")
public suspend
fun azureBlobStorage(`value`: Output) {
this.azureBlobStorage = value
}
/**
* @param value A `file_system` block as defined above.
*/
@JvmName("himtrvrsokucnggv")
public suspend fun fileSystem(`value`: Output) {
this.fileSystem = value
}
/**
* @param value A `azure_blob_storage_http` block as defined above.
*/
@JvmName("pujldckabpjhryla")
public suspend fun azureBlobStorage(`value`: WindowsWebAppSlotLogsHttpLogsAzureBlobStorageArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.azureBlobStorage = mapped
}
/**
* @param argument A `azure_blob_storage_http` block as defined above.
*/
@JvmName("irinkpuavrydibcp")
public suspend
fun azureBlobStorage(argument: suspend WindowsWebAppSlotLogsHttpLogsAzureBlobStorageArgsBuilder.() -> Unit) {
val toBeMapped = WindowsWebAppSlotLogsHttpLogsAzureBlobStorageArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.azureBlobStorage = mapped
}
/**
* @param value A `file_system` block as defined above.
*/
@JvmName("wquiyrpnegwbrvix")
public suspend fun fileSystem(`value`: WindowsWebAppSlotLogsHttpLogsFileSystemArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.fileSystem = mapped
}
/**
* @param argument A `file_system` block as defined above.
*/
@JvmName("qcdhbowwppuhbdlx")
public suspend
fun fileSystem(argument: suspend WindowsWebAppSlotLogsHttpLogsFileSystemArgsBuilder.() -> Unit) {
val toBeMapped = WindowsWebAppSlotLogsHttpLogsFileSystemArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.fileSystem = mapped
}
internal fun build(): WindowsWebAppSlotLogsHttpLogsArgs = WindowsWebAppSlotLogsHttpLogsArgs(
azureBlobStorage = azureBlobStorage,
fileSystem = fileSystem,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy