blob: 1d1c60adb08012b8d3459107538886659ba2f067 [file] [log] [blame]
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +02001option kind="vROUTER";
2option name="vrouter";
Sapan Bhatia5d255542017-06-16 17:49:56 -07003option legacy="True";
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +02004
5message VRouterService (Service){
Matteo Scandolo76d1e472017-08-17 12:25:47 -07006 option verbose_name="vRouter Service";
7
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +02008 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 Bhatia103593d2017-05-19 23:10:53 +020014message VRouterDevice (XOSBase){
Matteo Scandolo76d1e472017-08-17 12:25:47 -070015 option verbose_name="vRouter Device";
16
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +020017 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 Bhatia103593d2017-05-19 23:10:53 +020024message VRouterPort (XOSBase){
Matteo Scandolo76d1e472017-08-17 12:25:47 -070025 option verbose_name="vRouter Port";
26
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +020027 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 Bhatia103593d2017-05-19 23:10:53 +020033message VRouterApp (XOSBase){
Matteo Scandolo76d1e472017-08-17 12:25:47 -070034 option verbose_name="vRouter App";
35
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +020036 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 Bhatia103593d2017-05-19 23:10:53 +020042message VRouterInterface (XOSBase) {
Matteo Scandolo76d1e472017-08-17 12:25:47 -070043 option verbose_name="vRouter Interface";
44
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +020045 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 Bhatia103593d2017-05-19 23:10:53 +020051message VRouterIp (XOSBase){
Matteo Scandolo76d1e472017-08-17 12:25:47 -070052 option verbose_name="vRouter Ip";
53
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +020054 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 Baker7c241cd2017-07-18 10:54:14 -070059message VRouterTenant (ServiceInstance){
Matteo Scandolo76d1e472017-08-17 12:25:47 -070060 option verbose_name="vRouter Tenant";
61
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +020062 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}