Class: Fog::Compute::Libvirt::Interface

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/libvirt/models/compute/interface.rb

Instance Method Summary collapse

Instance Method Details

#active?Boolean

Returns:

  • (Boolean)


21
22
23
# File 'lib/fog/libvirt/models/compute/interface.rb', line 21

def active?
  active
end

#saveObject

Raises:

  • (Fog::Errors::Error)


13
14
15
# File 'lib/fog/libvirt/models/compute/interface.rb', line 13

def save
  raise Fog::Errors::Error.new('Creating a new interface is not yet implemented. Contributions welcome!')
end

#shutdownObject



17
18
19
# File 'lib/fog/libvirt/models/compute/interface.rb', line 17

def shutdown
  service.destroy_interface(mac)
end