1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/requests/identity/delete_user_role.rb

27 lines
545 B
Ruby
Raw Normal View History

2012-02-24 19:38:05 +08:00
module Fog
module Identity
class OpenStack
class Real
def delete_user_role(tenant_id, user_id, role_id)
request(
:expects => 200,
:method => 'DELETE',
:path => "/tenants/#{tenant_id}/users/#{user_id}/roles/OS-KSADM/#{role_id}"
2012-02-24 19:38:05 +08:00
)
end
end
class Mock
def delete_user_role(tenant_id, user_id, role_id)
response = Excon::Response.new
response.status = 200
response
end
2012-02-24 19:38:05 +08:00
end
end
end
end