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

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

Overview

Update change

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, content, previous) ⇒ Updated

Returns a new instance of Updated.



256
257
258
259
260
# File 'lib/datadog/core/remote/configuration/repository.rb', line 256

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

Instance Attribute Details

#contentObject (readonly)

Returns the value of attribute content.



254
255
256
# File 'lib/datadog/core/remote/configuration/repository.rb', line 254

def content
  @content
end

#pathObject (readonly)

Returns the value of attribute path.



254
255
256
# File 'lib/datadog/core/remote/configuration/repository.rb', line 254

def path
  @path
end

#previousObject (readonly)

Returns the value of attribute previous.



254
255
256
# File 'lib/datadog/core/remote/configuration/repository.rb', line 254

def previous
  @previous
end