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

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

Instance Method Summary collapse

Instance Method Details

#end_element(name) ⇒ Object



21
22
23
24
25
26
27
28
29
30
31
# File 'lib/fog/aws/parsers/rds/security_group_parser.rb', line 21

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



10
11
12
# File 'lib/fog/aws/parsers/rds/security_group_parser.rb', line 10

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

#resetObject



6
7
8
# File 'lib/fog/aws/parsers/rds/security_group_parser.rb', line 6

def reset
  @security_group = fresh_security_group
end

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



14
15
16
17
18
19
# File 'lib/fog/aws/parsers/rds/security_group_parser.rb', line 14

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