Skip to content

Latest commit

 

History

History
71 lines (46 loc) · 2.06 KB

AvailableDriversApi.md

File metadata and controls

71 lines (46 loc) · 2.06 KB

gooddata_api_client.AvailableDriversApi

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

get_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.

Example

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)

Parameters

This endpoint does not need any parameter.

Return type

{str: (str,)}

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

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]