Class: Google::Apis::MonitoringV3::ListTimeSeriesResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::MonitoringV3::ListTimeSeriesResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/monitoring_v3/classes.rb,
lib/google/apis/monitoring_v3/representations.rb,
lib/google/apis/monitoring_v3/representations.rb 
Overview
The ListTimeSeries response.
Instance Attribute Summary collapse
- 
  
    
      #execution_errors  ⇒ Array<Google::Apis::MonitoringV3::Status> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Query execution errors that may have caused the time series data returned to be incomplete.
 - 
  
    
      #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.
 - 
  
    
      #unit  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unit in which all time_series point values are reported.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListTimeSeriesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListTimeSeriesResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ListTimeSeriesResponse
Returns a new instance of ListTimeSeriesResponse.
      2581 2582 2583  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2581 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#execution_errors ⇒ Array<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
      2558 2559 2560  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2558 def execution_errors @execution_errors end  | 
  
#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 page_token
in the next call to this method.
Corresponds to the JSON property nextPageToken
      2565 2566 2567  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2565 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
      2570 2571 2572  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2570 def time_series @time_series end  | 
  
#unit ⇒ String
The unit in which all time_series point values are reported. unit follows the
UCUM format for units as seen in https://unitsofmeasure.org/ucum.html. If
different time_series have different units (for example, because they come
from different metric types, or a unit is absent), then unit will be "
not_a_unit".
Corresponds to the JSON property unit
      2579 2580 2581  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2579 def unit @unit end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2586 2587 2588 2589 2590 2591  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2586 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) @unit = args[:unit] if args.key?(:unit) end  |