com.pulumi.azure.datafactory.kotlin.CredentialUserManagedIdentityArgs.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.datafactory.kotlin
import com.pulumi.azure.datafactory.CredentialUserManagedIdentityArgs.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.collections.List
import kotlin.jvm.JvmName
/**
*
* @property annotations (Optional) List of string annotations.
* @property dataFactoryId The resource ID of the parent Data Factory
* @property description (Optional) Short text description
* @property identityId The resource ID of the User Assigned Managed Identity
* @property name The desired name of the credential resource
*/
public data class CredentialUserManagedIdentityArgs(
public val annotations: Output>? = null,
public val dataFactoryId: Output? = null,
public val description: Output? = null,
public val identityId: Output? = null,
public val name: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.datafactory.CredentialUserManagedIdentityArgs =
com.pulumi.azure.datafactory.CredentialUserManagedIdentityArgs.builder()
.annotations(annotations?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.dataFactoryId(dataFactoryId?.applyValue({ args0 -> args0 }))
.description(description?.applyValue({ args0 -> args0 }))
.identityId(identityId?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [CredentialUserManagedIdentityArgs].
*/
@PulumiTagMarker
public class CredentialUserManagedIdentityArgsBuilder internal constructor() {
private var annotations: Output>? = null
private var dataFactoryId: Output? = null
private var description: Output? = null
private var identityId: Output? = null
private var name: Output? = null
/**
* @param value (Optional) List of string annotations.
*/
@JvmName("ttchwwadhanoonad")
public suspend fun annotations(`value`: Output>) {
this.annotations = value
}
@JvmName("vynbwmnlwchiruav")
public suspend fun annotations(vararg values: Output) {
this.annotations = Output.all(values.asList())
}
/**
* @param values (Optional) List of string annotations.
*/
@JvmName("spoampieymiwfwqp")
public suspend fun annotations(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy