blob: b816307bdf582f578bb2131f111e1268ffae02bf [file] [log] [blame]
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +02001option kind="vROUTER";
2option name="vrouter";
3option verbose_name="vRouter Service";
4
5message VRouterService (Service){
6 optional string rest_hostname = 1 [db_index = False, max_length = 255, null = True, content_type = "stripped", blank = True];
7 required int32 rest_port = 2 [default = 8181, null = False, db_index = False, blank = False];
8 required string rest_user = 3 [default = "onos", max_length = 255, content_type = "stripped", blank = False, null = False, db_index = False];
9 required string rest_pass = 4 [default = "rocks", max_length = 255, content_type = "stripped", blank = False, null = False, db_index = False];
10}
11
Sapan Bhatia103593d2017-05-19 23:10:53 +020012message VRouterDevice (XOSBase){
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +020013 optional string name = 1 [help_text = "device friendly name", max_length = 20, null = True, db_index = False, blank = True];
14 required string openflow_id = 2 [help_text = "device identifier in ONOS", max_length = 20, null = False, db_index = False, blank = False];
15 required string config_key = 3 [default = "basic", max_length = 32, blank = False, help_text = "configuration key", null = False, db_index = False];
16 required string driver = 4 [help_text = "driver type", max_length = 32, null = False, db_index = False, blank = False];
17 required manytoone vrouter_service->VRouterService:devices = 5 [db_index = True, null = False, blank = False];
18}
19
Sapan Bhatia103593d2017-05-19 23:10:53 +020020message VRouterPort (XOSBase){
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +020021 optional string name = 1 [help_text = "port friendly name", max_length = 20, null = True, db_index = False, blank = True];
22 required string openflow_id = 2 [help_text = "port identifier in ONOS", max_length = 21, null = False, db_index = False, blank = False];
23 required manytoone vrouter_device->VRouterDevice:ports = 3 [db_index = True, null = False, blank = False];
24 required manytoone vrouter_service->VRouterService:device_ports = 4 [db_index = True, null = False, blank = False];
25}
26
Sapan Bhatia103593d2017-05-19 23:10:53 +020027message VRouterApp (XOSBase){
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +020028 required manytoone vrouter_service->VRouterService:apps = 1 [db_index = True, null = False, blank = False];
29 required string name = 2 [help_text = "application name", max_length = 50, null = False, db_index = False, blank = False];
30 required string control_plane_connect_point = 3 [help_text = "port identifier in ONOS", max_length = 21, null = False, db_index = False, blank = False];
31 required bool ospf_enabled = 4 [help_text = "ospf enabled", default = True, null = False, db_index = False, blank = True];
32}
33
Sapan Bhatia103593d2017-05-19 23:10:53 +020034message VRouterInterface (XOSBase) {
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +020035 required manytoone vrouter_port->VRouterPort:interfaces = 1 [db_index = True, null = False, blank = False];
36 required string name = 2 [help_text = "interface name", max_length = 10, null = False, db_index = False, blank = False];
37 required string mac = 3 [help_text = "interface mac", max_length = 17, null = False, db_index = False, blank = False];
38 optional string vlan = 4 [help_text = "interface vlan id", max_length = 10, null = True, db_index = False, blank = True];
39}
40
Sapan Bhatia103593d2017-05-19 23:10:53 +020041message VRouterIp (XOSBase){
Sapan Bhatia0a56fdc2017-04-21 15:12:57 +020042 optional string name = 1 [help_text = "ip friendly name", max_length = 20, null = True, db_index = False, blank = True];
43 required manytoone vrouter_interface->VRouterInterface:ips = 2 [db_index = True, null = False, blank = False];
44 required string ip = 3 [help_text = "interface ips", max_length = 19, null = False, db_index = False, blank = False];
45}
46
47message VRouterTenant (Tenant){
48 optional string public_ip = 1 [db_index = False, max_length = 30, null = True, content_type = "stripped", blank = True];
49 optional string public_mac = 2 [db_index = False, max_length = 30, null = True, content_type = "stripped", blank = True];
50 optional manytoone address_pool->AddressPool:vrouter_tenants = 3 [db_index = True, null = True, blank = True];
51}