class Google::Apis::MonitoringV3::ListUptimeCheckIpsResponse

The protocol for the ListUptimeCheckIps 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). NOTE: this field is not yet implemented Corresponds to the JSON property `nextPageToken` @return [String]

uptime_check_ips[RW]

The returned list of IP addresses (including region and location) that the checkers run from. Corresponds to the JSON property `uptimeCheckIps` @return [Array<Google::Apis::MonitoringV3::UptimeCheckIp>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/monitoring_v3/classes.rb, line 2367
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 2372
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @uptime_check_ips = args[:uptime_check_ips] if args.key?(:uptime_check_ips)
end