All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.datafactory.kotlin.CredentialUserManagedIdentity.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.datafactory.kotlin

import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List

/**
 * Builder for [CredentialUserManagedIdentity].
 */
@PulumiTagMarker
public class CredentialUserManagedIdentityResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: CredentialUserManagedIdentityArgs = CredentialUserManagedIdentityArgs()

    public var opts: CustomResourceOptions = CustomResourceOptions()

    /**
     * @param name The _unique_ name of the resulting resource.
     */
    public fun name(`value`: String) {
        this.name = value
    }

    /**
     * @param block The arguments to use to populate this resource's properties.
     */
    public suspend fun args(block: suspend CredentialUserManagedIdentityArgsBuilder.() -> Unit) {
        val builder = CredentialUserManagedIdentityArgsBuilder()
        block(builder)
        this.args = builder.build()
    }

    /**
     * @param block A bag of options that control this resource's behavior.
     */
    public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
        this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
    }

    internal fun build(): CredentialUserManagedIdentity {
        val builtJavaResource =
            com.pulumi.azure.datafactory.CredentialUserManagedIdentity(
                this.name,
                this.args.toJava(),
                this.opts.toJava(),
            )
        return CredentialUserManagedIdentity(builtJavaResource)
    }
}

public class CredentialUserManagedIdentity internal constructor(
    override val javaResource: com.pulumi.azure.datafactory.CredentialUserManagedIdentity,
) : KotlinCustomResource(javaResource, CredentialUserManagedIdentityMapper) {
    /**
     * (Optional) List of string annotations.
     */
    public val annotations: Output>?
        get() = javaResource.annotations().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0
                })
            }).orElse(null)
        })

    /**
     * The resource ID of the parent Data Factory
     */
    public val dataFactoryId: Output
        get() = javaResource.dataFactoryId().applyValue({ args0 -> args0 })

    /**
     * (Optional) Short text description
     */
    public val description: Output?
        get() = javaResource.description().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * The resource ID of the User Assigned Managed Identity
     */
    public val identityId: Output
        get() = javaResource.identityId().applyValue({ args0 -> args0 })

    /**
     * The desired name of the credential resource
     */
    public val name: Output
        get() = javaResource.name().applyValue({ args0 -> args0 })
}

public object CredentialUserManagedIdentityMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.azure.datafactory.CredentialUserManagedIdentity::class == javaResource::class

    override fun map(javaResource: Resource): CredentialUserManagedIdentity =
        CredentialUserManagedIdentity(
            javaResource as
                com.pulumi.azure.datafactory.CredentialUserManagedIdentity,
        )
}

/**
 * @see [CredentialUserManagedIdentity].
 * @param name The _unique_ name of the resulting resource.
 * @param block Builder for [CredentialUserManagedIdentity].
 */
public suspend fun credentialUserManagedIdentity(
    name: String,
    block: suspend CredentialUserManagedIdentityResourceBuilder.() -> Unit,
):
    CredentialUserManagedIdentity {
    val builder = CredentialUserManagedIdentityResourceBuilder()
    builder.name(name)
    block(builder)
    return builder.build()
}

/**
 * @see [CredentialUserManagedIdentity].
 * @param name The _unique_ name of the resulting resource.
 */
public fun credentialUserManagedIdentity(name: String): CredentialUserManagedIdentity {
    val builder = CredentialUserManagedIdentityResourceBuilder()
    builder.name(name)
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy