Class: Fog::Compute::XenServer::Pools
- Inherits:
-
Fog::Collection
- Object
- Array
- Fog::Collection
- Fog::Compute::XenServer::Pools
- Defined in:
- lib/fog/xenserver/models/compute/pools.rb
Instance Attribute Summary
Attributes inherited from Fog::Collection
Instance Method Summary collapse
- #all(options = {}) ⇒ Object
- #get(pool_ref) ⇒ Object
-
#initialize(attributes) ⇒ Pools
constructor
A new instance of Pools.
Methods inherited from Fog::Collection
#clear, #create, #destroy, #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
#initialize(attributes) ⇒ Pools
Returns a new instance of Pools.
12 13 14 |
# File 'lib/fog/xenserver/models/compute/pools.rb', line 12 def initialize(attributes) super end |
Instance Method Details
#all(options = {}) ⇒ Object
16 17 18 19 |
# File 'lib/fog/xenserver/models/compute/pools.rb', line 16 def all( = {}) data = connection.get_records 'pool' load(data) end |
#get(pool_ref) ⇒ Object
21 22 23 24 25 26 27 |
# File 'lib/fog/xenserver/models/compute/pools.rb', line 21 def get( pool_ref ) if pool_ref && pool = connection.get_record( pool_ref, 'pool' ) new(pool) else nil end end |