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"; |
Scott Baker | 337c1aa | 2018-03-02 10:45:13 -0800 | [diff] [blame] | 10 | option owner_class_name="VEPCService"; |
| 11 | |
Sapan Bhatia | 2810e03 | 2017-11-03 00:31:00 -0400 | [diff] [blame] | 12 | 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] | 13 | required manytoone site->Site:+ = 2 [help_text = "Site of the EPC Service", null = False, db_index = True, blank = False]; |
Zack Williams | 6029865 | 2018-09-26 10:32:08 -0700 | [diff] [blame] | 14 | required string blueprint = 3 [help_text = "Select the service graph blueprint", db_index = False, default = "mcord_5", choices = "(('build', 'MCORD 4.1'),('mcord_5', 'MCORD 5'),('mcord_5_p4', 'MCORD 5 - P4'))"]; |
Woojoong Kim | 837b334 | 2018-01-19 11:38:18 -0800 | [diff] [blame] | 15 | |
Woojoong Kim | 1a0c9b0 | 2018-01-22 17:42:24 -0800 | [diff] [blame] | 16 | optional string enodeb_ip_addr_s1mme = 4 [help_text = "external eNodeB IP address of S1-MME (for 5.0)", default = "118.0.0.10", max_length = 32, null = True, db_index = False, blank = True]; |
| 17 | optional string enodeb_ip_addr_s1u = 5 [help_text = "external eNodeB IP address of S1U (for 5.0)", default = "119.0.0.10", max_length = 32, null = True, db_index = False, blank = True]; |
| 18 | optional string enodeb_mac_addr_s1u = 6 [help_text = "external eNodeB MAC address of S1U (for 5.0)", default = "00:ad:de:00:00:80", max_length = 32, null = True, db_index = False, blank = True]; |
| 19 | optional string appserver_ip_addr = 7 [help_text = "external app server IP address (for 5.0)", default = "127.0.0.1", max_length = 32, null = True, db_index = False, blank = True]; |
| 20 | optional string appserver_mac_addr = 8 [help_text = "external app server MAC address (for 5.0)", default = "11:11:11:11:11:11", max_length = 32, null = True, db_index = False, blank = True]; |
Sapan Bhatia | 2810e03 | 2017-11-03 00:31:00 -0400 | [diff] [blame] | 21 | } |