All URIs are relative to http://localhost
Method | HTTP request | Description |
---|---|---|
get_data_source_drivers | GET /api/v1/options/availableDrivers | Get all available data source drivers |
{str: (str,)} get_data_source_drivers()
Get all available data source drivers
Retrieves a list of all supported data sources along with information about the used drivers.
import time
import gooddata_api_client
from gooddata_api_client.api import available_drivers_api
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = gooddata_api_client.Configuration(
host = "http://localhost"
)
# Enter a context with an instance of the API client
with gooddata_api_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = available_drivers_api.AvailableDriversApi(api_client)
# example, this endpoint has no required or optional parameters
try:
# Get all available data source drivers
api_response = api_instance.get_data_source_drivers()
pprint(api_response)
except gooddata_api_client.ApiException as e:
print("Exception when calling AvailableDriversApi->get_data_source_drivers: %s\n" % e)
This endpoint does not need any parameter.
{str: (str,)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | A list of all available data source drivers. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]