Class: DatadogAPIClient::V2::TimeseriesFormulaRequestAttributes
- Inherits:
 - 
      Object
      
        
- Object
 - DatadogAPIClient::V2::TimeseriesFormulaRequestAttributes
 
 
- Includes:
 - BaseGenericModel
 
- Defined in:
 - lib/datadog_api_client/v2/models/timeseries_formula_request_attributes.rb
 
Overview
The object describing a timeseries formula request.
Instance Attribute Summary collapse
- 
  
    
      #additional_properties  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute additional_properties.
 - 
  
    
      #formulas  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of formulas to be calculated and returned as responses.
 - 
  
    
      #from  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
Start date (inclusive) of the query in milliseconds since the Unix epoch.
 - 
  
    
      #interval  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A time interval in milliseconds.
 - 
  
    
      #queries  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
List of queries to be run and used as inputs to the formulas.
 - 
  
    
      #to  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
End date (exclusive) of the query in milliseconds since the Unix epoch.
 
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
      42 43 44  | 
    
      # File 'lib/datadog_api_client/v2/models/timeseries_formula_request_attributes.rb', line 42 def additional_properties @additional_properties end  | 
  
#formulas ⇒ Object
List of formulas to be calculated and returned as responses.
      25 26 27  | 
    
      # File 'lib/datadog_api_client/v2/models/timeseries_formula_request_attributes.rb', line 25 def formulas @formulas end  | 
  
#from ⇒ Object
Start date (inclusive) of the query in milliseconds since the Unix epoch.
      28 29 30  | 
    
      # File 'lib/datadog_api_client/v2/models/timeseries_formula_request_attributes.rb', line 28 def from @from end  | 
  
#interval ⇒ Object
A time interval in milliseconds. May be overridden by a larger interval if the query would result in too many points for the specified timeframe. Defaults to a reasonable interval for the given timeframe.
      34 35 36  | 
    
      # File 'lib/datadog_api_client/v2/models/timeseries_formula_request_attributes.rb', line 34 def interval @interval end  | 
  
#queries ⇒ Object
List of queries to be run and used as inputs to the formulas.
      37 38 39  | 
    
      # File 'lib/datadog_api_client/v2/models/timeseries_formula_request_attributes.rb', line 37 def queries @queries end  | 
  
#to ⇒ Object
End date (exclusive) of the query in milliseconds since the Unix epoch.
      40 41 42  | 
    
      # File 'lib/datadog_api_client/v2/models/timeseries_formula_request_attributes.rb', line 40 def to @to end  |