blob: 4ac90a0d520475da6eb40cfd0ef3cf940e427dbb [file] [log] [blame]
JianHao4a9550f2017-10-19 11:05:14 +08001option name = "vSPGWC";
2option app_label = "vspgwc";
3option kind = "vEPC";
4
5message VSPGWCService (Service){
6 option verbose_name = "Virtual Serving PDN Gateway -- Control Plane Service";
7}
8
9message VSPGWCVendor (XOSBase){
10 option verbose_name = "Virtual Serving PDN Gateway -- Control 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 VSPGWCTenant (TenantWithContainer){
18 option verbose_name = "Virtual Serving PDN Gateway -- Control Plane ServiceInstance";
19
20 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];
21}