Method: Fog::Parsers::AWS::RDS::DescribeDBSecurityGroups#end_element
- Defined in:
- lib/fog/aws/parsers/rds/describe_db_security_groups.rb
permalink #end_element(name) ⇒ Object
[View source]
19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/fog/aws/parsers/rds/describe_db_security_groups.rb', line 19 def end_element(name) case name when 'DBSecurityGroup' then @response['DescribeDBSecurityGroupsResult']['DBSecurityGroups'] << @security_group @security_group = fresh_security_group when 'Marker' @response['DescribeDBSecurityGroupsResult']['Marker'] = value when 'RequestId' @response['ResponseMetadata'][name] = value else super end end |