SystemNetworkServerSyncParametersModifyRequest
Bases: OCIRequest
Request to modify Network Server Sync system parameters. The response is either SuccessResponse or ErrorResponse. The following elements are only used in AS data mode: syncTrunkGroups syncConnectionTimeoutSeconds
Attributes:
enable_sync (Optional[bool]):
sync_line_ports (Optional[bool]):
sync_device_management_info (Optional[bool]):
sync_trunk_groups (Optional[bool]):
sync_connection_timeout_seconds (Optional[int]):
sync_enterprise_numbers (Optional[bool]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemNetworkServerSyncParametersModifyRequest
client = Client()
command = SystemNetworkServerSyncParametersModifyRequest(
enable_sync=...,
sync_line_ports=...,
sync_device_management_info=...,
sync_trunk_groups=...,
sync_connection_timeout_seconds=...,
sync_enterprise_numbers=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("SystemNetworkServerSyncParametersModifyRequest",
enable_sync=...,
sync_line_ports=...,
sync_device_management_info=...,
sync_trunk_groups=...,
sync_connection_timeout_seconds=...,
sync_enterprise_numbers=...,
)
print(response)