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

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

package com.pulumi.azure.appservice.kotlin.inputs

import com.pulumi.azure.appservice.inputs.LinuxWebAppSlotLogsHttpLogsArgs.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 LinuxWebAppSlotLogsHttpLogsArgs(
    public val azureBlobStorage: Output? = null,
    public val fileSystem: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.appservice.inputs.LinuxWebAppSlotLogsHttpLogsArgs =
        com.pulumi.azure.appservice.inputs.LinuxWebAppSlotLogsHttpLogsArgs.builder()
            .azureBlobStorage(azureBlobStorage?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .fileSystem(fileSystem?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}

/**
 * Builder for [LinuxWebAppSlotLogsHttpLogsArgs].
 */
@PulumiTagMarker
public class LinuxWebAppSlotLogsHttpLogsArgsBuilder internal constructor() {
    private var azureBlobStorage: Output? = null

    private var fileSystem: Output? = null

    /**
     * @param value A `azure_blob_storage_http` block as defined above.
     */
    @JvmName("jjqognqtlylxjovo")
    public suspend fun azureBlobStorage(`value`: Output) {
        this.azureBlobStorage = value
    }

    /**
     * @param value A `file_system` block as defined above.
     */
    @JvmName("lmaiptoplyqtyexr")
    public suspend fun fileSystem(`value`: Output) {
        this.fileSystem = value
    }

    /**
     * @param value A `azure_blob_storage_http` block as defined above.
     */
    @JvmName("dakwjokqfankfyry")
    public suspend fun azureBlobStorage(`value`: LinuxWebAppSlotLogsHttpLogsAzureBlobStorageArgs?) {
        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("ilbliyavxbmigvcj")
    public suspend fun azureBlobStorage(argument: suspend LinuxWebAppSlotLogsHttpLogsAzureBlobStorageArgsBuilder.() -> Unit) {
        val toBeMapped = LinuxWebAppSlotLogsHttpLogsAzureBlobStorageArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.azureBlobStorage = mapped
    }

    /**
     * @param value A `file_system` block as defined above.
     */
    @JvmName("htcjdkihscdxpfep")
    public suspend fun fileSystem(`value`: LinuxWebAppSlotLogsHttpLogsFileSystemArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.fileSystem = mapped
    }

    /**
     * @param argument A `file_system` block as defined above.
     */
    @JvmName("ytjjfebbvkomjaqp")
    public suspend fun fileSystem(argument: suspend LinuxWebAppSlotLogsHttpLogsFileSystemArgsBuilder.() -> Unit) {
        val toBeMapped = LinuxWebAppSlotLogsHttpLogsFileSystemArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.fileSystem = mapped
    }

    internal fun build(): LinuxWebAppSlotLogsHttpLogsArgs = LinuxWebAppSlotLogsHttpLogsArgs(
        azureBlobStorage = azureBlobStorage,
        fileSystem = fileSystem,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy