SystemSIPGetACLListRequest
Bases: OCIRequest
Get the SIP access control list. The response is either SystemSIPGetACLListResponse or ErrorResponse.
Attributes:
Responses
Bases: OCIDataResponse
Response to SystemSIPGetACLListRequest. The table columns are: "Net Address", "Transport" and "Description".
Attributes:
acl_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 SystemSIPGetACLListRequest
client = Client()
command = SystemSIPGetACLListRequest()
response = client.command(command)
print(response)