blob: 16b1f3a2e28b30479d30779f75757b72c868a064 [file] [log] [blame]
Yunpeng Zhang0048cf42017-08-15 23:01:28 -04001option name = "vPGWU";
Omar Abdelkader868ba932017-08-18 14:25:37 -06002option verbose_name = "Virtual Packet Gateway -- User Plane";
Yunpeng Zhang0048cf42017-08-15 23:01:28 -04003option app_label = "vpgwu";
4option kind = "vEPC";
5option legacy = "True";
6
7message VPGWUService (Service) {
8 option name = "VPGWUService";
9 option verbose_name = "Virtual Packet Gateway -- User Plane Service";
10}
11
Omar Abdelkader56121752017-09-06 19:40:17 -050012message VPGWUVendor (PlCoreBase){
13 option name = "VPGWUVendor";
14 option verbose_name = "Virtual Packet Gateway -- User Plane Vendor";
15 required string name = 1 [help_text = "vendor name", max_length = 32, null = False, db_index = False, blank = False];
16 required manytoone image->Image:+ = 2 [help_text = "select image for this vendor", db_index = True, null = False, blank = False];
17 required manytoone flavor->Flavor:+ = 3 [help_text = "select openstack flavor for vendor image", db_index = True, null = False, blank = False];
18}
19
Yunpeng Zhang0048cf42017-08-15 23:01:28 -040020message VPGWUTenant (TenantWithContainer) {
21 option name = "VPGWUTenant";
22 option verbose_name = "Virtual Packet Gateway -- User Plane Tenant";
Omar Abdelkader56121752017-09-06 19:40:17 -050023 optional manytoone vpgwu_vendor->VPGWUVendor:vendor_tenants = 1 [help_text = "select vendor of choice, leave blank for slice default", db_index = True, null = True, blank = True];
Yunpeng Zhang0048cf42017-08-15 23:01:28 -040024}
Omar Abdelkader56121752017-09-06 19:40:17 -050025