2009-10-10 22:05:17 -04:00
|
|
|
unless Fog.mocking?
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Rackspace
|
|
|
|
class Servers
|
|
|
|
|
|
|
|
# List all images (IDs and names only)
|
|
|
|
#
|
|
|
|
# ==== Returns
|
2009-11-02 21:48:49 -05:00
|
|
|
# * response<~Excon::Response>:
|
2009-10-10 22:05:17 -04:00
|
|
|
# * body<~Hash>:
|
2009-10-12 12:25:33 -04:00
|
|
|
# * 'id'<~Integer> - Id of the image
|
|
|
|
# * 'name'<~String> - Name of the image
|
2009-10-16 13:26:15 -04:00
|
|
|
def list_images
|
2009-10-10 22:05:17 -04:00
|
|
|
request(
|
2009-10-16 16:17:26 -04:00
|
|
|
:expects => [200, 203],
|
2009-10-14 01:36:35 -04:00
|
|
|
:method => 'GET',
|
|
|
|
:path => 'images.json'
|
2009-10-10 22:05:17 -04:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Rackspace
|
|
|
|
class Servers
|
|
|
|
|
2009-10-16 13:26:15 -04:00
|
|
|
def list_images
|
2009-10-10 22:05:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|