Sha256: a23f58478e03bc72199cf4dc6ea29dbe627ebacc5fd0e7f98486285471be6c69
Contents?: true
Size: 395 Bytes
Versions: 30
Compression:
Stored size: 395 Bytes
Contents
require 'fog/core/collection' require 'fog/libvirt/models/compute/network' module Fog module Compute class Libvirt class Networks < Fog::Collection model Fog::Compute::Libvirt::Network def all(filter={}) load(service.list_networks(filter)) end def get(uuid) self.all(:uuid => uuid).first end end end end end
Version data entries
30 entries across 30 versions & 5 rubygems