SystemRoutingGetRequest
Bases: OCIRequest
Request the system's general routing attributes. The response is either a SystemRoutingGetResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemRoutingGetRequest.
Attributes:
is_route_round_robin (bool):
route_timer_seconds (int):
dns_resolved_address_selection_policy (str):
stateful_expiration_minutes (int):
max_addresses_per_hostname (int):
max_addresses_during_setup (int):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemRoutingGetRequest
client = Client()
command = SystemRoutingGetRequest()
response = client.command(command)
print(response)