Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 2.92 KB

TaskListingInner.md

File metadata and controls

50 lines (41 loc) · 2.92 KB

TaskListingInner

Properties

Name Type Description Notes
id str Unique task identifier
name str
status TaskStatus
user str Creation user mail address or 'system' for system generated tasks
create_time int Timestamp expressed as milliseconds since 00:00:00 UTC on 1 January 1970, not counting leap seconds.
template str Unique template identifier [optional]
network object The graph, either from the template or from the task definition. Depending on the `format` query parameter either BN or simplified format
resource_ids List[str] List of resources that are used in the task [optional]
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_listing_inner import TaskListingInner

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

# convert the object into a dict
task_listing_inner_dict = task_listing_inner_instance.to_dict()
# create an instance of TaskListingInner from a dict
task_listing_inner_form_dict = task_listing_inner.from_dict(task_listing_inner_dict)

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