SystemOCICallControlApplicationGetACLListRequest
Bases: OCIRequest
Get the OCI call control access control list. The response is either SystemOCICallControlApplicationGetACLListResponse or ErrorResponse.
Attributes:
application_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemOCICallControlApplicationGetACLListRequest. 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 SystemOCICallControlApplicationGetACLListRequest
client = Client()
command = SystemOCICallControlApplicationGetACLListRequest(
application_id=...,
)
response = client.command(command)
print(response)