Module: Google::Privacy::Dlp::V2::DlpJob::JobState

Defined in:
lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb

Overview

Possible states of a job. New items may be added.

Constant Summary collapse

JOB_STATE_UNSPECIFIED =

Unused.

0
PENDING =

The job has not yet started.

1
RUNNING =

The job is currently running. Once a job has finished it will transition to FAILED or DONE.

2
DONE =

The job is no longer running.

3
CANCELED =

The job was canceled before it could complete.

4
FAILED =

The job had an error and did not complete.

5
ACTIVE =

The job is currently accepting findings via hybridInspect. A hybrid job in ACTIVE state may continue to have findings added to it through calling of hybridInspect. After the job has finished no more calls to hybridInspect may be made. ACTIVE jobs can transition to DONE.

6