Class: DatadogAPIClient::V2::SecurityFilterCreateAttributes

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

Overview

Object containing the attributes of the security filter to be created.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ SecurityFilterCreateAttributes

Initializes the object

Parameters:

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

    attributes Model attributes in the form of hash



79
80
81
82
83
84
85
86
87
88
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
# File 'lib/datadog_api_client/v2/models/security_filter_create_attributes.rb', line 79

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::SecurityFilterCreateAttributes` 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::SecurityFilterCreateAttributes`. 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_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
end

Instance Attribute Details

#exclusion_filtersObject

Exclusion filters to exclude some logs from the security filter.



27
28
29
# File 'lib/datadog_api_client/v2/models/security_filter_create_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_create_attributes.rb', line 29

def filtered_data_type
  @filtered_data_type
end

#is_enabledObject

Whether the security filter is enabled.



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

def is_enabled
  @is_enabled
end

#nameObject

The name of the security filter.



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

def name
  @name
end

#queryObject

The query of the security filter.



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

def query
  @query
end