SystemOCICallControlApplicationGetListRequest
Bases: OCIRequest
Get the OCI call control application list. The response is either SystemOCICallControlApplicationGetListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemOCICallControlApplicationGetListRequest. The table columns are: "Application Id", "Enabled System Wide", "Description" "Notification Timeout Seconds", "Max Event Channels Per Set" and "Channel Set Grace Period Seconds".
Attributes:
app_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemOCICallControlApplicationGetListRequest
client = Client()
command = SystemOCICallControlApplicationGetListRequest()
response = client.command(command)
print(response)