Class: Google::Apis::MonitoringV3::QueryTimeSeriesRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::MonitoringV3::QueryTimeSeriesRequest
 
 
- 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 QueryTimeSeries request. For information about the status of Monitoring Query Language (MQL), see the MQL deprecation notice (https://cloud.google.com/ stackdriver/docs/deprecations/mql).
Instance Attribute Summary collapse
- 
  
    
      #page_size  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A positive number that is the maximum number of time_series_data to return.
 - 
  
    
      #page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If this field is not empty then it must contain the nextPageToken value returned by a previous call to this method.
 - 
  
    
      #query  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ QueryTimeSeriesRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of QueryTimeSeriesRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ QueryTimeSeriesRequest
Returns a new instance of QueryTimeSeriesRequest.
      3938 3939 3940  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 3938 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#page_size ⇒ Fixnum
A positive number that is the maximum number of time_series_data to return.
Corresponds to the JSON property pageSize
      3923 3924 3925  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 3923 def page_size @page_size end  | 
  
#page_token ⇒ String
If this field is not empty then it must contain the nextPageToken value
returned by a previous call to this method. Using this field causes the method
to return additional results from the previous method call.
Corresponds to the JSON property pageToken
      3930 3931 3932  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 3930 def page_token @page_token end  | 
  
#query ⇒ String
Required. The query in the Monitoring Query Language (https://cloud.google.com/
monitoring/mql/reference) format. The default time zone is in UTC.
Corresponds to the JSON property query
      3936 3937 3938  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 3936 def query @query end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3943 3944 3945 3946 3947  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 3943 def update!(**args) @page_size = args[:page_size] if args.key?(:page_size) @page_token = args[:page_token] if args.key?(:page_token) @query = args[:query] if args.key?(:query) end  |