AsymmetricEncryptedSecretArgs

data class AsymmetricEncryptedSecretArgs(val encryptionAlgorithm: Output<EncryptionAlgorithm>, val encryptionCertThumbprint: Output<String>? = null, val value: Output<String>) : ConvertibleToJava<AsymmetricEncryptedSecretArgs>

Represent the secrets intended for encryption with asymmetric key pair.

Constructors

Link copied to clipboard
constructor(encryptionAlgorithm: Output<EncryptionAlgorithm>, encryptionCertThumbprint: Output<String>? = null, value: Output<String>)

Properties

Link copied to clipboard

The algorithm used to encrypt "Value".

Link copied to clipboard
val encryptionCertThumbprint: Output<String>? = null

Thumbprint certificate that was used to encrypt "Value". If the value in unencrypted, it will be null.

Link copied to clipboard
val value: Output<String>

The value of the secret.

Functions

Link copied to clipboard
open override fun toJava(): AsymmetricEncryptedSecretArgs