Class: Google::Apis::MonitoringV3::ListUptimeCheckConfigsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/monitoring_v3/classes.rb,
generated/google/apis/monitoring_v3/representations.rb,
generated/google/apis/monitoring_v3/representations.rb

Overview

The protocol for the ListUptimeCheckConfigs response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListUptimeCheckConfigsResponse

Returns a new instance of ListUptimeCheckConfigsResponse



1087
1088
1089
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1087

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


1080
1081
1082
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1080

def next_page_token
  @next_page_token
end

#uptime_check_configsArray<Google::Apis::MonitoringV3::UptimeCheckConfig>

The returned uptime check configurations. Corresponds to the JSON property uptimeCheckConfigs



1085
1086
1087
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1085

def uptime_check_configs
  @uptime_check_configs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1092
1093
1094
1095
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1092

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @uptime_check_configs = args[:uptime_check_configs] if args.key?(:uptime_check_configs)
end