Class: DatadogAPIClient::V2::LogsArchiveCreateRequestAttributes

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

Overview

The attributes associated with the archive.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ LogsArchiveCreateRequestAttributes

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
114
115
# File 'lib/datadog_api_client/v2/models/logs_archive_create_request_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::LogsArchiveCreateRequestAttributes` 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::LogsArchiveCreateRequestAttributes`. 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?(:'destination')
    self.destination = attributes[:'destination']
  end

  if attributes.key?(:'include_tags')
    self.include_tags = attributes[:'include_tags']
  else
    self.include_tags = false
  end

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

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

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

Instance Attribute Details

#destinationObject

Returns the value of attribute destination.



26
27
28
# File 'lib/datadog_api_client/v2/models/logs_archive_create_request_attributes.rb', line 26

def destination
  @destination
end

#include_tagsObject

To store the tags in the archive, set the value "true". If it is set to "false", the tags will be deleted when the logs are sent to the archive.



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

def include_tags
  @include_tags
end

#nameObject

The archive name.



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

def name
  @name
end

#queryObject

The archive query/filter. Logs matching this query are included in the archive.



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

def query
  @query
end

#rehydration_tagsObject

An array of tags to add to rehydrated logs from an archive.



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

def rehydration_tags
  @rehydration_tags
end