SystemCPEConfigParametersModifyRequest21
Bases: OCIRequest
Request to modify CPE Config system parameters. The response is either SuccessResponse or ErrorResponse.
The following elements are only used in the AS data mode and ignored in the XS data mode:
allowDeviceCredentialsRetrieval
Attributes:
enable_ip_device_management (Optional[bool]):
ftp_connect_timeout_seconds (Optional[int]):
ftp_file_transfer_timeout_seconds (Optional[int]):
pause_between_file_rebuild_milliseconds (Optional[int]):
device_access_app_server_cluster_name (Optional[Nillable[str]]):
min_time_between_reset_milliseconds (Optional[int]):
always_push_files_on_rebuild (Optional[bool]):
max_file_operation_retry_attempts (Optional[int]):
enable_auto_rebuild_config (Optional[bool]):
event_queue_size (Optional[int]):
allow_device_credentials_retrieval (Optional[bool]):
Source code in src/mercury_ocip/commands/commands.py
75497 75498 75499 75500 75501 75502 75503 75504 75505 75506 75507 75508 75509 75510 75511 75512 75513 75514 75515 75516 75517 75518 75519 75520 75521 75522 75523 75524 75525 75526 75527 75528 75529 75530 75531 75532 75533 75534 75535 75536 75537 75538 75539 75540 75541 75542 75543 75544 75545 75546 75547 75548 75549 75550 75551 75552 75553 75554 75555 75556 75557 75558 75559 75560 75561 75562 75563 75564 75565 75566 75567 75568 75569 75570 75571 75572 75573 75574 75575 75576 75577 75578 75579 75580 | |
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCPEConfigParametersModifyRequest21
client = Client()
command = SystemCPEConfigParametersModifyRequest21(
enable_ip_device_management=...,
ftp_connect_timeout_seconds=...,
ftp_file_transfer_timeout_seconds=...,
pause_between_file_rebuild_milliseconds=...,
device_access_app_server_cluster_name=...,
min_time_between_reset_milliseconds=...,
always_push_files_on_rebuild=...,
max_file_operation_retry_attempts=...,
enable_auto_rebuild_config=...,
event_queue_size=...,
allow_device_credentials_retrieval=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("SystemCPEConfigParametersModifyRequest21",
enable_ip_device_management=...,
ftp_connect_timeout_seconds=...,
ftp_file_transfer_timeout_seconds=...,
pause_between_file_rebuild_milliseconds=...,
device_access_app_server_cluster_name=...,
min_time_between_reset_milliseconds=...,
always_push_files_on_rebuild=...,
max_file_operation_retry_attempts=...,
enable_auto_rebuild_config=...,
event_queue_size=...,
allow_device_credentials_retrieval=...,
)
print(response)