Class: Fog::Parsers::AWS::RDS::TagListParser

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/aws/parsers/rds/tag_list_parser.rb

Overview

parses an XML-formatted list of resource tags from AWS

Instance Method Summary collapse

Instance Method Details

#end_element(name) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/fog/aws/parsers/rds/tag_list_parser.rb', line 15

def end_element(name)
  super
  case name
  when 'Tag'
    @tags[@this_key] = @this_value
    @this_key, @this_value = nil, nil
  when 'Key'
    @this_key = value
  when 'Value'
    @this_value = value
  when 'TagList'
    @response['ListTagsForResourceResult']['TagList'] = @tags
  end
end

#resetObject

each tag is modeled as a String pair (2-element Array)



8
9
10
11
12
13
# File 'lib/fog/aws/parsers/rds/tag_list_parser.rb', line 8

def reset
  @this_key   = nil
  @this_value = nil
  @tags       = Hash.new
  @response   = {'ListTagsForResourceResult' => {'TagList' => {}}}
end