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