SystemAdminGetListRequest
Bases: OCIRequest
Get a list of system administrators. The response is either a SystemAdminGetResponse or an ErrorResponse.
Attributes:
Responses
Bases: OCIDataResponse
Response to the SystemAdminGetRequest22. The response contains the system or provisioning administrators profile information.
The following elements are only used in AS data mode and ignored in XS data mode.
accountDisabled
lastAuthenticatedDate
Attributes:
first_name (Optional[str]):
last_name (Optional[str]):
language (str):
admin_type (str):
read_only (bool):
account_disabled (bool):
last_authenticated_date (str):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemAdminGetListRequest
client = Client()
command = SystemAdminGetListRequest()
response = client.command(command)
print(response)