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

com.pulumi.azure.containerservice.kotlin.outputs.GetKubernetesClusterIngressApplicationGateway.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.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property effectiveGatewayId The ID of the Application Gateway associated with the ingress controller deployed to this Kubernetes Cluster.
 * @property gatewayId The ID of the Application Gateway integrated with the ingress controller of this Kubernetes Cluster. This attribute is only set when gateway_id is specified when configuring the `ingress_application_gateway` addon.
 * @property gatewayName
 * @property ingressApplicationGatewayIdentities An `ingress_application_gateway_identity` block as defined below.
 * @property subnetCidr The subnet CIDR used to create an Application Gateway, which in turn will be integrated with the ingress controller of this Kubernetes Cluster. This attribute is only set when `subnet_cidr` is specified when configuring the `ingress_application_gateway` addon.
 * @property subnetId The ID of the subnet on which to create an Application Gateway, which in turn will be integrated with the ingress controller of this Kubernetes Cluster. This attribute is only set when `subnet_id` is specified when configuring the `ingress_application_gateway` addon.
 */
public data class GetKubernetesClusterIngressApplicationGateway(
    public val effectiveGatewayId: String,
    public val gatewayId: String,
    public val gatewayName: String,
    public val ingressApplicationGatewayIdentities: List,
    public val subnetCidr: String,
    public val subnetId: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.GetKubernetesClusterIngressApplicationGateway): GetKubernetesClusterIngressApplicationGateway =
            GetKubernetesClusterIngressApplicationGateway(
                effectiveGatewayId = javaType.effectiveGatewayId(),
                gatewayId = javaType.gatewayId(),
                gatewayName = javaType.gatewayName(),
                ingressApplicationGatewayIdentities = javaType.ingressApplicationGatewayIdentities().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.azure.containerservice.kotlin.outputs.GetKubernetesClusterIngressApplicationGatewayIngressApplicationGatewayIdentity.Companion.toKotlin(args0)
                    })
                }),
                subnetCidr = javaType.subnetCidr(),
                subnetId = javaType.subnetId(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy