Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.66 KB

TaskSettings.md

File metadata and controls

38 lines (29 loc) · 1.66 KB

TaskSettings

Properties

Name Type Description Notes
name str [optional]
resource str Unique resource identifier [optional]
reset_observations bool [optional] [default to True]
parallel bool [optional] [default to True]
gates_need_full_observation bool [optional] [default to False]
tags object Key-value pairs on which you can set at task creation and later filter tasks [optional]
variables object set of variables which will be used when starting a task and will automatically be injected in the template before starting a task. [optional]
type ReactiveTaskSettingType
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

Example

from waylay.services.rules.models.task_settings import TaskSettings

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

# convert the object into a dict
task_settings_dict = task_settings_instance.to_dict()
# create an instance of TaskSettings from a dict
task_settings_form_dict = task_settings.from_dict(task_settings_dict)

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