
com.pulumi.azure.containerservice.kotlin.inputs.KubernetesClusterOmsAgentOmsAgentIdentityArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.containerservice.kotlin.inputs
import com.pulumi.azure.containerservice.inputs.KubernetesClusterOmsAgentOmsAgentIdentityArgs.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 KubernetesClusterOmsAgentOmsAgentIdentityArgs(
public val clientId: Output? = null,
public val objectId: Output? = null,
public val userAssignedIdentityId: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.containerservice.inputs.KubernetesClusterOmsAgentOmsAgentIdentityArgs =
com.pulumi.azure.containerservice.inputs.KubernetesClusterOmsAgentOmsAgentIdentityArgs.builder()
.clientId(clientId?.applyValue({ args0 -> args0 }))
.objectId(objectId?.applyValue({ args0 -> args0 }))
.userAssignedIdentityId(userAssignedIdentityId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [KubernetesClusterOmsAgentOmsAgentIdentityArgs].
*/
@PulumiTagMarker
public class KubernetesClusterOmsAgentOmsAgentIdentityArgsBuilder 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("polaanqfykfwcsrk")
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("jtxvhwcyphuukcdp")
public suspend fun objectId(`value`: Output) {
this.objectId = value
}
/**
* @param value The ID of the User Assigned Identity used for Web App Routing.
*/
@JvmName("mynrbpbsfjimnrby")
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("rwrrsloihmghlcle")
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("pcgcodgumfayywgn")
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("uqswweweeybuwcer")
public suspend fun userAssignedIdentityId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.userAssignedIdentityId = mapped
}
internal fun build(): KubernetesClusterOmsAgentOmsAgentIdentityArgs =
KubernetesClusterOmsAgentOmsAgentIdentityArgs(
clientId = clientId,
objectId = objectId,
userAssignedIdentityId = userAssignedIdentityId,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy