ResellerCallAdmissionControlPoliciesGetRequest
Bases: OCIRequest
Get a reseller call admission control policies. The response is either a ResellerCallAdmissionControlPoliciesGetResponse or an ErrorResponse.
Attributes:
reseller_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the ResellerCallAdmissionControlPoliciesGetRequest. The response contains the reseller call admission control policies information.
Attributes:
enable_call_admission_control (bool):
max_concurrent_network_sessions (int):
max_concurrent_network_sessions_threshold (Optional[int]):
max_network_calls_per_second (int):
max_network_calls_per_second_threshold (Optional[int]):
max_concurrent_external_siprec_sessions (int):
max_concurrent_external_siprec_sessions_threshold (Optional[int]):
Source code in src/mercury_ocip/commands/commands.py
131101 131102 131103 131104 131105 131106 131107 131108 131109 131110 131111 131112 131113 131114 131115 131116 131117 131118 131119 131120 131121 131122 131123 131124 131125 131126 131127 131128 131129 131130 131131 131132 131133 131134 131135 131136 131137 131138 131139 131140 131141 131142 131143 131144 131145 131146 131147 131148 131149 131150 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ResellerCallAdmissionControlPoliciesGetRequest
client = Client()
command = ResellerCallAdmissionControlPoliciesGetRequest(
reseller_id=...,
)
response = client.command(command)
print(response)