Class: Google::Apis::MonitoringV3::ListTimeSeriesResponse
- Inherits:
-
Object
- Object
- Google::Apis::MonitoringV3::ListTimeSeriesResponse
- 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 ListTimeSeries response.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
If there are more results than have been returned, then this field is set to a non-empty value.
-
#time_series ⇒ Array<Google::Apis::MonitoringV3::TimeSeries>
One or more time series that match the filter included in the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListTimeSeriesResponse
constructor
A new instance of ListTimeSeriesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListTimeSeriesResponse
Returns a new instance of ListTimeSeriesResponse
466 467 468 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 466 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
If there are more results than have been returned, then this field is set to a
non-empty value. To see the additional results, use that value as pageToken in
the next call to this method.
Corresponds to the JSON property nextPageToken
464 465 466 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 464 def next_page_token @next_page_token end |
#time_series ⇒ Array<Google::Apis::MonitoringV3::TimeSeries>
One or more time series that match the filter included in the request.
Corresponds to the JSON property timeSeries
457 458 459 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 457 def time_series @time_series end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
471 472 473 474 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 471 def update!(**args) @time_series = args[:time_series] if args.key?(:time_series) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |