Sha256: 25a6ee2b0b4310594649a8c573fffe2d78b2b6efceeff7cd9a35f346d989321d
Contents?: true
Size: 593 Bytes
Versions: 22
Compression:
Stored size: 593 Bytes
Contents
module Fog module OpenStack class Image class V2 class Real def remove_member_from_image(image_id, member_id) request( :expects => [200, 204], :method => 'DELETE', :path => "images/#{image_id}/members/#{member_id}" ) end end class Mock def remove_member_from_image(_image_id, _member_id) response = Excon::Response.new response.status = [200, 204][rand(2)] response end end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems