Ejemplo n.º 1
0
 def __init__(self, id=""):
     AbstractVertex.__init__(self, id)
     self.type = ""
     self.profile = ""
     self.isservice = False
     self.servicename = ""
     self.username = ""
     self.image = ""
     self.connectionset = []
     self.params = ParamFactory.Create("vnf")
Ejemplo n.º 2
0
 def __init__(self, id, type=""):
     AbstractVertex.__init__(self, id)
     self.type = type
     self.ip = ""
     self.router = False
     self.isservice = False
     self.servicename = ""
     self.provider = ""
     self.port = ""
     self.prefix = "1"
     self.params = ParamFactory.Create("netelement")
Ejemplo n.º 3
0
 def __init__(self, id, capacity):
     AbstractVertex.__init__(self, id)
     self.capacity = capacity
     self.intervals = {}
Ejemplo n.º 4
0
 def __init__(self, id, speed, ram):
     AbstractVertex.__init__(self, id)
     self.speed = speed
     self.ram = ram
     self.intervals = {}
Ejemplo n.º 5
0
 def __init__(self, id, volume, type):
     AbstractVertex.__init__(self, id)
     self.volume = volume
     self.type = type
     self.intervals = {}
Ejemplo n.º 6
0
 def __init__(self, id, speed, ram=0):
     AbstractVertex.__init__(self, id)
     self.id = id
     self.speed = speed
     self.ram = ram
     self.resource = None
Ejemplo n.º 7
0
 def __init__(self, id, volume, type, replicationCapacity):
     AbstractVertex.__init__(self, id)
     self.volume = volume
     self.type = type
     self.resource = None
     self.replicationCapacity = replicationCapacity
Ejemplo n.º 8
0
 def __init__(self, id, speed, ram=0):
     AbstractVertex.__init__(self, id)
     self.id = id
     self.speed = speed
     self.ram = ram
     self.resource = None
Ejemplo n.º 9
0
 def __init__(self, id, volume, type, replicationCapacity):
     AbstractVertex.__init__(self, id)
     self.volume = volume
     self.type = type
     self.resource = None
     self.replicationCapacity = replicationCapacity
Ejemplo n.º 10
0
 def __init__(self, id, capacity):
     AbstractVertex.__init__(self, id)
     self.capacity = capacity
     self.intervals = {}
Ejemplo n.º 11
0
 def __init__(self, id, speed, ram):
     AbstractVertex.__init__(self, id)
     self.speed = speed
     self.ram = ram
     self.intervals = {}
Ejemplo n.º 12
0
 def __init__(self, id, volume, type):
     AbstractVertex.__init__(self, id)
     self.volume = volume
     self.type = type
     self.intervals = {}
Ejemplo n.º 13
0
 def __init__(self, id, type=""):
     AbstractVertex.__init__(self, id)
     self.type = type
     self.params = ParamFactory.Create("domain")
Ejemplo n.º 14
0
 def __init__(self, id):
     AbstractVertex.__init__(self, id)
     self.image = ""
     self.external = False
     self.params = ParamFactory.Create("vm")
Ejemplo n.º 15
0
 def __init__(self, id):
     AbstractVertex.__init__(self, id)
     self.params = ParamFactory.Create("st")