Class: Fog::Parsers::AWS::CloudFormation::ListStacks
- Inherits:
-
Base
- Object
- Base
- Fog::Parsers::AWS::CloudFormation::ListStacks
- Defined in:
- lib/fog/aws/parsers/cloud_formation/list_stacks.rb
Instance Method Summary collapse
Instance Method Details
#end_element(name) ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/fog/aws/parsers/cloud_formation/list_stacks.rb', line 11 def end_element(name) case name when 'StackId', 'StackStatus', 'StackName', 'TemplateDescription' @stack[name] = value when 'member' @response['StackSummaries'] << @stack @stack = {} when 'RequestId' @response[name] = value when 'CreationTime' @stack[name] = Time.parse(value) when 'DeletionTime' @stack[name] = Time.parse(value) when 'NextToken' @response[name] = value end end |
#reset ⇒ Object
6 7 8 9 |
# File 'lib/fog/aws/parsers/cloud_formation/list_stacks.rb', line 6 def reset @stack = {} @response = { 'StackSummaries' => [] } end |