Class/Module Index [+]

Quicksearch

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 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() click to toggle source
# File lib/fog/aws/parsers/rds/security_group_parser.rb, line 12
def fresh_security_group
  {'EC2SecurityGroups' => [], 'IPRanges' => []}
end
reset() click to toggle source
# File lib/fog/aws/parsers/rds/security_group_parser.rb, line 8
def reset
  @security_group = fresh_security_group
end
start_element(name, attrs = []) click to toggle source
# 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

[Validate]

Generated with the Darkfish Rdoc Generator 2.