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

com.pulumi.azure.containerservice.kotlin.outputs.KubernetesClusterIngressApplicationGatewayIngressApplicationGatewayIdentity.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.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