1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/ibm/requests/compute/create_image.rb

28 lines
573 B
Ruby
Raw Normal View History

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
def create_image(instance_id, name, description)
request(
2012-01-10 17:20:56 -05:00
:method => 'POST',
:expects => 200,
:path => "/instances/#{instance_id}",
:body => {
'name' => name,
'description' => description
}
)
2012-01-10 17:20:56 -05:00
end
end
end
end
end