blob: 3a91d9df7e2340d7b9f8ec83daf63a47ccef6004 [file] [log] [blame]
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +02001option kind="vROUTER";
2option name="vrouter";
3option verbose_name="vRouter Service";
Sapan Bhatia5d255542017-06-16 17:49:56 -07004option legacy="True";
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +02005
6message 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 Bhatia103593d2017-05-19 23:10:53 +020013message VRouterDevice (XOSBase){
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +020014 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 Bhatia103593d2017-05-19 23:10:53 +020021message VRouterPort (XOSBase){
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +020022 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 Bhatia103593d2017-05-19 23:10:53 +020028message VRouterApp (XOSBase){
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +020029 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 Bhatia103593d2017-05-19 23:10:53 +020035message VRouterInterface (XOSBase) {
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +020036 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 Bhatia103593d2017-05-19 23:10:53 +020042message VRouterIp (XOSBase){
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +020043 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
48message 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}