mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
43 lines
897 B
Ruby
43 lines
897 B
Ruby
|
unless Fog.mocking?
|
||
|
|
||
|
module Fog
|
||
|
class Slicehost
|
||
|
|
||
|
# 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
|
||
|
end
|
||
|
|
||
|
else
|
||
|
|
||
|
module Fog
|
||
|
class Slicehost
|
||
|
|
||
|
def get_flavor(flavor_id)
|
||
|
raise MockNotImplemented.new("Contributions welcome!")
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|