Struct gapi_grpc::google::cloud::workflows::v1::ListWorkflowsRequest[][src]

pub struct ListWorkflowsRequest {
    pub parent: String,
    pub page_size: i32,
    pub page_token: String,
    pub filter: String,
    pub order_by: String,
}

Request for the [ListWorkflows][google.cloud.workflows.v1.Workflows.ListWorkflows] method.

Fields

parent: String

Required. Project and location from which the workflows should be listed. Format: projects/{project}/locations/{location}

page_size: i32

Maximum number of workflows to return per call. The service may return fewer than this value. If the value is not specified, a default value of 500 will be used. The maximum permitted value is 1000 and values greater than 1000 will be coerced down to 1000.

page_token: String

A page token, received from a previous ListWorkflows call. Provide this to retrieve the subsequent page.

When paginating, all other parameters provided to ListWorkflows must match the call that provided the page token.

filter: String

Filter to restrict results to specific workflows.

order_by: String

Comma-separated list of fields that that specify the order of the results. Default sorting order for a field is ascending. To specify descending order for a field, append a “ desc“ suffix. If not specified, the results will be returned in an unspecified order.

Trait Implementations

impl Clone for ListWorkflowsRequest[src]

impl Debug for ListWorkflowsRequest[src]

impl Default for ListWorkflowsRequest[src]

impl Message for ListWorkflowsRequest[src]

impl PartialEq<ListWorkflowsRequest> for ListWorkflowsRequest[src]

impl StructuralPartialEq for ListWorkflowsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListWorkflowsRequest

impl Send for ListWorkflowsRequest

impl Sync for ListWorkflowsRequest

impl Unpin for ListWorkflowsRequest

impl UnwindSafe for ListWorkflowsRequest

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]