![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.avs.kotlin.inputs.EncryptionKeyVaultPropertiesArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.avs.kotlin.inputs
import com.pulumi.azurenative.avs.inputs.EncryptionKeyVaultPropertiesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* An Encryption Key
* @property keyName The name of the key.
* @property keyVaultUrl The URL of the vault.
* @property keyVersion The version of the key.
*/
public data class EncryptionKeyVaultPropertiesArgs(
public val keyName: Output? = null,
public val keyVaultUrl: Output? = null,
public val keyVersion: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.avs.inputs.EncryptionKeyVaultPropertiesArgs =
com.pulumi.azurenative.avs.inputs.EncryptionKeyVaultPropertiesArgs.builder()
.keyName(keyName?.applyValue({ args0 -> args0 }))
.keyVaultUrl(keyVaultUrl?.applyValue({ args0 -> args0 }))
.keyVersion(keyVersion?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [EncryptionKeyVaultPropertiesArgs].
*/
@PulumiTagMarker
public class EncryptionKeyVaultPropertiesArgsBuilder internal constructor() {
private var keyName: Output? = null
private var keyVaultUrl: Output? = null
private var keyVersion: Output? = null
/**
* @param value The name of the key.
*/
@JvmName("kcbwokaooisdvoio")
public suspend fun keyName(`value`: Output) {
this.keyName = value
}
/**
* @param value The URL of the vault.
*/
@JvmName("lndtomxjmitlsgxk")
public suspend fun keyVaultUrl(`value`: Output) {
this.keyVaultUrl = value
}
/**
* @param value The version of the key.
*/
@JvmName("wneuswxukcsretgp")
public suspend fun keyVersion(`value`: Output) {
this.keyVersion = value
}
/**
* @param value The name of the key.
*/
@JvmName("slbrjsnghvhffspi")
public suspend fun keyName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.keyName = mapped
}
/**
* @param value The URL of the vault.
*/
@JvmName("qmuamfowcktsrfey")
public suspend fun keyVaultUrl(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.keyVaultUrl = mapped
}
/**
* @param value The version of the key.
*/
@JvmName("jveopfcwirtctgqt")
public suspend fun keyVersion(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.keyVersion = mapped
}
internal fun build(): EncryptionKeyVaultPropertiesArgs = EncryptionKeyVaultPropertiesArgs(
keyName = keyName,
keyVaultUrl = keyVaultUrl,
keyVersion = keyVersion,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy