Enum ListJobsRequest.Filter (0.8.0)

public enum ListJobsRequest.Filter extends Enum<ListJobsRequest.Filter> implements ProtocolMessageEnum

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 enum google.dataflow.v1beta3.ListJobsRequest.Filter

Implements

ProtocolMessageEnum

Static Fields

NameDescription
ACTIVE

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

ACTIVE = 3;

ACTIVE_VALUE

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

ACTIVE = 3;

ALL

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

ALL = 1;

ALL_VALUE

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

ALL = 1;

TERMINATED

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.

TERMINATED = 2;

TERMINATED_VALUE

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.

TERMINATED = 2;

UNKNOWN

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

UNKNOWN = 0;

UNKNOWN_VALUE

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

UNKNOWN = 0;

UNRECOGNIZED

Static Methods

NameDescription
forNumber(int value)
getDescriptor()
internalGetValueMap()
valueOf(Descriptors.EnumValueDescriptor desc)
valueOf(int value)

Deprecated. Use #forNumber(int) instead.

valueOf(String name)
values()

Methods

NameDescription
getDescriptorForType()
getNumber()
getValueDescriptor()