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

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

/**
 *
 * @property certificateAuthorities A `certificate_authority` block as documented below.
 * @property externalIngressGatewayEnabled Is Istio External Ingress Gateway enabled?
 * @property internalIngressGatewayEnabled Is Istio Internal Ingress Gateway enabled?
 * @property mode The mode of the service mesh.
 */
public data class GetKubernetesClusterServiceMeshProfile(
    public val certificateAuthorities: List,
    public val externalIngressGatewayEnabled: Boolean,
    public val internalIngressGatewayEnabled: Boolean,
    public val mode: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.GetKubernetesClusterServiceMeshProfile): GetKubernetesClusterServiceMeshProfile = GetKubernetesClusterServiceMeshProfile(
            certificateAuthorities = javaType.certificateAuthorities().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.containerservice.kotlin.outputs.GetKubernetesClusterServiceMeshProfileCertificateAuthority.Companion.toKotlin(args0)
                })
            }),
            externalIngressGatewayEnabled = javaType.externalIngressGatewayEnabled(),
            internalIngressGatewayEnabled = javaType.internalIngressGatewayEnabled(),
            mode = javaType.mode(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy