Class: Fog::Identity::OpenStack::Tenant
- Inherits:
-
Model
- Object
- Model
- Fog::Identity::OpenStack::Tenant
- Defined in:
- lib/fog/openstack/models/identity/tenant.rb
Instance Method Summary collapse
- #create ⇒ Object
- #destroy ⇒ Object
- #grant_user_role(user_id, role_id) ⇒ Object
- #revoke_user_role(user_id, role_id) ⇒ Object
- #roles_for(user) ⇒ Object
- #save ⇒ Object
- #to_s ⇒ Object
- #update(attr = nil) ⇒ Object
- #users ⇒ Object
Instance Method Details
#create ⇒ Object
46 47 48 49 50 |
# File 'lib/fog/openstack/models/identity/tenant.rb', line 46 def create merge_attributes( service.create_tenant(attributes).body['tenant']) self end |
#destroy ⇒ Object
28 29 30 31 32 |
# File 'lib/fog/openstack/models/identity/tenant.rb', line 28 def destroy requires :id service.delete_tenant(self.id) true end |
#grant_user_role(user_id, role_id) ⇒ Object
52 53 54 |
# File 'lib/fog/openstack/models/identity/tenant.rb', line 52 def grant_user_role(user_id, role_id) service.add_user_to_tenant(self.id, user_id, role_id) end |
#revoke_user_role(user_id, role_id) ⇒ Object
56 57 58 |
# File 'lib/fog/openstack/models/identity/tenant.rb', line 56 def revoke_user_role(user_id, role_id) service.remove_user_from_tenant(self.id, user_id, role_id) end |
#roles_for(user) ⇒ Object
17 18 19 20 21 |
# File 'lib/fog/openstack/models/identity/tenant.rb', line 17 def roles_for(user) service.roles( :tenant => self, :user => user) end |
#save ⇒ Object
41 42 43 44 |
# File 'lib/fog/openstack/models/identity/tenant.rb', line 41 def save requires :name identity ? update : create end |
#to_s ⇒ Object
13 14 15 |
# File 'lib/fog/openstack/models/identity/tenant.rb', line 13 def to_s self.name end |
#update(attr = nil) ⇒ Object
34 35 36 37 38 39 |
# File 'lib/fog/openstack/models/identity/tenant.rb', line 34 def update(attr = nil) requires :id merge_attributes( service.update_tenant(self.id, attr || attributes).body['tenant']) self end |
#users ⇒ Object
23 24 25 26 |
# File 'lib/fog/openstack/models/identity/tenant.rb', line 23 def users requires :id service.users(:tenant_id => self.id) end |