Struct gapi_grpc::google::cloud::metastore::v1beta::ListServicesRequest[][src]

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

Request message for [DataprocMetastore.ListServices][google.cloud.metastore.v1beta.DataprocMetastore.ListServices].

Fields

parent: String

Required. The relative resource name of the location of metastore services to list, in the following form:

projects/{project_number}/locations/{location_id}.

page_size: i32

Optional. The maximum number of services to return. The response may contain less than the maximum number. If unspecified, no more than 500 services are returned. The maximum value is 1000; values above 1000 are changed to 1000.

page_token: String

Optional. A page token, received from a previous [DataprocMetastore.ListServices][google.cloud.metastore.v1beta.DataprocMetastore.ListServices] call. Provide this token to retrieve the subsequent page.

To retrieve the first page, supply an empty page token.

When paginating, other parameters provided to [DataprocMetastore.ListServices][google.cloud.metastore.v1beta.DataprocMetastore.ListServices] must match the call that provided the page token.

filter: String

Optional. The filter to apply to list results.

order_by: String

Optional. Specify the ordering of results as described in Sorting Order. If not specified, the results will be sorted in the default order.

Trait Implementations

impl Clone for ListServicesRequest[src]

impl Debug for ListServicesRequest[src]

impl Default for ListServicesRequest[src]

impl Message for ListServicesRequest[src]

impl PartialEq<ListServicesRequest> for ListServicesRequest[src]

impl StructuralPartialEq for ListServicesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListServicesRequest

impl Send for ListServicesRequest

impl Sync for ListServicesRequest

impl Unpin for ListServicesRequest

impl UnwindSafe for ListServicesRequest

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]