Sha256: d844dab48fba6c5d9b2cd5e3834c2a9777c609815aecda81990845b243ac7737
Contents?: true
Size: 521 Bytes
Versions: 4
Compression:
Stored size: 521 Bytes
Contents
module Fog module Identity class HuaweiCloud 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
4 entries across 4 versions & 1 rubygems