Yunpeng Zhang | 9d7204c | 2017-08-17 19:07:43 -0400 | [diff] [blame] | 1 | option name = "vSGWC"; |
Omar Abdelkader | dc68880 | 2017-08-18 14:23:09 -0600 | [diff] [blame] | 2 | option verbose_name = "Virtual Serving Gateway -- Control Plane"; |
Yunpeng Zhang | 9d7204c | 2017-08-17 19:07:43 -0400 | [diff] [blame] | 3 | option app_label = "vsgwc"; |
| 4 | option kind = "vEPC"; |
| 5 | option legacy = "True"; |
| 6 | |
| 7 | message VSGWCService (Service){ |
| 8 | option name = "VSGWCService"; |
Omar Abdelkader | dc68880 | 2017-08-18 14:23:09 -0600 | [diff] [blame] | 9 | option verbose_name = "Virtual Serving Gateway -- Control Plane Service"; |
Yunpeng Zhang | 9d7204c | 2017-08-17 19:07:43 -0400 | [diff] [blame] | 10 | } |
| 11 | |
Omar Abdelkader | 457b88c | 2017-09-06 19:46:42 -0500 | [diff] [blame^] | 12 | message VSGWCVendor (PlCoreBase){ |
| 13 | option name = "VSGWCVendor"; |
| 14 | option verbose_name = "Virtual Serving Gateway -- Control 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 Zhang | 9d7204c | 2017-08-17 19:07:43 -0400 | [diff] [blame] | 20 | message VSGWCTenant (TenantWithContainer){ |
Omar Abdelkader | 457b88c | 2017-09-06 19:46:42 -0500 | [diff] [blame^] | 21 | option name = "VSGWCTenant"; |
| 22 | option verbose_name = "Virtual Serving Gateway -- Control Plane Tenant"; |
| 23 | optional manytoone vsgwc_vendor->VSGWCVendor:vendor_tenants = 1 [help_text = "select vendor of choice, leave blank for slice default", db_index = True, null = True, blank = True]; |
Yunpeng Zhang | 9d7204c | 2017-08-17 19:07:43 -0400 | [diff] [blame] | 24 | } |