class Google::Apis::MonitoringV3::QueryTimeSeriesResponse
The QueryTimeSeries response.
Attributes
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 page_token in the next call to this method. Corresponds to the JSON property `nextPageToken` @return [String]
Query execution errors that may have caused the time series data returned to be incomplete. The available data will be available in the response. Corresponds to the JSON property `partialErrors` @return [Array<Google::Apis::MonitoringV3::Status>]
The time series data. Corresponds to the JSON property `timeSeriesData` @return [Array<Google::Apis::MonitoringV3::TimeSeriesData>]
A descriptor for the labels and points in a time series. Corresponds to the JSON property `timeSeriesDescriptor` @return [Google::Apis::MonitoringV3::TimeSeriesDescriptor]
Public Class Methods
# File lib/google/apis/monitoring_v3/classes.rb, line 3294 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/monitoring_v3/classes.rb, line 3299 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @partial_errors = args[:partial_errors] if args.key?(:partial_errors) @time_series_data = args[:time_series_data] if args.key?(:time_series_data) @time_series_descriptor = args[:time_series_descriptor] if args.key?(:time_series_descriptor) end