com.pulumi.azure.datafactory.kotlin.inputs.IntegrationRuntimeSsisCustomSetupScriptArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@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