Endpoints

class verta.endpoint.Endpoints(conn, conf, workspace_name)

Collection object for finding endpoints.

Examples

from verta import Client

client = Client()
# delete all endpoints in a given workspace
for endpoint in client.endpoints.with_workspace("Demos"):
    endpoint.delete()
with_workspace(workspace)

Returns endpoints in the specified workspace.

Parameters:

workspace (str, optional) – Workspace name. If not provided, uses personal workspace.

Returns:

Endpoints – Filtered endpoints.