
com.pulumi.azure.datafactory.kotlin.outputs.IntegrationRuntimeSsisExpressCustomSetup.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.datafactory.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
*
* @property commandKeys One or more `command_key` blocks as defined below.
* @property components One or more `component` blocks as defined below.
* @property environment The Environment Variables for the Azure-SSIS Integration Runtime.
* @property powershellVersion The version of Azure Powershell installed for the Azure-SSIS Integration Runtime.
* > **NOTE** At least one of `env`, `powershell_version`, `component` and `command_key` should be specified.
*/
public data class IntegrationRuntimeSsisExpressCustomSetup(
public val commandKeys: List? = null,
public val components: List? = null,
public val environment: Map? = null,
public val powershellVersion: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.datafactory.outputs.IntegrationRuntimeSsisExpressCustomSetup): IntegrationRuntimeSsisExpressCustomSetup = IntegrationRuntimeSsisExpressCustomSetup(
commandKeys = javaType.commandKeys().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.datafactory.kotlin.outputs.IntegrationRuntimeSsisExpressCustomSetupCommandKey.Companion.toKotlin(args0)
})
}),
components = javaType.components().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.datafactory.kotlin.outputs.IntegrationRuntimeSsisExpressCustomSetupComponent.Companion.toKotlin(args0)
})
}),
environment = javaType.environment().map({ args0 -> args0.key.to(args0.value) }).toMap(),
powershellVersion = javaType.powershellVersion().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy