...
A task is an action performed within a pipeline - many different tasks existsexist, ranging from branches (if...then...else) task, to validations, convertionsconversions, logging, tracing to service callouts, proxying requests or returning responses.
...
- If...then...else
Allows you to branch out, based upon a list of configured conditions - if conditions match, one branch of tasks are executed, if not - another branch is executed instead. - If failure then... else
If any of the previous tasks has have failed with an error (unless the error has been cleared) then execute X tasks, if not, execute Y other tasks.
...