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

43 lines
842 B
Ruby
Raw Normal View History

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
# * response<~Fog::AWS::Response>:
# * body<~Hash>:
2009-10-12 12:25:33 -04:00
# * 'id'<~Integer> - Id of the image
# * 'name'<~String> - Name of the image
# * 'updated'<~String> - Last update timestamp for image
# * 'created'<~String> - Creation timestamp for image
# * 'status'<~String> - Status of image
def list_images
2009-10-10 22:05:17 -04:00
request(
: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
def list_images
2009-10-10 22:05:17 -04:00
end
end
end
end
end