Class: Fog::Compute::OpenStack::SecurityGroups
- Inherits:
-
Fog::Collection
- Object
- Array
- Fog::Collection
- Fog::Compute::OpenStack::SecurityGroups
- Defined in:
- lib/fog/openstack/models/compute/security_groups.rb
Instance Attribute Summary
Attributes inherited from Fog::Collection
Instance Method Summary collapse
Methods inherited from Fog::Collection
#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Collection
Instance Method Details
#all ⇒ Object
12 13 14 |
# File 'lib/fog/openstack/models/compute/security_groups.rb', line 12 def all load(connection.list_security_groups.body['security_groups']) end |
#get(security_group_id) ⇒ Object
16 17 18 19 20 21 22 |
# File 'lib/fog/openstack/models/compute/security_groups.rb', line 16 def get(security_group_id) if security_group_id new(connection.get_security_group(security_group_id).body['security_group']) end rescue Fog::Compute::OpenStack::NotFound nil end |