1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/requests/servers/list_images.rb
2009-11-02 18:48:49 -08:00

39 lines
652 B
Ruby

unless Fog.mocking?
module Fog
module Rackspace
class Servers
# List all images (IDs and names only)
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'id'<~Integer> - Id of the image
# * 'name'<~String> - Name of the image
def list_images
request(
:expects => [200, 203],
:method => 'GET',
:path => 'images.json'
)
end
end
end
end
else
module Fog
module Rackspace
class Servers
def list_images
end
end
end
end
end