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