All URIs are relative to /dataservice
Method | HTTP request | Description |
---|---|---|
create_config_group | POST /v1/config-group | |
create_config_group_association | POST /v1/config-group/{configGroupId}/device/associate | |
create_config_group_device_variables | PUT /v1/config-group/{configGroupId}/device/variables | |
create_config_group_device_variables1 | GET /v1/config-group/{configGroupId}/device/variables/schema | |
delete_config_group | DELETE /v1/config-group/{configGroupId} | |
delete_config_group_association | DELETE /v1/config-group/{configGroupId}/device/associate | |
deploy_config_group | POST /v1/config-group/{configGroupId}/device/deploy | |
edit_config_group | PUT /v1/config-group/{configGroupId} | |
get_cedge_config_group_schema_by_schema_type | GET /v1/config-group/schema/sdwan | |
get_config_group | GET /v1/config-group/{configGroupId} | |
get_config_group_association | GET /v1/config-group/{configGroupId}/device/associate | |
get_config_group_by_solution | GET /v1/config-group | |
get_config_group_device_configuration_preview | POST /v1/config-group/{configGroupId}/device/{deviceId}/preview | |
get_config_group_device_variables | GET /v1/config-group/{configGroupId}/device/variables | |
update_config_group_association | PUT /v1/config-group/{configGroupId}/device/associate |
bool, date, datetime, dict, float, int, list, str, none_type create_config_group()
Create a new Configuration Group
import time
import openapi_client
from openapi_client.api import configuration_configuration_group_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 = configuration_configuration_group_api.ConfigurationConfigurationGroupApi(api_client)
body = None # bool, date, datetime, dict, float, int, list, str, none_type | Config Group (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.create_config_group(body=body)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->create_config_group: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | bool, date, datetime, dict, float, int, list, str, none_type | Config Group | [optional] |
bool, date, datetime, dict, float, int, list, str, none_type
No authorization required
- Content-Type: application/json
- 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]
create_config_group_association(config_group_id)
Create associations with device and a config group
import time
import openapi_client
from openapi_client.api import configuration_configuration_group_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 = configuration_configuration_group_api.ConfigurationConfigurationGroupApi(api_client)
config_group_id = "configGroupId_example" # str |
body = None # bool, date, datetime, dict, float, int, list, str, none_type | (optional)
# example passing only required values which don't have defaults set
try:
api_instance.create_config_group_association(config_group_id)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->create_config_group_association: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
api_instance.create_config_group_association(config_group_id, body=body)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->create_config_group_association: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
config_group_id | str | ||
body | bool, date, datetime, dict, float, int, list, str, none_type | [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: (bool, date, datetime, dict, float, int, list, str, none_type)} create_config_group_device_variables(config_group_id)
assign values to device variables
import time
import openapi_client
from openapi_client.api import configuration_configuration_group_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 = configuration_configuration_group_api.ConfigurationConfigurationGroupApi(api_client)
config_group_id = "configGroupId_example" # str | Config Group Id
body = None # bool, date, datetime, dict, float, int, list, str, none_type | (optional)
# example passing only required values which don't have defaults set
try:
api_response = api_instance.create_config_group_device_variables(config_group_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->create_config_group_device_variables: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.create_config_group_device_variables(config_group_id, body=body)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->create_config_group_device_variables: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
config_group_id | str | Config Group Id | |
body | bool, date, datetime, dict, float, int, list, str, none_type | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: application/json
- 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)} create_config_group_device_variables1(config_group_id)
assign values to device variables
import time
import openapi_client
from openapi_client.api import configuration_configuration_group_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 = configuration_configuration_group_api.ConfigurationConfigurationGroupApi(api_client)
config_group_id = "configGroupId_example" # str | Config Group Id
# example passing only required values which don't have defaults set
try:
api_response = api_instance.create_config_group_device_variables1(config_group_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->create_config_group_device_variables1: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
config_group_id | str | Config Group 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]
delete_config_group(config_group_id)
Delete Config Group
import time
import openapi_client
from openapi_client.api import configuration_configuration_group_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 = configuration_configuration_group_api.ConfigurationConfigurationGroupApi(api_client)
config_group_id = "configGroupId_example" # str |
# example passing only required values which don't have defaults set
try:
api_instance.delete_config_group(config_group_id)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->delete_config_group: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
config_group_id | str |
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_config_group_association(config_group_id)
Delete Config Group Association from devices
import time
import openapi_client
from openapi_client.api import configuration_configuration_group_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 = configuration_configuration_group_api.ConfigurationConfigurationGroupApi(api_client)
config_group_id = "configGroupId_example" # str |
body = None # bool, date, datetime, dict, float, int, list, str, none_type | (optional)
# example passing only required values which don't have defaults set
try:
api_instance.delete_config_group_association(config_group_id)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->delete_config_group_association: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
api_instance.delete_config_group_association(config_group_id, body=body)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->delete_config_group_association: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
config_group_id | str | ||
body | bool, date, datetime, dict, float, int, list, str, none_type | [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]
bool, date, datetime, dict, float, int, list, str, none_type deploy_config_group(config_group_id)
deploy config group to devices
Note: In a multitenant vManage system, this API is only available in the Provider view.
import time
import openapi_client
from openapi_client.api import configuration_configuration_group_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 = configuration_configuration_group_api.ConfigurationConfigurationGroupApi(api_client)
config_group_id = "configGroupId_example" # str | Config Group Id
body = None # bool, date, datetime, dict, float, int, list, str, none_type | (optional)
# example passing only required values which don't have defaults set
try:
api_response = api_instance.deploy_config_group(config_group_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->deploy_config_group: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.deploy_config_group(config_group_id, body=body)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->deploy_config_group: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
config_group_id | str | Config Group Id | |
body | bool, date, datetime, dict, float, int, list, str, none_type | [optional] |
bool, date, datetime, dict, float, int, list, str, none_type
No authorization required
- Content-Type: application/json
- 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]
bool, date, datetime, dict, float, int, list, str, none_type edit_config_group(config_group_id)
Edit a Configuration Group
import time
import openapi_client
from openapi_client.api import configuration_configuration_group_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 = configuration_configuration_group_api.ConfigurationConfigurationGroupApi(api_client)
config_group_id = "configGroupId_example" # str |
body = None # bool, date, datetime, dict, float, int, list, str, none_type | Config Group (optional)
# example passing only required values which don't have defaults set
try:
api_response = api_instance.edit_config_group(config_group_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->edit_config_group: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.edit_config_group(config_group_id, body=body)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->edit_config_group: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
config_group_id | str | ||
body | bool, date, datetime, dict, float, int, list, str, none_type | Config Group | [optional] |
bool, date, datetime, dict, float, int, list, str, none_type
No authorization required
- Content-Type: application/json
- 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 get_cedge_config_group_schema_by_schema_type()
Get a Cedge famiy Configuration Group Schema by Schema Type
import time
import openapi_client
from openapi_client.api import configuration_configuration_group_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 = configuration_configuration_group_api.ConfigurationConfigurationGroupApi(api_client)
schema_type = "post" # str | (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_cedge_config_group_schema_by_schema_type(schema_type=schema_type)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->get_cedge_config_group_schema_by_schema_type: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
schema_type | str | [optional] |
str
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]
ConfigGroup get_config_group(config_group_id)
Get a Configuration Group by ID
import time
import openapi_client
from openapi_client.api import configuration_configuration_group_api
from openapi_client.model.config_group import ConfigGroup
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 = configuration_configuration_group_api.ConfigurationConfigurationGroupApi(api_client)
config_group_id = "configGroupId_example" # str |
# example passing only required values which don't have defaults set
try:
api_response = api_instance.get_config_group(config_group_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->get_config_group: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
config_group_id | str |
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]
get_config_group_association(config_group_id)
Get devices association with a config group
import time
import openapi_client
from openapi_client.api import configuration_configuration_group_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 = configuration_configuration_group_api.ConfigurationConfigurationGroupApi(api_client)
config_group_id = "configGroupId_example" # str |
# example passing only required values which don't have defaults set
try:
api_instance.get_config_group_association(config_group_id)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->get_config_group_association: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
config_group_id | str |
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 get_config_group_by_solution()
Get a Configuration Group by Solution
import time
import openapi_client
from openapi_client.api import configuration_configuration_group_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 = configuration_configuration_group_api.ConfigurationConfigurationGroupApi(api_client)
solution = "solution_example" # str | (optional)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_config_group_by_solution(solution=solution)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->get_config_group_by_solution: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
solution | str | [optional] |
str
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_config_group_device_configuration_preview(config_group_id, device_id)
Get a preview of the configuration for a device
import time
import openapi_client
from openapi_client.api import configuration_configuration_group_api
from openapi_client.model.get_o365_preferred_path_from_v_analytics_request import GetO365PreferredPathFromVAnalyticsRequest
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 = configuration_configuration_group_api.ConfigurationConfigurationGroupApi(api_client)
config_group_id = "configGroupId_example" # str | Config Group Id
device_id = "deviceId_example" # str | Device Id
get_o365_preferred_path_from_v_analytics_request = GetO365PreferredPathFromVAnalyticsRequest(
key=GetO365PreferredPathFromVAnalyticsRequestValue(
value_type="ARRAY",
),
) # GetO365PreferredPathFromVAnalyticsRequest | (optional)
# example passing only required values which don't have defaults set
try:
api_response = api_instance.get_config_group_device_configuration_preview(config_group_id, device_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->get_config_group_device_configuration_preview: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_config_group_device_configuration_preview(config_group_id, device_id, get_o365_preferred_path_from_v_analytics_request=get_o365_preferred_path_from_v_analytics_request)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->get_config_group_device_configuration_preview: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
config_group_id | str | Config Group Id | |
device_id | str | Device Id | |
get_o365_preferred_path_from_v_analytics_request | GetO365PreferredPathFromVAnalyticsRequest | [optional] |
{str: (bool, date, datetime, dict, float, int, list, str, none_type)}
No authorization required
- Content-Type: application/json
- 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_config_group_device_variables(config_group_id)
Get device variables
import time
import openapi_client
from openapi_client.api import configuration_configuration_group_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 = configuration_configuration_group_api.ConfigurationConfigurationGroupApi(api_client)
config_group_id = "configGroupId_example" # str | Config Group Id
device_id = "device-id_example" # str | Comma separated device id's like d1,d2 (optional)
suggestions = True # bool | Suggestions for possible values (optional)
# example passing only required values which don't have defaults set
try:
api_response = api_instance.get_config_group_device_variables(config_group_id)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->get_config_group_device_variables: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
api_response = api_instance.get_config_group_device_variables(config_group_id, device_id=device_id, suggestions=suggestions)
pprint(api_response)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->get_config_group_device_variables: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
config_group_id | str | Config Group Id | |
device_id | str | Comma separated device id's like d1,d2 | [optional] |
suggestions | bool | Suggestions for possible values | [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_config_group_association(config_group_id)
Move the devices from one config group to another
import time
import openapi_client
from openapi_client.api import configuration_configuration_group_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 = configuration_configuration_group_api.ConfigurationConfigurationGroupApi(api_client)
config_group_id = "configGroupId_example" # str |
body = None # bool, date, datetime, dict, float, int, list, str, none_type | (optional)
# example passing only required values which don't have defaults set
try:
api_instance.update_config_group_association(config_group_id)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->update_config_group_association: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
api_instance.update_config_group_association(config_group_id, body=body)
except openapi_client.ApiException as e:
print("Exception when calling ConfigurationConfigurationGroupApi->update_config_group_association: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
config_group_id | str | ||
body | bool, date, datetime, dict, float, int, list, str, none_type | [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]