user_defined_functions

Protocol buffer definition for user_defined_functions

sift/user_defined_functions/v1/user_defined_functions.proto

CreateUserDefinedFunctionRequest

FieldTypeLabelDescription
namestring
descriptionstringoptional
expressionstring
function_inputsFunctionInputrepeated
user_notesstringoptional

CreateUserDefinedFunctionResponse

FieldTypeLabelDescription
user_defined_functionUserDefinedFunction

FunctionDependency

FieldTypeLabelDescription
user_defined_function_version_idstring

FunctionInput

FieldTypeLabelDescription
identifierstring
data_typeFunctionDataType

GetUserDefinedFunctionRequest

The request for a call to UserDefinedFunctionService_GetUserDefinedFunction to retrieve the latest version of a user defined function. If user_defined_function_id is provided then all other arguments will be ignored. The argument user_defined_function_id should not be used together with name.

FieldTypeLabelDescription
user_defined_function_idstring
namestring

GetUserDefinedFunctionResponse

FieldTypeLabelDescription
user_defined_functionUserDefinedFunction

GetUserDefinedFunctionVersionRequest

The request for a call to UserDefinedFunctionService_GetUserDefinedFunctionVersion to retrieve a specific version of a user defined function.

FieldTypeLabelDescription
user_defined_function_version_idstring

GetUserDefinedFunctionVersionResponse

FieldTypeLabelDescription
user_defined_functionUserDefinedFunction

GetUserDefinedFunctionVersionsRequest

The request for a call to UserDefinedFunctionService_GetUserDefinedFunctionVersions to retrieve versions of user defined functions.

FieldTypeLabelDescription
user_defined_function_version_idsstringrepeated

GetUserDefinedFunctionVersionsResponse

FieldTypeLabelDescription
user_defined_functionsUserDefinedFunctionrepeated

ListUserDefinedFunctionVersionsRequest

The request for a call to UserDefinedFunctionService_ListUserDefinedFunctionVersions to retrieve versions of user defined function. If user_defined_function_id is provided then name is ignored.

FieldTypeLabelDescription
user_defined_function_idstring
namestring
page_sizeuint32The maximum number of user defined function versions to return. The service may return fewer than this value. If unspecified, at most 50 user defined function versions will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000. Optional.
page_tokenstringA page token, received from a previous ListUserDefinedFunctions call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListUserDefinedFunctions must match the call that provided the page token. Optional.
filterstringA Common Expression Language (CEL) filter string. There are currently no available fields. For further information about how to use CELs, please refer to this guide.
order_bystringHow to order the retrieved user defined functions. Formatted as a comma-separated string i.e. "FIELD_NAME[ desc],...". Available fields to order_by are created_date, modified_date, name, and version. If left empty, items are ordered by name in ascending order (oldest-first). For more information about the format of this field, read this Example: "version desc,name".

ListUserDefinedFunctionVersionsResponse

The response of a call to UserDefinedFunctionService_ListUserDefinedFunctionVersions.

FieldTypeLabelDescription
user_defined_functionsUserDefinedFunctionrepeated
next_page_tokenstring

ListUserDefinedFunctionsRequest

The request for a call to UserDefinedFunctionService_ListUserDefinedFunctions to retrieve lateset versions of user defined functions.

FieldTypeLabelDescription
page_sizeuint32The maximum number of user defined functions to return. The service may return fewer than this value. If unspecified, at most 50 user defined functions will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000. Optional.
page_tokenstringA page token, received from a previous ListUserDefinedFunctions call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListUserDefinedFunctions must match the call that provided the page token. Optional.
filterstringA Common Expression Language (CEL) filter string. There are currently no available fields. For further information about how to use CELs, please refer to this guide.
order_bystringHow to order the retrieved user defined functions. Formatted as a comma-separated string i.e. "FIELD_NAME[ desc],...". Available fields to order_by are created_date, modified_date, and name. If left empty, items are ordered by name in ascending order (alphabetical). For more information about the format of this field, read this Example: "created_date desc,modified_date".

ListUserDefinedFunctionsResponse

The response of a call to UserDefinedFunctionService_ListUserDefinedFunctions.

FieldTypeLabelDescription
user_defined_functionsUserDefinedFunctionrepeated
next_page_tokenstring

UpdateUserDefinedFunctionRequest

The request for a call to UserDefinedFunctionService_UpdateUserDefinedFunction to update a user defined function. Updating a user defined function creates a new version of the user defined function, leaving the previous untouched. If no update is deemed necessary, then the the current version is returned. To archive user defined function, specify archived_date in the update mask as well as a non-null value for archived_date in the user_defined_function object. To unarchive a user defined function, specify archived_date in the update mask and a null value for archived_date in the user_defined_function object.

FieldTypeLabelDescription
user_defined_functionUserDefinedFunctionThe user defined function to update.
update_maskgoogle.protobuf.FieldMaskThe list of fields to be updated. The fields available to be updated are archived_date, description, expression, and function_inputs. -- function_inputs inputs can't be updated if the function has any dependents (functions or calculated channels with a dependency on this function). -- expression can't be updated if the function has dependents and the expression changes the output type.

UpdateUserDefinedFunctionResponse

FieldTypeLabelDescription
user_defined_functionUserDefinedFunction

UserDefinedFunction

FieldTypeLabelDescription
user_defined_function_idstring
namestring
archived_dategoogle.protobuf.Timestampoptional
user_defined_function_version_idstring
versionuint32
descriptionstring
change_messagestring
user_notesstring
expressionstring
function_inputsFunctionInputrepeated
function_output_typeFunctionDataType
function_dependenciesFunctionDependencyrepeated
created_dategoogle.protobuf.Timestamp
modified_dategoogle.protobuf.Timestamp
created_by_user_idstring
modified_by_user_idstring

ValidateUserDefinedFunctionRequest

FieldTypeLabelDescription
expressionstring
function_inputsFunctionInputrepeated

ValidateUserDefinedFunctionResponse

ValidateUserDefinedFunctionResponse.ErrorValidatingUserDefinedFunctionResult

FieldTypeLabelDescription
error_messagestring

ValidateUserDefinedFunctionResponse.SuccessValidatingUserDefinedFunctionResult

FieldTypeLabelDescription
user_defined_functionUserDefinedFunction

FunctionDataType

NameNumberDescription
FUNCTION_DATA_TYPE_UNSPECIFIED0
FUNCTION_DATA_TYPE_NUMERIC1
FUNCTION_DATA_TYPE_STRING2
FUNCTION_DATA_TYPE_BOOL3

UserDefinedFunctionService

Method NameRequest TypeResponse TypeDescription
GetUserDefinedFunctionGetUserDefinedFunctionRequestGetUserDefinedFunctionResponseRetrieve the latest version of a user defined function
GetUserDefinedFunctionVersionGetUserDefinedFunctionVersionRequestGetUserDefinedFunctionVersionResponseRetrieve a specific version of a user defined function
GetUserDefinedFunctionVersionsGetUserDefinedFunctionVersionsRequestGetUserDefinedFunctionVersionsResponseRetrieve versions of user defined functions
CreateUserDefinedFunctionCreateUserDefinedFunctionRequestCreateUserDefinedFunctionResponseCreate a user defined function.
ValidateUserDefinedFunctionValidateUserDefinedFunctionRequestValidateUserDefinedFunctionResponseValidate a potential user defined function
UpdateUserDefinedFunctionUpdateUserDefinedFunctionRequestUpdateUserDefinedFunctionResponseUpdate a user defined function.
ListUserDefinedFunctionsListUserDefinedFunctionsRequestListUserDefinedFunctionsResponseRetrieve the latest versions of user defined functions based on an optional filter.
ListUserDefinedFunctionVersionsListUserDefinedFunctionVersionsRequestListUserDefinedFunctionVersionsResponseList versions of a particular user defined functions with an optional filter.