pub struct JavaScriptUDF {
pub code: Option<String>,
pub function_name: Option<String>,
}Expand description
User-defined JavaScript function that can transform or filter a Pub/Sub message.
This type is not used in any activity, and only used as part of another schema.
Fields§
§code: Option<String>Required. JavaScript code that contains a function function_name with the below signature: /** * Transforms a Pub/Sub message. * @return {(Object)>|null)} - To * filter a message, return `null`. To transform a message return a map * with the following keys: * - (required) 'data' : {string} * - (optional) 'attributes' : {Object} * Returning empty `attributes` will remove all attributes from the * message. * * @param {(Object)>} Pub/Sub * message. Keys: * - (required) 'data' : {string} * - (required) 'attributes' : {Object} * * @param {Object} metadata - Pub/Sub message metadata. * Keys: * - (optional) 'message_id' : {string} * - (optional) 'publish_time': {string} YYYY-MM-DDTHH:MM:SSZ format * - (optional) 'ordering_key': {string} */ function (message, metadata) { }
function_name: Option<String>Required. Name of the JavasScript function that should applied to Pub/Sub messages.
Trait Implementations§
Source§impl Clone for JavaScriptUDF
impl Clone for JavaScriptUDF
Source§fn clone(&self) -> JavaScriptUDF
fn clone(&self) -> JavaScriptUDF
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more