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.
- #type ⇒ Object
Constructor Details
#initialize(path, content, previous) ⇒ Updated
Returns a new instance of Updated.
264 265 266 267 268 |
# File 'lib/datadog/core/remote/configuration/repository.rb', line 264 def initialize(path, content, previous) @path = path @content = content @previous = previous end |
Instance Attribute Details
#content ⇒ Object (readonly)
Returns the value of attribute content.
262 263 264 |
# File 'lib/datadog/core/remote/configuration/repository.rb', line 262 def content @content end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
262 263 264 |
# File 'lib/datadog/core/remote/configuration/repository.rb', line 262 def path @path end |
#previous ⇒ Object (readonly)
Returns the value of attribute previous.
262 263 264 |
# File 'lib/datadog/core/remote/configuration/repository.rb', line 262 def previous @previous end |
Instance Method Details
#type ⇒ Object
270 271 272 |
# File 'lib/datadog/core/remote/configuration/repository.rb', line 270 def type :update end |