![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.kubernetesconfiguration.kotlin.inputs.ManagedIdentityDefinitionArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.kubernetesconfiguration.kotlin.inputs
import com.pulumi.azurenative.kubernetesconfiguration.inputs.ManagedIdentityDefinitionArgs.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
/**
* Parameters to authenticate using a Managed Identity.
* @property clientId The client Id for authenticating a Managed Identity.
*/
public data class ManagedIdentityDefinitionArgs(
public val clientId: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.kubernetesconfiguration.inputs.ManagedIdentityDefinitionArgs =
com.pulumi.azurenative.kubernetesconfiguration.inputs.ManagedIdentityDefinitionArgs.builder()
.clientId(clientId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ManagedIdentityDefinitionArgs].
*/
@PulumiTagMarker
public class ManagedIdentityDefinitionArgsBuilder internal constructor() {
private var clientId: Output? = null
/**
* @param value The client Id for authenticating a Managed Identity.
*/
@JvmName("jkgyewaleeargfrl")
public suspend fun clientId(`value`: Output) {
this.clientId = value
}
/**
* @param value The client Id for authenticating a Managed Identity.
*/
@JvmName("bymxrmrjxhtiarbg")
public suspend fun clientId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.clientId = mapped
}
internal fun build(): ManagedIdentityDefinitionArgs = ManagedIdentityDefinitionArgs(
clientId = clientId,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy