Struct gapi_grpc::google::cloud::gkehub::v1beta1::ListMembershipsRequest[][src]

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

Request message for GkeHubMembershipService.ListMemberships method.

Fields

parent: String

Required. The parent (project and location) where the Memberships will be listed. Specified in the format projects/*/locations/*.

page_size: i32

Optional. When requesting a ‘page’ of resources, page_size specifies number of resources to return. If unspecified or set to 0, all resources will be returned.

page_token: String

Optional. Token returned by previous call to ListMemberships which specifies the position in the list from where to continue listing the resources.

filter: String

Optional. Lists Memberships that match the filter expression, following the syntax outlined in https://google.aip.dev/160.

Examples:

order_by: String

Optional. One or more fields to compare and use to sort the output. See https://google.aip.dev/132#ordering.

Trait Implementations

impl Clone for ListMembershipsRequest[src]

impl Debug for ListMembershipsRequest[src]

impl Default for ListMembershipsRequest[src]

impl Message for ListMembershipsRequest[src]

impl PartialEq<ListMembershipsRequest> for ListMembershipsRequest[src]

impl StructuralPartialEq for ListMembershipsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListMembershipsRequest

impl Send for ListMembershipsRequest

impl Sync for ListMembershipsRequest

impl Unpin for ListMembershipsRequest

impl UnwindSafe for ListMembershipsRequest

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]