All URIs are relative to {protocol}://{host_name}:{port}/api/{version_prefix}
| Method | HTTP request | Description |
|---|---|---|
| get_description | GET /description | Returns the self-describing information of a network resource (ServiceDescription) |
ServiceDescription get_description()
Returns the self-describing information of a network resource (ServiceDescription)
from __future__ import print_function
import time
import aas_python_http_client
from aas_python_http_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = aas_python_http_client.DescriptionAPIApi()
try:
# Returns the self-describing information of a network resource (ServiceDescription)
api_response = api_instance.get_description()
pprint(api_response)
except ApiException as e:
print("Exception when calling DescriptionAPIApi->get_description: %s\n" % e)This endpoint does not need any parameter.
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]