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

com.pulumi.azure.datafactory.kotlin.inputs.IntegrationRuntimeSsisExpressCustomSetupComponentArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

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

import com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisExpressCustomSetupComponentArgs.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 com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 *
 * @property keyVaultLicense A `key_vault_secret_reference` block as defined below.
 * @property license The license used for the Component.
 * @property name The Component Name installed for the Azure-SSIS Integration Runtime.
 */
public data class IntegrationRuntimeSsisExpressCustomSetupComponentArgs(
    public val keyVaultLicense:
    Output? = null,
    public val license: Output? = null,
    public val name: Output,
) :
    ConvertibleToJava {
    override fun toJava():
        com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisExpressCustomSetupComponentArgs =
        com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisExpressCustomSetupComponentArgs.builder()
            .keyVaultLicense(keyVaultLicense?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .license(license?.applyValue({ args0 -> args0 }))
            .name(name.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [IntegrationRuntimeSsisExpressCustomSetupComponentArgs].
 */
@PulumiTagMarker
public class IntegrationRuntimeSsisExpressCustomSetupComponentArgsBuilder internal constructor() {
    private var keyVaultLicense:
        Output? = null

    private var license: Output? = null

    private var name: Output? = null

    /**
     * @param value A `key_vault_secret_reference` block as defined below.
     */
    @JvmName("sqgqmmlkrrmkarbx")
    public suspend
    fun keyVaultLicense(`value`: Output) {
        this.keyVaultLicense = value
    }

    /**
     * @param value The license used for the Component.
     */
    @JvmName("bbwirgshxgedbmon")
    public suspend fun license(`value`: Output) {
        this.license = value
    }

    /**
     * @param value The Component Name installed for the Azure-SSIS Integration Runtime.
     */
    @JvmName("itbkdohykjmlexcb")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value A `key_vault_secret_reference` block as defined below.
     */
    @JvmName("asqyauvmbtuylobv")
    public suspend
    fun keyVaultLicense(`value`: IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.keyVaultLicense = mapped
    }

    /**
     * @param argument A `key_vault_secret_reference` block as defined below.
     */
    @JvmName("csvlsnhgpldflslq")
    public suspend
    fun keyVaultLicense(argument: suspend IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgsBuilder.() -> Unit) {
        val toBeMapped =
            IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgsBuilder().applySuspend {
                argument()
            }.build()
        val mapped = of(toBeMapped)
        this.keyVaultLicense = mapped
    }

    /**
     * @param value The license used for the Component.
     */
    @JvmName("gbhimxcrrkxhgrfu")
    public suspend fun license(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.license = mapped
    }

    /**
     * @param value The Component Name installed for the Azure-SSIS Integration Runtime.
     */
    @JvmName("nplaqkceyfnfelmc")
    public suspend fun name(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.name = mapped
    }

    internal fun build(): IntegrationRuntimeSsisExpressCustomSetupComponentArgs =
        IntegrationRuntimeSsisExpressCustomSetupComponentArgs(
            keyVaultLicense = keyVaultLicense,
            license = license,
            name = name ?: throw PulumiNullFieldException("name"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy