2010-05-24 14:03:52 -04:00
|
|
|
module Fog
|
|
|
|
module Bluebox
|
|
|
|
class Real
|
|
|
|
|
|
|
|
require 'fog/bluebox/parsers/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::Bluebox::GetFlavor.new,
|
|
|
|
:path => "api/block_products/#{flavor_id}.xml"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
def get_flavor(flavor_id)
|
2010-06-02 11:09:54 -04:00
|
|
|
Fog::Mock.not_implemented
|
2010-05-24 14:03:52 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|