Class: Datadog::Core::Remote::Configuration::Repository::Change::Inserted

Inherits:
Object
  • Object
show all
Defined in:
lib/datadog/core/remote/configuration/repository.rb

Overview

Insert change

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, content) ⇒ Inserted

Returns a new instance of Inserted.



246
247
248
249
# File 'lib/datadog/core/remote/configuration/repository.rb', line 246

def initialize(path, content)
  @path = path
  @content = content
end

Instance Attribute Details

#contentObject (readonly)

Returns the value of attribute content.



244
245
246
# File 'lib/datadog/core/remote/configuration/repository.rb', line 244

def content
  @content
end

#pathObject (readonly)

Returns the value of attribute path.



244
245
246
# File 'lib/datadog/core/remote/configuration/repository.rb', line 244

def path
  @path
end