Skip to content

Latest commit

History

History
56 lines (47 loc) · 2.09 KB

File metadata and controls

56 lines (47 loc) · 2.09 KB

TaskResponse

Task serializer for responses.

Properties

NameTypeDescriptionNotes
class_refDict[str, object][optional]
depends_on_pastbool
doc_mdstr[optional]
downstream_task_idsList[str][optional]
end_datedatetime[optional]
execution_timeoutTimeDelta[optional]
extra_linksList[str]Extract and return extra_links.[readonly]
is_mappedbool[optional]
operator_namestr[optional]
ownerstr[optional]
paramsDict[str, object][optional]
poolstr[optional]
pool_slotsfloat[optional]
priority_weightfloat[optional]
queuestr[optional]
retriesfloat[optional]
retry_delayTimeDelta[optional]
retry_exponential_backofffloat
start_datedatetime[optional]
task_display_namestr[optional]
task_idstr[optional]
template_fieldsList[str][optional]
trigger_rulestr[optional]
ui_colorstr[optional]
ui_fgcolorstr[optional]
wait_for_downstreambool
weight_rulestr[optional]

Example

fromairflow_client.client.models.task_responseimportTaskResponse# TODO update the JSON string belowjson="{}"# create an instance of TaskResponse from a JSON stringtask_response_instance=TaskResponse.from_json(json)
# print the JSON string representation of the objectprint(TaskResponse.to_json())
# convert the object into a dicttask_response_dict=task_response_instance.to_dict()
# create an instance of TaskResponse from a dicttask_response_from_dict=TaskResponse.from_dict(task_response_dict)

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