Sha256: e83ec5d4bdbc1ae4611e7eee4f8ac4d0ea670790f939982ad03bfbc1ea0e2a29
Contents?: true
Size: 708 Bytes
Versions: 14
Compression:
Stored size: 708 Bytes
Contents
module Fog module Image class OpenStack class V2 class Real def add_member_to_image(image_id, tenant_id) request( :expects => [200], :method => 'POST', :path => "images/#{image_id}/members", :body => Fog::JSON.encode({:member => tenant_id}) ) end end # class Real class Mock def add_member_to_image(image_id, tenant_id) response = Excon::Response.new response.status = 200 response end # def list_tenants end # class Mock end # class OpenStack end end # module Identity end # module Fog
Version data entries
14 entries across 14 versions & 2 rubygems