Struct gapi_grpc::google::storagetransfer::v1::ListTransferJobsRequest[][src]

pub struct ListTransferJobsRequest {
    pub filter: String,
    pub page_size: i32,
    pub page_token: String,
}

project_id, job_names, and job_statuses are query parameters that can be specified when listing transfer jobs.

Fields

filter: String

A list of query parameters specified as JSON text in the form of {“project_id”:“my_project_id”, “job_names”:[“jobid1”,“jobid2”,…], “job_statuses”:[“status1”,“status2”,…]}. Since job_names and job_statuses support multiple values, their values must be specified with array notation. project_id is required. job_names and job_statuses are optional. The valid values for job_statuses are case-insensitive: ENABLED, DISABLED, and DELETED.

page_size: i32

The list page size. The max allowed value is 256.

page_token: String

The list page token.

Trait Implementations

impl Clone for ListTransferJobsRequest[src]

impl Debug for ListTransferJobsRequest[src]

impl Default for ListTransferJobsRequest[src]

impl Message for ListTransferJobsRequest[src]

impl PartialEq<ListTransferJobsRequest> for ListTransferJobsRequest[src]

impl StructuralPartialEq for ListTransferJobsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListTransferJobsRequest

impl Send for ListTransferJobsRequest

impl Sync for ListTransferJobsRequest

impl Unpin for ListTransferJobsRequest

impl UnwindSafe for ListTransferJobsRequest

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]