
com.pulumi.azurenative.recoveryservices.kotlin.inputs.CmkKeyVaultPropertiesArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.recoveryservices.kotlin.inputs
import com.pulumi.azurenative.recoveryservices.inputs.CmkKeyVaultPropertiesArgs.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
/**
* The properties of the Key Vault which hosts CMK
* @property keyUri The key uri of the Customer Managed Key
*/
public data class CmkKeyVaultPropertiesArgs(
public val keyUri: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.recoveryservices.inputs.CmkKeyVaultPropertiesArgs =
com.pulumi.azurenative.recoveryservices.inputs.CmkKeyVaultPropertiesArgs.builder()
.keyUri(keyUri?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [CmkKeyVaultPropertiesArgs].
*/
@PulumiTagMarker
public class CmkKeyVaultPropertiesArgsBuilder internal constructor() {
private var keyUri: Output? = null
/**
* @param value The key uri of the Customer Managed Key
*/
@JvmName("swfljxegpprggmwd")
public suspend fun keyUri(`value`: Output) {
this.keyUri = value
}
/**
* @param value The key uri of the Customer Managed Key
*/
@JvmName("fxbbmhktcfskkbah")
public suspend fun keyUri(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.keyUri = mapped
}
internal fun build(): CmkKeyVaultPropertiesArgs = CmkKeyVaultPropertiesArgs(
keyUri = keyUri,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy