mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
39 lines
622 B
Ruby
39 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
|