Updates the file information about a function.
Debugging
Request parameters
Parameter | Type | Required | Example | Description |
---|---|---|---|---|
Action | String | Yes | UpdateUdfFile |
The operation that you want to perform. |
ClassName | String | Yes | com.alibaba.DataWorks.api.udf.StringConcat |
The name of the class in which the function is defined. This parameter corresponds to the Class Name parameter in the Register Function section of the configuration tab of the function in the DataWorks console. |
FileId | String | Yes | 10000001 |
The ID of the file. |
FunctionType | String | Yes | STRING |
The type of the function. Valid values: MATH, AGGREGATE, STRING, DATE, ANALYTIC, and OTHER. This parameter corresponds to the Function Type parameter in the Register Function section of the configuration tab of the function in the DataWorks console. |
RegionId | String | Yes | cn-zhangjaikou |
The region ID. |
Resources | String | Yes | string-concat-1.0.0.jar,commons-lang-2.6.jar |
The names of the resources that are referenced by the function. This parameter corresponds to the Resources parameter in the Register Function section of the configuration tab of the function in the DataWorks console. Separate multiple resource names with commas (,). |
FileFolderPath | String | No | Workflow/1/Function/String function |
The path of the folder in which the function file is stored. |
ProjectId | Long | No | 10000 |
The ID of the DataWorks workspace. You can click the Workspace Manage icon in the upper-right corner of the DataStudio page to go to the Workspace Management page and view the workspace ID. |
UdfDescription | String | No | New string that is generated after multiple strings are concatenated |
The description of the function. This parameter corresponds to the Description parameter in the Register Function section of the configuration tab of the function in the DataWorks console. |
CmdDescription | String | No | StringConcat(String... substrs) |
The syntax used for calling the function. This parameter corresponds to the Expression Syntax parameter in the Register Function section of the configuration tab of the function in the DataWorks console. |
ParameterDescription | String | No | Strings to be concatenated |
The description of the input parameters of the function. This parameter corresponds to the Parameter Description parameter in the Register Function section of the configuration tab of the function in the DataWorks console. |
ReturnValue | String | No | New string that is generated after all strings are concatenated in sequence |
The description of the return value of the function. This parameter corresponds to the Return Value parameter in the Register Function section of the configuration tab of the function in the DataWorks console. |
Example | String | No | StringConcat('a', 'b', 'c') |
The example for calling the function. This parameter corresponds to the Example parameter in the Register Function section of the configuration tab of the function in the DataWorks console. |
ProjectIdentifier | String | No | dw_project |
The unique identifier of the DataWorks workspace. You can click the identifier in the upper-left corner of the DataStudio page to switch to another workspace. You must specify either this parameter or ProjectId to determine the DataWorks workspace to which the operation is applied. |
Response parameters
Parameter | Type | Example | Description |
---|---|---|---|
ErrorCode | String | Invalid.Tenant.ConnectionNotExists |
The error code returned. |
ErrorMessage | String | The connection does not exist. |
The error message returned. |
HttpStatusCode | Integer | 200 |
The HTTP status code returned. |
RequestId | String | 0000-ABCD-EFG**** |
The ID of the request. You can troubleshoot issues based on the ID. |
Success | Boolean | true |
Indicates whether the request is successful. |
Examples
Sample requests
http(s)://[Endpoint]/?Action=UpdateUdfFile
&ClassName=com.alibaba.dataworks.api.udf.StringConcat
&FileFolderPath=Workflow/1/Function/String function
&FileId=10000001
&FunctionType=STRING
&ProjectId=10000
&RegionId=cn-zhangjaikou
&Resources=string-concat-1.0.0.jar,commons-lang-2.6.jar
&UdfDescription=New string that is generated after multiple strings are concatenated
&<Common request parameters>
Sample success responses
XML
format
<RequestId>0000-ABCD-EFG****</RequestId>
<HttpStatusCode>200</HttpStatusCode>
<Success>true</Success>
JSON
format
{
"RequestId": "0000-ABCD-EFG****",
"HttpStatusCode": 200,
"Success": true
}
Error codes
HttpCode | Error code | Error message | Description |
---|---|---|---|
500 | InternalError.System | An internal system error occurred. Try again later. | The error message returned because an internal error has occurred. Try again later. |
500 | InternalError.UserId.Missing | An internal system error occurred. Try again later. | The error message returned because an internal error has occurred. Try again later. |
429 | Throttling.Api | The request for this resource has exceeded your available limit. | The error message returned because the number of requests for the resource has exceeded the upper limit. |
429 | Throttling.System | The DataWorks system is busy. Try again later. | The error message returned because the DataWorks system is busy. Try again later. |
429 | Throttling.User | Your request is too frequent. Try again later. | The error message returned because excessive requests have been submitted within a short period of time. Try again later. |
403 | Forbidden.Access | Access is forbidden. Please first activate DataWorks Enterprise Edition or Flagship Edition. | The error message returned because you are not allowed to perform this operation. Activate DataWorks Enterprise Edition or DataWorks Ultimate Edition. |
For a list of error codes, visit the API Error Center.