ServiceProviderAlternateUserIdGetListRequest
Bases: OCIRequest
Request to get the list of alternate user ids in the service provider/enterprise. The response is either ServiceProviderAlternateUserIdGetListResponse or ErrorResponse.
Attributes:
service_provider_id (str):
response_size_limit (Optional[int]):
search_criteria_alternate_user_id (Optional[List[SearchCriteriaAlternateUserId]]):
search_criteria_user_id (Optional[List[SearchCriteriaUserId]]):
search_criteria_group_id (Optional[List[SearchCriteriaGroupId]]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ServiceProviderAlternateUserIdGetListRequest. The "User Type" column contains the corresponding enumerated UserType value. Contains a table of alternate user ids, the column headings are: "User Id", "Alternate User Id", "Group Id" and "User Type".
Attributes:
alternate_user_id_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ServiceProviderAlternateUserIdGetListRequest
client = Client()
command = ServiceProviderAlternateUserIdGetListRequest(
service_provider_id=...,
response_size_limit=...,
search_criteria_alternate_user_id=...,
search_criteria_user_id=...,
search_criteria_group_id=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("ServiceProviderAlternateUserIdGetListRequest",
service_provider_id=...,
response_size_limit=...,
search_criteria_alternate_user_id=...,
search_criteria_user_id=...,
search_criteria_group_id=...,
)
print(response)