args property

Map<String, String>? args
getter/setter pair

Execution spec arguments.

If the map is left empty, the task will run with existing execution spec args from task definition. If the map contains an entry with a new key, the same will be added to existing set of args. If the map contains an entry with an existing arg key in task definition, the task will run with new arg value for that entry. Clearing an existing arg will require arg value to be explicitly set to a hyphen "-". The arg value cannot be empty.

Optional.

Implementation

core.Map<core.String, core.String>? args;