Class: DatadogAPIClient::V1::LogsArrayProcessorOperationSelect
- Inherits:
-
Object
- Object
- DatadogAPIClient::V1::LogsArrayProcessorOperationSelect
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v1/models/logs_array_processor_operation_select.rb
Overview
Operation that finds an object in a source
array using a filter
, and then extracts a specific value into the target
attribute.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#filter ⇒ Object
readonly
Filter condition expressed as
key:value
used to find the matching element. -
#source ⇒ Object
readonly
Attribute path of the array to search into.
-
#target ⇒ Object
readonly
Attribute that receives the extracted value.
-
#type ⇒ Object
readonly
Operation type.
-
#value_to_extract ⇒ Object
readonly
Key of the value to extract from the matching element.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
39 40 41 |
# File 'lib/datadog_api_client/v1/models/logs_array_processor_operation_select.rb', line 39 def additional_properties @additional_properties end |
#filter ⇒ Object
Filter condition expressed as key:value
used to find the matching element.
25 26 27 |
# File 'lib/datadog_api_client/v1/models/logs_array_processor_operation_select.rb', line 25 def filter @filter end |
#source ⇒ Object
Attribute path of the array to search into.
28 29 30 |
# File 'lib/datadog_api_client/v1/models/logs_array_processor_operation_select.rb', line 28 def source @source end |
#target ⇒ Object
Attribute that receives the extracted value.
31 32 33 |
# File 'lib/datadog_api_client/v1/models/logs_array_processor_operation_select.rb', line 31 def target @target end |
#type ⇒ Object
Operation type.
34 35 36 |
# File 'lib/datadog_api_client/v1/models/logs_array_processor_operation_select.rb', line 34 def type @type end |
#value_to_extract ⇒ Object
Key of the value to extract from the matching element.
37 38 39 |
# File 'lib/datadog_api_client/v1/models/logs_array_processor_operation_select.rb', line 37 def value_to_extract @value_to_extract end |