Woojoong Kim | eb8a718 | 2018-01-09 12:54:38 -0800 | [diff] [blame] | 1 | option name = "hssdb"; |
| 2 | option app_label = "hssdb"; |
| 3 | |
| 4 | message HSSDBService (Service){ |
| 5 | option verbose_name = "HSS Database Service"; |
| 6 | } |
| 7 | |
| 8 | message HSSDBVendor (XOSBase){ |
| 9 | option verbose_name = "HSS Database Vendor"; |
| 10 | required string name = 1 [help_text = "vendor name", max_length = 32, null = False, db_index = False, blank = False]; |
| 11 | required manytoone image->Image:+ = 2 [help_text = "select image for this vendor", db_index = True, null = False, blank = False]; |
| 12 | required manytoone flavor->Flavor:+ = 3 [help_text = "select openstack flavor for vendor image", db_index = True, null = False, blank = False]; |
| 13 | } |
| 14 | |
| 15 | message HSSDBServiceInstance (TenantWithContainer){ |
| 16 | option verbose_name = "HSS Database ServiceInstance"; |
| 17 | optional manytoone hssdb_vendor->HSSDBVendor:vendor_tenants = 1 [help_text = "select vendor of choice, leave blank for slice default", db_index = True, null = True, blank = True]; |
| 18 | } |