You can now drag and drop tasks from the list of available tasks.
Note: The currently supported version for F5 is v11.
v12, v13, and v14.
Note: For the tasks there are certain flags which
control their behavior:
- is_deferred_execution: This flag can be set to generate
the commands or unset to execute the task immediately and carry
out the required operation within the workflow.
- is_rollback: In a task, this flag can be set along with
'rollback_input' to carry out the rollback operation. (The
'rollback' output of the previous execution has to be fed to '
rollback_input' )
- operation_type: You can perform create, modify, and
delete operations using this flag.
- is_skip_required: This flag can be set to skip the
execution of a particular task in the workflow.
- is_stop_workflow_on_failure: This flag can be set to stop
the workflow execution in case of any failure.
- tabular_input: This input (list of JSON) can be used to
carry out multiple object operations in single task execution.
Using the tabular input, the actions can be mixed (create,
modify, and delete) and it can be carried out in one attempt.
Performing a rollback can also be performed in one attempt.
Pre-validation will be performed before the implementation and
post-validation will be carried out after the implementation.