List Registered Models.
list_registered_models.RdList registered models. You can list registered models under a particular schema, or list all registered models in the current metastore.
Usage
list_registered_models(
client,
catalog_name = NULL,
include_browse = NULL,
max_results = NULL,
page_token = NULL,
schema_name = NULL
)
registeredModelsList(
client,
catalog_name = NULL,
include_browse = NULL,
max_results = NULL,
page_token = NULL,
schema_name = NULL
)Arguments
- client
Required. Instance of DatabricksClient()
- catalog_name
The identifier of the catalog under which to list registered models.
- include_browse
Whether to include registered models in the response for which the principal can only access selective metadata for.
- max_results
Max number of registered models to return.
- page_token
Opaque token to send for the next page of results (pagination).
- schema_name
The identifier of the schema under which to list registered models.
Details
The returned models are filtered based on the privileges of the calling user. For example, the metastore admin is able to list all the registered models. A regular user needs to be the owner or have the EXECUTE privilege on the registered model to recieve the registered models in the response. For the latter case, the caller must also be the owner or have the USE_CATALOG privilege on the parent catalog and the USE_SCHEMA privilege on the parent schema.
There is no guarantee of a specific ordering of the elements in the response.