EnterpriseSessionAdmissionControlGroupGetListRequest
Bases: OCIRequest
Request to get the list of session admission control group for the enterprise. The response is either an EnterpriseSessionAdmissionControlGroupGetListResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to EnterpriseSessionAdmissionControlGroupGetListRequest. Contains a table of session admission control group configured in the enterprise. The column headings are: "Name", "Is Default", "Maximum Sessions", "Maximum Originating Sessions", "Maximum Terminating Sessions"..
Attributes:
session_admission_control_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 EnterpriseSessionAdmissionControlGroupGetListRequest
client = Client()
command = EnterpriseSessionAdmissionControlGroupGetListRequest(
service_provider_id=...,
)
response = client.command(command)
print(response)