fog--fog/lib/fog/brightbox/requests/compute/create_image.rb

27 lines
504 B
Ruby

module Fog
module Brightbox
class Compute
class Real
def create_image(options = {})
request(
:expects => [201],
:method => 'POST',
:path => "/1.0/images",
:headers => {"Content-Type" => "application/json"},
:body => options.to_json
)
end
end
class Mock
def create_image(options = {})
Fog::Mock.not_implemented
end
end
end
end
end