List Functions and Files | Teradata Vantage - List Functions and Files - Teradata Vantage

Machine Learning Engine User Guide

Product
Teradata Vantage
Release Number
9.02
9.2.4
9.2.3
2.3.2
1.3
Published
May 2022
Language
English (United States)
Last Update
2022-05-04
dita:mapPath
kaz1597341649653.ditamap
dita:ditavalPath
ehs1594682156756.ditaval
dita:id
B700-4004
lifecycle
previous
Product Category
Teradata Vantageā„¢

You can list the functions and files in your private schema or in the public schema. All the files you own will be returned.

REST API

GET https://<CLUSTER_DOMAIN>/mlengine/udfmanager/api/v1/udfs

Example Request

curl \
  -H "Authorization: Bearer <JWT token>" \
  -X GET \
  -d '{"schema"="alice"} (OR) '{"schema"="public"}' \
  "https://<CLUSTER_DOMAIN>/mlengine/udfmanager/api/v1/udfs"

Example Response

HTTP/1.1 200 OK
Content-Type: "application/json"
{
 [
  {
  name:<name1>,
  user:<user>,
  schema:<schema>,
  descriptor:true or false,
  version:<version>,
  id:<functionID>,
  },
 ]
}