Woojoong Kim | e30f606 | 2017-10-05 19:38:56 -0500 | [diff] [blame] | 1 | option name = "vHSS"; |
Woojoong Kim | e30f606 | 2017-10-05 19:38:56 -0500 | [diff] [blame] | 2 | option app_label = "vhss"; |
| 3 | option kind = "vEPC"; |
Woojoong Kim | e30f606 | 2017-10-05 19:38:56 -0500 | [diff] [blame] | 4 | |
| 5 | message VHSSService (Service){ |
Woojoong Kim | e30f606 | 2017-10-05 19:38:56 -0500 | [diff] [blame] | 6 | option verbose_name = "Virtual Home Subscriber Server Service"; |
| 7 | } |
| 8 | |
Woojoong Kim | 033b2ce | 2017-10-10 10:09:06 -0700 | [diff] [blame] | 9 | message VHSSVendor (XOSBase){ |
Woojoong Kim | e30f606 | 2017-10-05 19:38:56 -0500 | [diff] [blame] | 10 | option verbose_name = "Virtual Home Subscriber Server Vendor"; |
| 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 | |
| 16 | message VHSSTenant (TenantWithContainer){ |
Woojoong Kim | e30f606 | 2017-10-05 19:38:56 -0500 | [diff] [blame] | 17 | option verbose_name = "Virtual Home Subscriber Server Tenant"; |
| 18 | optional manytoone vhss_vendor->VHSSVendor:vendor_tenants = 1 [help_text = "select vendor of choice, leave blank for slice default", db_index = True, null = True, blank = True]; |
| 19 | } |
| 20 | |