Class: Fog::Identity::OpenStack::V3::Role

Inherits:
OpenStack::Model show all
Defined in:
lib/fog/openstack/models/identity_v3/role.rb

Instance Attribute Summary

Attributes inherited from OpenStack::Model

#project

Instance Method Summary collapse

Methods inherited from OpenStack::Model

#initialize, #save

Constructor Details

This class inherits a constructor from Fog::OpenStack::Model

Instance Method Details

#createObject



30
31
32
33
34
# File 'lib/fog/openstack/models/identity_v3/role.rb', line 30

def create
  merge_attributes(
      service.create_role(attributes).body['role'])
  self
end

#destroyObject



17
18
19
20
21
# File 'lib/fog/openstack/models/identity_v3/role.rb', line 17

def destroy
  requires :id
  service.delete_role(self.id)
  true
end

#to_sObject



13
14
15
# File 'lib/fog/openstack/models/identity_v3/role.rb', line 13

def to_s
  self.name
end

#update(attr = nil) ⇒ Object



23
24
25
26
27
28
# File 'lib/fog/openstack/models/identity_v3/role.rb', line 23

def update(attr = nil)
  requires :id
  merge_attributes(
      service.update_role(self.id, attr || attributes).body['role'])
  self
end