class Google::Apis::MonitoringV3::ListUptimeCheckConfigsResponse
The protocol for the ListUptimeCheckConfigs response.
Attributes
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]
The total number of Uptime check configurations for the project, irrespective of any pagination. Corresponds to the JSON property `totalSize` @return [Fixnum]
The returned Uptime check configurations. Corresponds to the JSON property `uptimeCheckConfigs` @return [Array<Google::Apis::MonitoringV3::UptimeCheckConfig>]
Public Class Methods
# File lib/google/apis/monitoring_v3/classes.rb, line 2336 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/monitoring_v3/classes.rb, line 2341 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