Class: DatadogAPIClient::V2::RumExclusionFilterUpdateAttributes

Inherits:
Object
  • Object
show all
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

Method Summary

Methods included from BaseGenericModel

included

Instance Attribute Details

#additional_propertiesObject

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

#enabledObject

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_typeObject

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

#nameObject

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

#queryObject

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