You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Coming from #3620, include metadata about encryption in the Kafka buffer message
message BufferedData {
/* The format of the message as it was written.
*/
MessageFormat message_format = 1;
/* The actual data. This is encrypted if key_id is present. Otherwise, it
* is unencrypted data.
*/
bytes data = 2;
/* Indicates if data is encrypted or not.
*/
optional boolean encrypted = 3;
/* The data key which encrypted the data field. This will be encrypted.
* The consuming Data Prepper node must have the ability to decrypt this key.
*/
optional bytes encrypted_data_key = 4;
}
The text was updated successfully, but these errors were encountered:
Coming from #3620, include metadata about encryption in the Kafka buffer message
The text was updated successfully, but these errors were encountered: