Test User | 80a8915 | 2017-11-29 15:52:13 -0700 | [diff] [blame] | 1 | option name = "vepc"; |
Sapan Bhatia | 2810e03 | 2017-11-03 00:31:00 -0400 | [diff] [blame] | 2 | option app_label = "vepc"; |
| 3 | |
| 4 | message VEPCService (Service){ |
Sapan Bhatia | 2810e03 | 2017-11-03 00:31:00 -0400 | [diff] [blame] | 5 | option verbose_name = "Virtual Evolved Packet Core Service"; |
| 6 | } |
| 7 | |
| 8 | message VEPCServiceInstance (TenantWithContainer){ |
Sapan Bhatia | 2810e03 | 2017-11-03 00:31:00 -0400 | [diff] [blame] | 9 | option verbose_name = "Virtual Evolved Packet Core ServiceInstance"; |
| 10 | optional string description = 1 [help_text = "service chain details", max_length = 128, null = True, db_index = False, blank = True]; |
Sapan Bhatia | 684e7f3 | 2017-11-22 16:22:45 -0500 | [diff] [blame] | 11 | required manytoone site->Site:+ = 2 [help_text = "Site of the EPC Service", null = False, db_index = True, blank = False]; |
| 12 | required string blueprint = 3 [help_text = "Select the service graph blueprint", db_index = False, default = 1, choices = "(('build', 'MCORD 4.1'),)"]; |
Sapan Bhatia | 2810e03 | 2017-11-03 00:31:00 -0400 | [diff] [blame] | 13 | } |