class Fog::Compute::OpenNebula::Network

Public Instance Methods

description() click to toggle source
# File lib/fog/opennebula/models/compute/network.rb, line 19
def description
  attributes[:description] || ''
end
save() click to toggle source
# File lib/fog/opennebula/models/compute/network.rb, line 27
def save
  raise Fog::Errors::Error, 'Creating a new network is not yet implemented. Contributions welcome!'
end
shutdown() click to toggle source
# File lib/fog/opennebula/models/compute/network.rb, line 31
def shutdown
  raise Fog::Errors::Error, 'Shutting down a new network is not yet implemented. Contributions welcome!'
end
to_label() click to toggle source
# File lib/fog/opennebula/models/compute/network.rb, line 35
def to_label
  ret = ''
  ret += "#{description} - " unless description.empty?
  ret += "VLAN #{vlan} - " unless vlan.empty?
  ret += name.to_s
end
vlan() click to toggle source
# File lib/fog/opennebula/models/compute/network.rb, line 23
def vlan
  attributes[:vlan] || ''
end