Struct gapi_grpc::google::genomics::v1alpha2::ListPipelinesRequest[][src]

pub struct ListPipelinesRequest {
    pub project_id: String,
    pub name_prefix: String,
    pub page_size: i32,
    pub page_token: String,
}

A request to list pipelines in a given project. Pipelines can be filtered by name using namePrefix: all pipelines with names that begin with namePrefix will be returned. Uses standard pagination: pageSize indicates how many pipelines to return, and pageToken comes from a previous ListPipelinesResponse to indicate offset.

Fields

project_id: String

Required. The name of the project to search for pipelines. Caller must have READ access to this project.

name_prefix: String

Pipelines with names that match this prefix should be returned. If unspecified, all pipelines in the project, up to pageSize, will be returned.

page_size: i32

Number of pipelines to return at once. Defaults to 256, and max is 2048.

page_token: String

Token to use to indicate where to start getting results. If unspecified, returns the first page of results.

Trait Implementations

impl Clone for ListPipelinesRequest[src]

impl Debug for ListPipelinesRequest[src]

impl Default for ListPipelinesRequest[src]

impl Message for ListPipelinesRequest[src]

impl PartialEq<ListPipelinesRequest> for ListPipelinesRequest[src]

impl StructuralPartialEq for ListPipelinesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListPipelinesRequest

impl Send for ListPipelinesRequest

impl Sync for ListPipelinesRequest

impl Unpin for ListPipelinesRequest

impl UnwindSafe for ListPipelinesRequest

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]