class Fog::Compute::Libvirt::Network

Public Class Methods

new(attributes = {}) click to toggle source
Calls superclass method
# File lib/fog/libvirt/models/compute/network.rb, line 15
def initialize(attributes = {})
  super
end

Public Instance Methods

save() click to toggle source
# File lib/fog/libvirt/models/compute/network.rb, line 19
def save
  raise Fog::Errors::Error.new('Creating a new network is not yet implemented. Contributions welcome!')
end
shutdown() click to toggle source
# File lib/fog/libvirt/models/compute/network.rb, line 23
def shutdown
  service.destroy_network(uuid)
end