com.pulumi.azure.containerservice.kotlin.outputs.KubernetesClusterServiceMeshProfile.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
/**
*
* @property externalIngressGatewayEnabled Is Istio External Ingress Gateway enabled?
* > **Note:** This requires that the Preview Feature `Microsoft.ContainerService/AzureServiceMeshPreview` is enabled and the Resource Provider is re-registered, see [the documentation](https://learn.microsoft.com/en-us/azure/aks/istio-deploy-addon#register-the-azureservicemeshpreview-feature-flag) for more information.
* > **NOTE:** Currently only one Internal Ingress Gateway and one External Ingress Gateway are allowed per cluster
* @property internalIngressGatewayEnabled Is Istio Internal Ingress Gateway enabled?
* @property mode The mode of the service mesh. Possible value is `Istio`.
*/
public data class KubernetesClusterServiceMeshProfile(
public val externalIngressGatewayEnabled: Boolean? = null,
public val internalIngressGatewayEnabled: Boolean? = null,
public val mode: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.KubernetesClusterServiceMeshProfile):
KubernetesClusterServiceMeshProfile = KubernetesClusterServiceMeshProfile(
externalIngressGatewayEnabled = javaType.externalIngressGatewayEnabled().map({ args0 ->
args0
}).orElse(null),
internalIngressGatewayEnabled = javaType.internalIngressGatewayEnabled().map({ args0 ->
args0
}).orElse(null),
mode = javaType.mode(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy