SystemNetworkSynchingServerGetListRequest
Bases: OCIRequest
Request to get a list of Network Servers defined in the system. The response is either a SystemNetworkSynchingServerGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemNetworkSynchingServerGetListRequest. The Network Server table column headings are: "Net Address", "Port", "Secure", "Description", "Order". The following columns are only used in XS data mode and not returned in AS data mode: Order The following elements are only used in AS data mode and not returned in XS data mode: preferredNetworkServerNetAddress
Attributes:
preferred_network_server_net_address (Optional[str]):
network_synching_server_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemNetworkSynchingServerGetListRequest
client = Client()
command = SystemNetworkSynchingServerGetListRequest()
response = client.command(command)
print(response)