SystemOCICallControlGetACLListRequest
Bases: OCIRequest
Get the OCI call control access control list. The response is either SystemOCICallControlGetACLListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemOCICallControlGetACLListRequest. The table columns are: "Net Address" 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 SystemOCICallControlGetACLListRequest
client = Client()
command = SystemOCICallControlGetACLListRequest()
response = client.command(command)
print(response)