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
38 lines
1.2 KiB
Ruby
38 lines
1.2 KiB
Ruby
module Fog
|
|
module Parsers
|
|
module AWS
|
|
module RDS
|
|
class DescribeDBReservedInstances < Fog::Parsers::Base
|
|
def reset
|
|
@reserved_instance = {}
|
|
@response = { 'ReservedDBInstances' => [] }
|
|
end
|
|
|
|
def end_element(name)
|
|
case name
|
|
when 'ReservedDBInstanceId', 'ReservedDBInstancesOfferingId', 'DBInstanceClass', 'ProductDescription', 'State'
|
|
@reserved_instance[name] = @value
|
|
when 'Duration', 'DBInstanceCount'
|
|
@reserved_instance[name] = @value.to_i
|
|
when 'FixedPrice', 'UsagePrice'
|
|
@reserved_instance[name] = @value.to_f
|
|
when 'ReservedDBInstance'
|
|
@response['ReservedDBInstances'] << @reserved_instance
|
|
@reserved_instance = {}
|
|
when 'Marker'
|
|
@response[name] = @value
|
|
when 'MultiAZ'
|
|
if @value == 'false'
|
|
@reserved_instance[name] = false
|
|
else
|
|
@reserved_instance[name] = true
|
|
end
|
|
when 'StartTime'
|
|
@reserved_instance[name] = Time.parse(@value)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|