blob: eb3e787a2e15b88cd1ad03bee957a5d6a2f58031 [file] [log] [blame]
Pingping Linece8a742017-10-03 16:39:23 -07001option name = "vMME";
Pingping Linece8a742017-10-03 16:39:23 -07002option app_label = "vmme";
Pingping Linece8a742017-10-03 16:39:23 -07003
4message VMMEService (Service){
Pingping Linece8a742017-10-03 16:39:23 -07005 option verbose_name = "Virtual Mobility Management Entity Service";
6}
7
Pingping Lina83e3772017-10-04 11:29:50 -07008message VMMEVendor (XOSBase){
Pingping Linece8a742017-10-03 16:39:23 -07009 option verbose_name = "Virtual Mobility Management Entity Vendor";
Matteo Scandolo71ccc812017-10-12 09:59:41 -070010
Pingping Linece8a742017-10-03 16:39:23 -070011 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
16message VMMETenant (TenantWithContainer){
Matteo Scandolo71ccc812017-10-12 09:59:41 -070017 option verbose_name = "Virtual Mobility Management Entity Service Instance";
18
Pingping Linece8a742017-10-03 16:39:23 -070019 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];
20}
21