Class: Fog::Orchestration::OpenStack::Stacks
- Inherits:
-
Collection
- Object
- Array
- Collection
- Fog::Orchestration::OpenStack::Stacks
- Defined in:
- lib/fog/openstack/models/orchestration/stacks.rb
Instance Attribute Summary
Attributes inherited from Collection
Instance Method Summary collapse
- #all ⇒ Object
- #find_by_id(id) ⇒ Object (also: #get)
Methods inherited from 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 Core::DeprecatedConnectionAccessors
#connection, #connection=, #prepare_service_value
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Collection
Instance Method Details
#all ⇒ Object
10 11 12 |
# File 'lib/fog/openstack/models/orchestration/stacks.rb', line 10 def all load(service.list_stacks.body['stacks']) end |
#find_by_id(id) ⇒ Object Also known as: get
14 15 16 |
# File 'lib/fog/openstack/models/orchestration/stacks.rb', line 14 def find_by_id(id) self.find {|stack| stack.id == id} end |