SystemRoutingProfileGetListRequest
Bases: OCIRequest
Request to get the list of system routing profiles.
If resellerId is specified, the routing profiles assigned to the given reseller are returned. If reseller administrator sends the request, resellerId is not specified, the administrator’s resellerId is used.
If system or provisioning administrator sends the request, resellerId is not specified, all system routing profiles are returned.
The response is either a SystemRoutingProfileGetListResponse or an ErrorResponse.
Attributes:
reseller_id (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemRoutingProfileGetListRequest. Returns a list of routing profiles defined in the system.
Attributes:
routing_profile (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 SystemRoutingProfileGetListRequest
client = Client()
command = SystemRoutingProfileGetListRequest(
reseller_id=...,
)
response = client.command(command)
print(response)