All URIs are relative to /dataservice
Method | HTTP request | Description |
---|---|---|
acitvate_cloud_dock_cluster | POST /colocation/cluster/activate | |
attach_service_chain | POST /colocation/servicechain/attach | |
attach_service_chain1 | POST /colocation/servicechain/autoattach | |
cancel_button | POST /colocation/servicechain/cancel | |
cloud_dock_cluster_preview | GET /colocation/cluster/config | |
create_cloud_dock_cluster | POST /colocation/cluster | |
de_acitvate_cloud_dock_cluster | POST /colocation/cluster/deactivate | |
delete_cloud_dock_cluster_by_name | DELETE /colocation/cluster/{clustername} | |
detach_service_chain | PUT /colocation/servicechain/detach | |
dummyccm | GET /colocation/cluster/activateClusterDummy | |
dummycsp_state | GET /colocation/cluster/activateClusterDummyState | |
get_cloud_dock_cluster_detail | GET /colocation/cluster | |
get_cloud_dock_cluster_detail_by_id | GET /colocation/cluster/id | |
get_cluster_config_by_cluster_id | GET /colocation/monitor/cluster/config | |
get_cluster_details_by_cluster_id | GET /colocation/monitor/cluster | |
get_cluster_port_mapping_by_cluster_id | GET /colocation/monitor/cluster/portView | |
get_device_detail_by_device_id | GET /colocation/monitor/device | |
get_edge_devices | GET /colocation/servicechain/edge/devices | |
get_pnf_config | GET /colocation/monitor/pnf/configuration | |
get_service_chain_details | GET /colocation/monitor/servicechain | |
get_service_group_by_cluster_id | GET /colocation/monitor/servicegroup | |
get_system_status_by_device_id | GET /colocation/monitor/device/system | |
get_vnf_alarm_count | GET /colocation/monitor/vnf/alarms/count | |
get_vnf_events_count_detail | GET /colocation/monitor/vnf/alarms | |
get_vnf_events_detail | GET /colocation/monitor/vnf/events | |
get_vnf_interface_detail | GET /colocation/monitor/vnf/interface | |
getpnf_details | GET /colocation/monitor/pnf | |
getpnf_devices | GET /colocation/servicechain/edge/pnfdevices | |
getvnf_by_device_id | GET /colocation/monitor/device/vnf | |
getvnf_details | GET /colocation/monitor/vnf | |
list_network_function_map | GET /colocation/monitor/networkfunction/listmap | |
rma_cloud_dock_csp | POST /colocation/cluster/rma | |
update_cloud_dock_cluster | PUT /colocation/cluster | |
update_csp_to_cluster | PUT /colocation/cluster/attached/csp | |
vnf_actions | POST /colocation/monitor/vnf/action |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} acitvate_cloud_dock_cluster(cluster_name)
Activate a cluster
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
cluster_name = "clusterName_example" # str | Cluster name
# example passing only required values which don't have defaults set
try:
api_response = api_instance.acitvate_cloud_dock_cluster(cluster_name)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->acitvate_cloud_dock_cluster: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_name | str | Cluster name |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
attach_service_chain()
Attach service chain to cluster
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
body = {} # {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Attach service chain request (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_instance.attach_service_chain(body=body)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->attach_service_chain: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Attach service chain request | [optional] |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
attach_service_chain1()
Attach service chain to cluster
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
body = {} # {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Attach service chain request (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_instance.attach_service_chain1(body=body)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->attach_service_chain1: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Attach service chain request | [optional] |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
cancel_button()
Cancel button to cancel configuring devices
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
body = {} # {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Cancel configuring devices (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_instance.cancel_button(body=body)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->cancel_button: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Cancel configuring devices | [optional] |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
str cloud_dock_cluster_preview(serial_number)
Clouddock cluster preview
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
serial_number = "serialNumber_example" # str | Serial number
# example passing only required values which don't have defaults set
try:
api_response = api_instance.cloud_dock_cluster_preview(serial_number)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->cloud_dock_cluster_preview: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
serial_number | str | Serial number |
str
No authorization required
- Content-Type: Not defined
- Accept: text/plain
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
create_cloud_dock_cluster()
Add a new cluster
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
body = {} # {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Cluster config (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_instance.create_cloud_dock_cluster(body=body)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->create_cloud_dock_cluster: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Cluster config | [optional] |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
de_acitvate_cloud_dock_cluster(cluster_id)
Deactivate clouddock cluster
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
cluster_id = "clusterId_example" # str | Cluster Id
# example passing only required values which don't have defaults set
try:
api_instance.de_acitvate_cloud_dock_cluster(cluster_id)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->de_acitvate_cloud_dock_cluster: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_id | str | Cluster Id |
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
delete_cloud_dock_cluster_by_name(clustername)
Delete cluster by name
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
clustername = "clustername_example" # str | Cluster name
# example passing only required values which don't have defaults set
try:
api_instance.delete_cloud_dock_cluster_by_name(clustername)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->delete_cloud_dock_cluster_by_name: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
clustername | str | Cluster name |
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
detach_service_chain()
Detach service chain
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
body = {} # {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Detach service chain request (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_instance.detach_service_chain(body=body)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->detach_service_chain: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Detach service chain request | [optional] |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
dummyccm(cluster_name)
Activate dummp cluster
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
cluster_name = "clusterName_example" # str | Cluster name
# example passing only required values which don't have defaults set
try:
api_instance.dummyccm(cluster_name)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->dummyccm: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_name | str | Cluster name |
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
dummycsp_state(cluster_name, state)
Activate cluster in a state
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
cluster_name = "clusterName_example" # str | Cluster name
state = "state_example" # str | Cluster state
# example passing only required values which don't have defaults set
try:
api_instance.dummycsp_state(cluster_name, state)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->dummycsp_state: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_name | str | Cluster name | |
state | str | Cluster state |
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_cloud_dock_cluster_detail(cluster_name)
Get details of all existing Clusters
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
cluster_name = "clusterName_example" # str | Cluster name
# example passing only required values which don't have defaults set
try:
api_response = api_instance.get_cloud_dock_cluster_detail(cluster_name)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->get_cloud_dock_cluster_detail: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_name | str | Cluster name |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_cloud_dock_cluster_detail_by_id(cluster_id)
Get cluster by Id
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
cluster_id = "clusterId_example" # str | Cluster Id
# example passing only required values which don't have defaults set
try:
api_response = api_instance.get_cloud_dock_cluster_detail_by_id(cluster_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->get_cloud_dock_cluster_detail_by_id: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_id | str | Cluster Id |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] get_cluster_config_by_cluster_id(cluster_id)
Provide details of devices of clusters
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
cluster_id = "clusterId_example" # str | Cluster Id
# example passing only required values which don't have defaults set
try:
api_response = api_instance.get_cluster_config_by_cluster_id(cluster_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->get_cluster_config_by_cluster_id: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_id | str | Cluster Id |
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_cluster_details_by_cluster_id(cluster_id)
Provide details of ids of existing clusters
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
cluster_id = "clusterId_example" # str | Cluster Id
# example passing only required values which don't have defaults set
try:
api_response = api_instance.get_cluster_details_by_cluster_id(cluster_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->get_cluster_details_by_cluster_id: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_id | str | Cluster Id |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] get_cluster_port_mapping_by_cluster_id(cluster_id)
Provide details of port mappings in the cluster
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
cluster_id = "clusterId_example" # str | Cluster Id
# example passing only required values which don't have defaults set
try:
api_response = api_instance.get_cluster_port_mapping_by_cluster_id(cluster_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->get_cluster_port_mapping_by_cluster_id: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_id | str | Cluster Id |
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_device_detail_by_device_id()
List details for Device
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
device_id = "deviceId_example" # str | Device Id (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_device_detail_by_device_id(device_id=device_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->get_device_detail_by_device_id: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
device_id | str | Device Id | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] get_edge_devices()
Get edge devices
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.get_edge_devices()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->get_edge_devices: %s\n" % e)
This endpoint does not need any parameter.
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] get_pnf_config()
List configuration of PNF
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
pnf_serial_number = "pnfSerialNumber_example" # str | PNF serial number (optional)
cluster_id = "clusterId_example" # str | Cluster Id (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_pnf_config(pnf_serial_number=pnf_serial_number, cluster_id=cluster_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->get_pnf_config: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
pnf_serial_number | str | PNF serial number | [optional] |
cluster_id | str | Cluster Id | [optional] |
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} get_service_chain_details()
List all service chain or service chains by Id
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
cluster_id = "clusterId_example" # str | Cluster Id (optional)
user_group_name = "userGroupName_example" # str | UserGroup Name (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_service_chain_details(cluster_id=cluster_id, user_group_name=user_group_name)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->get_service_chain_details: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_id | str | Cluster Id | [optional] |
user_group_name | str | UserGroup Name | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] get_service_group_by_cluster_id()
List all attached serviceGroups to cluster
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
cluster_id = "clusterId_example" # str | Cluster Id (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_service_group_by_cluster_id(cluster_id=cluster_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->get_service_group_by_cluster_id: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_id | str | Cluster Id | [optional] |
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] get_system_status_by_device_id()
List all connected VNF to a device
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
device_id = "deviceId_example" # str | Device Id (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_system_status_by_device_id(device_id=device_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->get_system_status_by_device_id: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
device_id | str | Device Id | [optional] |
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] get_vnf_alarm_count()
Get event detail of VNF
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
user_group = "user_group_example" # str | user group name (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_vnf_alarm_count(user_group=user_group)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->get_vnf_alarm_count: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
user_group | str | user group name | [optional] |
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] get_vnf_events_count_detail()
Get event detail of VNF
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
user_group = "user_group_example" # str | user group name (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_vnf_events_count_detail(user_group=user_group)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->get_vnf_events_count_detail: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
user_group | str | user group name | [optional] |
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] get_vnf_events_detail()
Get event detail of VNF
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
vnf_name = "vnfName_example" # str | VNF name (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_vnf_events_detail(vnf_name=vnf_name)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->get_vnf_events_detail: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
vnf_name | str | VNF name | [optional] |
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] get_vnf_interface_detail()
Get interface detail of VNF
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
vnf_name = "vnfName_example" # str | VNF name (optional)
device_ip = "deviceIp_example" # str | Device IP (optional)
device_class = "deviceClass_example" # str | Device class (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_vnf_interface_detail(vnf_name=vnf_name, device_ip=device_ip, device_class=device_class)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->get_vnf_interface_detail: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
vnf_name | str | VNF name | [optional] |
device_ip | str | Device IP | [optional] |
device_class | str | Device class | [optional] |
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] getpnf_details()
List all PNF by cluster Id
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
cluster_id = "clusterId_example" # str | Cluster Id (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.getpnf_details(cluster_id=cluster_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->getpnf_details: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_id | str | Cluster Id | [optional] |
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] getpnf_devices(pnf_device_type)
Get PNF edge devices
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
pnf_device_type = "pnfDeviceType_example" # str | PNF device type
# example passing only required values which don't have defaults set
try:
api_response = api_instance.getpnf_devices(pnf_device_type)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->getpnf_devices: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
pnf_device_type | str | PNF device type |
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] getvnf_by_device_id()
List all VNF attached with Device
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
device_id = "deviceId_example" # str | Device Id (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.getvnf_by_device_id(device_id=device_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->getvnf_by_device_id: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
device_id | str | Device Id | [optional] |
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} getvnf_details()
Provide details of all existing VNF
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
cluster_id = "clusterId_example" # str | Cluster Id (optional)
user_group_name = "userGroupName_example" # str | UserGroup Name (optional)
vnf_name = "vnfName_example" # str | VNF Name (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.getvnf_details(cluster_id=cluster_id, user_group_name=user_group_name, vnf_name=vnf_name)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->getvnf_details: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_id | str | Cluster Id | [optional] |
user_group_name | str | UserGroup Name | [optional] |
vnf_name | str | VNF Name | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}] list_network_function_map()
Retrieve network function listing
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
# example, this endpoint has no required or optional parameters
try:
api_response = api_instance.list_network_function_map()
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->list_network_function_map: %s\n" % e)
This endpoint does not need any parameter.
[{str: (bool, date, datetime, dict, float, int, list, str, none_type)}]
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
{str: (bool, date, datetime, dict, float, int, list, str, none_type)} rma_cloud_dock_csp(cluster_name)
RMA operation for CSP device
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
cluster_name = "clusterName_example" # str | Cluster name
body = "body_example" # str | (optional)
# example passing only required values which don't have defaults set
try:
api_response = api_instance.rma_cloud_dock_csp(cluster_name)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->rma_cloud_dock_csp: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.rma_cloud_dock_csp(cluster_name, body=body)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->rma_cloud_dock_csp: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_name | str | Cluster name | |
body | str | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
update_cloud_dock_cluster()
Update a existing cluster
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
body = {} # {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Cluster config (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_instance.update_cloud_dock_cluster(body=body)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->update_cloud_dock_cluster: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | Cluster config | [optional] |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
update_csp_to_cluster()
Update attached csp to cluster
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
body = {} # {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | CSP config (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_instance.update_csp_to_cluster(body=body)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->update_csp_to_cluster: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | CSP config | [optional] |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
vnf_actions()
VNF action
import time
import openapi_client
from openapi_client.api import colocation_api
from pprint import pprint
# Defining the host is optional and defaults to /dataservice
# See configuration.py for a list of all supported configuration parameters.
configuration = openapi_client.Configuration(
host = "/dataservice"
)
# Enter a context with an instance of the API client
with openapi_client.ApiClient() as api_client:
# Create an instance of the API class
api_instance = colocation_api.ColocationApi(api_client)
vm_name = "vmName_example" # str | VM Name (optional)
device_id = "deviceId_example" # str | Device Id (optional)
action = "action_example" # str | Action (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_instance.vnf_actions(vm_name=vm_name, device_id=device_id, action=action)
except openapi_client.ApiException as e:
print("Exception when calling ColocationApi->vnf_actions: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
vm_name | str | VM Name | [optional] |
device_id | str | Device Id | [optional] |
action | str | Action | [optional] |
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
200 | Success | - |
400 | Bad Request | - |
403 | Forbidden | - |
500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]