![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.containerservice.kotlin.outputs.GetKubernetesClusterServiceMeshProfile.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@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