
com.pulumi.azure.containerservice.kotlin.outputs.GetKubernetesClusterServiceMeshProfile.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.containerservice.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @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 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(
externalIngressGatewayEnabled = javaType.externalIngressGatewayEnabled(),
internalIngressGatewayEnabled = javaType.internalIngressGatewayEnabled(),
mode = javaType.mode(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy