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
Methods
name
Parameter | |
---|---|
Name | Description |
value |
mixed
|
value
Parameter | |
---|---|
Name | Description |
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;