class Fog::Compute::Libvirt::Pools

Public Instance Methods

all(filter = {}) click to toggle source
# File lib/fog/libvirt/models/compute/pools.rb, line 12
def all(filter = {})
  load(connection.list_pools(filter))
end
get(uuid) click to toggle source
# File lib/fog/libvirt/models/compute/pools.rb, line 16
def get(uuid)
  self.all(:uuid => uuid).first
end