Google Cloud Dataflow V1beta3 Client - Class Filter (0.5.1)

Reference documentation and code samples for the Google Cloud Dataflow V1beta3 Client class Filter.

This field filters out and returns jobs in the specified job state. The order of data returned is determined by the filter used, and is subject to change.

Protobuf type google.dataflow.v1beta3.ListJobsRequest.Filter

Namespace

Google \ Cloud \ Dataflow \ V1beta3 \ ListJobsRequest

Methods

static::name

Parameter
NameDescription
value mixed

static::value

Parameter
NameDescription
name mixed

Constants

UNKNOWN

Value: 0

The filter isn't specified, or is unknown. This returns all jobs ordered on descending JobUuid.

Generated from protobuf enum UNKNOWN = 0;

ALL

Value: 1

Returns all running jobs first ordered on creation timestamp, then returns all terminated jobs ordered on the termination timestamp.

Generated from protobuf enum ALL = 1;

TERMINATED

Value: 2

Filters the jobs that have a terminated state, ordered on the termination timestamp. Example terminated states: JOB_STATE_STOPPED, JOB_STATE_UPDATED, JOB_STATE_DRAINED, etc.

Generated from protobuf enum TERMINATED = 2;

ACTIVE

Value: 3

Filters the jobs that are running ordered on the creation timestamp.

Generated from protobuf enum ACTIVE = 3;