ServiceProviderTrunkGroupGetRequest23
Bases: OCIRequest
Get the maximum and bursting maximum permissible active Trunk Group calls for the service provider. The response is either a ServiceProviderTrunkGroupGetResponse23 or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the ServiceProviderTrunkGroupGetRequest23. The response contains the maximum and bursting maximum permissible active trunk group calls for the service provider.
Attributes:
max_active_calls (UnboundedNonNegativeInt):
bursting_max_active_calls (UnboundedNonNegativeInt):
number_of_bursting_btl_us (UnboundedNonNegativeInt):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ServiceProviderTrunkGroupGetRequest23
client = Client()
command = ServiceProviderTrunkGroupGetRequest23(
service_provider_id=...,
)
response = client.command(command)
print(response)