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

com.pulumi.azure.datafactory.kotlin.inputs.IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs.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.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.datafactory.kotlin.inputs

import com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 *
 * @property linkedServiceName
 * @property parameters A map of parameters to associate with the Key Vault Data Factory Linked Service.
 * @property secretName Specifies the secret name in Azure Key Vault.
 * @property secretVersion Specifies the secret version in Azure Key Vault.
 */
public data class IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs(
    public val linkedServiceName: Output,
    public val parameters: Output>? = null,
    public val secretName: Output,
    public val secretVersion: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs =
        com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs.builder()
            .linkedServiceName(linkedServiceName.applyValue({ args0 -> args0 }))
            .parameters(
                parameters?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.key.to(args0.value)
                    }).toMap()
                }),
            )
            .secretName(secretName.applyValue({ args0 -> args0 }))
            .secretVersion(secretVersion?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs].
 */
@PulumiTagMarker
public class IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgsBuilder internal constructor() {
    private var linkedServiceName: Output? = null

    private var parameters: Output>? = null

    private var secretName: Output? = null

    private var secretVersion: Output? = null

    /**
     * @param value
     */
    @JvmName("kdtomdowtvpfgvak")
    public suspend fun linkedServiceName(`value`: Output) {
        this.linkedServiceName = value
    }

    /**
     * @param value A map of parameters to associate with the Key Vault Data Factory Linked Service.
     */
    @JvmName("iatjpavkpegchvwa")
    public suspend fun parameters(`value`: Output>) {
        this.parameters = value
    }

    /**
     * @param value Specifies the secret name in Azure Key Vault.
     */
    @JvmName("gmgwemnommedghmd")
    public suspend fun secretName(`value`: Output) {
        this.secretName = value
    }

    /**
     * @param value Specifies the secret version in Azure Key Vault.
     */
    @JvmName("arxcxdvpwibttaie")
    public suspend fun secretVersion(`value`: Output) {
        this.secretVersion = value
    }

    /**
     * @param value
     */
    @JvmName("qxabcwhoswpyujgt")
    public suspend fun linkedServiceName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.linkedServiceName = mapped
    }

    /**
     * @param value A map of parameters to associate with the Key Vault Data Factory Linked Service.
     */
    @JvmName("qfvbpnhsqbsuelnh")
    public suspend fun parameters(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.parameters = mapped
    }

    /**
     * @param values A map of parameters to associate with the Key Vault Data Factory Linked Service.
     */
    @JvmName("cxtxtdtrwalrlcwr")
    public fun parameters(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.parameters = mapped
    }

    /**
     * @param value Specifies the secret name in Azure Key Vault.
     */
    @JvmName("cjqxvxndfaolwhvx")
    public suspend fun secretName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.secretName = mapped
    }

    /**
     * @param value Specifies the secret version in Azure Key Vault.
     */
    @JvmName("gapwdbesmeiragqt")
    public suspend fun secretVersion(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.secretVersion = mapped
    }

    internal fun build(): IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs =
        IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs(
            linkedServiceName = linkedServiceName ?: throw PulumiNullFieldException("linkedServiceName"),
            parameters = parameters,
            secretName = secretName ?: throw PulumiNullFieldException("secretName"),
            secretVersion = secretVersion,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy