Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.82 KB

TaskDefaultsElement.md

File metadata and controls

38 lines (29 loc) · 1.82 KB

TaskDefaultsElement

default task settings that will be applied when creating a task from the template

Properties

Name Type Description Notes
tags object Key-value pairs on which you can set at task creation and later filter tasks [optional]
type TaskScenarioType [optional]
reset_observations bool [optional]
parallel bool [optional]
gates_need_full_observation bool [optional]
cron str cron expression as defined in Cron format [optional]
rrule str RRule expression as defined in RFC5545 3.8.5.3 [optional]
time_zone str Optional identifier of the time zone in which the schedule expression is to be interpreted [optional]
frequency int polling frequency in milliseconds [optional]

Example

from waylay.services.rules.models.task_defaults_element import TaskDefaultsElement

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

# convert the object into a dict
task_defaults_element_dict = task_defaults_element_instance.to_dict()
# create an instance of TaskDefaultsElement from a dict
task_defaults_element_form_dict = task_defaults_element.from_dict(task_defaults_element_dict)

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