class Fog::Libvirt::Compute::Interface

Public Instance Methods

active?() click to toggle source
# File lib/fog/libvirt/models/compute/interface.rb, line 19
def active?
  active
end
save() click to toggle source
# File lib/fog/libvirt/models/compute/interface.rb, line 11
def save
  raise Fog::Errors::Error.new('Creating a new interface is not yet implemented. Contributions welcome!')
end
shutdown() click to toggle source
# File lib/fog/libvirt/models/compute/interface.rb, line 15
def shutdown
  service.destroy_interface(mac)
end