You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Optional: the max amount of rows to return for pagination.
[optional]
offset
int
Optional: the amount to offset the rows by for pagination.
[optional]
scheduled_job_id
List[str]
Optional: specicified ScheduledJobs.
[optional]
with_latest
bool
Optional: whether return latest runs for ScheduledJobs.
[optional]
Example
fromibm_gdsc_sdk_saas.models.schedulerv3_search_scheduled_task_runs_requestimportSchedulerv3SearchScheduledTaskRunsRequest# TODO update the JSON string belowjson="{}"# create an instance of Schedulerv3SearchScheduledTaskRunsRequest from a JSON stringschedulerv3_search_scheduled_task_runs_request_instance=Schedulerv3SearchScheduledTaskRunsRequest.from_json(json)
# print the JSON string representation of the objectprint(Schedulerv3SearchScheduledTaskRunsRequest.to_json())
# convert the object into a dictschedulerv3_search_scheduled_task_runs_request_dict=schedulerv3_search_scheduled_task_runs_request_instance.to_dict()
# create an instance of Schedulerv3SearchScheduledTaskRunsRequest from a dictschedulerv3_search_scheduled_task_runs_request_from_dict=Schedulerv3SearchScheduledTaskRunsRequest.from_dict(schedulerv3_search_scheduled_task_runs_request_dict)