class Fog::Parsers::AWS::RDS::SecurityGroupParser
Public Instance Methods
end_element(name)
click to toggle source
# 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_group()
click to toggle source
# File lib/fog/aws/parsers/rds/security_group_parser.rb, line 10 def fresh_security_group {'EC2SecurityGroups' => [], 'IPRanges' => []} end
reset()
click to toggle source
# File lib/fog/aws/parsers/rds/security_group_parser.rb, line 6 def reset @security_group = fresh_security_group end
start_element(name, attrs = [])
click to toggle source
Calls superclass method
# 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