Sha256: 600485811a060fd5c72d2e9aac6045773d34485982b27a51fc39954b7e7f9a90
Contents?: true
Size: 503 Bytes
Versions: 14
Compression:
Stored size: 503 Bytes
Contents
module Fog module Image class OpenStack class V2 class Real def delete_image(image_id) request( :expects => 204, :method => 'DELETE', :path => "images/#{image_id}" ) end end class Mock def delete_image(image_id) response = Excon::Response.new response.status = 204 response end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems