blob: 5c79b4409c55e699ae7451131a03b09241be12bc [file] [log] [blame]
Sapan Bhatiaa46cc4d2017-04-21 14:57:54 +02001option kind="onos";
Matteo Scandolo2e8d6f52017-09-07 09:53:00 -07002option app_label = "onos";
Sapan Bhatiaa46cc4d2017-04-21 14:57:54 +02003option name="onos";
Sapan Bhatiaa46cc4d2017-04-21 14:57:54 +02004
Scott Baker8d8f9922017-07-17 17:30:42 -07005message ONOSApp (ServiceInstance){
Matteo Scandolo6a19ffe2017-08-17 12:22:15 -07006 option verbose_name="ONOS Application";
7
8 optional string install_dependencies = 1 [db_index = False, null = True, blank = True];
9 optional string dependencies = 2 [db_index = False, null = True, blank = True];
Sapan Bhatiaa46cc4d2017-04-21 14:57:54 +020010}
11
Sapan Bhatiaa46cc4d2017-04-21 14:57:54 +020012message ONOSService (Service){
Matteo Scandolo6a19ffe2017-08-17 12:22:15 -070013 option verbose_name="ONOS Service";
14
15 optional string rest_hostname = 1 [db_index = False, max_length = 255, null = True, content_type = "stripped", blank = True];
16 required int32 rest_port = 2 [default = 8181, null = False, db_index = False, blank = False];
17 required bool no_container = 3 [default = False, null = False, db_index = False, blank = True];
18 optional string node_key = 4 [db_index = False, max_length = 1024, null = True, content_type = "stripped", blank = True];
19 optional string rest_username = 5 [db_index = False, max_length = 255, null = True, content_type = "stripped", blank = True, default="karaf"];
20 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 +020021}