SystemExternalAuthenticationGetACLListRequest
Bases: OCIRequest
Get the external authentication access control list. The response is either SystemExternalAuthenticationGetACLListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemExternalAuthenticationGetACLListRequest. 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 SystemExternalAuthenticationGetACLListRequest
client = Client()
command = SystemExternalAuthenticationGetACLListRequest()
response = client.command(command)
print(response)