Struct gapi_grpc::google::devtools::cloudbuild::v1::ListBuildsRequest[][src]

pub struct ListBuildsRequest {
    pub parent: String,
    pub project_id: String,
    pub page_size: i32,
    pub page_token: String,
    pub filter: String,
}

Request to list builds.

Fields

parent: String

The parent of the collection of Builds. Format: projects/{project}/locations/location

project_id: String

Required. ID of the project.

page_size: i32

Number of results to return in the list.

page_token: String

The page token for the next page of Builds.

If unspecified, the first page of results is returned.

If the token is rejected for any reason, INVALID_ARGUMENT will be thrown. In this case, the token should be discarded, and pagination should be restarted from the first page of results.

See https://google.aip.dev/158 for more.

filter: String

The raw filter text to constrain the results.

Trait Implementations

impl Clone for ListBuildsRequest[src]

impl Debug for ListBuildsRequest[src]

impl Default for ListBuildsRequest[src]

impl Message for ListBuildsRequest[src]

impl PartialEq<ListBuildsRequest> for ListBuildsRequest[src]

impl StructuralPartialEq for ListBuildsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListBuildsRequest

impl Send for ListBuildsRequest

impl Sync for ListBuildsRequest

impl Unpin for ListBuildsRequest

impl UnwindSafe for ListBuildsRequest

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]