com.pulumi.azure.containerservice.kotlin.inputs.KubernetesClusterIngressApplicationGatewayIngressApplicationGatewayIdentityArgs.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.inputs
import com.pulumi.azure.containerservice.inputs.KubernetesClusterIngressApplicationGatewayIngressApplicationGatewayIdentityArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @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 KubernetesClusterIngressApplicationGatewayIngressApplicationGatewayIdentityArgs(
public val clientId: Output? = null,
public val objectId: Output? = null,
public val userAssignedIdentityId: Output? = null,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.containerservice.inputs.KubernetesClusterIngressApplicationGatewayIngressApplicationGatewayIdentityArgs =
com.pulumi.azure.containerservice.inputs.KubernetesClusterIngressApplicationGatewayIngressApplicationGatewayIdentityArgs.builder()
.clientId(clientId?.applyValue({ args0 -> args0 }))
.objectId(objectId?.applyValue({ args0 -> args0 }))
.userAssignedIdentityId(userAssignedIdentityId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [KubernetesClusterIngressApplicationGatewayIngressApplicationGatewayIdentityArgs].
*/
@PulumiTagMarker
public class KubernetesClusterIngressApplicationGatewayIngressApplicationGatewayIdentityArgsBuilder
internal constructor() {
private var clientId: Output? = null
private var objectId: Output? = null
private var userAssignedIdentityId: Output? = null
/**
* @param value The Client ID of the user-defined Managed Identity used for Web App Routing.
*/
@JvmName("mcvhgysrhhraqvqs")
public suspend fun clientId(`value`: Output) {
this.clientId = value
}
/**
* @param value The Object ID of the user-defined Managed Identity used for Web App Routing
*/
@JvmName("fjuytlmrufkexwhc")
public suspend fun objectId(`value`: Output) {
this.objectId = value
}
/**
* @param value The ID of the User Assigned Identity used for Web App Routing.
*/
@JvmName("jmqggwlrkfemqhxb")
public suspend fun userAssignedIdentityId(`value`: Output) {
this.userAssignedIdentityId = value
}
/**
* @param value The Client ID of the user-defined Managed Identity used for Web App Routing.
*/
@JvmName("gpvfhvfatuquyucn")
public suspend fun clientId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.clientId = mapped
}
/**
* @param value The Object ID of the user-defined Managed Identity used for Web App Routing
*/
@JvmName("dqhlkcynratmcmtw")
public suspend fun objectId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.objectId = mapped
}
/**
* @param value The ID of the User Assigned Identity used for Web App Routing.
*/
@JvmName("doralqhukpyycllh")
public suspend fun userAssignedIdentityId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.userAssignedIdentityId = mapped
}
internal fun build():
KubernetesClusterIngressApplicationGatewayIngressApplicationGatewayIdentityArgs =
KubernetesClusterIngressApplicationGatewayIngressApplicationGatewayIdentityArgs(
clientId = clientId,
objectId = objectId,
userAssignedIdentityId = userAssignedIdentityId,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy