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 | b8dec87 | 2018-07-17 16:56:23 -0400 | [diff] [blame^] | 9 | required bool create_on_discovery = 2 [help_text = "Wether to create the subscriber when an ONU is discovered", null = False, db_index = False, blank = False, default = True]; |
Matteo Scandolo | 7529882 | 2018-05-22 11:25:42 -0700 | [diff] [blame] | 10 | } |
| 11 | |
| 12 | message HippieOSSServiceInstance (ServiceInstance){ |
| 13 | option owner_class_name = "HippieOSSService"; |
| 14 | option verbose_name = "HippieOSS Service Instance"; |
| 15 | |
Matteo Scandolo | 5a0eed2 | 2018-06-01 14:42:43 -0700 | [diff] [blame] | 16 | 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] | 17 | required string serial_number = 2 [max_length = 254, null = False, db_index = False, blank = False, tosca_key=True, unique = True]; |
Matteo Scandolo | b8dec87 | 2018-07-17 16:56:23 -0400 | [diff] [blame^] | 18 | required string authentication_state = 3 [default = "STARTED", choices = "(('STARTED', 'Started'), ('REQUESTED', 'Requested'), ('APPROVED', 'Approved'), ('DENIED', 'Denied'), )", max_length = 50, null = False, db_index = False, blank = False, unique = True]; |
Matteo Scandolo | 7529882 | 2018-05-22 11:25:42 -0700 | [diff] [blame] | 19 | 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] | 20 | 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] | 21 | } |