
com.pulumi.azure.logicapps.kotlin.inputs.IntegrationAccountCertificateKeyVaultKeyArgs.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.logicapps.kotlin.inputs
import com.pulumi.azure.logicapps.inputs.IntegrationAccountCertificateKeyVaultKeyArgs.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 kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property keyName The name of Key Vault Key.
* @property keyVaultId The ID of the Key Vault.
* @property keyVersion The version of Key Vault Key.
*/
public data class IntegrationAccountCertificateKeyVaultKeyArgs(
public val keyName: Output,
public val keyVaultId: Output,
public val keyVersion: Output? = null,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.logicapps.inputs.IntegrationAccountCertificateKeyVaultKeyArgs =
com.pulumi.azure.logicapps.inputs.IntegrationAccountCertificateKeyVaultKeyArgs.builder()
.keyName(keyName.applyValue({ args0 -> args0 }))
.keyVaultId(keyVaultId.applyValue({ args0 -> args0 }))
.keyVersion(keyVersion?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [IntegrationAccountCertificateKeyVaultKeyArgs].
*/
@PulumiTagMarker
public class IntegrationAccountCertificateKeyVaultKeyArgsBuilder internal constructor() {
private var keyName: Output? = null
private var keyVaultId: Output? = null
private var keyVersion: Output? = null
/**
* @param value The name of Key Vault Key.
*/
@JvmName("jhjrnjwricqxrvbs")
public suspend fun keyName(`value`: Output) {
this.keyName = value
}
/**
* @param value The ID of the Key Vault.
*/
@JvmName("xmouralhbspqinie")
public suspend fun keyVaultId(`value`: Output) {
this.keyVaultId = value
}
/**
* @param value The version of Key Vault Key.
*/
@JvmName("onsonlevgylnlras")
public suspend fun keyVersion(`value`: Output) {
this.keyVersion = value
}
/**
* @param value The name of Key Vault Key.
*/
@JvmName("dvjbqkjjmjyifchl")
public suspend fun keyName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.keyName = mapped
}
/**
* @param value The ID of the Key Vault.
*/
@JvmName("uiabkkhyyjgycnjk")
public suspend fun keyVaultId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.keyVaultId = mapped
}
/**
* @param value The version of Key Vault Key.
*/
@JvmName("qychcymrmugmyhko")
public suspend fun keyVersion(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.keyVersion = mapped
}
internal fun build(): IntegrationAccountCertificateKeyVaultKeyArgs =
IntegrationAccountCertificateKeyVaultKeyArgs(
keyName = keyName ?: throw PulumiNullFieldException("keyName"),
keyVaultId = keyVaultId ?: throw PulumiNullFieldException("keyVaultId"),
keyVersion = keyVersion,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy