Class: DatadogAPIClient::V2::ProductAnalyticsAnalyticsListRequestAttributes
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::ProductAnalyticsAnalyticsListRequestAttributes
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/product_analytics_analytics_list_request_attributes.rb
Overview
Attributes for an analytics list request.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#from ⇒ Object
readonly
Start time in epoch milliseconds.
-
#query ⇒ Object
readonly
The analytics list query definition.
-
#to ⇒ Object
readonly
End time in epoch milliseconds.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
36 37 38 |
# File 'lib/datadog_api_client/v2/models/product_analytics_analytics_list_request_attributes.rb', line 36 def additional_properties @additional_properties end |
#from ⇒ Object
Start time in epoch milliseconds. Must be less than to.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/product_analytics_analytics_list_request_attributes.rb', line 25 def from @from end |
#query ⇒ Object
The analytics list query definition. It selects the events to return with query, then
chooses the columns on each event row, the sort applied to those rows, and a row limit.
Unlike the scalar and timeseries queries, a list query returns raw event rows rather than
aggregates, so it takes no compute or group-by rule.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/product_analytics_analytics_list_request_attributes.rb', line 31 def query @query end |
#to ⇒ Object
End time in epoch milliseconds.
34 35 36 |
# File 'lib/datadog_api_client/v2/models/product_analytics_analytics_list_request_attributes.rb', line 34 def to @to end |