2010-03-17 23:51:55 -04:00
|
|
|
module Fog
|
|
|
|
module Slicehost
|
|
|
|
class Real
|
2010-02-06 18:39:14 -05:00
|
|
|
|
2010-03-17 23:51:55 -04:00
|
|
|
require 'fog/slicehost/parsers/get_flavor'
|
2010-02-06 18:39:14 -05:00
|
|
|
|
|
|
|
# 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::GetFlavor.new,
|
|
|
|
:path => "flavors/#{flavor_id}.xml"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2010-03-17 23:51:55 -04:00
|
|
|
class Mock
|
2010-02-06 18:39:14 -05:00
|
|
|
|
|
|
|
def get_flavor(flavor_id)
|
2010-05-26 20:37:27 -04:00
|
|
|
raise Fog::Errors::MockNotImplemented.new("Contributions welcome!")
|
2010-02-06 18:39:14 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|