Struct gapi_grpc::google::monitoring::v3::ListNotificationChannelsRequest[][src]

pub struct ListNotificationChannelsRequest {
    pub name: String,
    pub filter: String,
    pub order_by: String,
    pub page_size: i32,
    pub page_token: String,
}

The ListNotificationChannels request.

Fields

name: String

Required. The project on which to execute the request. The format is:

projects/[PROJECT_ID_OR_NUMBER]

This names the container in which to look for the notification channels; it does not name a specific channel. To query a specific channel by REST resource name, use the [GetNotificationChannel][google.monitoring.v3.NotificationChannelService.GetNotificationChannel] operation.

filter: String

If provided, this field specifies the criteria that must be met by notification channels to be included in the response.

For more details, see sorting and filtering.

order_by: String

A comma-separated list of fields by which to sort the result. Supports the same set of fields as in filter. Entries can be prefixed with a minus sign to sort in descending rather than ascending order.

For more details, see sorting and filtering.

page_size: i32

The maximum number of results to return in a single response. If not set to a positive number, a reasonable value will be chosen by the service.

page_token: String

If non-empty, page_token must contain a value returned as the next_page_token in a previous response to request the next set of results.

Trait Implementations

impl Clone for ListNotificationChannelsRequest[src]

impl Debug for ListNotificationChannelsRequest[src]

impl Default for ListNotificationChannelsRequest[src]

impl Message for ListNotificationChannelsRequest[src]

impl PartialEq<ListNotificationChannelsRequest> for ListNotificationChannelsRequest[src]

impl StructuralPartialEq for ListNotificationChannelsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListNotificationChannelsRequest

impl Send for ListNotificationChannelsRequest

impl Sync for ListNotificationChannelsRequest

impl Unpin for ListNotificationChannelsRequest

impl UnwindSafe for ListNotificationChannelsRequest

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]