Class: DatadogAPIClient::V2::IssuesSearchRequestDataAttributes
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::IssuesSearchRequestDataAttributes
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/issues_search_request_data_attributes.rb
Overview
Object describing a search issue request.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#from ⇒ Object
readonly
Start date (inclusive) of the query in milliseconds since the Unix epoch.
-
#order_by ⇒ Object
The attribute to sort the search results by.
-
#persona ⇒ Object
Persona for the search.
-
#query ⇒ Object
readonly
Search query following the event search syntax.
-
#to ⇒ Object
readonly
End date (exclusive) of the query in milliseconds since the Unix epoch.
-
#track ⇒ Object
Track of the events to query.
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/issues_search_request_data_attributes.rb', line 42 def additional_properties @additional_properties end |
#from ⇒ Object
Start date (inclusive) of the query in milliseconds since the Unix epoch.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/issues_search_request_data_attributes.rb', line 25 def from @from end |
#order_by ⇒ Object
The attribute to sort the search results by.
28 29 30 |
# File 'lib/datadog_api_client/v2/models/issues_search_request_data_attributes.rb', line 28 def order_by @order_by end |
#persona ⇒ Object
Persona for the search. Either track(s) or persona(s) must be specified.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/issues_search_request_data_attributes.rb', line 31 def persona @persona end |
#query ⇒ Object
Search query following the event search syntax.
34 35 36 |
# File 'lib/datadog_api_client/v2/models/issues_search_request_data_attributes.rb', line 34 def query @query end |
#to ⇒ Object
End date (exclusive) of the query in milliseconds since the Unix epoch.
37 38 39 |
# File 'lib/datadog_api_client/v2/models/issues_search_request_data_attributes.rb', line 37 def to @to end |
#track ⇒ Object
Track of the events to query. Either track(s) or persona(s) must be specified.
40 41 42 |
# File 'lib/datadog_api_client/v2/models/issues_search_request_data_attributes.rb', line 40 def track @track end |