blob: 2ee738e823fcee6fd67daa33612d2950956430ad [file] [log] [blame]
Wei-Yu Chenba043592017-10-18 17:08:51 +08001option name = "vSPGWU";
2option app_label = "vspgwu";
3option kind = "vEPC";
4
5message VSPGWUService (Service){
6 option verbose_name = "Virtual Serving Gateway User Plane Service";
7}
8
9message VSPGWUVendor (XOSBase){
10 option verbose_name = "Virtual Serving Gateway User Plane Vendor";
11
12 required string name = 1 [help_text = "vendor name", max_length = 32, null = False, db_index = False, blank = False];
13 required manytoone image->Image:+ = 2 [help_text = "select image for this vendor", db_index = True, null = False, blank = False];
14 required manytoone flavor->Flavor:+ = 3 [help_text = "select openstack flavor for vendor image", db_index = True, null = False, blank = False];
15}
16
17message VSPGWUTenant (TenantWithContainer){
18 option verbose_name = "Virtual Serving Gateway User Plane Service Instance";
19
20 optional manytoone vspgwu_vendor->VSPGWUVendor:vendor_tenants = 1 [help_text = "select vendor of choice, leave blank for slice default", db_index = True, null = True, blank = True];
21}
22