SystemRoutePointExternalSystemGetListRequest
Bases: OCIRequest
Get a list of Route Point External Systems that are configured for the system. The response is either SystemRoutePointExternalSystemGetListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemRoutePointExternalSystemGetListRequest.
Contains a table with column headings: "External System", "Description".
Attributes:
external_system_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 SystemRoutePointExternalSystemGetListRequest
client = Client()
command = SystemRoutePointExternalSystemGetListRequest()
response = client.command(command)
print(response)