SystemMigratedUsersGetListRequest22
Bases: OCIRequest
Get a list of migrated users. If the optional parameter userListSizeLimit is set, then the list returned in the response will contain entries up to value of userListSizeLimit. The response is either SystemMigratedUsersGetListResponse22 or ErrorResponse.
Attributes:
user_list_size_limit (Optional[int]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemMigratedUsersGetListRequest22. The optional totalNumberOfMigratedUsers is returned only when the userListSizeLimit is set in the request and if the total number of migrated users is greater than the value of userListSizeLimit.
Attributes:
user_id (Optional[List[str]]):
total_number_of_migrated_users (Optional[int]):
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 SystemMigratedUsersGetListRequest22
client = Client()
command = SystemMigratedUsersGetListRequest22(
user_list_size_limit=...,
)
response = client.command(command)
print(response)