mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
37 lines
594 B
Ruby
37 lines
594 B
Ruby
|
unless Fog.mocking?
|
||
|
|
||
|
module Fog
|
||
|
class Slicehost
|
||
|
|
||
|
# Get list of images
|
||
|
#
|
||
|
# ==== Returns
|
||
|
# * response<~Excon::Response>:
|
||
|
# * body<~Array>:
|
||
|
# * 'id'<~Integer> - Id of the image
|
||
|
# * 'name'<~String> - Name of the image
|
||
|
def get_images
|
||
|
request(
|
||
|
:expects => 200,
|
||
|
:method => 'GET',
|
||
|
:parser => Fog::Parsers::Slicehost::GetImages.new,
|
||
|
:path => 'images.xml'
|
||
|
)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
|
||
|
else
|
||
|
|
||
|
module Fog
|
||
|
class Slicehost
|
||
|
|
||
|
def get_images
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|