Sapan Bhatia | a46cc4d | 2017-04-21 14:57:54 +0200 | [diff] [blame] | 1 | option kind="onos"; |
| 2 | option name="onos"; |
| 3 | option verbose_name="ONOS Service"; |
| 4 | |
Scott Baker | 8d8f992 | 2017-07-17 17:30:42 -0700 | [diff] [blame] | 5 | message ONOSApp (ServiceInstance){ |
Sapan Bhatia | a46cc4d | 2017-04-21 14:57:54 +0200 | [diff] [blame] | 6 | optional string install_dependencies = 1 [db_index = False, null = True, blank = True]; |
| 7 | optional string dependencies = 2 [db_index = False, null = True, blank = True]; |
Sapan Bhatia | a46cc4d | 2017-04-21 14:57:54 +0200 | [diff] [blame] | 8 | } |
| 9 | |
Sapan Bhatia | a46cc4d | 2017-04-21 14:57:54 +0200 | [diff] [blame] | 10 | message ONOSService (Service){ |
| 11 | optional string rest_hostname = 1 [db_index = False, max_length = 255, null = True, content_type = "stripped", blank = True]; |
| 12 | required int32 rest_port = 2 [default = 8181, null = False, db_index = False, blank = False]; |
| 13 | required bool no_container = 3 [default = False, null = False, db_index = False, blank = True]; |
| 14 | optional string node_key = 4 [db_index = False, max_length = 1024, null = True, content_type = "stripped", blank = True]; |
| 15 | } |