Struct gapi_grpc::google::cloud::bigquery::datatransfer::v1::ListTransferConfigsRequest[][src]

pub struct ListTransferConfigsRequest {
    pub parent: String,
    pub data_source_ids: Vec<String>,
    pub page_token: String,
    pub page_size: i32,
}

A request to list data transfers configured for a BigQuery project.

Fields

parent: String

Required. The BigQuery project id for which data sources should be returned: projects/{project_id} or projects/{project_id}/locations/{location_id}

data_source_ids: Vec<String>

When specified, only configurations of requested data sources are returned.

page_token: String

Pagination token, which can be used to request a specific page of ListTransfersRequest list results. For multiple-page results, ListTransfersResponse outputs a next_page token, which can be used as the page_token value to request the next page of list results.

page_size: i32

Page size. The default page size is the maximum value of 1000 results.

Trait Implementations

impl Clone for ListTransferConfigsRequest[src]

impl Debug for ListTransferConfigsRequest[src]

impl Default for ListTransferConfigsRequest[src]

impl Message for ListTransferConfigsRequest[src]

impl PartialEq<ListTransferConfigsRequest> for ListTransferConfigsRequest[src]

impl StructuralPartialEq for ListTransferConfigsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListTransferConfigsRequest

impl Send for ListTransferConfigsRequest

impl Sync for ListTransferConfigsRequest

impl Unpin for ListTransferConfigsRequest

impl UnwindSafe for ListTransferConfigsRequest

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]