Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Latest commit

 

History

History
30 lines (22 loc) · 1.39 KB

CronSchedule.md

File metadata and controls

30 lines (22 loc) · 1.39 KB

CronSchedule

Properties

Name Type Description Notes
quartz_cron_expression str A Cron expression using Quartz syntax that describes the schedule for a job. See Cron Trigger for details. This field is required.
timezone_id str A Java timezone ID. The schedule for a job is resolved with respect to this timezone. See Java TimeZone for details. This field is required.
pause_status str Indicate whether this schedule is paused or not. [optional]

Example

from databricks_jobs.models.cron_schedule import CronSchedule

# TODO update the JSON string below
json = "{}"
# create an instance of CronSchedule from a JSON string
cron_schedule_instance = CronSchedule.from_json(json)
# print the JSON string representation of the object
print CronSchedule.to_json()

# convert the object into a dict
cron_schedule_dict = cron_schedule_instance.to_dict()
# create an instance of CronSchedule from a dict
cron_schedule_form_dict = cron_schedule.from_dict(cron_schedule_dict)

[Back to Model list] [Back to API list] [Back to README]