Sha256: 08f75a170ddd1158b5a5438931ee97eb2255a178d6701d3347fc35489f9f3606
Contents?: true
Size: 560 Bytes
Versions: 105
Compression:
Stored size: 560 Bytes
Contents
module Fog module Identity class OpenStack class Real def remove_user_from_tenant(tenant_id, user_id, role_id) request( :expects => [200, 204], :method => 'DELETE', :path => "/tenants/#{tenant_id}/users/#{user_id}/roles/OS-KSADM/#{role_id}" ) end end # class Real class Mock def remove_user_from_tenant(tenant_id, user_id, role_id) end # def remove_user_from_tenant end # class Mock end # class OpenStack end # module Identity end
Version data entries
105 entries across 105 versions & 16 rubygems