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
2012-05-28 16:45:22 -05:00

26 lines
584 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/#{tenant_id}/users/#{user_id}/roles/OS-KSADM/#{role_id}"
)
end
end
class Mock
def create_user_role(tenant_id, user_id, role_id)
Excon::Response.new(
:body => { 'role' => self.data[:roles][role_id] },
:status => 200
)
end
end
end
end
end