GroupSessionAdmissionControlGetRequest
Bases: OCIRequest
Get the session admission control capacity for the group. The response is either a GroupSessionAdmissionControlGetResponse or an 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 GroupSessionAdmissionControlGetRequest. The response contains the session admission control capacity allocated for the group.
Attributes:
restrict_aggregate_sessions (bool):
max_sessions (Optional[int]):
max_user_originating_sessions (Optional[int]):
max_user_terminating_sessions (Optional[int]):
count_intra_group_sessions (bool):
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 GroupSessionAdmissionControlGetRequest
client = Client()
command = GroupSessionAdmissionControlGetRequest(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)