Class: RubyTerraform::Models::Path::TraversalStep
- Inherits:
-
Object
- Object
- RubyTerraform::Models::Path::TraversalStep
- Defined in:
- lib/ruby_terraform/models/path.rb
Instance Attribute Summary collapse
-
#element ⇒ Object
readonly
Returns the value of attribute element.
-
#remaining ⇒ Object
readonly
Returns the value of attribute remaining.
-
#seen ⇒ Object
readonly
Returns the value of attribute seen.
Instance Method Summary collapse
-
#initialize(seen, element, remaining) ⇒ TraversalStep
constructor
A new instance of TraversalStep.
Constructor Details
#initialize(seen, element, remaining) ⇒ TraversalStep
Returns a new instance of TraversalStep.
116 117 118 119 120 |
# File 'lib/ruby_terraform/models/path.rb', line 116 def initialize(seen, element, remaining) @seen = seen @element = element @remaining = remaining end |
Instance Attribute Details
#element ⇒ Object (readonly)
Returns the value of attribute element.
114 115 116 |
# File 'lib/ruby_terraform/models/path.rb', line 114 def element @element end |
#remaining ⇒ Object (readonly)
Returns the value of attribute remaining.
114 115 116 |
# File 'lib/ruby_terraform/models/path.rb', line 114 def remaining @remaining end |
#seen ⇒ Object (readonly)
Returns the value of attribute seen.
114 115 116 |
# File 'lib/ruby_terraform/models/path.rb', line 114 def seen @seen end |