Matteo Scandolo | 7529882 | 2018-05-22 11:25:42 -0700 | [diff] [blame] | 1 | option name = "hippie-oss"; |
| 2 | option app_label = "hippie-oss"; |
| 3 | |
| 4 | message HippieOSSService (Service){ |
| 5 | option verbose_name = "HippieOSS Service"; |
| 6 | option kind = "OSS"; |
Matteo Scandolo | 5a0eed2 | 2018-06-01 14:42:43 -0700 | [diff] [blame] | 7 | |
Scott Baker | 3685b04 | 2018-07-09 12:43:46 -0700 | [diff] [blame] | 8 | optional string whitelist = 1 [help_text = "A comma separated list of ONUs that are deemed to be valid ONUs", null = True, db_index = False, blank = False]; |
Matteo Scandolo | 7529882 | 2018-05-22 11:25:42 -0700 | [diff] [blame] | 9 | } |
| 10 | |
| 11 | message HippieOSSServiceInstance (ServiceInstance){ |
| 12 | option owner_class_name = "HippieOSSService"; |
| 13 | option verbose_name = "HippieOSS Service Instance"; |
| 14 | |
Matteo Scandolo | 5a0eed2 | 2018-06-01 14:42:43 -0700 | [diff] [blame] | 15 | required string valid = 1 [default = "awaiting", choices = "(('awaiting', 'Awaiting Validation'), ('valid', 'Valid'), ('invalid', 'Invalid'))", help_text = "Wether this ONU has been validated by the external OSS", null = False, blank = False]; |
Matteo Scandolo | 7529882 | 2018-05-22 11:25:42 -0700 | [diff] [blame] | 16 | required string serial_number = 2 [max_length = 254, null = False, db_index = False, blank = False, tosca_key=True, unique = True]; |
Matteo Scandolo | 7529882 | 2018-05-22 11:25:42 -0700 | [diff] [blame] | 17 | required string of_dpid = 4 [max_length = 254, null = False, db_index = False, blank = False]; |
Matteo Scandolo | 3c842ef | 2018-06-19 15:46:06 -0700 | [diff] [blame] | 18 | optional int32 c_tag = 5 [null = True, db_index = False, blank = False, unique = True, feedback_state = True]; |
Matteo Scandolo | 7529882 | 2018-05-22 11:25:42 -0700 | [diff] [blame] | 19 | } |