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 def initialize(attributes) super end def all(options = {}) data = connection.get_records 'pool' load(data) end def get( pool_ref ) if pool_ref && pool = connection.get_record( pool_ref, 'pool' ) new(pool) else nil end end end end end end