Pipeline Utils
SINCE VERSION 1.0
What is a Pipeline Util?
Inside a Pipeline Expression you can access a huge library of built-in PEL Utils (= Pipeline Expression Language Utils), which can additionally simplify your integration and automation tasks.
See the reference docs for a full list of all available utils.
If you're missing a util there, please drop a note.
Usage
Such a util is always embedded inside a Pipeline Expression and has a structure like this:
@util.method(args...)
Whereas you need to replace util
by the util name, method
by the method name you would like to call and args
by the optional arguments to the method you would like to execute.
Examples for @date
Here is an example to return the current date using such a util without any argument:
@date.now()
And here a fully working example, embedded inside a Pipeline Expression:
pipeline:
- log:
message: "The current date is: ${@date.now()}"
Output:
Examples for @list
Output:
Examples for @text
Output:
Auto-completion
In case you're working with the Online Workbench you can get auto-completion of all Utils out-of-the-box:
YOUR HELP IS NEEDED!
In case you're missing something on this page, you found an error or you have an idea for improvement add a comment on this page directly and put your feedback there. Many thanks for your help in order to make PIPEFORCE better!