Class: Datadog::Core::Remote::Configuration::Repository::Change::Updated
- Inherits:
-
Object
- Object
- Datadog::Core::Remote::Configuration::Repository::Change::Updated
- Defined in:
- lib/datadog/core/remote/configuration/repository.rb
Overview
Update change
Instance Attribute Summary collapse
-
#content ⇒ Object
readonly
Returns the value of attribute content.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
-
#previous ⇒ Object
readonly
Returns the value of attribute previous.
Instance Method Summary collapse
-
#initialize(path, content, previous) ⇒ Updated
constructor
A new instance of Updated.
Constructor Details
#initialize(path, content, previous) ⇒ Updated
Returns a new instance of Updated.
240 241 242 243 244 |
# File 'lib/datadog/core/remote/configuration/repository.rb', line 240 def initialize(path, content, previous) @path = path @content = content @previous = previous end |
Instance Attribute Details
#content ⇒ Object (readonly)
Returns the value of attribute content.
238 239 240 |
# File 'lib/datadog/core/remote/configuration/repository.rb', line 238 def content @content end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
238 239 240 |
# File 'lib/datadog/core/remote/configuration/repository.rb', line 238 def path @path end |
#previous ⇒ Object (readonly)
Returns the value of attribute previous.
238 239 240 |
# File 'lib/datadog/core/remote/configuration/repository.rb', line 238 def previous @previous end |