SystemInterceptUserGetDnListRequest
Bases: OCIRequest
Request to get a list of Intercept User dns defined in the system. The response is either a SystemInterceptUserGetDnListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemInterceptUserGetDnListRequest. The Intercept User DN List.
Attributes:
intercept_user_list (Optional[List[InterceptDNListEntry]]):
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 SystemInterceptUserGetDnListRequest
client = Client()
command = SystemInterceptUserGetDnListRequest()
response = client.command(command)
print(response)