SystemCallProcessingPolicyProfileGetListRequest
Bases: OCIRequest
Get the list of all Call Processing Policy Profiles. The response is either a SystemCallProcessingPolicyProfileGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemCallProcessingPolicyProfileGetListRequest. The response contains a table of all Call Processing Policy Profiles in the system. The column headings are "Name" and "Description".
Attributes:
call_processing_policy_profiles_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCallProcessingPolicyProfileGetListRequest
client = Client()
command = SystemCallProcessingPolicyProfileGetListRequest()
response = client.command(command)
print(response)