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

40 lines
655 B
Ruby
Raw Normal View History

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
def list_images
2009-10-10 19:05:17 -07:00
request(
: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
def list_images
2009-10-10 19:05:17 -07:00
end
end
end
end
end