Class: Bauble::Stack
- Inherits:
-
Object
- Object
- Bauble::Stack
- Defined in:
- lib/bauble/stack.rb
Overview
Pulumi stack
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(app, name) ⇒ Stack
constructor
A new instance of Stack.
Constructor Details
#initialize(app, name) ⇒ Stack
Returns a new instance of Stack.
8 9 10 11 |
# File 'lib/bauble/stack.rb', line 8 def initialize(app, name) @name = name app.add_stack(self) end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
6 7 8 |
# File 'lib/bauble/stack.rb', line 6 def name @name end |