Class: DatadogAPIClient::V2::SecurityFilterAttributes

Inherits:
Object
  • Object
show all
Defined in:
lib/datadog_api_client/v2/models/security_filter_attributes.rb

Overview

The object describing a security filter.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ SecurityFilterAttributes

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    attributes Model attributes in the form of hash



89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'lib/datadog_api_client/v2/models/security_filter_attributes.rb', line 89

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::SecurityFilterAttributes` initialize method"
  end

  # check to see if the attribute exists and convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h|
    if (!self.class.attribute_map.key?(k.to_sym))
      fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V2::SecurityFilterAttributes`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
    end
    h[k.to_sym] = v
  }

  if attributes.key?(:'exclusion_filters')
    if (value = attributes[:'exclusion_filters']).is_a?(Array)
      self.exclusion_filters = value
    end
  end

  if attributes.key?(:'filtered_data_type')
    self.filtered_data_type = attributes[:'filtered_data_type']
  end

  if attributes.key?(:'is_builtin')
    self.is_builtin = attributes[:'is_builtin']
  end

  if attributes.key?(:'is_enabled')
    self.is_enabled = attributes[:'is_enabled']
  end

  if attributes.key?(:'name')
    self.name = attributes[:'name']
  end

  if attributes.key?(:'query')
    self.query = attributes[:'query']
  end

  if attributes.key?(:'version')
    self.version = attributes[:'version']
  end
end

Instance Attribute Details

#exclusion_filtersObject

The list of exclusion filters applied in this security filter.



27
28
29
# File 'lib/datadog_api_client/v2/models/security_filter_attributes.rb', line 27

def exclusion_filters
  @exclusion_filters
end

#filtered_data_typeObject

Returns the value of attribute filtered_data_type.



29
30
31
# File 'lib/datadog_api_client/v2/models/security_filter_attributes.rb', line 29

def filtered_data_type
  @filtered_data_type
end

#is_builtinObject

Whether the security filter is the built-in filter.



32
33
34
# File 'lib/datadog_api_client/v2/models/security_filter_attributes.rb', line 32

def is_builtin
  @is_builtin
end

#is_enabledObject

Whether the security filter is enabled.



35
36
37
# File 'lib/datadog_api_client/v2/models/security_filter_attributes.rb', line 35

def is_enabled
  @is_enabled
end

#nameObject

The security filter name.



38
39
40
# File 'lib/datadog_api_client/v2/models/security_filter_attributes.rb', line 38

def name
  @name
end

#queryObject

The security filter query. Logs accepted by this query will be accepted by this filter.



41
42
43
# File 'lib/datadog_api_client/v2/models/security_filter_attributes.rb', line 41

def query
  @query
end

#versionObject

The version of the security filter.



44
45
46
# File 'lib/datadog_api_client/v2/models/security_filter_attributes.rb', line 44

def version
  @version
end