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