action property

String? action
getter/setter pair

Action to execute when ActionCondition is true.

When RETRY_TASK is specified, we will retry failed tasks if we notice any exit code match and fail tasks if no match is found. Likewise, when FAIL_TASK is specified, we will fail tasks if we notice any exit code match and retry tasks if no match is found. Possible string values are:

  • "ACTION_UNSPECIFIED" : Action unspecified.
  • "RETRY_TASK" : Action that tasks in the group will be scheduled to re-execute.
  • "FAIL_TASK" : Action that tasks in the group will be stopped immediately.

Implementation

core.String? action;