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

@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
 * @property secretName
 * @property secretVersion
 */
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("lfbqfingkhheqbpm")
    public suspend fun linkedServiceName(`value`: Output) {
        this.linkedServiceName = value
    }

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

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

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

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

    /**
     * @param value
     */
    @JvmName("wprbdyyyvkxcpxoy")
    public suspend fun parameters(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.parameters = mapped
    }

    /**
     * @param values
     */
    @JvmName("ndbaaomkctkuqukg")
    public fun parameters(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.parameters = mapped
    }

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

    /**
     * @param value
     */
    @JvmName("itsuynyqkfjahjdt")
    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