Class: Fog::Identity::OpenStack::V3::Groups
- Inherits:
-
Collection
- Object
- Collection
- Fog::Identity::OpenStack::V3::Groups
- Defined in:
- lib/fog/openstack/models/identity_v3/groups.rb
Instance Method Summary collapse
Instance Method Details
#all(params = {}) ⇒ Object
11 12 13 |
# File 'lib/fog/openstack/models/identity_v3/groups.rb', line 11 def all params={} load(service.list_groups(params).body['groups']) end |
#destroy(id) ⇒ Object
23 24 25 26 |
# File 'lib/fog/openstack/models/identity_v3/groups.rb', line 23 def destroy(id) group = self.find_by_id(id) group.destroy end |
#find_by_id(id) ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/fog/openstack/models/identity_v3/groups.rb', line 15 def find_by_id(id) cached_group = self.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 |