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/create_user_role.rb

22 lines
386 B
Ruby
Raw Normal View History

2012-02-24 19:38:05 +08:00
module Fog
module Identity
class OpenStack
class Real
def create_user_role(tenant_id, user_id, role_id)
request(
:expects => 200,
:method => 'PUT',
:path => '/tenants/%s/users/%s/roles/OS-KSADM/%s' % [tenant_id, user_id, role_id]
)
end
end
class Mock
end
end
end
end