DAGTask represents a node in the graph during DAG execution
Name | Type | Description | Notes |
---|---|---|---|
arguments | V1alpha1Arguments | [optional] | |
continue_on | V1alpha1ContinueOn | [optional] | |
dependencies | list[str] | Dependencies are name of other targets which this depends on | [optional] |
depends | str | Depends are name of other targets which this depends on | [optional] |
name | str | Name is the name of the target | |
on_exit | str | OnExit is a template reference which is invoked at the end of the template, irrespective of the success, failure, or error of the primary template. | [optional] |
template | str | Name of template to execute | [optional] |
template_ref | V1alpha1TemplateRef | [optional] | |
when | str | When is an expression in which the task should conditionally execute | [optional] |
with_items | list[object] | WithItems expands a task into multiple parallel tasks from the items in the list | [optional] |
with_param | str | WithParam expands a task into multiple parallel tasks from the value in the parameter, which is expected to be a JSON list. | [optional] |
with_sequence | V1alpha1Sequence | [optional] |