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

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

Overview

Delete change

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, previous) ⇒ Deleted

Returns a new instance of Deleted.



236
237
238
239
# File 'lib/datadog/core/remote/configuration/repository.rb', line 236

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

Instance Attribute Details

#pathObject (readonly)

Returns the value of attribute path.



234
235
236
# File 'lib/datadog/core/remote/configuration/repository.rb', line 234

def path
  @path
end

#previousObject (readonly)

Returns the value of attribute previous.



234
235
236
# File 'lib/datadog/core/remote/configuration/repository.rb', line 234

def previous
  @previous
end