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

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