18.50. JobFilter
Information for providing a set of filters while listing jobs.
message JobFilter {
Timestamp completed_before = 1;
Timestamp created_after = 2;
repeated JobState has_state = 3;
repeated JobStatus has_status = 4;
repeated Identifier pipeline_id = 5;
}
18.50.1.1. completed_before
type: message
When applied, only jobs completed before the supplied date will be returned.
See Timestamp for details.
18.50.1.2. created_after
type: message
When applied, only jobs created after the supplied date will be returned.
See Timestamp for details.
18.50.1.3. has_state
When applied, only jobs with matching state values will be returned.
type: repeated enum
See JobState for details.
18.50.1.4. has_status
type: repeated enum
When applied, only jobs with matching status values will be returned.
See JobStatus for details.
18.50.1.5. pipeline_id
type: repeated message
When applied, only jobs with matching pipeline identifiers will be returned.
See Identifier for details.