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

Version Path
michiels-fog-1.3.1 lib/fog/aws/parsers/compute/describe_spot_price_history.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/lib/fog/aws/parsers/compute/describe_spot_price_history.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_spot_price_history.rb
fog-1.3.1 lib/fog/aws/parsers/compute/describe_spot_price_history.rb
fog-1.3.0 lib/fog/aws/parsers/compute/describe_spot_price_history.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_spot_price_history.rb
fog-1.2.0 lib/fog/aws/parsers/compute/describe_spot_price_history.rb
ktheory-fog-1.1.2 lib/fog/aws/parsers/compute/describe_spot_price_history.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_spot_price_history.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_spot_price_history.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_spot_price_history.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_spot_price_history.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_spot_price_history.rb
fog-1.1.2 lib/fog/aws/parsers/compute/describe_spot_price_history.rb
fog_tractical-1.1.4 lib/fog/aws/parsers/compute/describe_spot_price_history.rb
fog_tractical-1.1.3 lib/fog/aws/parsers/compute/describe_spot_price_history.rb
brightbox-cli-0.16.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_spot_price_history.rb
fog-1.1.1 lib/fog/aws/parsers/compute/describe_spot_price_history.rb
fog-1.1.0 lib/fog/aws/parsers/compute/describe_spot_price_history.rb
brightbox-cli-0.15.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/compute/describe_spot_price_history.rb