Class: Fog::Parsers::AWS::Compute::DescribeSpotPriceHistory
- Inherits:
-
Base
- Object
- Base
- Fog::Parsers::AWS::Compute::DescribeSpotPriceHistory
- Defined in:
- lib/fog/aws/parsers/compute/describe_spot_price_history.rb
Instance Method Summary collapse
Instance Method Details
#end_element(name) ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/fog/aws/parsers/compute/describe_spot_price_history.rb', line 11 def end_element(name) case name when 'availabilityZone', 'instanceType', 'productDescription' @spot_price[name] = value when 'item' @response['spotPriceHistorySet'] << @spot_price @spot_price = {} when 'requestId', 'nextToken' @response[name] = value when 'spotPrice' @spot_price[name] = value.to_f when 'timestamp' @spot_price[name] = Time.parse(value) end end |
#reset ⇒ Object
6 7 8 9 |
# File 'lib/fog/aws/parsers/compute/describe_spot_price_history.rb', line 6 def reset @spot_price = {} @response = { 'spotPriceHistorySet' => [] } end |