ServiceProviderAdminGetPagedSortedListRequest
Bases: OCIRequest
Get a list of service provider administrators. The response is either a ServiceProviderAdminGetPagedSortedListResponse or an ErrorResponse. If no sortOrder is included, the response is sorted by Administrator ID ascending by default. If the responsePagingControl element is not provided, the paging startIndex will be set to 1 by default, and the responsePageSize will be set to the maximum responsePageSize by default. Multiple search criteria are logically ANDed together unless the searchCriteriaModeOr option is included. Then the search criteria are logically ORed together.
Attributes:
service_provider_id (str):
response_paging_control (Optional[ResponsePagingControl]):
sort_order (Optional[List[SortOrderServiceProviderAdminGetPagedSortedList]]):
search_criteria_admin_id (Optional[List[SearchCriteriaAdminId]]):
search_criteria_admin_last_name (Optional[List[SearchCriteriaAdminLastName]]):
search_criteria_admin_first_name (Optional[List[SearchCriteriaAdminFirstName]]):
search_criteria_exact_service_provider_admin_type (Optional[List[SearchCriteriaExactServiceProviderAdminType]]):
search_criteria_language (Optional[List[SearchCriteriaLanguage]]):
search_criteria_mode_or (Optional[bool]):
Source code in src/mercury_ocip/commands/commands.py
63253 63254 63255 63256 63257 63258 63259 63260 63261 63262 63263 63264 63265 63266 63267 63268 63269 63270 63271 63272 63273 63274 63275 63276 63277 63278 63279 63280 63281 63282 63283 63284 63285 63286 63287 63288 63289 63290 63291 63292 63293 63294 63295 63296 63297 63298 63299 63300 63301 63302 63303 63304 63305 63306 63307 63308 63309 63310 63311 63312 63313 63314 63315 63316 63317 63318 63319 63320 | |
Responses
Bases: OCIDataResponse
Response to ServiceProviderAdminGetPagedSortedListRequest. Contains a 7 column table with column headings "Administrator ID", "Last Name", "First Name", "Administrator Type", "Language", "Locale" and "Encoding". The following columns are only returned in AS data mode: "Locale" and "Encoding".
Attributes:
service_provider_admin_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ServiceProviderAdminGetPagedSortedListRequest
client = Client()
command = ServiceProviderAdminGetPagedSortedListRequest(
service_provider_id=...,
response_paging_control=...,
sort_order=...,
search_criteria_admin_id=...,
search_criteria_admin_last_name=...,
search_criteria_admin_first_name=...,
search_criteria_exact_service_provider_admin_type=...,
search_criteria_language=...,
search_criteria_mode_or=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("ServiceProviderAdminGetPagedSortedListRequest",
service_provider_id=...,
response_paging_control=...,
sort_order=...,
search_criteria_admin_id=...,
search_criteria_admin_last_name=...,
search_criteria_admin_first_name=...,
search_criteria_exact_service_provider_admin_type=...,
search_criteria_language=...,
search_criteria_mode_or=...,
)
print(response)