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/get_images.rb
2009-10-10 19:05:31 -07:00

38 lines
622 B
Ruby

unless Fog.mocking?
module Fog
module Rackspace
class Servers
# List all images (IDs and names only)
#
# ==== Returns
# * response<~Fog::AWS::Response>:
# * body<~Hash>:
# * 'publicIp'<~String> - The acquired address
# * 'requestId'<~String> - Id of the request
def get_images
request(
:method => 'GET',
:path => 'images'
)
end
end
end
end
else
module Fog
module Rackspace
class Servers
def get_images
end
end
end
end
end