system_controller = client.system
SystemController
- Get Endpoint Info
- Get Log File
- Get Ping System
- Get Public System Info
- Get Server Logs
- Get System Info
- Get Wake on Lan Info
- Post Ping System
- Restart Application
- Shutdown Application
Gets information about the request endpoint.
def get_endpoint_info(self)
result = system_controller.get_endpoint_info()
HTTP Status Code | Error Description | Exception Class |
---|---|---|
401 | Unauthorized | APIException |
403 | Forbidden | APIException |
Gets a log file.
def get_log_file(self,
name)
Parameter | Type | Tags | Description |
---|---|---|---|
name |
string |
Query, Required | The name of the log file to get. |
binary
name = 'name0'
result = system_controller.get_log_file(name)
HTTP Status Code | Error Description | Exception Class |
---|---|---|
401 | Unauthorized | APIException |
403 | Forbidden | APIException |
Pings the system.
def get_ping_system(self)
string
result = system_controller.get_ping_system()
Gets public information about the server.
def get_public_system_info(self)
result = system_controller.get_public_system_info()
Gets a list of available server log files.
def get_server_logs(self)
result = system_controller.get_server_logs()
HTTP Status Code | Error Description | Exception Class |
---|---|---|
401 | Unauthorized | APIException |
403 | Forbidden | APIException |
Gets information about the server.
def get_system_info(self)
result = system_controller.get_system_info()
HTTP Status Code | Error Description | Exception Class |
---|---|---|
401 | Unauthorized | APIException |
403 | Forbidden | APIException |
This endpoint is deprecated.
Gets wake on lan information.
def get_wake_on_lan_info(self)
result = system_controller.get_wake_on_lan_info()
HTTP Status Code | Error Description | Exception Class |
---|---|---|
401 | Unauthorized | APIException |
403 | Forbidden | APIException |
Pings the system.
def post_ping_system(self)
string
result = system_controller.post_ping_system()
Restarts the application.
def restart_application(self)
void
result = system_controller.restart_application()
HTTP Status Code | Error Description | Exception Class |
---|---|---|
401 | Unauthorized | APIException |
403 | Forbidden | APIException |
Shuts down the application.
def shutdown_application(self)
void
result = system_controller.shutdown_application()
HTTP Status Code | Error Description | Exception Class |
---|---|---|
401 | Unauthorized | APIException |
403 | Forbidden | APIException |