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

com.pulumi.azure.nginx.kotlin.outputs.GetConfigurationResult.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.nginx.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * A collection of values returned by getConfiguration.
 * @property configFiles A `config_file` block as defined below.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property nginxDeploymentId
 * @property packageData The package data for this configuration.
 * @property protectedFiles
 * @property rootFile The root file path of this Nginx Configuration.
 */
public data class GetConfigurationResult(
    public val configFiles: List,
    public val id: String,
    public val nginxDeploymentId: String,
    public val packageData: String,
    public val protectedFiles: List,
    public val rootFile: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.nginx.outputs.GetConfigurationResult): GetConfigurationResult = GetConfigurationResult(
            configFiles = javaType.configFiles().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.nginx.kotlin.outputs.GetConfigurationConfigFile.Companion.toKotlin(args0)
                })
            }),
            id = javaType.id(),
            nginxDeploymentId = javaType.nginxDeploymentId(),
            packageData = javaType.packageData(),
            protectedFiles = javaType.protectedFiles().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.nginx.kotlin.outputs.GetConfigurationProtectedFile.Companion.toKotlin(args0)
                })
            }),
            rootFile = javaType.rootFile(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy