com.pulumi.azure.appservice.kotlin.inputs.AppServiceLogsHttpLogsArgs.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.AppServiceLogsHttpLogsArgs.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 An `azure_blob_storage` block as defined below.
* @property fileSystem A `file_system` block as defined below.
*/
public data class AppServiceLogsHttpLogsArgs(
public val azureBlobStorage: Output? = null,
public val fileSystem: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.appservice.inputs.AppServiceLogsHttpLogsArgs =
com.pulumi.azure.appservice.inputs.AppServiceLogsHttpLogsArgs.builder()
.azureBlobStorage(azureBlobStorage?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.fileSystem(fileSystem?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [AppServiceLogsHttpLogsArgs].
*/
@PulumiTagMarker
public class AppServiceLogsHttpLogsArgsBuilder internal constructor() {
private var azureBlobStorage: Output? = null
private var fileSystem: Output? = null
/**
* @param value An `azure_blob_storage` block as defined below.
*/
@JvmName("fuhajqvduoxvgfau")
public suspend fun azureBlobStorage(`value`: Output) {
this.azureBlobStorage = value
}
/**
* @param value A `file_system` block as defined below.
*/
@JvmName("txssvxqxlcbctypf")
public suspend fun fileSystem(`value`: Output) {
this.fileSystem = value
}
/**
* @param value An `azure_blob_storage` block as defined below.
*/
@JvmName("viapoooflioxxrye")
public suspend fun azureBlobStorage(`value`: AppServiceLogsHttpLogsAzureBlobStorageArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.azureBlobStorage = mapped
}
/**
* @param argument An `azure_blob_storage` block as defined below.
*/
@JvmName("bfioujkqbybasdfl")
public suspend
fun azureBlobStorage(argument: suspend AppServiceLogsHttpLogsAzureBlobStorageArgsBuilder.() -> Unit) {
val toBeMapped = AppServiceLogsHttpLogsAzureBlobStorageArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.azureBlobStorage = mapped
}
/**
* @param value A `file_system` block as defined below.
*/
@JvmName("rtwitrmxcefxnsnd")
public suspend fun fileSystem(`value`: AppServiceLogsHttpLogsFileSystemArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.fileSystem = mapped
}
/**
* @param argument A `file_system` block as defined below.
*/
@JvmName("sinhvqwpdbroldva")
public suspend
fun fileSystem(argument: suspend AppServiceLogsHttpLogsFileSystemArgsBuilder.() -> Unit) {
val toBeMapped = AppServiceLogsHttpLogsFileSystemArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.fileSystem = mapped
}
internal fun build(): AppServiceLogsHttpLogsArgs = AppServiceLogsHttpLogsArgs(
azureBlobStorage = azureBlobStorage,
fileSystem = fileSystem,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy