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
34 lines
920 B
Ruby
34 lines
920 B
Ruby
module Fog
|
|
module Parsers
|
|
module AWS
|
|
module RDS
|
|
require 'fog/aws/parsers/rds/db_parser'
|
|
|
|
class DescribeDBInstances < Fog::Parsers::AWS::RDS::DbParser
|
|
def reset
|
|
@response = { 'DescribeDBInstancesResult' => {'DBInstances' => []}, 'ResponseMetadata' => {} }
|
|
super
|
|
end
|
|
|
|
def start_element(name, attrs = [])
|
|
super
|
|
end
|
|
|
|
def end_element(name)
|
|
case name
|
|
when 'DBInstance'
|
|
@response['DescribeDBInstancesResult']['DBInstances'] << @db_instance
|
|
@db_instance = fresh_instance
|
|
when 'Marker'
|
|
@response['DescribeDBInstancesResult']['Marker'] = value
|
|
when 'RequestId'
|
|
@response['ResponseMetadata'][name] = value
|
|
else
|
|
super
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|