Sha256: 5d15cf0ecacafaa044de66b9b56ed37feab5e0657dd15fd5c64d257d5f7aa368
Contents?: true
Size: 825 Bytes
Versions: 108
Compression:
Stored size: 825 Bytes
Contents
module Fog module Parsers module Compute module AWS class DescribeSpotPriceHistory < Fog::Parsers::Base def reset @spot_price = {} @response = { 'spotPriceHistorySet' => [] } end def end_element(name) case name when 'availabilityZone', 'instanceType', 'productDescription' @spot_price[name] = value when 'item' @response['spotPriceHistorySet'] << @spot_price @spot_price = {} when 'requestId' @response[name] = value when 'spotPrice' @spot_price[name] = value.to_f when 'timestamp' @spot_price[name] = Time.parse(value) end end end end end end end
Version data entries
108 entries across 108 versions & 18 rubygems