Sha256: 2bc2c7742e86ece06715305502fb45b16c18481a87cd4d807fab0c133c90ea4d
Contents?: true
Size: 1.03 KB
Versions: 20
Compression:
Stored size: 1.03 KB
Contents
module Fog module Identity class OpenStack class V2 class Real def list_roles_for_user_on_tenant(tenant_id, user_id) request( :expects => [200], :method => 'GET', :path => "tenants/#{tenant_id}/users/#{user_id}/roles" ) end # def list_roles_for_user_on_tenant end # class Real class Mock def list_roles_for_user_on_tenant(tenant_id, user_id) self.data[:user_tenant_membership][tenant_id] ||= {} self.data[:user_tenant_membership][tenant_id][user_id] ||= [] roles = self.data[:user_tenant_membership][tenant_id][user_id].map do |role_id| self.data[:roles][role_id] end Excon::Response.new( :body => {'roles' => roles}, :status => 200 ) end # def list_roles_for_user_on_tenant end # class Mock end # class V2 end # class OpenStack end # module Identity end # module Fog
Version data entries
20 entries across 20 versions & 3 rubygems