mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
38 lines
849 B
Ruby
38 lines
849 B
Ruby
|
module Fog
|
||
|
module Slicehost
|
||
|
class Compute
|
||
|
class Real
|
||
|
|
||
|
require 'fog/slicehost/parsers/compute/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
|