Struct gapi_grpc::google::cloud::clouddms::v1::ListMigrationJobsRequest[][src]

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

Retrieve a list of all migration jobs in a given project and location.

Fields

parent: String

Required. The parent, which owns this collection of migrationJobs.

page_size: i32

The maximum number of migration jobs to return. The service may return fewer than this value. If unspecified, at most 50 migration jobs will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.

page_token: String

The nextPageToken value received in the previous call to migrationJobs.list, used in the subsequent request to retrieve the next page of results. On first call this should be left blank. When paginating, all other parameters provided to migrationJobs.list must match the call that provided the page token.

filter: String

A filter expression that filters migration jobs listed in the response. The expression must specify the field name, a comparison operator, and the value that you want to use for filtering. The value must be a string, a number, or a boolean. The comparison operator must be either =, !=, >, or <. For example, list migration jobs created this year by specifying createTime %gt; 2020-01-01T00:00:00.000000000Z. You can also filter nested fields. For example, you could specify reverseSshConnectivity.vmIp = “1.2.3.4” to select all migration jobs connecting through the specific SSH tunnel bastion.

order_by: String

Sort the results based on the migration job name. Valid values are: “name”, “name asc”, and “name desc”.

Trait Implementations

impl Clone for ListMigrationJobsRequest[src]

impl Debug for ListMigrationJobsRequest[src]

impl Default for ListMigrationJobsRequest[src]

impl Message for ListMigrationJobsRequest[src]

impl PartialEq<ListMigrationJobsRequest> for ListMigrationJobsRequest[src]

impl StructuralPartialEq for ListMigrationJobsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListMigrationJobsRequest

impl Send for ListMigrationJobsRequest

impl Sync for ListMigrationJobsRequest

impl Unpin for ListMigrationJobsRequest

impl UnwindSafe for ListMigrationJobsRequest

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]