mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
02ff3171ee
Added security_groups collection and security_group model to Fog::AWS::RDS Added API methods: Fog::AWS::RDS#describe_db_security_groups Fog::AWS::RDS#create_db_security_group Fog::AWS::RDS#delete_db_security_group Fog::AWS::RDS#authorize_db_security_group_ingress Fog::AWS::RDS#revoke_db_security_group_ingress
39 lines
1,002 B
Ruby
39 lines
1,002 B
Ruby
module Fog
|
|
module Parsers
|
|
module AWS
|
|
module RDS
|
|
|
|
require 'fog/aws/parsers/rds/security_group_parser'
|
|
|
|
class DescribeDBSecurityGroups < Fog::Parsers::AWS::RDS::SecurityGroupParser
|
|
|
|
def reset
|
|
@response = { 'DescribeDBSecurityGroupsResult' => {'DBSecurityGroups' => []}, 'ResponseMetadata' => {} }
|
|
super
|
|
end
|
|
|
|
def start_element(name, attrs = [])
|
|
super
|
|
end
|
|
|
|
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
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|