GetEncryptedValuePlainArgs

data class GetEncryptedValuePlainArgs(val algorithm: String, val encryptedData: String? = null, val keyVaultKeyId: String, val plainTextValue: String? = null) : ConvertibleToJava<GetEncryptedValuePlainArgs>

A collection of arguments for invoking getEncryptedValue.

Constructors

Link copied to clipboard
constructor(algorithm: String, encryptedData: String? = null, keyVaultKeyId: String, plainTextValue: String? = null)

Properties

Link copied to clipboard

The Algorithm which should be used to Decrypt/Encrypt this Value. Possible values are RSA1_5, RSA-OAEP and RSA-OAEP-256.

Link copied to clipboard
val encryptedData: String? = null

The Base64 URL Encoded Encrypted Data which should be decrypted into plain_text_value.

Link copied to clipboard

The ID of the Key Vault Key which should be used to Decrypt/Encrypt this Value.

Link copied to clipboard
val plainTextValue: String? = null

The plain-text value which should be Encrypted into encrypted_data.

Functions

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