Sha256: 2acfe0c3289738092beaec50ec6ed6732e0955c15bd6138b77f09d4efc936bb1

Contents?: true

Size: 849 Bytes

Versions: 7

Compression:

Stored size: 849 Bytes

Contents

module Fog
  module Slicehost
    class Compute
      class Real

        require 'fog/compute/parsers/slicehost/get_flavors'

        # Get list of flavors
        #
        # ==== 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_flavors
          request(
            :expects  => 200,
            :method   => 'GET',
            :parser   => Fog::Parsers::Slicehost::Compute::GetFlavors.new,
            :path     => 'flavors.xml'
          )
        end

      end

      class Mock

        def get_flavors
          Fog::Mock.not_implemented
        end

      end
    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
fog-0.5.1 lib/fog/compute/requests/slicehost/get_flavors.rb
fog-0.5.0 lib/fog/compute/requests/slicehost/get_flavors.rb
phpfog-fog-0.4.1.3 lib/fog/compute/requests/slicehost/get_flavors.rb
phpfog-fog-0.4.1.2 lib/fog/compute/requests/slicehost/get_flavors.rb
phpfog-fog-0.4.1.1 lib/fog/compute/requests/slicehost/get_flavors.rb
phpfog-fog-0.4.1 lib/fog/compute/requests/slicehost/get_flavors.rb
fog-0.4.1 lib/fog/compute/requests/slicehost/get_flavors.rb