GroupCallCapacityManagementGetInstanceListRequest
Bases: OCIRequest
Request to get a list of Call Capacity Management instances within a group. The response is either GroupCallCapacityManagementGetInstanceListResponse or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupCallCapacityManagementGetInstanceListRequest. Contains a table with column headings: "Name", "Is Default", "Maximum Calls", "Maximum Incoming Calls", "Maximum Outgoing Calls".
Attributes:
call_capacity_group_table (OCITable):
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 GroupCallCapacityManagementGetInstanceListRequest
client = Client()
command = GroupCallCapacityManagementGetInstanceListRequest(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)