mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
d48d376e9c
* take the liberty of correcting Aws naming
32 lines
844 B
Ruby
32 lines
844 B
Ruby
module Fog
|
|
module Parsers
|
|
module AWS
|
|
module RDS
|
|
require 'fog/aws/parsers/rds/subnet_group_parser'
|
|
|
|
class CreateDBSubnetGroup < Fog::Parsers::AWS::RDS::SubnetGroupParser
|
|
def reset
|
|
@response = { 'CreateDBSubnetGroupResult' => {}, 'ResponseMetadata' => {} }
|
|
super
|
|
end
|
|
|
|
def start_element(name, attrs = [])
|
|
super
|
|
end
|
|
|
|
def end_element(name)
|
|
case name
|
|
when 'DBSubnetGroup' then
|
|
@response['CreateDBSubnetGroupResult']['DBSubnetGroup'] = @db_subnet_group
|
|
@db_subnet_group = fresh_subnet_group
|
|
when 'RequestId'
|
|
@response['ResponseMetadata'][name] = value
|
|
else
|
|
super
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|