![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.powerplatform.kotlin.inputs.KeyPropertiesArgs.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.powerplatform.kotlin.inputs
import com.pulumi.azurenative.powerplatform.inputs.KeyPropertiesArgs.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
/**
* Url and version of the KeyVault Secret
* @property name The identifier of the key vault key used to encrypt data.
* @property version The version of the identity which will be used to access key vault.
*/
public data class KeyPropertiesArgs(
public val name: Output? = null,
public val version: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.powerplatform.inputs.KeyPropertiesArgs =
com.pulumi.azurenative.powerplatform.inputs.KeyPropertiesArgs.builder()
.name(name?.applyValue({ args0 -> args0 }))
.version(version?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [KeyPropertiesArgs].
*/
@PulumiTagMarker
public class KeyPropertiesArgsBuilder internal constructor() {
private var name: Output? = null
private var version: Output? = null
/**
* @param value The identifier of the key vault key used to encrypt data.
*/
@JvmName("bpykkiibupbvhygs")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The version of the identity which will be used to access key vault.
*/
@JvmName("rtuswvepuwabrgup")
public suspend fun version(`value`: Output) {
this.version = value
}
/**
* @param value The identifier of the key vault key used to encrypt data.
*/
@JvmName("yawxmfjlduljotqk")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The version of the identity which will be used to access key vault.
*/
@JvmName("hxkfruwvjtrxxdkr")
public suspend fun version(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.version = mapped
}
internal fun build(): KeyPropertiesArgs = KeyPropertiesArgs(
name = name,
version = version,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy