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

com.pulumi.azure.appservice.kotlin.outputs.GetLinuxWebAppLog.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.outputs

import kotlin.Boolean
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property applicationLogs A `application_logs` block as defined above.
 * @property detailedErrorMessages Is Detailed Error Messaging enabled.
 * @property failedRequestTracing Is Failed Request Tracing enabled.
 * @property httpLogs An `http_logs` block as defined above.
 */
public data class GetLinuxWebAppLog(
    public val applicationLogs: List,
    public val detailedErrorMessages: Boolean,
    public val failedRequestTracing: Boolean,
    public val httpLogs: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.GetLinuxWebAppLog): GetLinuxWebAppLog = GetLinuxWebAppLog(
            applicationLogs = javaType.applicationLogs().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.appservice.kotlin.outputs.GetLinuxWebAppLogApplicationLog.Companion.toKotlin(args0)
                })
            }),
            detailedErrorMessages = javaType.detailedErrorMessages(),
            failedRequestTracing = javaType.failedRequestTracing(),
            httpLogs = javaType.httpLogs().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.appservice.kotlin.outputs.GetLinuxWebAppLogHttpLog.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy