2010-04-05 00:41:49 -04:00
|
|
|
module Fog
|
|
|
|
module Rackspace
|
2010-09-08 16:50:23 -04:00
|
|
|
class Compute
|
2010-04-05 00:41:49 -04:00
|
|
|
class Real
|
|
|
|
|
|
|
|
# Get details for image by id
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Excon::Response>:
|
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'id'<~Integer> - Id of the image
|
|
|
|
# * 'name'<~String> - Name of the image
|
|
|
|
# * 'serverId'<~Integer> - Id of server image was created from
|
|
|
|
# * 'status'<~Integer> - Status of image
|
|
|
|
# * 'updated'<~String> - Timestamp of last update
|
|
|
|
def get_image_details(image_id)
|
|
|
|
request(
|
|
|
|
:expects => [200, 203],
|
|
|
|
:method => 'GET',
|
|
|
|
:path => "images/#{image_id}.json"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|