Class: Fog::Parsers::AWS::RDS::SecurityGroupParser
- Inherits:
-
Base
- Object
- Nokogiri::XML::SAX::Document
- Base
- Fog::Parsers::AWS::RDS::SecurityGroupParser
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, #initialize, #value
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_group ⇒ Object
12
13
14
|
# File 'lib/fog/aws/parsers/rds/security_group_parser.rb', line 12
def fresh_security_group
{'EC2SecurityGroups' => [], 'IPRanges' => []}
end
|
#reset ⇒ Object
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
|