SystemClientIdentityGetListRequest
Bases: OCIRequest
Request to get a list of client identities. The response is either a SystemClientIdentityGetListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemClientIdentityGetListRequest. Returns a table with column headings: "Client Identity".
Attributes:
client_identity_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 SystemClientIdentityGetListRequest
client = Client()
command = SystemClientIdentityGetListRequest()
response = client.command(command)
print(response)