Class: Fog::Parsers::AWS::CloudFormation::ListChangeSets
- Inherits:
-
Base
- Object
- Base
- Fog::Parsers::AWS::CloudFormation::ListChangeSets
- Defined in:
- lib/fog/aws/parsers/cloud_formation/list_change_sets.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 |
# File 'lib/fog/aws/parsers/cloud_formation/list_change_sets.rb', line 11 def end_element(name) case name when 'ChangeSetId', 'ChangeSetName', 'Description', 'ExecutionStatus', 'StackId', 'StackName', 'Status', 'StackReason' @change_set[name] = value when 'member' @response['Summaries'] << @change_set @change_set = {} when 'RequestId' @response[name] = value when 'CreationTime' @change_set[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_change_sets.rb', line 6 def reset @change_set = {} @response = { 'Summaries' => [] } end |