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

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

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

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

import com.pulumi.azure.datafactory.inputs.IntegrationRuntimeManagedCustomSetupScriptArgs.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 IntegrationRuntimeManagedCustomSetupScriptArgs(
    public val blobContainerUri: Output,
    public val sasToken: Output,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.datafactory.inputs.IntegrationRuntimeManagedCustomSetupScriptArgs =
        com.pulumi.azure.datafactory.inputs.IntegrationRuntimeManagedCustomSetupScriptArgs.builder()
            .blobContainerUri(blobContainerUri.applyValue({ args0 -> args0 }))
            .sasToken(sasToken.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [IntegrationRuntimeManagedCustomSetupScriptArgs].
 */
@PulumiTagMarker
public class IntegrationRuntimeManagedCustomSetupScriptArgsBuilder 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("jeypfkajblaawstw")
    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("dxjxweftichbtxtx")
    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("npfhlpkifuruxysg")
    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("vlvwfpobuqqstgct")
    public suspend fun sasToken(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.sasToken = mapped
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy