Sha256: 51cbc47d15e71a4f517321e27db2e7b9dd57a78adcd4411ae42d16f40f11d7af

Contents?: true

Size: 977 Bytes

Versions: 37

Compression:

Stored size: 977 Bytes

Contents

module Fog
  module Slicehost
    class Compute
      class Real

        require 'fog/slicehost/parsers/compute/get_flavor'

        # Get details of a flavor
        #
        # ==== Parameters
        # * flavor_id<~Integer> - Id of flavor to lookup
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Array>:
        #     * 'id'<~Integer> - Id of the flavor
        #     * 'name'<~String> - Name of the flavor
        #     * 'price'<~Integer> - Price in cents
        #     * 'ram'<~Integer> - Amount of ram for the flavor
        def get_flavor(flavor_id)
          request(
            :expects  => 200,
            :method   => 'GET',
            :parser   => Fog::Parsers::Slicehost::Compute::GetFlavor.new,
            :path     => "flavors/#{flavor_id}.xml"
          )
        end

      end

      class Mock

        def get_flavor(flavor_id)
          Fog::Mock.not_implemented
        end

      end
    end
  end
end

Version data entries

37 entries across 37 versions & 2 rubygems

Version Path
fog-0.4.0 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.34 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.33 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.32 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.31 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.30 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.29 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.28 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.27 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.26 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.25 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.24 lib/fog/slicehost/requests/compute/get_flavor.rb
bbcloud-0.8.1 lib/bbcloud/vendor/fog-0.3.23/lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.23 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.22 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.21 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.20 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.19 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.18 lib/fog/slicehost/requests/compute/get_flavor.rb
fog-0.3.17 lib/fog/slicehost/requests/compute/get_flavor.rb