com.pulumi.azure.datafactory.kotlin.outputs.IntegrationRuntimeManagedCustomSetupScript.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.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @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 IntegrationRuntimeManagedCustomSetupScript(
public val blobContainerUri: String,
public val sasToken: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.datafactory.outputs.IntegrationRuntimeManagedCustomSetupScript):
IntegrationRuntimeManagedCustomSetupScript = IntegrationRuntimeManagedCustomSetupScript(
blobContainerUri = javaType.blobContainerUri(),
sasToken = javaType.sasToken(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy