Class: Google::Apis::MonitoringV3::ListUptimeCheckConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::MonitoringV3::ListUptimeCheckConfigsResponse
- 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
-
#next_page_token ⇒ String
This field represents the pagination token to retrieve the next page of results.
-
#total_size ⇒ Fixnum
The total number of uptime check configurations for the project, irrespective of any pagination.
-
#uptime_check_configs ⇒ Array<Google::Apis::MonitoringV3::UptimeCheckConfig>
The returned uptime check configurations.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListUptimeCheckConfigsResponse
constructor
A new instance of ListUptimeCheckConfigsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListUptimeCheckConfigsResponse
Returns a new instance of ListUptimeCheckConfigsResponse
1556 1557 1558 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1556 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
1543 1544 1545 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1543 def next_page_token @next_page_token end |
#total_size ⇒ Fixnum
The total number of uptime check configurations for the project, irrespective
of any pagination.
Corresponds to the JSON property totalSize
1549 1550 1551 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1549 def total_size @total_size end |
#uptime_check_configs ⇒ Array<Google::Apis::MonitoringV3::UptimeCheckConfig>
The returned uptime check configurations.
Corresponds to the JSON property uptimeCheckConfigs
1554 1555 1556 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1554 def uptime_check_configs @uptime_check_configs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1561 1562 1563 1564 1565 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1561 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 |