SystemScheduleGetListRequest
Bases: OCIRequest
Get the list of a system schedules. The list can be filtered by schedule type. The response is either a SystemScheduleGetListResponse or an ErrorResponse.
Attributes:
schedule_type (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemScheduleGetListRequest. The response contains a list of system schedules.
Attributes:
schedule_name (Optional[List[str]]):
schedule_type (Optional[List[str]]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemScheduleGetListRequest
client = Client()
command = SystemScheduleGetListRequest(
schedule_type=...,
)
response = client.command(command)
print(response)