blob: d8a4260db8b0dd7665bd26164e7fe1e1961ce42f [file] [log] [blame]
Woojoong Kim9f104152017-12-18 13:37:09 -08001option name = "vmme";
Pingping Lin7ea29aa2017-10-03 16:39:23 -07002option app_label = "vmme";
Pingping Lin7ea29aa2017-10-03 16:39:23 -07003
4message VMMEService (Service){
Pingping Lin7ea29aa2017-10-03 16:39:23 -07005 option verbose_name = "Virtual Mobility Management Entity Service";
6}
7
Pingping Linb263b2d2017-10-04 11:29:50 -07008message VMMEVendor (XOSBase){
Pingping Lin7ea29aa2017-10-03 16:39:23 -07009 option verbose_name = "Virtual Mobility Management Entity Vendor";
Matteo Scandolo1af8fb52017-10-12 09:59:41 -070010
Woojoong Kim9f104152017-12-18 13:37:09 -080011 required string name = 1 [help_text = "vendor name", max_length = 32, null = False, db_index = False, blank = False];
Pingping Lin7ea29aa2017-10-03 16:39:23 -070012 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 Scandolo1af8fb52017-10-12 09:59:41 -070017 option verbose_name = "Virtual Mobility Management Entity Service Instance";
18
Andy Bavier9a3aed12018-01-16 15:37:08 -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 optional string enodeb_ip_addr = 2 [help_text = "external eNodeB IP address", max_length = 32, null = True, db_index = False, blank = True];
Pingping Lin7ea29aa2017-10-03 16:39:23 -070021}
22