SystemCPEConfigParametersGetRequest21
Bases: OCIRequest
Request to get the list of CPE Config system parameters. The response is either SystemCPEConfigParametersGetResponse21 or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemCPEConfigParametersGetRequest21. Contains a list of system CPE Config parameters.
The following elements are only used in AS data mode:
allowDeviceCredentialsRetrieval, value "false" is returned in XS data mode
Attributes:
enable_ip_device_management (bool):
ftp_connect_timeout_seconds (int):
ftp_file_transfer_timeout_seconds (int):
pause_between_file_rebuild_milliseconds (int):
device_access_app_server_cluster_name (Optional[str]):
min_time_between_reset_milliseconds (int):
always_push_files_on_rebuild (bool):
max_file_operation_retry_attempts (int):
enable_auto_rebuild_config (bool):
event_queue_size (int):
allow_device_credentials_retrieval (bool):
Source code in src/mercury_ocip/commands/commands.py
137740 137741 137742 137743 137744 137745 137746 137747 137748 137749 137750 137751 137752 137753 137754 137755 137756 137757 137758 137759 137760 137761 137762 137763 137764 137765 137766 137767 137768 137769 137770 137771 137772 137773 137774 137775 137776 137777 137778 137779 137780 137781 137782 137783 137784 137785 137786 137787 137788 137789 137790 137791 137792 137793 137794 137795 137796 137797 137798 137799 137800 137801 137802 137803 137804 137805 137806 137807 137808 137809 137810 137811 137812 137813 137814 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCPEConfigParametersGetRequest21
client = Client()
command = SystemCPEConfigParametersGetRequest21()
response = client.command(command)
print(response)