blob: 3d76afe6c3faa1926a73e7710d3758eb30183932 [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";
Scott Baker337c1aa2018-03-02 10:45:13 -080010 option owner_class_name="VEPCService";
11
Sapan Bhatia2810e032017-11-03 00:31:00 -040012 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 -050013 required manytoone site->Site:+ = 2 [help_text = "Site of the EPC Service", null = False, db_index = True, blank = False];
Woojoong Kim647a6922018-01-29 15:04:50 -080014 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'),('mcord_5_p4', 'MCORD 5 - P4'))"];
Woojoong Kim837b3342018-01-19 11:38:18 -080015
Woojoong Kim1a0c9b02018-01-22 17:42:24 -080016 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 Bhatia2810e032017-11-03 00:31:00 -040021}