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

com.pulumi.azure.appservice.kotlin.outputs.AppServiceLogsHttpLogs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.appservice.kotlin.outputs

import kotlin.Suppress

/**
 *
 * @property azureBlobStorage An `azure_blob_storage` block as defined below.
 * @property fileSystem A `file_system` block as defined below.
 */
public data class AppServiceLogsHttpLogs(
    public val azureBlobStorage: AppServiceLogsHttpLogsAzureBlobStorage? = null,
    public val fileSystem: AppServiceLogsHttpLogsFileSystem? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.AppServiceLogsHttpLogs): AppServiceLogsHttpLogs = AppServiceLogsHttpLogs(
            azureBlobStorage = javaType.azureBlobStorage().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.appservice.kotlin.outputs.AppServiceLogsHttpLogsAzureBlobStorage.Companion.toKotlin(args0)
                })
            }).orElse(null),
            fileSystem = javaType.fileSystem().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.appservice.kotlin.outputs.AppServiceLogsHttpLogsFileSystem.Companion.toKotlin(args0)
                })
            }).orElse(null),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy