1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/libvirt/models/compute/interfaces.rb
2012-04-05 09:07:24 +03:00

24 lines
410 B
Ruby

require 'fog/core/collection'
require 'fog/libvirt/models/compute/interface'
module Fog
module Compute
class Libvirt
class Interfaces < Fog::Collection
model Fog::Compute::Libvirt::Interface
def all(filter={})
load(connection.list_interfaces(filter))
end
def get(name)
self.all(:name => name).first
end
end
end
end
end