2011-09-30 17:45:09 -04:00
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Clodo
|
|
|
|
class Real
|
|
|
|
|
|
|
|
# List all images (IDs and names only)
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Excon::Response>:
|
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'id'<~Integer> - Id of the image
|
|
|
|
# * 'name'<~String> - Name of the image
|
|
|
|
# * 'status'<~String> - Status of the image
|
|
|
|
# * 'vps_type'<~String> - VirtualServer or ScaleServer
|
|
|
|
def list_images
|
|
|
|
request(
|
2011-10-30 13:59:43 -04:00
|
|
|
:expects => [200, 203],
|
|
|
|
:method => 'GET',
|
|
|
|
:path => 'images'
|
|
|
|
)
|
2011-09-30 17:45:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
def list_images
|
|
|
|
response = Excon::Response.new
|
|
|
|
response.status = 200
|
|
|
|
response.body = {
|
|
|
|
'images' => [
|
2011-11-08 06:01:58 -05:00
|
|
|
{ 'name' => 'Debian 6 64 bits',
|
|
|
|
'id' => "541",
|
|
|
|
'vps_type' => 'ScaleServer',
|
|
|
|
'status' => 'ACTIVE' },
|
|
|
|
{ 'name' => 'CentOS 5.5 32 bits',
|
|
|
|
'id' => "31",
|
|
|
|
'vps_type' => 'VirtualServer',
|
|
|
|
'status' => 'ACTIVE' }
|
2011-10-30 13:59:43 -04:00
|
|
|
]
|
2011-09-30 17:45:09 -04:00
|
|
|
}
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|