Class: Fog::Identity::OpenStack::V3::Groups
Instance Attribute Summary
#response
Instance Method Summary
collapse
#get, #load_response, #summary
Instance Method Details
#all(options = {}) ⇒ Object
11
12
13
|
# File 'lib/fog/identity/openstack/v3/models/groups.rb', line 11
def all(options = {})
load_response(service.list_groups(options), 'groups')
end
|
#destroy(id) ⇒ Object
24
25
26
27
|
# File 'lib/fog/identity/openstack/v3/models/groups.rb', line 24
def destroy(id)
group = find_by_id(id)
group.destroy
end
|
#find_by_id(id) ⇒ Object
15
16
17
18
19
20
21
22
|
# File 'lib/fog/identity/openstack/v3/models/groups.rb', line 15
def find_by_id(id)
cached_group = find { |group| group.id == id }
return cached_group if cached_group
group_hash = service.get_group(id).body['group']
Fog::Identity::OpenStack::V3.group.new(
group_hash.merge(:service => service)
)
end
|