Struct gapi_grpc::google::cloud::domains::v1alpha2::ListRegistrationsRequest[][src]

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

Request for the ListRegistrations method.

Fields

parent: String

Required. The project and location from which to list Registrations, specified in the format projects/*/locations/*.

page_size: i32

Maximum number of results to return.

page_token: String

When set to the next_page_token from a prior response, provides the next page of results.

filter: String

Filter expression to restrict the Registrations returned.

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, a boolean, or an enum value. The comparison operator should be one of =, !=, >, <, >=, <=, or : for prefix or wildcard matches.

For example, to filter to a specific domain name, use an expression like domainName="example.com". You can also check for the existence of a field; for example, to find domains using custom DNS settings, use an expression like dnsSettings.customDns:*.

You can also create compound filters by combining expressions with the AND and OR operators. For example, to find domains that are suspended or have specific issues flagged, use an expression like (state=SUSPENDED) OR (issue:*).

Trait Implementations

impl Clone for ListRegistrationsRequest[src]

impl Debug for ListRegistrationsRequest[src]

impl Default for ListRegistrationsRequest[src]

impl Message for ListRegistrationsRequest[src]

impl PartialEq<ListRegistrationsRequest> for ListRegistrationsRequest[src]

impl StructuralPartialEq for ListRegistrationsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListRegistrationsRequest

impl Send for ListRegistrationsRequest

impl Sync for ListRegistrationsRequest

impl Unpin for ListRegistrationsRequest

impl UnwindSafe for ListRegistrationsRequest

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]