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/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemSIPGetACLListRequest
client = Client()
command = SystemSIPGetACLListRequest()
response = client.command(command)
print(response)