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

com.pulumi.azure.datafactory.kotlin.outputs.IntegrationRuntimeSsisExpressCustomSetupCommandKey.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 keyVaultPassword A `key_vault_secret_reference` block as defined below.
 * @property password The password for the target device.
 * @property targetName The target computer or domain name.
 * @property userName The username for the target device.
 */
public data class IntegrationRuntimeSsisExpressCustomSetupCommandKey(
    public val keyVaultPassword: IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPassword? =
        null,
    public val password: String? = null,
    public val targetName: String,
    public val userName: String,
) {
    public companion object {
        public
        fun toKotlin(javaType: com.pulumi.azure.datafactory.outputs.IntegrationRuntimeSsisExpressCustomSetupCommandKey):
            IntegrationRuntimeSsisExpressCustomSetupCommandKey =
            IntegrationRuntimeSsisExpressCustomSetupCommandKey(
                keyVaultPassword = javaType.keyVaultPassword().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.azure.datafactory.kotlin.outputs.IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPassword.Companion.toKotlin(args0)
                    })
                }).orElse(null),
                password = javaType.password().map({ args0 -> args0 }).orElse(null),
                targetName = javaType.targetName(),
                userName = javaType.userName(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy