blob: d6789759a7c7e1d6202a2d5db140290a7ddc3d7e [file] [log] [blame]
Test User80a89152017-11-29 15:52:13 -07001option name = "vepc";
Sapan Bhatia2810e032017-11-03 00:31:00 -04002option app_label = "vepc";
3
4message VEPCService (Service){
Sapan Bhatia2810e032017-11-03 00:31:00 -04005 option verbose_name = "Virtual Evolved Packet Core Service";
6}
7
8message VEPCServiceInstance (TenantWithContainer){
Sapan Bhatia2810e032017-11-03 00:31:00 -04009 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 Bhatia684e7f32017-11-22 16:22:45 -050011 required manytoone site->Site:+ = 2 [help_text = "Site of the EPC Service", null = False, db_index = True, blank = False];
Woojoong Kim5d8fb6d2017-12-18 13:58:49 -080012 required string blueprint = 3 [help_text = "Select the service graph blueprint", db_index = False, default = 1, choices = "(('build', 'MCORD 4.1'),('mcord_5', 'MCORD 5'))"];
Woojoong Kim837b3342018-01-19 11:38:18 -080013
14 optional string enodeb_ip_addr = 4 [help_text = "external eNodeB IP address (for 5.0)", default = "127.0.0.1", max_length = 32, null = True, db_index = False, blank = True];
15 optional string enodeb_mac_addr = 5 [help_text = "external eNodeB MAC address (for 5.0)", default = "11:11:11:11:11:11", max_length = 32, null = True, db_index = False, blank = True];
16 optional string appserver_ip_addr = 6 [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];
17 optional string appserver_mac_addr = 7 [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 Bhatia2810e032017-11-03 00:31:00 -040018}