class Google::Apis::MonitoringV3::ListUptimeCheckConfigsResponse

The protocol for the ListUptimeCheckConfigs response.

Attributes

next_page_token[RW]

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). Corresponds to the JSON property `nextPageToken` @return [String]

total_size[RW]

The total number of Uptime check configurations for the project, irrespective of any pagination. Corresponds to the JSON property `totalSize` @return [Fixnum]

uptime_check_configs[RW]

The returned Uptime check configurations. Corresponds to the JSON property `uptimeCheckConfigs` @return [Array<Google::Apis::MonitoringV3::UptimeCheckConfig>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/monitoring_v3/classes.rb, line 2127
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/monitoring_v3/classes.rb, line 2132
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @total_size = args[:total_size] if args.key?(:total_size)
  @uptime_check_configs = args[:uptime_check_configs] if args.key?(:uptime_check_configs)
end