Services
RPC methods exposed by this API.UserDefinedFunctionService
Messages
Data models used across requests/responses.CheckUpdatableFieldsRequest
CheckUpdatableFieldsResponse
CheckUpdatableFieldsResponse.DisallowedFieldsEntry
CreateUserDefinedFunctionRequest
CreateUserDefinedFunctionResponse
GetUserDefinedFunctionDependentsRequest
The request for a call toUserDefinedFunctionService_GetUserDefinedFunctionDependents to retrieve versions of user defined functions.
GetUserDefinedFunctionDependentsResponse
GetUserDefinedFunctionRequest
The request for a call toUserDefinedFunctionService_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.
GetUserDefinedFunctionResponse
GetUserDefinedFunctionVersionRequest
The request for a call toUserDefinedFunctionService_GetUserDefinedFunctionVersion to retrieve a specific version of a user defined function.
GetUserDefinedFunctionVersionResponse
GetUserDefinedFunctionVersionsRequest
The request for a call toUserDefinedFunctionService_GetUserDefinedFunctionVersions to retrieve versions of user defined functions.
GetUserDefinedFunctionVersionsResponse
ListUserDefinedFunctionVersionsRequest
The request for a call toUserDefinedFunctionService_ListUserDefinedFunctionVersions to retrieve versions of user defined function.
If user_defined_function_id is provided then name is ignored.
ListUserDefinedFunctionVersionsResponse
The response of a call toUserDefinedFunctionService_ListUserDefinedFunctionVersions.
ListUserDefinedFunctionsRequest
The request for a call toUserDefinedFunctionService_ListUserDefinedFunctions to retrieve lateset versions of user defined functions.
ListUserDefinedFunctionsResponse
The response of a call toUserDefinedFunctionService_ListUserDefinedFunctions.
UpdateUserDefinedFunctionRequest
The request for a call toUserDefinedFunctionService_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. If name is changed then only name will be changed. If archive date is changed then only archive date will be changed.
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. Alternatively, use is_archived with a boolean value to archive/unarchive.