All URIs are relative to https://infrahub-api.nexgencloud.com/v1
Method | HTTP request | Description |
---|---|---|
get_alive | GET /billing/alive | GET: Alive |
get_alive()
GET: Alive
import hyperstack
from hyperstack.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://infrahub-api.nexgencloud.com/v1
# See configuration.py for a list of all supported configuration parameters.
configuration = hyperstack.Configuration(
host = "https://infrahub-api.nexgencloud.com/v1"
)
# Enter a context with an instance of the API client
with hyperstack.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = hyperstack.AliveApi(api_client)
try:
# GET: Alive
api_instance.get_alive()
except Exception as e:
print("Exception when calling AliveApi->get_alive: %s\n" % e)
This endpoint does not need any parameter.
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]