com.pulumi.azure.compute.kotlin.inputs.RunCommandErrorBlobManagedIdentityArgs.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.compute.kotlin.inputs
import com.pulumi.azure.compute.inputs.RunCommandErrorBlobManagedIdentityArgs.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 managed identity.
* @property objectId The object ID of the managed identity.
*/
public data class RunCommandErrorBlobManagedIdentityArgs(
public val clientId: Output? = null,
public val objectId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.compute.inputs.RunCommandErrorBlobManagedIdentityArgs =
com.pulumi.azure.compute.inputs.RunCommandErrorBlobManagedIdentityArgs.builder()
.clientId(clientId?.applyValue({ args0 -> args0 }))
.objectId(objectId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [RunCommandErrorBlobManagedIdentityArgs].
*/
@PulumiTagMarker
public class RunCommandErrorBlobManagedIdentityArgsBuilder internal constructor() {
private var clientId: Output? = null
private var objectId: Output? = null
/**
* @param value The client ID of the managed identity.
*/
@JvmName("sjruuqbdoyblhpsf")
public suspend fun clientId(`value`: Output) {
this.clientId = value
}
/**
* @param value The object ID of the managed identity.
*/
@JvmName("ynbhurdipqxgwmwi")
public suspend fun objectId(`value`: Output) {
this.objectId = value
}
/**
* @param value The client ID of the managed identity.
*/
@JvmName("injshtfygjxipxvd")
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 managed identity.
*/
@JvmName("dgkklybxtsbyfhwe")
public suspend fun objectId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.objectId = mapped
}
internal fun build(): RunCommandErrorBlobManagedIdentityArgs =
RunCommandErrorBlobManagedIdentityArgs(
clientId = clientId,
objectId = objectId,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy