Variable RunResultState_RunResultStateConst
RunResultState_RunResultState: {
CANCELED: "CANCELED";
DISABLED: "DISABLED";
EXCLUDED: "EXCLUDED";
FAILED: "FAILED";
MAXIMUM_CONCURRENT_RUNS_REACHED: "MAXIMUM_CONCURRENT_RUNS_REACHED";
SUCCESS: "SUCCESS";
SUCCESS_WITH_FAILURES: "SUCCESS_WITH_FAILURES";
TIMEDOUT: "TIMEDOUT";
UPSTREAM_CANCELED: "UPSTREAM_CANCELED";
UPSTREAM_FAILED: "UPSTREAM_FAILED";
} = ...
Type Declaration
ReadonlyCANCELED: "CANCELED"
ReadonlyDISABLED: "DISABLED"
ReadonlyEXCLUDED: "EXCLUDED"
ReadonlyFAILED: "FAILED"
ReadonlyMAXIMUM_CONCURRENT_RUNS_REACHED: "MAXIMUM_CONCURRENT_RUNS_REACHED"
ReadonlySUCCESS: "SUCCESS"
ReadonlySUCCESS_WITH_FAILURES: "SUCCESS_WITH_FAILURES"
ReadonlyTIMEDOUT: "TIMEDOUT"
ReadonlyUPSTREAM_CANCELED: "UPSTREAM_CANCELED"
ReadonlyUPSTREAM_FAILED: "UPSTREAM_FAILED"
A value indicating the run's result. The possible values are:
SUCCESS: The task completed successfully.FAILED: The task completed with an error.TIMEDOUT: The run was stopped after reaching the timeout.CANCELED: The run was canceled at user request.MAXIMUM_CONCURRENT_RUNS_REACHED: The run was skipped because the maximum concurrent runs were reached.EXCLUDED: The run was skipped because the necessary conditions were not met.SUCCESS_WITH_FAILURES: The job run completed successfully with some failures; leaf tasks were successful.UPSTREAM_FAILED: The run was skipped because of an upstream failure.UPSTREAM_CANCELED: The run was skipped because an upstream task was canceled.DISABLED: The run was skipped because it was disabled explicitly by the user.