Sha256: 8039dbecf52774cdb840f1c774b4a6b6a1725b1dc97e027982a411116e74f677
Contents?: true
Size: 476 Bytes
Versions: 12
Compression:
Stored size: 476 Bytes
Contents
module Fog module Brightbox class Compute class Real def destroy_image(identifier, options = {}) return nil if identifier.nil? || identifier == "" request( :expects => [202], :method => 'DELETE', :path => "/1.0/images/#{identifier}", :headers => {"Content-Type" => "application/json"}, :body => options.to_json ) end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems