Matteo Scandolo | ad0c175 | 2018-08-09 15:47:16 -0700 | [diff] [blame] | 1 | option name = "att-workflow-driver"; |
| 2 | option app_label = "att-workflow-driver"; |
| 3 | |
| 4 | message AttWorkflowDriverService (Service){ |
| 5 | option verbose_name = "AttWorkflowDriver Service"; |
| 6 | option kind = "OSS"; |
Matteo Scandolo | ad0c175 | 2018-08-09 15:47:16 -0700 | [diff] [blame] | 7 | } |
| 8 | |
| 9 | message AttWorkflowDriverServiceInstance (ServiceInstance){ |
| 10 | option owner_class_name = "AttWorkflowDriverService"; |
| 11 | option verbose_name = "AttWorkflowDriver Service Instance"; |
| 12 | |
Matteo Scandolo | 53da44c | 2018-08-14 16:04:18 -0700 | [diff] [blame] | 13 | 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"]; |
| 14 | required string serial_number = 2 [max_length = 254, db_index = False, tosca_key=True, unique = True]; |
| 15 | required string authentication_state = 3 [default = "AWAITING", choices = "(('AWAITING', 'Awaiting'), ('STARTED', 'Started'), ('REQUESTED', 'Requested'), ('APPROVED', 'Approved'), ('DENIED', 'Denied'), )", max_length = 50, db_index = False]; |
| 16 | required string of_dpid = 4 [max_length = 254, db_index = False]; |
| 17 | required int32 uni_port_id = 5 [db_index = False]; |
Matteo Scandolo | e8c33d6 | 2018-08-16 14:37:24 -0700 | [diff] [blame] | 18 | required string onu_state = 6 [max_length = 254, db_index = False, default = "AWAITING", choices = "(('AWAITING', 'Awaiting'), ('ENABLED', 'Enabled'), ('DISABLED', 'Disabled'))"]; |
Matteo Scandolo | ad0c175 | 2018-08-09 15:47:16 -0700 | [diff] [blame] | 19 | } |
| 20 | |
| 21 | message AttWorkflowDriverWhiteListEntry (XOSBase) { |
Matteo Scandolo | 53da44c | 2018-08-14 16:04:18 -0700 | [diff] [blame] | 22 | option verbose_name = "ONU Whitelist"; |
Matteo Scandolo | ad0c175 | 2018-08-09 15:47:16 -0700 | [diff] [blame] | 23 | option plural = "attworkflowdriverwhitelistentries"; |
| 24 | |
Matteo Scandolo | 53da44c | 2018-08-14 16:04:18 -0700 | [diff] [blame] | 25 | required manytoone owner->AttWorkflowDriverService:whitelist_entries = 1 [db_index = True, tosca_key=True]; |
| 26 | required string serial_number = 2 [max_length = 254, db_index = False, tosca_key=True, unique_with = "owner"]; |
| 27 | required int32 pon_port_id = 3 [db_index = False, help_text = "PON Port on which this ONU is expected to show up"]; |
| 28 | required string device_id = 3 [max_length = 54, db_index = False, help_text = "OLT Device (logical device id) on which this ONU is expected to show up"]; |
Matteo Scandolo | ad0c175 | 2018-08-09 15:47:16 -0700 | [diff] [blame] | 29 | } |