2012-01-10 17:20:56 -05:00
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class IBM
|
|
|
|
class Real
|
|
|
|
|
|
|
|
# Create an image
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Excon::Response>:
|
|
|
|
# * body<~Hash>
|
|
|
|
# TODO: docs
|
2012-01-17 16:34:47 -05:00
|
|
|
def create_image(instance_id, name, description)
|
|
|
|
request(
|
2012-01-10 17:20:56 -05:00
|
|
|
:method => 'POST',
|
|
|
|
:expects => 200,
|
|
|
|
:path => "/instances/#{instance_id}",
|
2012-01-17 16:34:47 -05:00
|
|
|
:body => {
|
|
|
|
'name' => name,
|
|
|
|
'description' => description
|
|
|
|
}
|
|
|
|
)
|
2012-01-10 17:20:56 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2011-12-02 10:27:44 -08:00
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
def create_image(instance_id, name, description)
|
|
|
|
response = Excon::Response.new
|
|
|
|
if instance_exists? instance_id
|
|
|
|
image = Fog::IBM::Mock.private_image(name, description)
|
|
|
|
self.data[:images][image["id"]] = image
|
|
|
|
response.status = 200
|
|
|
|
response.body = image
|
|
|
|
else
|
|
|
|
response.status = 404
|
|
|
|
end
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2012-01-10 17:20:56 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|