All URIs are relative to http://localhost
Method | HTTP request | Description |
---|---|---|
chrisinstance_retrieve | GET /api/v1/chrisinstance/{id}/ |
ChrisInstance chrisinstance_retrieve(id)
A compute resource view.
- Basic Authentication (basicAuth):
- Api Key Authentication (tokenAuth):
- Api Key Authentication (cookieAuth):
import aiochris_oag
from aiochris_oag.models.chris_instance import ChrisInstance
from aiochris_oag.rest import ApiException
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 = aiochris_oag.Configuration(
host = "http://localhost"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure HTTP basic authorization: basicAuth
configuration = aiochris_oag.Configuration(
username = os.environ["USERNAME"],
password = os.environ["PASSWORD"]
)
# Configure API key authorization: tokenAuth
configuration.api_key['tokenAuth'] = os.environ["API_KEY"]
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['tokenAuth'] = 'Bearer'
# Configure API key authorization: cookieAuth
configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['cookieAuth'] = 'Bearer'
# Enter a context with an instance of the API client
async with aiochris_oag.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = aiochris_oag.ChrisinstanceApi(api_client)
id = 56 # int |
try:
api_response = await api_instance.chrisinstance_retrieve(id)
print("The response of ChrisinstanceApi->chrisinstance_retrieve:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling ChrisinstanceApi->chrisinstance_retrieve: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
id | int |
basicAuth, tokenAuth, cookieAuth
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]