Obtains the details of the JAR or Python file that corresponds to the user-defined function (UDF) that you upload and create.
Try it now
Test
RAM authorization
|
Action |
Access level |
Resource type |
Condition key |
Dependent action |
|
stream:GetUdfArtifacts |
get |
*All Resource
|
None | None |
Request syntax
GET /api/v2/namespaces/{namespace}/udfartifacts HTTP/1.1
Path Parameters
|
Parameter |
Type |
Required |
Description |
Example |
| namespace |
string |
Yes |
The name of the namespace. |
default-namespace |
Request parameters
|
Parameter |
Type |
Required |
Description |
Example |
| workspace |
string |
Yes |
The workspace ID. |
710d6a64d8c34d |
| udfArtifactName |
string |
No |
The name of the JAR or Python file that corresponds to the UDF. |
test-udf |
Response elements
|
Element |
Type |
Description |
Example |
|
object |
The response parameters. |
||
| requestId |
string |
The request ID. |
CBC799F0-AS7S-1D30-8A4F-882ED4DD**** |
| success |
boolean |
Indicates whether the request was successful. |
true |
| httpCode |
integer |
The status code returned. The value was fixed to 200. The status code 200 indicates that the request was successful. |
200 |
| errorCode |
string |
|
"" |
| errorMessage |
string |
|
"" |
| data |
array |
If the value of success was true, the details of the JAR or Python file that corresponds to the UDF were returned. If the value of success was false, a null value was returned. |
|
| UdfArtifact |
The details of JAR or Python file. |
Examples
Success response
JSON format
{
"requestId": "CBC799F0-AS7S-1D30-8A4F-882ED4DD****",
"success": true,
"httpCode": 200,
"errorCode": "\"\"",
"errorMessage": "\"\"",
"data": [
{
"namespace": "default-namespace\n",
"creator": "userA",
"createdAt": 1723532876,
"modifiedAt": 1723537876,
"name": "udfCollection.jar\n",
"jarUrl": "oss://bucket/udfCollection.jar\n",
"dependencyJarUris": [
"oss://bucket/addition/add.jar\n"
],
"artifactType": "ARTIFACT_TYPE_JAVA",
"udfClasses": [
{
"udfArtifactName": "udfCollection.jar",
"className": "myfunctionTest",
"classType": "UDF_TYPE_TABLE_AGGREGATE",
"functionNames": [
"myfunction"
]
}
]
}
]
}
Error codes
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.