Sha256: 5edf1ab16825ca92d48196823c6b2938001f30a86003271dbbaa415b108790be

Contents?: true

Size: 1.36 KB

Versions: 103

Compression:

Stored size: 1.36 KB

Contents

module Fog
  module Compute
    class AWS
      class Real

        require 'fog/aws/parsers/compute/describe_spot_price_history'

        # Describe all or specified spot price history
        #
        # ==== Parameters
        # * filters<~Hash> - List of filters to limit results with
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'requestId'<~String> - Id of request
        #     * 'spotPriceHistorySet'<~Array>:
        #       * 'availabilityZone'<~String> - availability zone for instance
        #       * 'instanceType'<~String> - the type of instance
        #       * 'productDescription'<~String> - general description of AMI
        #       * 'spotPrice'<~Float> - maximum price to launch one or more instances
        #       * 'timestamp'<~Time> - date and time of request creation
        #
        # {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeSpotPriceHistory.html]
        def describe_spot_price_history(filters = {})
          params = Fog::AWS.indexed_filters(filters)
          request({
            'Action'    => 'DescribeSpotPriceHistory',
            :idempotent => true,
            :parser     => Fog::Parsers::Compute::AWS::DescribeSpotPriceHistory.new
          }.merge!(params))
        end

      end
    end
  end
end

Version data entries

103 entries across 103 versions & 17 rubygems

Version Path
fog-1.22.0 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-1.21.0 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-1.20.0 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-1.19.0 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/aws/requests/compute/describe_spot_price_history.rb