blob: a53308d32afb0e67e266edbc7913ebe451f9ed1f [file] [log] [blame]
Omar Abdelkader6e806dc2017-08-30 23:56:48 -06001option name = "vEPC";
2option verbose_name = "Virtual Evolved Packet Core";
3option app_label = "vepc";
4option kind = "epc-service";
5option legacy = "True";
6
7message VEPCService (Service){
8 option name = "VEPCService";
9 option verbose_name = "Virtual Evolved Packet Core Service";
10}
11
12message VEPCTenant (Tenant){
13 option name = "VEPCTenant";
14 option verbose_name = "Virtual Evolved Packet Core Tenant";
15 optional string description = 1 [help_text = "service chain details", max_length = 128, null = True, db_index = False, blank = True];
16 required manytoone creator->User:+ = 2 [help_text = "creator of this tenant", null = False, db_index = True, blank = False];
17 required bool has_vhss = 3 [help_text = "select if you would like to add a vhss instance to this service chain", db_index = False, default = False, blank = False];
18 required bool has_vmme = 4 [help_text = "select if you would like to add a vmme instance to this service chain", db_index = False, default = False, blank = False];
19 required bool has_vmm = 4 [help_text = "select if you would like to add a vmm instance to this service chain", db_index = False, default = False, blank = False];
20 required bool has_vsm = 5 [help_text = "select if you would like to add a vsm instance to this service chain", db_index = False, default = False, blank = False];
21 required bool has_vsgwc = 6 [help_text = "select if you would like to add a vsgwc instance to this service chain", db_index = False, default = False, blank = False];
22 required bool has_vsgwu = 7 [help_text = "select if you would like to add a vsgwu instance to this service chain", db_index = False, default = False, blank = False];
23 required bool has_vpgwc = 8 [help_text = "select if you would like to add a vpgwc instance to this service chain", db_index = False, default = False, blank = False];
24 required bool has_vpgwu = 9 [help_text = "select if you would like to add a vpgwu instance to this service chain", db_index = False, default = False, blank = False];
25}
26