Pingping Lin | ece8a74 | 2017-10-03 16:39:23 -0700 | [diff] [blame] | 1 | option name = "vMME"; |
| 2 | option verbose_name = "Virtual Mobility Management Entity"; |
| 3 | option app_label = "vmme"; |
| 4 | option kind = "vEPC"; |
| 5 | option legacy = "True"; |
| 6 | |
| 7 | message VMMEService (Service){ |
| 8 | option name = "VMMEService"; |
| 9 | option verbose_name = "Virtual Mobility Management Entity Service"; |
| 10 | } |
| 11 | |
Pingping Lin | a83e377 | 2017-10-04 11:29:50 -0700 | [diff] [blame] | 12 | message VMMEVendor (XOSBase){ |
Pingping Lin | ece8a74 | 2017-10-03 16:39:23 -0700 | [diff] [blame] | 13 | option name = "VMMEVendor"; |
| 14 | option verbose_name = "Virtual Mobility Management Entity 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 | |
| 20 | message VMMETenant (TenantWithContainer){ |
| 21 | option name = "VMMETenant"; |
| 22 | option verbose_name = "Virtual Mobility Management Entity Tenant"; |
| 23 | optional manytoone vmme_vendor->VMMEVendor:vendor_tenants = 1 [help_text = "select vendor of choice, leave blank for slice default", db_index = True, null = True, blank = True]; |
| 24 | } |
| 25 | |