JobFilter

Information for providing a set of filters while listing jobs.

Copy
Copied!
            

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; }


completed_before

type: message

When applied, only jobs completed before the supplied date will be returned.

See Timestamp for details.

created_after

type: message

When applied, only jobs created after the supplied date will be returned.

See Timestamp for details.

has_state

When applied, only jobs with matching state values will be returned.

type: repeated enum

See JobState for details.

has_status

type: repeated enum

When applied, only jobs with matching status values will be returned.

See JobStatus for details.

pipeline_id

type: repeated message

When applied, only jobs with matching pipeline identifiers will be returned.

See Identifier for details.

© Copyright 2018-2020, NVIDIA Corporation. All rights reserved. Last updated on Feb 1, 2023.