2010-09-08 18:00:47 -04:00
|
|
|
module Fog
|
|
|
|
module Slicehost
|
|
|
|
class Compute
|
|
|
|
class Real
|
|
|
|
|
2011-01-07 19:52:09 -05:00
|
|
|
require 'fog/compute/parsers/slicehost/get_flavors'
|
2010-09-08 18:00:47 -04:00
|
|
|
|
|
|
|
# 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
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|