blob: 6ad6f961667097749aecc49cb7abb527a11d92b7 [file] [log] [blame]
Sapan Bhatia2810e032017-11-03 00:31:00 -04001option name = "vEPC";
2option verbose_name = "Virtual Evolved Packet Core";
3option app_label = "vepc";
4
5message VEPCService (Service){
6 option name = "VEPCService";
7 option verbose_name = "Virtual Evolved Packet Core Service";
8}
9
10message 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 Bhatia684e7f32017-11-22 16:22:45 -050014 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 Bhatia2810e032017-11-03 00:31:00 -040016}