stepType property
The type of the step this step entry belongs to.
Output only. Possible string values are:
- "STEP_TYPE_UNSPECIFIED" : Invalid step type.
- "STEP_ASSIGN" : The step entry assigns new variable(s).
- "STEP_STD_LIB_CALL" : The step entry calls a standard library routine.
- "STEP_CONNECTOR_CALL" : The step entry calls a connector.
- "STEP_SUBWORKFLOW_CALL" : The step entry calls a subworklfow.
- "STEP_CALL" : The step entry calls a subworkflow/stdlib.
- "STEP_SWITCH" : The step entry executes a switch-case block.
- "STEP_CONDITION" : The step entry executes a condition inside a switch.
- "STEP_FOR" : The step entry executes a for loop.
- "STEP_FOR_ITERATION" : The step entry executes a iteration of a for loop.
- "STEP_PARALLEL_FOR" : The step entry executes a parallel for loop.
- "STEP_PARALLEL_BRANCH" : The step entry executes a series of parallel branch(es).
- "STEP_PARALLEL_BRANCH_ENTRY" : The step entry executes a branch of a parallel branch.
- "STEP_TRY_RETRY_EXCEPT" : The step entry executes a try/retry/except block.
- "STEP_TRY" : The step entry executes the try part of a try/retry/except block.
- "STEP_RETRY" : The step entry executes the retry part of a try/retry/except block.
- "STEP_EXCEPT" : The step entry executes the except part of a try/retry/except block.
- "STEP_RETURN" : The step entry returns.
- "STEP_RAISE" : The step entry raises an error.
- "STEP_GOTO" : The step entry jumps to another step.
Implementation
core.String? stepType;