2010-11-08 12:21:31 +00:00
|
|
|
module Fog
|
|
|
|
module Brightbox
|
|
|
|
class Compute
|
|
|
|
class Real
|
|
|
|
|
|
|
|
def update_image(identifier, options = {})
|
2010-11-10 16:06:02 +00:00
|
|
|
return nil if identifier.nil? || identifier == ""
|
2010-11-11 21:02:20 +00:00
|
|
|
return nil if options.empty? || options.nil?
|
2010-11-08 12:21:31 +00:00
|
|
|
request(
|
|
|
|
:expects => [200],
|
|
|
|
:method => 'PUT',
|
|
|
|
:path => "/1.0/images/#{identifier}",
|
|
|
|
:headers => {"Content-Type" => "application/json"},
|
|
|
|
:body => options.to_json
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
def update_image(identifier, options = {})
|
|
|
|
Fog::Mock.not_implemented
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|