Struct google_monitoring3::ListUptimeCheckConfigsResponse[][src]

pub struct ListUptimeCheckConfigsResponse {
    pub next_page_token: Option<String>,
    pub uptime_check_configs: Option<Vec<UptimeCheckConfig>>,
}

The protocol for the ListUptimeCheckConfigs response.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

This field represents the pagination token to retrieve the next page of results. If the value is empty, it means no further results for the request. To retrieve the next page of results, the value of the next_page_token is passed to the subsequent List method call (in the request message's page_token field).

The returned uptime check configurations.

Trait Implementations

impl Default for ListUptimeCheckConfigsResponse
[src]

Returns the "default value" for a type. Read more

impl Clone for ListUptimeCheckConfigsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListUptimeCheckConfigsResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ListUptimeCheckConfigsResponse
[src]

Auto Trait Implementations