GroupScheduleGetPagedSortedListRequest
Bases: OCIRequest
Get the list of schedules viewable by a group. The response is either a GroupScheduleGetPagedSortedListResponse or an ErrorResponse. If no sortOrder is included, the response is sorted by Name 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):
group_id (str):
response_paging_control (Optional[ResponsePagingControl]):
sort_by_schedule_name (Optional[SortByScheduleName]):
search_criteria_schedule_name (Optional[List[SearchCriteriaScheduleName]]):
search_criteria_exact_schedule_type (Optional[List[SearchCriteriaExactScheduleType]]):
search_criteria_exact_schedule_level (Optional[List[SearchCriteriaExactScheduleLevel]]):
search_criteria_mode_or (Optional[bool]):
Source code in src/mercury_ocip_fast/commands/commands.py
55720 55721 55722 55723 55724 55725 55726 55727 55728 55729 55730 55731 55732 55733 55734 55735 55736 55737 55738 55739 55740 55741 55742 55743 55744 55745 55746 55747 55748 55749 55750 55751 55752 55753 55754 55755 55756 55757 55758 55759 55760 55761 55762 55763 55764 55765 55766 55767 55768 55769 55770 55771 55772 55773 55774 55775 55776 55777 | |
Responses
Bases: OCIDataResponse
Response to GroupScheduleGetPagedSortedListRequest. Contains a 3 column table with column headings: "Name", "Type", "Level" and a row for each schedule.
Attributes:
schedule_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 GroupScheduleGetPagedSortedListRequest
client = Client()
command = GroupScheduleGetPagedSortedListRequest(
service_provider_id=...,
group_id=...,
response_paging_control=...,
sort_by_schedule_name=...,
search_criteria_schedule_name=...,
search_criteria_exact_schedule_type=...,
search_criteria_exact_schedule_level=...,
search_criteria_mode_or=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("GroupScheduleGetPagedSortedListRequest",
service_provider_id=...,
group_id=...,
response_paging_control=...,
sort_by_schedule_name=...,
search_criteria_schedule_name=...,
search_criteria_exact_schedule_type=...,
search_criteria_exact_schedule_level=...,
search_criteria_mode_or=...,
)
print(response)