All URIs are relative to https://localhost
Method | HTTP request | Description |
---|---|---|
create_all_tables | POST /internal/db-admin/create-all-tables | |
delete_all_data | DELETE /internal/db-admin/truncate-all-tables | |
delete_all_tables | DELETE /internal/db-admin/drop-all-tables | |
execute_query | GET /internal/db-admin/execute-query | |
generate_html_email | GET /internal/email/html | |
get_package_info | GET /internal/package-info | |
get_tables | GET /internal/db-admin/tables | |
notify | POST /internal/notify | |
ping | GET /internal/ping | |
post | POST /internal/http-detector | |
trigger_webhook | POST /internal/trigger/webhook | |
webhook_dummy | POST /internal/webhook | |
worker_id | GET /internal/worker/id |
create_all_tables()
from __future__ import print_function
import time
import thirdeye_client
from thirdeye_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: oauth
configuration = thirdeye_client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = thirdeye_client.ZzzInternalZzzApi(thirdeye_client.ApiClient(configuration))
try:
api_instance.create_all_tables()
except ApiException as e:
print("Exception when calling ZzzInternalZzzApi->create_all_tables: %s\n" % e)
This endpoint does not need any parameter.
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
delete_all_data()
from __future__ import print_function
import time
import thirdeye_client
from thirdeye_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: oauth
configuration = thirdeye_client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = thirdeye_client.ZzzInternalZzzApi(thirdeye_client.ApiClient(configuration))
try:
api_instance.delete_all_data()
except ApiException as e:
print("Exception when calling ZzzInternalZzzApi->delete_all_data: %s\n" % e)
This endpoint does not need any parameter.
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
delete_all_tables()
from __future__ import print_function
import time
import thirdeye_client
from thirdeye_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: oauth
configuration = thirdeye_client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = thirdeye_client.ZzzInternalZzzApi(thirdeye_client.ApiClient(configuration))
try:
api_instance.delete_all_tables()
except ApiException as e:
print("Exception when calling ZzzInternalZzzApi->delete_all_tables: %s\n" % e)
This endpoint does not need any parameter.
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
execute_query(sql=sql)
from __future__ import print_function
import time
import thirdeye_client
from thirdeye_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: oauth
configuration = thirdeye_client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = thirdeye_client.ZzzInternalZzzApi(thirdeye_client.ApiClient(configuration))
sql = 'sql_example' # str | (optional)
try:
api_instance.execute_query(sql=sql)
except ApiException as e:
print("Exception when calling ZzzInternalZzzApi->execute_query: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
sql | str | [optional] |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
generate_html_email(subscription_group_id=subscription_group_id, reset=reset)
from __future__ import print_function
import time
import thirdeye_client
from thirdeye_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: oauth
configuration = thirdeye_client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = thirdeye_client.ZzzInternalZzzApi(thirdeye_client.ApiClient(configuration))
subscription_group_id = 789 # int | (optional)
reset = true # bool | (optional)
try:
api_instance.generate_html_email(subscription_group_id=subscription_group_id, reset=reset)
except ApiException as e:
print("Exception when calling ZzzInternalZzzApi->generate_html_email: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
subscription_group_id | int | [optional] | |
reset | bool | [optional] |
void (empty response body)
- Content-Type: Not defined
- Accept: text/html, application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
get_package_info()
from __future__ import print_function
import time
import thirdeye_client
from thirdeye_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: oauth
configuration = thirdeye_client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = thirdeye_client.ZzzInternalZzzApi(thirdeye_client.ApiClient(configuration))
try:
api_instance.get_package_info()
except ApiException as e:
print("Exception when calling ZzzInternalZzzApi->get_package_info: %s\n" % e)
This endpoint does not need any parameter.
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
get_tables()
from __future__ import print_function
import time
import thirdeye_client
from thirdeye_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: oauth
configuration = thirdeye_client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = thirdeye_client.ZzzInternalZzzApi(thirdeye_client.ApiClient(configuration))
try:
api_instance.get_tables()
except ApiException as e:
print("Exception when calling ZzzInternalZzzApi->get_tables: %s\n" % e)
This endpoint does not need any parameter.
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
notify(subscription_group_id=subscription_group_id, reset=reset)
from __future__ import print_function
import time
import thirdeye_client
from thirdeye_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: oauth
configuration = thirdeye_client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = thirdeye_client.ZzzInternalZzzApi(thirdeye_client.ApiClient(configuration))
subscription_group_id = 789 # int | (optional)
reset = true # bool | (optional)
try:
api_instance.notify(subscription_group_id=subscription_group_id, reset=reset)
except ApiException as e:
print("Exception when calling ZzzInternalZzzApi->notify: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
subscription_group_id | int | [optional] | |
reset | bool | [optional] |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ping()
from __future__ import print_function
import time
import thirdeye_client
from thirdeye_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: oauth
configuration = thirdeye_client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = thirdeye_client.ZzzInternalZzzApi(thirdeye_client.ApiClient(configuration))
try:
api_instance.ping()
except ApiException as e:
print("Exception when calling ZzzInternalZzzApi->ping: %s\n" % e)
This endpoint does not need any parameter.
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
post(body=body)
from __future__ import print_function
import time
import thirdeye_client
from thirdeye_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = thirdeye_client.ZzzInternalZzzApi()
body = NULL # object | (optional)
try:
api_instance.post(body=body)
except ApiException as e:
print("Exception when calling ZzzInternalZzzApi->post: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | object | [optional] |
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
trigger_webhook()
from __future__ import print_function
import time
import thirdeye_client
from thirdeye_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: oauth
configuration = thirdeye_client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = thirdeye_client.ZzzInternalZzzApi(thirdeye_client.ApiClient(configuration))
try:
api_instance.trigger_webhook()
except ApiException as e:
print("Exception when calling ZzzInternalZzzApi->trigger_webhook: %s\n" % e)
This endpoint does not need any parameter.
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
webhook_dummy(body=body, x_signature=x_signature)
from __future__ import print_function
import time
import thirdeye_client
from thirdeye_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: oauth
configuration = thirdeye_client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = thirdeye_client.ZzzInternalZzzApi(thirdeye_client.ApiClient(configuration))
body = NULL # object | (optional)
x_signature = 'x_signature_example' # str | (optional)
try:
api_instance.webhook_dummy(body=body, x_signature=x_signature)
except ApiException as e:
print("Exception when calling ZzzInternalZzzApi->webhook_dummy: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | object | [optional] | |
x_signature | str | [optional] |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
worker_id()
from __future__ import print_function
import time
import thirdeye_client
from thirdeye_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: oauth
configuration = thirdeye_client.Configuration()
configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# create an instance of the API class
api_instance = thirdeye_client.ZzzInternalZzzApi(thirdeye_client.ApiClient(configuration))
try:
api_instance.worker_id()
except ApiException as e:
print("Exception when calling ZzzInternalZzzApi->worker_id: %s\n" % e)
This endpoint does not need any parameter.
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]