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

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

The protocol for the ListAlertPolicies request.

Fields

name: String

Required. The project whose alert policies are to be listed. The format is:

projects/[PROJECT_ID_OR_NUMBER]

Note that this field names the parent container in which the alerting policies to be listed are stored. To retrieve a single alerting policy by name, use the [GetAlertPolicy][google.monitoring.v3.AlertPolicyService.GetAlertPolicy] operation, instead.

filter: String

If provided, this field specifies the criteria that must be met by alert policies 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 field references as the filter field. Entries can be prefixed with a minus sign to sort by the field in descending order.

For more details, see sorting and filtering.

page_size: i32

The maximum number of results to return in a single response.

page_token: String

If this field is not empty then it must contain the nextPageToken value returned by a previous call to this method. Using this field causes the method to return more results from the previous method call.

Trait Implementations

impl Clone for ListAlertPoliciesRequest[src]

impl Debug for ListAlertPoliciesRequest[src]

impl Default for ListAlertPoliciesRequest[src]

impl Message for ListAlertPoliciesRequest[src]

impl PartialEq<ListAlertPoliciesRequest> for ListAlertPoliciesRequest[src]

impl StructuralPartialEq for ListAlertPoliciesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListAlertPoliciesRequest

impl Send for ListAlertPoliciesRequest

impl Sync for ListAlertPoliciesRequest

impl Unpin for ListAlertPoliciesRequest

impl UnwindSafe for ListAlertPoliciesRequest

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]