All URIs are relative to http://localhost:5000/api/v1
Method | HTTP request | Description |
---|---|---|
namespaces_namespace_datasets_get | GET /namespaces/{namespace}/datasets | List all datasets |
Datasets namespaces_namespace_datasets_get(namespace)
List all datasets
Returns a list of datasets.
from __future__ import print_function
import time
import marquez_codegen_client
from marquez_codegen_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = marquez_codegen_client.DatasetsApi()
namespace = wework # str | The name of the namespace. (default to 'wework')
try:
# List all datasets
api_response = api_instance.namespaces_namespace_datasets_get(namespace)
pprint(api_response)
except ApiException as e:
print("Exception when calling DatasetsApi->namespaces_namespace_datasets_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
namespace | str | The name of the namespace. | [default to 'wework'] |
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]