Class: Fog::Identity::OpenStack::V3::Role
Instance Attribute Summary
#project
Instance Method Summary
collapse
#initialize, #save
Instance Method Details
#create ⇒ Object
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
|
#destroy ⇒ Object
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_s ⇒ Object
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
|