Module: Google::Cloud::Batch::V1::JobStatus::State

Defined in:
proto_docs/google/cloud/batch/v1/job.rb

Overview

Valid Job states.

Constant Summary collapse

STATE_UNSPECIFIED =

Job state unspecified.

0
QUEUED =

Job is admitted (validated and persisted) and waiting for resources.

1
SCHEDULED =

Job is scheduled to run as soon as resource allocation is ready. The resource allocation may happen at a later time but with a high chance to succeed.

2
RUNNING =

Resource allocation has been successful. At least one Task in the Job is RUNNING.

3
SUCCEEDED =

All Tasks in the Job have finished successfully.

4
FAILED =

At least one Task in the Job has failed.

5
DELETION_IN_PROGRESS =

The Job will be deleted, but has not been deleted yet. Typically this is because resources used by the Job are still being cleaned up.

6