class VagrantPlugins::Openstack::Domain::Subnet
Attributes
cidr[RW]
enable_dhcp[RW]
network_id[RW]
Public Class Methods
new(id, name, cidr, enable_dhcp, network_id)
click to toggle source
Calls superclass method
VagrantPlugins::Openstack::Domain::Item::new
# File lib/vagrant-openstack-provider/client/domain.rb, line 148 def initialize(id, name, cidr, enable_dhcp, network_id) @cidr = cidr @enable_dhcp = enable_dhcp @network_id = network_id super(id, name) end
Protected Instance Methods
state()
click to toggle source
# File lib/vagrant-openstack-provider/client/domain.rb, line 157 def state [@id, @name, @cidr, @enable_dhcp, @network_id] end