blob: 67d8399c08f48774df4a6bd7da1d467e61eb4fa1 [file] [log] [blame]
Matteo Scandolo7d20ede2017-11-29 15:56:52 -07001option name = "vspgwc";
JianHao4a9550f2017-10-19 11:05:14 +08002option app_label = "vspgwc";
JianHao4a9550f2017-10-19 11:05:14 +08003
4message VSPGWCService (Service){
5 option verbose_name = "Virtual Serving PDN Gateway -- Control Plane Service";
6}
7
8message VSPGWCVendor (XOSBase){
9 option verbose_name = "Virtual Serving PDN Gateway -- Control Plane Vendor";
10
11 required string name = 1 [help_text = "vendor name", max_length = 32, null = False, db_index = False, blank = False];
12 required manytoone image->Image:+ = 2 [help_text = "select image for this vendor", db_index = True, null = False, blank = False];
13 required manytoone flavor->Flavor:+ = 3 [help_text = "select openstack flavor for vendor image", db_index = True, null = False, blank = False];
14}
15
16message VSPGWCTenant (TenantWithContainer){
17 option verbose_name = "Virtual Serving PDN Gateway -- Control Plane ServiceInstance";
18
19 optional manytoone vspgwc_vendor->VSPGWCVendor:vendor_tenants = 1 [help_text = "select vendor of choice, leave blank for slice default", db_index = True, null = True, blank = True];
20}