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

com.pulumi.azure.datafactory.kotlin.inputs.IntegrationRuntimeSsisCustomSetupScriptArgs.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.inputs

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

/**
 *
 * @property blobContainerUri The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See [https://docs.microsoft.com/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup](https://docs.microsoft.com/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup) for more information.
 * @property sasToken A container SAS token that gives access to the files. See [https://docs.microsoft.com/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup](https://docs.microsoft.com/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup) for more information.
 */
public data class IntegrationRuntimeSsisCustomSetupScriptArgs(
    public val blobContainerUri: Output,
    public val sasToken: Output,
) :
    ConvertibleToJava {
    override fun toJava():
        com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisCustomSetupScriptArgs =
        com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisCustomSetupScriptArgs.builder()
            .blobContainerUri(blobContainerUri.applyValue({ args0 -> args0 }))
            .sasToken(sasToken.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [IntegrationRuntimeSsisCustomSetupScriptArgs].
 */
@PulumiTagMarker
public class IntegrationRuntimeSsisCustomSetupScriptArgsBuilder internal constructor() {
    private var blobContainerUri: Output? = null

    private var sasToken: Output? = null

    /**
     * @param value The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See [https://docs.microsoft.com/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup](https://docs.microsoft.com/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup) for more information.
     */
    @JvmName("wgcypxffpxhecctm")
    public suspend fun blobContainerUri(`value`: Output) {
        this.blobContainerUri = value
    }

    /**
     * @param value A container SAS token that gives access to the files. See [https://docs.microsoft.com/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup](https://docs.microsoft.com/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup) for more information.
     */
    @JvmName("nnfymxkaksgbhkex")
    public suspend fun sasToken(`value`: Output) {
        this.sasToken = value
    }

    /**
     * @param value The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See [https://docs.microsoft.com/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup](https://docs.microsoft.com/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup) for more information.
     */
    @JvmName("uudqbiwbdoneewwo")
    public suspend fun blobContainerUri(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.blobContainerUri = mapped
    }

    /**
     * @param value A container SAS token that gives access to the files. See [https://docs.microsoft.com/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup](https://docs.microsoft.com/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup) for more information.
     */
    @JvmName("mpmoijhylicvjbef")
    public suspend fun sasToken(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.sasToken = mapped
    }

    internal fun build(): IntegrationRuntimeSsisCustomSetupScriptArgs =
        IntegrationRuntimeSsisCustomSetupScriptArgs(
            blobContainerUri = blobContainerUri ?: throw PulumiNullFieldException("blobContainerUri"),
            sasToken = sasToken ?: throw PulumiNullFieldException("sasToken"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy