Sha256: 07f8b0794c962e91d95385cc81e131e95c9c545fb7925a8cf1a5969b282ef701

Contents?: true

Size: 1.36 KB

Versions: 22

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

22 entries across 22 versions & 5 rubygems

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-aws-0.1.1 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-aws-0.1.0 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-aws-0.0.8 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-aws-0.0.7 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-aws-0.0.6 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-aws-0.0.5 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-1.26.0 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-1.25.0 lib/fog/aws/requests/compute/describe_spot_price_history.rb
nsidc-fog-1.24.1 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-1.24.0 lib/fog/aws/requests/compute/describe_spot_price_history.rb
ns-fog-1.22.11 lib/fog/aws/requests/compute/describe_spot_price_history.rb
ns-fog-1.22.10 lib/fog/aws/requests/compute/describe_spot_price_history.rb
ns-fog-1.22.9 lib/fog/aws/requests/compute/describe_spot_price_history.rb
ns-fog-1.22.8 lib/fog/aws/requests/compute/describe_spot_price_history.rb
ns-fog-1.22.7 lib/fog/aws/requests/compute/describe_spot_price_history.rb
ns-fog-1.22.6 lib/fog/aws/requests/compute/describe_spot_price_history.rb
fog-1.23.0 lib/fog/aws/requests/compute/describe_spot_price_history.rb
ns-fog-1.22.4 lib/fog/aws/requests/compute/describe_spot_price_history.rb
ns-fog-1.22.3 lib/fog/aws/requests/compute/describe_spot_price_history.rb