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/compute/requests/brightbox/create_image.rb

19 lines
397 B
Ruby
Raw Normal View History

module Fog
module Compute
class Brightbox
class Real
def create_image(options = {})
request(
:expects => [201],
:method => 'POST',
:path => "/1.0/images",
:headers => {"Content-Type" => "application/json"},
2011-07-20 12:08:11 -04:00
:body => MultiJson.encode(options)
)
end
end
end
end
end