[][src]Struct pachyderm::pps::ListJobRequest

pub struct ListJobRequest {
    pub pipeline: Option<Pipeline>,
    pub input_commit: Vec<Commit>,
    pub output_commit: Option<Commit>,
    pub history: i64,
    pub full: bool,
}

Fields

pipeline: Option<Pipeline>

nil means all pipelines

input_commit: Vec<Commit>

nil means all inputs

output_commit: Option<Commit>

nil means all outputs

history: i64

History indicates return jobs from historical versions of pipelines semantics are: 0: Return jobs from the current version of the pipeline or pipelines. 1: Return the above and jobs from the next most recent version 2: etc. -1: Return jobs from all historical versions.

full: bool

Full indicates whether the result should include all pipeline details in each JobInfo, or limited information including name and status, but excluding information in the pipeline spec. Leaving this "false" can make the call significantly faster in clusters with a large number of pipelines and jobs. Note that if 'input_commit' is set, this field is coerced to "true"

Trait Implementations

impl Clone for ListJobRequest[src]

impl Debug for ListJobRequest[src]

impl Default for ListJobRequest[src]

impl Message for ListJobRequest[src]

impl PartialEq<ListJobRequest> for ListJobRequest[src]

impl StructuralPartialEq for ListJobRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]