com.pulumi.azure.containerservice.kotlin.outputs.KubernetesClusterIngressApplicationGatewayIngressApplicationGatewayIdentity.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.String
import kotlin.Suppress
/**
*
* @property clientId The Client ID of the user-defined Managed Identity used for Web App Routing.
* @property objectId The Object ID of the user-defined Managed Identity used for Web App Routing
* @property userAssignedIdentityId The ID of the User Assigned Identity used for Web App Routing.
*/
public data class KubernetesClusterIngressApplicationGatewayIngressApplicationGatewayIdentity(
public val clientId: String? = null,
public val objectId: String? = null,
public val userAssignedIdentityId: String? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.KubernetesClusterIngressApplicationGatewayIngressApplicationGatewayIdentity):
KubernetesClusterIngressApplicationGatewayIngressApplicationGatewayIdentity =
KubernetesClusterIngressApplicationGatewayIngressApplicationGatewayIdentity(
clientId = javaType.clientId().map({ args0 -> args0 }).orElse(null),
objectId = javaType.objectId().map({ args0 -> args0 }).orElse(null),
userAssignedIdentityId = javaType.userAssignedIdentityId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy