boolean
A boolean type argument has two possible values: true or false.
Example:
arguments:
- name: --trim
type: boolean
default: true
description: Trim whitespace from the final output
alternatives: ["-t"]alternatives
Type: String / List of String
List of alternative format variations for this argument.
default
Type: Boolean / List of Boolean
The default value when no argument value is provided. This will not work if the required property is enabled.
Example:
- name: --my_boolean
type: boolean
default: truedescription
Type: String
A description of the argument. This will be displayed with --help.
example
Type: Boolean / List of Boolean
An example value for this argument. If no default property was specified, this will be used for that purpose.
Example:
- name: --my_boolean
type: boolean
example: trueinfo
Type: Json
Structured information. Can be any shape: a string, vector, map or even nested map.
Example:
info:
category: cat1
labels: [one, two, three]multiple
Type: Boolean
Treat the argument value as an array. Arrays can be passed using the delimiter --foo=1:2:3 or by providing the same argument multiple times --foo 1 --foo 2. You can use a custom delimiter by using the multiple_sep property. false by default.
Examples:
- name: --my_boolean
type: boolean
multiple: trueHere’s an example of how to use this:
my_component --my_boolean=true:true:falsemultiple_sep
Type: String
The delimiter character for providing multiple values. : by default.
Examples:
- name: --my_boolean
type: boolean
multiple: true
multiple_sep: ","Here’s an example of how to use this:
my_component --my_boolean=true,true,falsename
Type: String
The name of the argument. Can be in the formats --trim, -t or trim. The number of dashes determines how values can be passed:
--trimis a long option, which can be passed withexecutable_name --trim-tis a short option, which can be passed withexecutable_name -ttrimis an argument, which can be passed withexecutable_name trim
required
Type: Boolean
Make the value for this argument required. If set to true, an error will be produced if no value was provided. false by default.
Example:
- name: --my_boolean
type: boolean
required: truetype
Type: String
Specifies the type of the argument.