All URIs are relative to http://localhost:36911
| Method | HTTP request | Description |
|---|---|---|
| clear_config | POST /config/object/clear | |
| count_config | POST /config/object/count | |
| get_config | POST /config/object/get | |
| load | POST /config/file/load | |
| parse | POST /config/ini/parseJSON | |
| remove_config | POST /config/object/remove | |
| render | POST /config/file/render | |
| render_and_load | POST /config/file/renderAndLoad | |
| render_string | POST /config/file/renderString | |
| set_config | POST /config/object/set |
clear_config(config_object_clear_dto)
import dappserver_server_sdk
from dappserver_server_sdk.models.config_object_clear_dto import ConfigObjectClearDTO
from dappserver_server_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:36911
# See configuration.py for a list of all supported configuration parameters.
configuration = dappserver_server_sdk.Configuration(
host = "http://localhost:36911"
)
# Enter a context with an instance of the API client
with dappserver_server_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = dappserver_server_sdk.ConfigApi(api_client)
config_object_clear_dto = dappserver_server_sdk.ConfigObjectClearDTO() # ConfigObjectClearDTO |
try:
api_instance.clear_config(config_object_clear_dto)
except Exception as e:
print("Exception when calling ConfigApi->clear_config: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| config_object_clear_dto | ConfigObjectClearDTO |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
| Status code | Description | Response headers |
|---|---|---|
| 200 | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
count_config(config_object_count_dto)
import dappserver_server_sdk
from dappserver_server_sdk.models.config_object_count_dto import ConfigObjectCountDTO
from dappserver_server_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:36911
# See configuration.py for a list of all supported configuration parameters.
configuration = dappserver_server_sdk.Configuration(
host = "http://localhost:36911"
)
# Enter a context with an instance of the API client
with dappserver_server_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = dappserver_server_sdk.ConfigApi(api_client)
config_object_count_dto = dappserver_server_sdk.ConfigObjectCountDTO() # ConfigObjectCountDTO |
try:
api_instance.count_config(config_object_count_dto)
except Exception as e:
print("Exception when calling ConfigApi->count_config: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| config_object_count_dto | ConfigObjectCountDTO |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
| Status code | Description | Response headers |
|---|---|---|
| 200 | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
get_config(config_object_get_dto)
import dappserver_server_sdk
from dappserver_server_sdk.models.config_object_get_dto import ConfigObjectGetDTO
from dappserver_server_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:36911
# See configuration.py for a list of all supported configuration parameters.
configuration = dappserver_server_sdk.Configuration(
host = "http://localhost:36911"
)
# Enter a context with an instance of the API client
with dappserver_server_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = dappserver_server_sdk.ConfigApi(api_client)
config_object_get_dto = dappserver_server_sdk.ConfigObjectGetDTO() # ConfigObjectGetDTO |
try:
api_instance.get_config(config_object_get_dto)
except Exception as e:
print("Exception when calling ConfigApi->get_config: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| config_object_get_dto | ConfigObjectGetDTO |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
| Status code | Description | Response headers |
|---|---|---|
| 200 | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
load(config_file_load_dto)
import dappserver_server_sdk
from dappserver_server_sdk.models.config_file_load_dto import ConfigFileLoadDTO
from dappserver_server_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:36911
# See configuration.py for a list of all supported configuration parameters.
configuration = dappserver_server_sdk.Configuration(
host = "http://localhost:36911"
)
# Enter a context with an instance of the API client
with dappserver_server_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = dappserver_server_sdk.ConfigApi(api_client)
config_file_load_dto = dappserver_server_sdk.ConfigFileLoadDTO() # ConfigFileLoadDTO |
try:
api_instance.load(config_file_load_dto)
except Exception as e:
print("Exception when calling ConfigApi->load: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| config_file_load_dto | ConfigFileLoadDTO |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
| Status code | Description | Response headers |
|---|---|---|
| 200 | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
parse(ini_object_parse_jsondto)
import dappserver_server_sdk
from dappserver_server_sdk.models.ini_object_parse_jsondto import INIObjectParseJSONDTO
from dappserver_server_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:36911
# See configuration.py for a list of all supported configuration parameters.
configuration = dappserver_server_sdk.Configuration(
host = "http://localhost:36911"
)
# Enter a context with an instance of the API client
with dappserver_server_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = dappserver_server_sdk.ConfigApi(api_client)
ini_object_parse_jsondto = dappserver_server_sdk.INIObjectParseJSONDTO() # INIObjectParseJSONDTO |
try:
api_instance.parse(ini_object_parse_jsondto)
except Exception as e:
print("Exception when calling ConfigApi->parse: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| ini_object_parse_jsondto | INIObjectParseJSONDTO |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
| Status code | Description | Response headers |
|---|---|---|
| 200 | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
remove_config(config_object_remove_dto)
import dappserver_server_sdk
from dappserver_server_sdk.models.config_object_remove_dto import ConfigObjectRemoveDTO
from dappserver_server_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:36911
# See configuration.py for a list of all supported configuration parameters.
configuration = dappserver_server_sdk.Configuration(
host = "http://localhost:36911"
)
# Enter a context with an instance of the API client
with dappserver_server_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = dappserver_server_sdk.ConfigApi(api_client)
config_object_remove_dto = dappserver_server_sdk.ConfigObjectRemoveDTO() # ConfigObjectRemoveDTO |
try:
api_instance.remove_config(config_object_remove_dto)
except Exception as e:
print("Exception when calling ConfigApi->remove_config: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| config_object_remove_dto | ConfigObjectRemoveDTO |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
| Status code | Description | Response headers |
|---|---|---|
| 200 | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
render(config_file_render_dto)
import dappserver_server_sdk
from dappserver_server_sdk.models.config_file_render_dto import ConfigFileRenderDTO
from dappserver_server_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:36911
# See configuration.py for a list of all supported configuration parameters.
configuration = dappserver_server_sdk.Configuration(
host = "http://localhost:36911"
)
# Enter a context with an instance of the API client
with dappserver_server_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = dappserver_server_sdk.ConfigApi(api_client)
config_file_render_dto = dappserver_server_sdk.ConfigFileRenderDTO() # ConfigFileRenderDTO |
try:
api_instance.render(config_file_render_dto)
except Exception as e:
print("Exception when calling ConfigApi->render: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| config_file_render_dto | ConfigFileRenderDTO |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
| Status code | Description | Response headers |
|---|---|---|
| 200 | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
render_and_load(config_file_render_and_load_dto)
import dappserver_server_sdk
from dappserver_server_sdk.models.config_file_render_and_load_dto import ConfigFileRenderAndLoadDTO
from dappserver_server_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:36911
# See configuration.py for a list of all supported configuration parameters.
configuration = dappserver_server_sdk.Configuration(
host = "http://localhost:36911"
)
# Enter a context with an instance of the API client
with dappserver_server_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = dappserver_server_sdk.ConfigApi(api_client)
config_file_render_and_load_dto = dappserver_server_sdk.ConfigFileRenderAndLoadDTO() # ConfigFileRenderAndLoadDTO |
try:
api_instance.render_and_load(config_file_render_and_load_dto)
except Exception as e:
print("Exception when calling ConfigApi->render_and_load: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| config_file_render_and_load_dto | ConfigFileRenderAndLoadDTO |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
| Status code | Description | Response headers |
|---|---|---|
| 200 | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
render_string(config_file_render_string_dto)
import dappserver_server_sdk
from dappserver_server_sdk.models.config_file_render_string_dto import ConfigFileRenderStringDTO
from dappserver_server_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:36911
# See configuration.py for a list of all supported configuration parameters.
configuration = dappserver_server_sdk.Configuration(
host = "http://localhost:36911"
)
# Enter a context with an instance of the API client
with dappserver_server_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = dappserver_server_sdk.ConfigApi(api_client)
config_file_render_string_dto = dappserver_server_sdk.ConfigFileRenderStringDTO() # ConfigFileRenderStringDTO |
try:
api_instance.render_string(config_file_render_string_dto)
except Exception as e:
print("Exception when calling ConfigApi->render_string: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| config_file_render_string_dto | ConfigFileRenderStringDTO |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
| Status code | Description | Response headers |
|---|---|---|
| 200 | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
set_config(config_object_set_dto)
import dappserver_server_sdk
from dappserver_server_sdk.models.config_object_set_dto import ConfigObjectSetDTO
from dappserver_server_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:36911
# See configuration.py for a list of all supported configuration parameters.
configuration = dappserver_server_sdk.Configuration(
host = "http://localhost:36911"
)
# Enter a context with an instance of the API client
with dappserver_server_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = dappserver_server_sdk.ConfigApi(api_client)
config_object_set_dto = dappserver_server_sdk.ConfigObjectSetDTO() # ConfigObjectSetDTO |
try:
api_instance.set_config(config_object_set_dto)
except Exception as e:
print("Exception when calling ConfigApi->set_config: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| config_object_set_dto | ConfigObjectSetDTO |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: Not defined
| Status code | Description | Response headers |
|---|---|---|
| 200 | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]