Sapan Bhatia | 0a56fdc | 2017-04-21 15:12:57 +0200 | [diff] [blame] | 1 | option kind="vROUTER"; |
| 2 | option name="vrouter"; |
Sapan Bhatia | 5d25554 | 2017-06-16 17:49:56 -0700 | [diff] [blame] | 3 | option legacy="True"; |
Sapan Bhatia | 0a56fdc | 2017-04-21 15:12:57 +0200 | [diff] [blame] | 4 | |
| 5 | message VRouterService (Service){ |
Matteo Scandolo | 76d1e47 | 2017-08-17 12:25:47 -0700 | [diff] [blame^] | 6 | option verbose_name="vRouter Service"; |
| 7 | |
Sapan Bhatia | 0a56fdc | 2017-04-21 15:12:57 +0200 | [diff] [blame] | 8 | optional string rest_hostname = 1 [db_index = False, max_length = 255, null = True, content_type = "stripped", blank = True]; |
| 9 | required int32 rest_port = 2 [default = 8181, null = False, db_index = False, blank = False]; |
| 10 | required string rest_user = 3 [default = "onos", max_length = 255, content_type = "stripped", blank = False, null = False, db_index = False]; |
| 11 | required string rest_pass = 4 [default = "rocks", max_length = 255, content_type = "stripped", blank = False, null = False, db_index = False]; |
| 12 | } |
| 13 | |
Sapan Bhatia | 103593d | 2017-05-19 23:10:53 +0200 | [diff] [blame] | 14 | message VRouterDevice (XOSBase){ |
Matteo Scandolo | 76d1e47 | 2017-08-17 12:25:47 -0700 | [diff] [blame^] | 15 | option verbose_name="vRouter Device"; |
| 16 | |
Sapan Bhatia | 0a56fdc | 2017-04-21 15:12:57 +0200 | [diff] [blame] | 17 | optional string name = 1 [help_text = "device friendly name", max_length = 20, null = True, db_index = False, blank = True]; |
| 18 | required string openflow_id = 2 [help_text = "device identifier in ONOS", max_length = 20, null = False, db_index = False, blank = False]; |
| 19 | required string config_key = 3 [default = "basic", max_length = 32, blank = False, help_text = "configuration key", null = False, db_index = False]; |
| 20 | required string driver = 4 [help_text = "driver type", max_length = 32, null = False, db_index = False, blank = False]; |
| 21 | required manytoone vrouter_service->VRouterService:devices = 5 [db_index = True, null = False, blank = False]; |
| 22 | } |
| 23 | |
Sapan Bhatia | 103593d | 2017-05-19 23:10:53 +0200 | [diff] [blame] | 24 | message VRouterPort (XOSBase){ |
Matteo Scandolo | 76d1e47 | 2017-08-17 12:25:47 -0700 | [diff] [blame^] | 25 | option verbose_name="vRouter Port"; |
| 26 | |
Sapan Bhatia | 0a56fdc | 2017-04-21 15:12:57 +0200 | [diff] [blame] | 27 | optional string name = 1 [help_text = "port friendly name", max_length = 20, null = True, db_index = False, blank = True]; |
| 28 | required string openflow_id = 2 [help_text = "port identifier in ONOS", max_length = 21, null = False, db_index = False, blank = False]; |
| 29 | required manytoone vrouter_device->VRouterDevice:ports = 3 [db_index = True, null = False, blank = False]; |
| 30 | required manytoone vrouter_service->VRouterService:device_ports = 4 [db_index = True, null = False, blank = False]; |
| 31 | } |
| 32 | |
Sapan Bhatia | 103593d | 2017-05-19 23:10:53 +0200 | [diff] [blame] | 33 | message VRouterApp (XOSBase){ |
Matteo Scandolo | 76d1e47 | 2017-08-17 12:25:47 -0700 | [diff] [blame^] | 34 | option verbose_name="vRouter App"; |
| 35 | |
Sapan Bhatia | 0a56fdc | 2017-04-21 15:12:57 +0200 | [diff] [blame] | 36 | required manytoone vrouter_service->VRouterService:apps = 1 [db_index = True, null = False, blank = False]; |
| 37 | required string name = 2 [help_text = "application name", max_length = 50, null = False, db_index = False, blank = False]; |
| 38 | required string control_plane_connect_point = 3 [help_text = "port identifier in ONOS", max_length = 21, null = False, db_index = False, blank = False]; |
| 39 | required bool ospf_enabled = 4 [help_text = "ospf enabled", default = True, null = False, db_index = False, blank = True]; |
| 40 | } |
| 41 | |
Sapan Bhatia | 103593d | 2017-05-19 23:10:53 +0200 | [diff] [blame] | 42 | message VRouterInterface (XOSBase) { |
Matteo Scandolo | 76d1e47 | 2017-08-17 12:25:47 -0700 | [diff] [blame^] | 43 | option verbose_name="vRouter Interface"; |
| 44 | |
Sapan Bhatia | 0a56fdc | 2017-04-21 15:12:57 +0200 | [diff] [blame] | 45 | required manytoone vrouter_port->VRouterPort:interfaces = 1 [db_index = True, null = False, blank = False]; |
| 46 | required string name = 2 [help_text = "interface name", max_length = 10, null = False, db_index = False, blank = False]; |
| 47 | required string mac = 3 [help_text = "interface mac", max_length = 17, null = False, db_index = False, blank = False]; |
| 48 | optional string vlan = 4 [help_text = "interface vlan id", max_length = 10, null = True, db_index = False, blank = True]; |
| 49 | } |
| 50 | |
Sapan Bhatia | 103593d | 2017-05-19 23:10:53 +0200 | [diff] [blame] | 51 | message VRouterIp (XOSBase){ |
Matteo Scandolo | 76d1e47 | 2017-08-17 12:25:47 -0700 | [diff] [blame^] | 52 | option verbose_name="vRouter Ip"; |
| 53 | |
Sapan Bhatia | 0a56fdc | 2017-04-21 15:12:57 +0200 | [diff] [blame] | 54 | optional string name = 1 [help_text = "ip friendly name", max_length = 20, null = True, db_index = False, blank = True]; |
| 55 | required manytoone vrouter_interface->VRouterInterface:ips = 2 [db_index = True, null = False, blank = False]; |
| 56 | required string ip = 3 [help_text = "interface ips", max_length = 19, null = False, db_index = False, blank = False]; |
| 57 | } |
| 58 | |
Scott Baker | 7c241cd | 2017-07-18 10:54:14 -0700 | [diff] [blame] | 59 | message VRouterTenant (ServiceInstance){ |
Matteo Scandolo | 76d1e47 | 2017-08-17 12:25:47 -0700 | [diff] [blame^] | 60 | option verbose_name="vRouter Tenant"; |
| 61 | |
Sapan Bhatia | 0a56fdc | 2017-04-21 15:12:57 +0200 | [diff] [blame] | 62 | optional string public_ip = 1 [db_index = False, max_length = 30, null = True, content_type = "stripped", blank = True]; |
| 63 | optional string public_mac = 2 [db_index = False, max_length = 30, null = True, content_type = "stripped", blank = True]; |
| 64 | optional manytoone address_pool->AddressPool:vrouter_tenants = 3 [db_index = True, null = True, blank = True]; |
| 65 | } |