SystemRoutingProfileParametersGetRequest
Bases: OCIRequest
Request to get the list of Routing Profile related system parameters. The response is either SystemRoutingProfileParametersGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemRoutingProfileParametersGetRequest. Contains a list of Routing Profile parameters.
Attributes:
enable_permissive_routing (bool):
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 SystemRoutingProfileParametersGetRequest
client = Client()
command = SystemRoutingProfileParametersGetRequest()
response = client.command(command)
print(response)