2012-04-02 07:25:03 -04:00
|
|
|
require 'fog/core/collection'
|
|
|
|
require 'fog/xenserver/models/compute/pool'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class XenServer
|
|
|
|
class Pools < Fog::Collection
|
|
|
|
model Fog::Compute::XenServer::Pool
|
2012-12-22 18:21:33 -05:00
|
|
|
|
2012-04-02 07:25:03 -04:00
|
|
|
def initialize(attributes)
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def all(options = {})
|
2012-12-22 18:21:33 -05:00
|
|
|
data = service.get_records 'pool'
|
2012-04-02 07:25:03 -04:00
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get( pool_ref )
|
2012-12-22 18:21:33 -05:00
|
|
|
if pool_ref && pool = service.get_record( pool_ref, 'pool' )
|
2012-04-02 07:25:03 -04:00
|
|
|
new(pool)
|
2012-04-02 09:27:35 -04:00
|
|
|
else
|
|
|
|
nil
|
2012-04-02 07:25:03 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|