blob: 1b092ac4dcac6c2a09db5df2ccafff831eeb1637 [file] [log] [blame]
Matteo Scandolo67654fa2017-06-09 09:33:17 -07001message VRouterPort (XOSBase){
2 optional string name = 1 [help_text = "port friendly name", max_length = 20, null = True, db_index = False, blank = True];
3 required string openflow_id = 2 [help_text = "port identifier in ONOS", max_length = 21, null = False, db_index = False, blank = False];
4 required manytoone vrouter_device->VRouterDevice:ports = 3 [db_index = True, null = False, blank = False];
5 required manytoone vrouter_service->VRouterService:device_ports = 4 [db_index = True, null = False, blank = False];
6}