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/models/identity/tenant.rb

63 lines
1.3 KiB
Ruby
Raw Normal View History

2012-02-22 09:40:32 -05:00
require 'fog/core/model'
module Fog
module Identity
class OpenStack
class Tenant < Fog::Model
identity :id
attribute :description
attribute :enabled
attribute :name
def to_s
self.name
end
def roles_for(user)
connection.roles(
:tenant => self,
:user => user)
end
def users
requires :id
connection.users(:tenant_id => self.id)
end
def destroy
requires :id
connection.delete_tenant(self.id)
true
end
def update(attr = nil)
requires :id
merge_attributes(
connection.update_tenant(self.id, attr || attributes).body['tenant'])
self
end
def save
requires :name
identity ? update : create
end
def create
merge_attributes(
connection.create_tenant(attributes).body['tenant'])
self
end
def grant_user_role(user_id, role_id)
connection.add_user_to_tenant(self.id, user_id, role_id)
end
def revoke_user_role(user_id, role_id)
connection.remove_user_from_tenant(self.id, user_id, role_id)
end
2012-02-22 09:40:32 -05:00
end # class Tenant
end # class OpenStack
end # module Identity
end # module Fog