Wei-Yu Chen | ba04359 | 2017-10-18 17:08:51 +0800 | [diff] [blame] | 1 | option name = "vSPGWU"; |
| 2 | option app_label = "vspgwu"; |
| 3 | option kind = "vEPC"; |
| 4 | |
| 5 | message VSPGWUService (Service){ |
| 6 | option verbose_name = "Virtual Serving Gateway User Plane Service"; |
| 7 | } |
| 8 | |
| 9 | message 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 | |
| 17 | message 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 | |