GroupAdminAlternateIdGetListRequest
Bases: OCIRequest
Request to get the admin id and the list of alternate admin ids of an admin. The response is either GroupAdminAlternateIdGetListResponse or ErrorResponse. The "userId" can be either the admin user Id or an alternate admin user Id.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupAdminAlternateIdGetListRequest. Contains a table of the main admin user id and the alternate admin user ids, the column headings are: "User Id", "Description", "Alternate". The possible values for "Alternate" are "true" and "false". The "Description" is only present for alternate admin user Ids.
Attributes:
admin_user_id_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 GroupAdminAlternateIdGetListRequest
client = Client()
command = GroupAdminAlternateIdGetListRequest(
user_id=...,
)
response = client.command(command)
print(response)