List functions.
list_functions.Rd
List functions within the specified parent catalog and schema. If the user is a metastore admin, all functions are returned in the output list. Otherwise, the user must have the USE_CATALOG privilege on the catalog and the USE_SCHEMA privilege on the schema, and the output list contains only functions for which either the user has the EXECUTE privilege or the user is the owner. There is no guarantee of a specific ordering of the elements in the array.
Usage
list_functions(
client,
catalog_name,
schema_name,
include_browse = NULL,
max_results = NULL,
page_token = NULL
)
functionsList(
client,
catalog_name,
schema_name,
include_browse = NULL,
max_results = NULL,
page_token = NULL
)
Arguments
- client
Required. Instance of DatabricksClient()
- catalog_name
Required. Name of parent catalog for functions of interest.
- schema_name
Required. Parent schema of functions.
- include_browse
Whether to include functions in the response for which the principal can only access selective metadata for.
- max_results
Maximum number of functions to return.
- page_token
Opaque pagination token to go to next page based on previous query.