fog/fog-libvirt

View on GitHub
lib/fog/libvirt/models/compute/networks.rb

Summary

Maintainability
A
20 mins
Test Coverage
require 'fog/core/collection'
require 'fog/libvirt/models/compute/network'

module Fog
  module Libvirt
    class Compute
      class Networks < Fog::Collection
        model Fog::Libvirt::Compute::Network

        def all(filter={})
          load(service.list_networks(filter))
        end

        def get(uuid)
          self.all(:uuid => uuid).first
        end
      end
    end
  end
end