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