![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.datafactory.kotlin.inputs.IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgs.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.inputs
import com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @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 IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgs(
public val keyVaultPassword: Output? = null,
public val password: Output? = null,
public val targetName: Output,
public val userName: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgs =
com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgs.builder()
.keyVaultPassword(keyVaultPassword?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.password(password?.applyValue({ args0 -> args0 }))
.targetName(targetName.applyValue({ args0 -> args0 }))
.userName(userName.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgs].
*/
@PulumiTagMarker
public class IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgsBuilder internal constructor() {
private var keyVaultPassword:
Output? = null
private var password: Output? = null
private var targetName: Output? = null
private var userName: Output? = null
/**
* @param value A `key_vault_secret_reference` block as defined below.
*/
@JvmName("dsobifafskrfkefc")
public suspend fun keyVaultPassword(`value`: Output) {
this.keyVaultPassword = value
}
/**
* @param value The password for the target device.
*/
@JvmName("iewyvqpunidvwdfc")
public suspend fun password(`value`: Output) {
this.password = value
}
/**
* @param value The target computer or domain name.
*/
@JvmName("yxrnywmbjjayhxiq")
public suspend fun targetName(`value`: Output) {
this.targetName = value
}
/**
* @param value The username for the target device.
*/
@JvmName("imbscvdoqueimdfj")
public suspend fun userName(`value`: Output) {
this.userName = value
}
/**
* @param value A `key_vault_secret_reference` block as defined below.
*/
@JvmName("nsjwvpmnthkjbihk")
public suspend fun keyVaultPassword(`value`: IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPasswordArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.keyVaultPassword = mapped
}
/**
* @param argument A `key_vault_secret_reference` block as defined below.
*/
@JvmName("oplvurryxbaaxnjt")
public suspend fun keyVaultPassword(argument: suspend IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPasswordArgsBuilder.() -> Unit) {
val toBeMapped =
IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPasswordArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.keyVaultPassword = mapped
}
/**
* @param value The password for the target device.
*/
@JvmName("uqtgvtqqnkfnhbbt")
public suspend fun password(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.password = mapped
}
/**
* @param value The target computer or domain name.
*/
@JvmName("jqjrkvtsdkxjhajn")
public suspend fun targetName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.targetName = mapped
}
/**
* @param value The username for the target device.
*/
@JvmName("kjldnspkjbggcpbs")
public suspend fun userName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.userName = mapped
}
internal fun build(): IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgs =
IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgs(
keyVaultPassword = keyVaultPassword,
password = password,
targetName = targetName ?: throw PulumiNullFieldException("targetName"),
userName = userName ?: throw PulumiNullFieldException("userName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy