Sha256: baa14845bdc4e21a6e65920824cbd16e1343df7b49bb5b9e1a2880d6ac736af5
Contents?: true
Size: 519 Bytes
Versions: 25
Compression:
Stored size: 519 Bytes
Contents
module Fog module Identity class OpenStack class V2 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 Mock def remove_user_from_tenant(tenant_id, user_id, role_id) end end end end end end
Version data entries
25 entries across 23 versions & 3 rubygems