blob: defc4f12e127fcb0f261344c0e1b86878ef6e361 [file] [log] [blame]
Sapan Bhatiaa46cc4d2017-04-21 14:57:54 +02001option kind="onos";
2option name="onos";
Sapan Bhatiaa46cc4d2017-04-21 14:57:54 +02003
Scott Baker8d8f9922017-07-17 17:30:42 -07004message ONOSApp (ServiceInstance){
Matteo Scandolo6a19ffe2017-08-17 12:22:15 -07005 option verbose_name="ONOS Application";
6
7 optional string install_dependencies = 1 [db_index = False, null = True, blank = True];
8 optional string dependencies = 2 [db_index = False, null = True, blank = True];
Sapan Bhatiaa46cc4d2017-04-21 14:57:54 +02009}
10
Sapan Bhatiaa46cc4d2017-04-21 14:57:54 +020011message ONOSService (Service){
Matteo Scandolo6a19ffe2017-08-17 12:22:15 -070012 option verbose_name="ONOS Service";
13
14 optional string rest_hostname = 1 [db_index = False, max_length = 255, null = True, content_type = "stripped", blank = True];
15 required int32 rest_port = 2 [default = 8181, null = False, db_index = False, blank = False];
16 required bool no_container = 3 [default = False, null = False, db_index = False, blank = True];
17 optional string node_key = 4 [db_index = False, max_length = 1024, null = True, content_type = "stripped", blank = True];
18 optional string rest_username = 5 [db_index = False, max_length = 255, null = True, content_type = "stripped", blank = True, default="karaf"];
19 optional string rest_password = 6 [db_index = False, max_length = 255, null = True, content_type = "stripped", blank = True, default="karaf"];
Sapan Bhatiaa46cc4d2017-04-21 14:57:54 +020020}