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

com.pulumi.azure.containerservice.kotlin.outputs.KubernetesClusterWebAppRouting.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.containerservice.kotlin.outputs

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

/**
 *
 * @property dnsZoneId
 * @property dnsZoneIds Specifies the list of the DNS Zone IDs in which DNS entries are created for applications deployed to the cluster when Web App Routing is enabled. If not using Bring-Your-Own DNS zones this property should be set to an empty list.
 * @property webAppRoutingIdentities A `web_app_routing_identity` block is exported. The exported attributes are defined below.
 */
public data class KubernetesClusterWebAppRouting(
    @Deprecated(
        message = """
  `dns_zone_id` has been deprecated in favor of `dns_zone_ids` and will be removed in v4.0 of the
      AzureRM Provider.
  """,
    )
    public val dnsZoneId: String? = null,
    public val dnsZoneIds: List? = null,
    public val webAppRoutingIdentities: List? =
        null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.KubernetesClusterWebAppRouting): KubernetesClusterWebAppRouting = KubernetesClusterWebAppRouting(
            dnsZoneId = javaType.dnsZoneId().map({ args0 -> args0 }).orElse(null),
            dnsZoneIds = javaType.dnsZoneIds().map({ args0 -> args0 }),
            webAppRoutingIdentities = javaType.webAppRoutingIdentities().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.containerservice.kotlin.outputs.KubernetesClusterWebAppRoutingWebAppRoutingIdentity.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy