Struct gapi_grpc::google::cloud::bigquery::migration::v2alpha::ListMigrationSubtasksRequest[][src]

pub struct ListMigrationSubtasksRequest {
    pub parent: String,
    pub read_mask: Option<FieldMask>,
    pub page_size: i32,
    pub page_token: String,
    pub filter: String,
}

A request to list previously created migration subtasks.

Fields

parent: String

Required. The migration task of the subtasks to list. Example: projects/123/locations/us/workflows/1234

read_mask: Option<FieldMask>

Optional. The list of fields to be retrieved.

page_size: i32

Optional. The maximum number of migration tasks to return. The service may return fewer than this number.

page_token: String

Optional. A page token, received from previous ListMigrationSubtasks call. Provide this to retrieve the subsequent page.

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

filter: String

Optional. The filter to apply. This can be used to get the subtasks of a specific tasks in a workflow, e.g. migration_task = "ab012" where "ab012" is the task ID (not the name in the named map).

Trait Implementations

impl Clone for ListMigrationSubtasksRequest[src]

impl Debug for ListMigrationSubtasksRequest[src]

impl Default for ListMigrationSubtasksRequest[src]

impl Message for ListMigrationSubtasksRequest[src]

impl PartialEq<ListMigrationSubtasksRequest> for ListMigrationSubtasksRequest[src]

impl StructuralPartialEq for ListMigrationSubtasksRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListMigrationSubtasksRequest

impl Send for ListMigrationSubtasksRequest

impl Sync for ListMigrationSubtasksRequest

impl Unpin for ListMigrationSubtasksRequest

impl UnwindSafe for ListMigrationSubtasksRequest

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]