mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
386 B
Ruby
22 lines
386 B
Ruby
|
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
|