Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.48 KB

File metadata and controls

51 lines (34 loc) · 1.48 KB

swagger_client.DescriptionAPIApi

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)

get_description

ServiceDescription get_description()

Returns the self-describing information of a network resource (ServiceDescription)

Example

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)

Parameters

This endpoint does not need any parameter.

Return type

ServiceDescription

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

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