class Construqt::Regions::Region

Attributes

cables[R]
hosts[R]
interfaces[R]
name[R]
network[R]
resources[R]
services[R]
templates[R]
users[R]
vlans[R]

Public Class Methods

new(name, network) click to toggle source
# File lib/construqt/regions.rb, line 7
def initialize(name, network)
  @name = name
  @network = network
  @vlans = Construqt::Vlans.new(self)
  @hosts = Construqt::Hosts.new(self)
  @interfaces = Construqt::Interfaces.new(self)
  @templates = Construqt::Templates.new(self)
  @users = Construqt::Users.new(self)
  @cables = Construqt::Cables.new(self)
  @services = Construqt::Services.new(self)
  @resources = Construqt::Resources.new(self)
end