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

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

The ListServiceLevelObjectives request.

Fields

parent: String

Required. Resource name of the parent containing the listed SLOs, either a project or a Monitoring Workspace. The formats are:

projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]
workspaces/[HOST_PROJECT_ID_OR_NUMBER]/services/-
filter: String

A filter specifying what ServiceLevelObjectives to return.

page_size: i32

A non-negative number that is the maximum number of results to return. When 0, use default page size.

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 additional results from the previous method call.

view: i32

View of the ServiceLevelObjectives to return. If DEFAULT, return each ServiceLevelObjective as originally defined. If EXPLICIT and the ServiceLevelObjective is defined in terms of a BasicSli, replace the BasicSli with a RequestBasedSli spelling out how the SLI is computed.

Implementations

impl ListServiceLevelObjectivesRequest[src]

pub fn view(&self) -> View[src]

Returns the enum value of view, or the default if the field is set to an invalid enum value.

pub fn set_view(&mut self, value: View)[src]

Sets view to the provided enum value.

Trait Implementations

impl Clone for ListServiceLevelObjectivesRequest[src]

impl Debug for ListServiceLevelObjectivesRequest[src]

impl Default for ListServiceLevelObjectivesRequest[src]

impl Message for ListServiceLevelObjectivesRequest[src]

impl PartialEq<ListServiceLevelObjectivesRequest> for ListServiceLevelObjectivesRequest[src]

impl StructuralPartialEq for ListServiceLevelObjectivesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListServiceLevelObjectivesRequest

impl Send for ListServiceLevelObjectivesRequest

impl Sync for ListServiceLevelObjectivesRequest

impl Unpin for ListServiceLevelObjectivesRequest

impl UnwindSafe for ListServiceLevelObjectivesRequest

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]