Sha256: 4239cbe6372643b1da02dc0ed26f67cb68bba3f1cb2b89252a88898c5c36cc97
Contents?: true
Size: 502 Bytes
Versions: 20
Compression:
Stored size: 502 Bytes
Contents
module Fog module OpenStack class Image 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
20 entries across 20 versions & 3 rubygems