Skip to content

Latest commit

 

History

History
68 lines (42 loc) · 1.57 KB

AliveApi.md

File metadata and controls

68 lines (42 loc) · 1.57 KB

hyperstack.AliveApi

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()

GET: Alive

Example

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)

Parameters

This endpoint does not need any parameter.

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
200 Success -

[Back to top] [Back to API list] [Back to Model list] [Back to README]