com.pulumi.azure.datafactory.kotlin.outputs.IntegrationRuntimeSsisExpressCustomSetupComponent.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 keyVaultLicense A `key_vault_secret_reference` block as defined below.
* @property license The license used for the Component.
* @property name The Component Name installed for the Azure-SSIS Integration Runtime.
*/
public data class IntegrationRuntimeSsisExpressCustomSetupComponent(
public val keyVaultLicense: IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense? =
null,
public val license: String? = null,
public val name: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.datafactory.outputs.IntegrationRuntimeSsisExpressCustomSetupComponent):
IntegrationRuntimeSsisExpressCustomSetupComponent =
IntegrationRuntimeSsisExpressCustomSetupComponent(
keyVaultLicense = javaType.keyVaultLicense().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.datafactory.kotlin.outputs.IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense.Companion.toKotlin(args0)
})
}).orElse(null),
license = javaType.license().map({ args0 -> args0 }).orElse(null),
name = javaType.name(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy