Sapan Bhatia | a46cc4d | 2017-04-21 14:57:54 +0200 | [diff] [blame] | 1 | option kind="onos"; |
| 2 | option name="onos"; |
Sapan Bhatia | a46cc4d | 2017-04-21 14:57:54 +0200 | [diff] [blame] | 3 | |
Scott Baker | 8d8f992 | 2017-07-17 17:30:42 -0700 | [diff] [blame] | 4 | message ONOSApp (ServiceInstance){ |
Matteo Scandolo | 6a19ffe | 2017-08-17 12:22:15 -0700 | [diff] [blame^] | 5 | 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 Bhatia | a46cc4d | 2017-04-21 14:57:54 +0200 | [diff] [blame] | 9 | } |
| 10 | |
Sapan Bhatia | a46cc4d | 2017-04-21 14:57:54 +0200 | [diff] [blame] | 11 | message ONOSService (Service){ |
Matteo Scandolo | 6a19ffe | 2017-08-17 12:22:15 -0700 | [diff] [blame^] | 12 | 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 Bhatia | a46cc4d | 2017-04-21 14:57:54 +0200 | [diff] [blame] | 20 | } |