![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.servicebus.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.servicebus.kotlin.inputs
import com.pulumi.azurenative.servicebus.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 com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* Properties to configure keyVault Properties
* @property identity
* @property keyName Name of the Key from KeyVault
* @property keyVaultUri Uri of KeyVault
* @property keyVersion Version of KeyVault
*/
public data class KeyVaultPropertiesArgs(
public val identity: Output? = null,
public val keyName: Output? = null,
public val keyVaultUri: Output? = null,
public val keyVersion: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.servicebus.inputs.KeyVaultPropertiesArgs =
com.pulumi.azurenative.servicebus.inputs.KeyVaultPropertiesArgs.builder()
.identity(identity?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.keyName(keyName?.applyValue({ args0 -> args0 }))
.keyVaultUri(keyVaultUri?.applyValue({ args0 -> args0 }))
.keyVersion(keyVersion?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [KeyVaultPropertiesArgs].
*/
@PulumiTagMarker
public class KeyVaultPropertiesArgsBuilder internal constructor() {
private var identity: Output? = null
private var keyName: Output? = null
private var keyVaultUri: Output? = null
private var keyVersion: Output? = null
/**
* @param value
*/
@JvmName("bamyedqrgebbrfow")
public suspend fun identity(`value`: Output) {
this.identity = value
}
/**
* @param value Name of the Key from KeyVault
*/
@JvmName("wuwyvstdbibgwkwr")
public suspend fun keyName(`value`: Output) {
this.keyName = value
}
/**
* @param value Uri of KeyVault
*/
@JvmName("ykqxbiaevvthphim")
public suspend fun keyVaultUri(`value`: Output) {
this.keyVaultUri = value
}
/**
* @param value Version of KeyVault
*/
@JvmName("aqhcjahlltdbdlen")
public suspend fun keyVersion(`value`: Output) {
this.keyVersion = value
}
/**
* @param value
*/
@JvmName("qhlqdamqmoaqgdog")
public suspend fun identity(`value`: UserAssignedIdentityPropertiesArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.identity = mapped
}
/**
* @param argument
*/
@JvmName("uuvspgaojkyywpvf")
public suspend fun identity(argument: suspend UserAssignedIdentityPropertiesArgsBuilder.() -> Unit) {
val toBeMapped = UserAssignedIdentityPropertiesArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.identity = mapped
}
/**
* @param value Name of the Key from KeyVault
*/
@JvmName("hjjhqxwmvciytilg")
public suspend fun keyName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.keyName = mapped
}
/**
* @param value Uri of KeyVault
*/
@JvmName("csrcqnnqkuomuuor")
public suspend fun keyVaultUri(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.keyVaultUri = mapped
}
/**
* @param value Version of KeyVault
*/
@JvmName("mwnyiqrprjlkntqm")
public suspend fun keyVersion(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.keyVersion = mapped
}
internal fun build(): KeyVaultPropertiesArgs = KeyVaultPropertiesArgs(
identity = identity,
keyName = keyName,
keyVaultUri = keyVaultUri,
keyVersion = keyVersion,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy