Show / Hide Table of Contents

Class JavaScriptUDF

User-defined JavaScript function that can transform or filter a Pub/Sub message.

Inheritance
object
JavaScriptUDF
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.AnalyticsHub.v1.Data
Assembly: Google.Apis.AnalyticsHub.v1.dll
Syntax
public class JavaScriptUDF : IDirectResponseSchema

Properties

Code

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: * - (required)
'message_id' : {string} * - (optional) 'publish_time': {string} YYYY-MM-DDTHH:MM:SSZ format * - (optional)
'ordering_key': {string} */ function (message, metadata) { }
Declaration
[JsonProperty("code")]
public virtual string Code { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

FunctionName

Required. Name of the JavasScript function that should applied to Pub/Sub messages.

Declaration
[JsonProperty("functionName")]
public virtual string FunctionName { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX