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

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

Request message for ‘ListConnectionProfiles’ request.

Fields

parent: String

Required. The parent, which owns this collection of connection profiles.

page_size: i32

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

page_token: String

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

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

filter: String

A filter expression that filters connection profiles 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 connection profiles created this year by specifying createTime %gt; 2020-01-01T00:00:00.000000000Z. You can also filter nested fields. For example, you could specify mySql.username = %lt;my_username%gt; to list all connection profiles configured to connect with a specific username.

order_by: String

the order by fields for the result.

Trait Implementations

impl Clone for ListConnectionProfilesRequest[src]

impl Debug for ListConnectionProfilesRequest[src]

impl Default for ListConnectionProfilesRequest[src]

impl Message for ListConnectionProfilesRequest[src]

impl PartialEq<ListConnectionProfilesRequest> for ListConnectionProfilesRequest[src]

impl StructuralPartialEq for ListConnectionProfilesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListConnectionProfilesRequest

impl Send for ListConnectionProfilesRequest

impl Sync for ListConnectionProfilesRequest

impl Unpin for ListConnectionProfilesRequest

impl UnwindSafe for ListConnectionProfilesRequest

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]