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

com.pulumi.azure.datafactory.kotlin.outputs.IntegrationRuntimeManagedCustomSetupScript.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.15.0.0
Show newest version
@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