Sha256: 5c13a01fddd5b668e48fd9f227426563d0df3812eea3628fcdd0d6c2e9df627f
Contents?: true
Size: 593 Bytes
Versions: 25
Compression:
Stored size: 593 Bytes
Contents
module Fog module Image class OpenStack 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
25 entries across 23 versions & 3 rubygems