SystemRoutingGetRouteListRequest
Bases: OCIRequest
Request to get a list of routes in the system. The response is either a SystemRoutingGetRouteListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemRoutingGetRouteListRequest.
Attributes:
route_name (Optional[List[str]]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemRoutingGetRouteListRequest
client = Client()
command = SystemRoutingGetRouteListRequest()
response = client.command(command)
print(response)