![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.appconfiguration.kotlin.inputs.KeyVaultPropertiesArgs.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.appconfiguration.kotlin.inputs
import com.pulumi.azurenative.appconfiguration.inputs.KeyVaultPropertiesArgs.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
/**
* Settings concerning key vault encryption for a configuration store.
* @property identityClientId The client id of the identity which will be used to access key vault.
* @property keyIdentifier The URI of the key vault key used to encrypt data.
*/
public data class KeyVaultPropertiesArgs(
public val identityClientId: Output? = null,
public val keyIdentifier: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.appconfiguration.inputs.KeyVaultPropertiesArgs =
com.pulumi.azurenative.appconfiguration.inputs.KeyVaultPropertiesArgs.builder()
.identityClientId(identityClientId?.applyValue({ args0 -> args0 }))
.keyIdentifier(keyIdentifier?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [KeyVaultPropertiesArgs].
*/
@PulumiTagMarker
public class KeyVaultPropertiesArgsBuilder internal constructor() {
private var identityClientId: Output? = null
private var keyIdentifier: Output? = null
/**
* @param value The client id of the identity which will be used to access key vault.
*/
@JvmName("jgepkwukkipmuojb")
public suspend fun identityClientId(`value`: Output) {
this.identityClientId = value
}
/**
* @param value The URI of the key vault key used to encrypt data.
*/
@JvmName("lwryhrkqpmrcrfuu")
public suspend fun keyIdentifier(`value`: Output) {
this.keyIdentifier = value
}
/**
* @param value The client id of the identity which will be used to access key vault.
*/
@JvmName("qoxbrbsvjthjghjg")
public suspend fun identityClientId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.identityClientId = mapped
}
/**
* @param value The URI of the key vault key used to encrypt data.
*/
@JvmName("xhcncbiqjygajqet")
public suspend fun keyIdentifier(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.keyIdentifier = mapped
}
internal fun build(): KeyVaultPropertiesArgs = KeyVaultPropertiesArgs(
identityClientId = identityClientId,
keyIdentifier = keyIdentifier,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy