Sapan Bhatia | 2810e03 | 2017-11-03 00:31:00 -0400 | [diff] [blame] | 1 | option name = "vEPC"; |
| 2 | option verbose_name = "Virtual Evolved Packet Core"; |
| 3 | option app_label = "vepc"; |
| 4 | |
| 5 | message VEPCService (Service){ |
| 6 | option name = "VEPCService"; |
| 7 | option verbose_name = "Virtual Evolved Packet Core Service"; |
| 8 | } |
| 9 | |
| 10 | message VEPCServiceInstance (TenantWithContainer){ |
| 11 | option name = "VEPCServiceInstance"; |
| 12 | option verbose_name = "Virtual Evolved Packet Core ServiceInstance"; |
| 13 | 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^] | 14 | required manytoone site->Site:+ = 2 [help_text = "Site of the EPC Service", null = False, db_index = True, blank = False]; |
| 15 | 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] | 16 | } |