Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Inputs

back to slang DSL

Inputs

Inputs used to pass and manipulate parameters in flows, operations and tasks.
The name of the input is the key.

Property Required Default Description
required true If the input must have a value
default The default value of the input (constant value or expression) in case no other value passed
override false In case it marked as true, the default value is always the value


sample:

 inputs:
   - input_with_value_like_name
   - input_not_required:
       required: false
   - input_use_system_property: ->SYSTEM[memory] + system + meir
   - input_use_expression_inline: ->'1' + '6'
   - input_with_default_value: 
       default: "I'm the default value"
   - input_with_default_expression_value:
       default: ->'1' + '5'
   - input_mix:
       default: "some value"
       required: false

Back to the top