Get Encrypted Value Plain Args
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.
Properties
Link copied to clipboard
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
The plain-text value which should be Encrypted into encrypted_data
.