Class: DatadogAPIClient::V2::RumExclusionFilterUpdateAttributes
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::RumExclusionFilterUpdateAttributes
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/rum_exclusion_filter_update_attributes.rb
Overview
The attributes of an exclusion filter that can be updated.
For the built-in Error Tracking exclusion filter, only enabled can be set;
name, event_type, and query must be omitted.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#enabled ⇒ Object
Whether the exclusion filter is active.
-
#event_type ⇒ Object
The type of RUM events to filter on.
-
#name ⇒ Object
The name of the exclusion filter.
-
#query ⇒ Object
Additional query used to further restrict which RUM events are excluded.
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/v2/models/rum_exclusion_filter_update_attributes.rb', line 39 def additional_properties @additional_properties end |
#enabled ⇒ Object
Whether the exclusion filter is active.
27 28 29 |
# File 'lib/datadog_api_client/v2/models/rum_exclusion_filter_update_attributes.rb', line 27 def enabled @enabled end |
#event_type ⇒ Object
The type of RUM events to filter on.
30 31 32 |
# File 'lib/datadog_api_client/v2/models/rum_exclusion_filter_update_attributes.rb', line 30 def event_type @event_type end |
#name ⇒ Object
The name of the exclusion filter.
33 34 35 |
# File 'lib/datadog_api_client/v2/models/rum_exclusion_filter_update_attributes.rb', line 33 def name @name end |
#query ⇒ Object
Additional query used to further restrict which RUM events are excluded.
Combined with event_type when both are provided.
37 38 39 |
# File 'lib/datadog_api_client/v2/models/rum_exclusion_filter_update_attributes.rb', line 37 def query @query end |