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.
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
#content ⇒ Object (readonly)
Returns the value of attribute content.
254 255 256 |
# File 'lib/datadog/core/remote/configuration/repository.rb', line 254 def content @content end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
254 255 256 |
# File 'lib/datadog/core/remote/configuration/repository.rb', line 254 def path @path end |
#previous ⇒ Object (readonly)
Returns the value of attribute previous.
254 255 256 |
# File 'lib/datadog/core/remote/configuration/repository.rb', line 254 def previous @previous end |