mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
33 lines
1,012 B
Ruby
33 lines
1,012 B
Ruby
|
module Fog
|
||
|
module Parsers
|
||
|
module AWS
|
||
|
module Elasticache
|
||
|
class DescribeReservedCacheNodes < Fog::Parsers::Base
|
||
|
def reset
|
||
|
@reserved_node = {}
|
||
|
@response = { 'ReservedCacheNodes' => [] }
|
||
|
end
|
||
|
|
||
|
def end_element(name)
|
||
|
case name
|
||
|
when 'ReservedCacheNodeId', 'ReservedCacheNodesOfferingId', 'CacheNodeType', 'ProductDescription', 'State'
|
||
|
@reserved_node[name] = @value
|
||
|
when 'Duration', 'CacheNodeCount'
|
||
|
@reserved_node[name] = @value.to_i
|
||
|
when 'FixedPrice', 'UsagePrice'
|
||
|
@reserved_node[name] = @value.to_f
|
||
|
when 'ReservedCacheNode'
|
||
|
@response['ReservedCacheNodes'] << @reserved_node
|
||
|
@reserved_node = {}
|
||
|
when 'Marker'
|
||
|
@response[name] = @value
|
||
|
when 'StartTime'
|
||
|
@reserved_node[name] = Time.parse(@value)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|