Sha256: c714da3ae1e175a4fd4cd3f4f72c8e3d9aaeb1c008c8fabd285b6df0ba03717a
Contents?: true
Size: 504 Bytes
Versions: 4
Compression:
Stored size: 504 Bytes
Contents
module Fog module Image class HuaweiCloud 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
4 entries across 4 versions & 1 rubygems