mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
516 B
Ruby
22 lines
516 B
Ruby
![]() |
require 'fog/core/collection'
|
||
|
require 'fog/openstack/models/identity/role'
|
||
|
|
||
|
module Fog
|
||
|
module Identity
|
||
|
class OpenStack
|
||
|
class Roles < Fog::Collection
|
||
|
model Fog::Identity::OpenStack::Role
|
||
|
|
||
|
attribute :user
|
||
|
attribute :tenant
|
||
|
|
||
|
def all
|
||
|
requires :user, :tenant
|
||
|
load(connection.
|
||
|
list_roles_for_user_on_tenant(tenant.id, user.id).body['roles'])
|
||
|
end
|
||
|
end # class Tenants
|
||
|
end # class OpenStack
|
||
|
end # module Compute
|
||
|
end # module Fog
|