Class: Fog::Parsers::AWS::RDS::SecurityGroupParser

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

Instance Attribute Summary

Attributes inherited from Base

#response

Instance Method Summary collapse

Methods inherited from Base

#attr_value, #characters, #end_element_namespace, #initialize, #start_element_namespace, #value

Constructor Details

This class inherits a constructor from Fog::Parsers::Base

Instance Method Details

#end_element(name) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
# File 'lib/fog/aws/parsers/rds/security_group_parser.rb', line 24

def end_element(name)
  case name
  when 'DBSecurityGroupDescription' then @security_group['DBSecurityGroupDescription'] = value
  when 'DBSecurityGroupName' then @security_group['DBSecurityGroupName'] = value
  when 'OwnerId' then @security_group['OwnerId'] = value
  when 'EC2SecurityGroup', 'IPRange'
    @security_group["#{name}s"] << @ingress unless @ingress.empty?
  when 'EC2SecurityGroupName', 'EC2SecurityGroupOwnerId', 'CIDRIP', 'Status'
    @ingress[name] = value
  end
end

#fresh_security_groupObject



12
13
14
# File 'lib/fog/aws/parsers/rds/security_group_parser.rb', line 12

def fresh_security_group
  {'EC2SecurityGroups' => [], 'IPRanges' => []}
end

#resetObject



8
9
10
# File 'lib/fog/aws/parsers/rds/security_group_parser.rb', line 8

def reset
  @security_group = fresh_security_group
end

#start_element(name, attrs = []) ⇒ Object



16
17
18
19
20
21
22
# File 'lib/fog/aws/parsers/rds/security_group_parser.rb', line 16

def start_element(name, attrs = [])
  super
  case name
  when 'EC2SecurityGroup', 'IPRange'; then @ingress = {}
  end

end