class Google::Apis::MonitoringV3::QueryTimeSeriesResponse

The QueryTimeSeries response.

Attributes

next_page_token[RW]

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]

partial_errors[RW]

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>]

time_series_data[RW]

The time series data. Corresponds to the JSON property `timeSeriesData` @return [Array<Google::Apis::MonitoringV3::TimeSeriesData>]

time_series_descriptor[RW]

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

new(**args) click to toggle source
# File lib/google/apis/monitoring_v3/classes.rb, line 3599
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 3604
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