SystemEnhancedCallLogsActiveSchemaInstanceGetListRequest
Bases: OCIRequest
Request the system level database schema instances defined for Enhanced Call Logs. For each instance, the number of actual users (users that have the Enhanced Call Logs service, are assigned to that schema instance and have recorded call logs on the NDS) are given. The response is either a SystemEnhancedCallLogsActiveSchemaInstanceGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemEnhancedCallLogsSchemaInstanceActualUsageGetListRequest. Contains a table with column headings: "Instance Name", "Active Users".
Attributes:
schema_instance_usage_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemEnhancedCallLogsActiveSchemaInstanceGetListRequest
client = Client()
command = SystemEnhancedCallLogsActiveSchemaInstanceGetListRequest()
response = client.command(command)
print(response)