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