lib/fog/libvirt/models/compute/pools.rb in fog-1.22.0 vs lib/fog/libvirt/models/compute/pools.rb in fog-1.22.1
- old
+ new
@@ -2,23 +2,19 @@
require 'fog/libvirt/models/compute/pool'
module Fog
module Compute
class Libvirt
-
class Pools < Fog::Collection
-
model Fog::Compute::Libvirt::Pool
def all(filter = {})
load(service.list_pools(filter))
end
def get(uuid)
self.all(:uuid => uuid).first
end
-
end
-
end
end
end