Class: Fog::Compute::XenServer::Pools
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::XenServer::Pools
- Defined in:
- lib/fog/xenserver/models/compute/pools.rb
Instance Method Summary collapse
- #all(options = {}) ⇒ Object
- #get(pool_ref) ⇒ Object
-
#initialize(attributes) ⇒ Pools
constructor
A new instance of Pools.
Constructor Details
#initialize(attributes) ⇒ Pools
Returns a new instance of Pools.
10 11 12 |
# File 'lib/fog/xenserver/models/compute/pools.rb', line 10 def initialize(attributes) super end |
Instance Method Details
#all(options = {}) ⇒ Object
14 15 16 17 |
# File 'lib/fog/xenserver/models/compute/pools.rb', line 14 def all( = {}) data = service.get_records 'pool' load(data) end |
#get(pool_ref) ⇒ Object
19 20 21 22 23 24 25 |
# File 'lib/fog/xenserver/models/compute/pools.rb', line 19 def get( pool_ref ) if pool_ref && pool = service.get_record( pool_ref, 'pool' ) new(pool) else nil end end |