Class: Google::Apis::MonitoringV3::ListTimeSeriesResponse

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 ListTimeSeries 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) ⇒ ListTimeSeriesResponse

Returns a new instance of ListTimeSeriesResponse.



1926
1927
1928
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1926

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

Instance Attribute Details

#execution_errorsArray<Google::Apis::MonitoringV3::Status>

Query execution errors that may have caused the time series data returned to be incomplete. Corresponds to the JSON property executionErrors



1912
1913
1914
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1912

def execution_errors
  @execution_errors
end

#next_page_tokenString

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

Returns:

  • (String)


1919
1920
1921
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1919

def next_page_token
  @next_page_token
end

#time_seriesArray<Google::Apis::MonitoringV3::TimeSeries>

One or more time series that match the filter included in the request. Corresponds to the JSON property timeSeries



1924
1925
1926
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1924

def time_series
  @time_series
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1931
1932
1933
1934
1935
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1931

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