Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 2.32 KB

TaskRuntimeInformation.md

File metadata and controls

42 lines (33 loc) · 2.32 KB

TaskRuntimeInformation

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]
finished_time int Timestamp expressed as milliseconds since 00:00:00 UTC on 1 January 1970, not counting leap seconds. [optional]
invocation_count int Number of times the task has been invoked [optional]
raw_data object rawData of the task [optional]
last_execution_time int Timestamp expressed as milliseconds since 00:00:00 UTC on 1 January 1970, not counting leap seconds. [optional]
health TaskRuntimeInformationAllOfHealth [optional]

Example

from waylay.services.rules.models.task_runtime_information import TaskRuntimeInformation

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

# convert the object into a dict
task_runtime_information_dict = task_runtime_information_instance.to_dict()
# create an instance of TaskRuntimeInformation from a dict
task_runtime_information_form_dict = task_runtime_information.from_dict(task_runtime_information_dict)

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