Sha256: 95b252c7f165f34d5906909432c4a8d575424807e0f945864d74533e27e6b33f
Contents?: true
Size: 502 Bytes
Versions: 39
Compression:
Stored size: 502 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
39 entries across 37 versions & 3 rubygems