blob: d8a4260db8b0dd7665bd26164e7fe1e1961ce42f [file] [log] [blame]
option name = "vmme";
option app_label = "vmme";
message VMMEService (Service){
option verbose_name = "Virtual Mobility Management Entity Service";
}
message VMMEVendor (XOSBase){
option verbose_name = "Virtual Mobility Management Entity Vendor";
required string name = 1 [help_text = "vendor name", max_length = 32, null = False, db_index = False, blank = False];
required manytoone image->Image:+ = 2 [help_text = "select image for this vendor", db_index = True, null = False, blank = False];
required manytoone flavor->Flavor:+ = 3 [help_text = "select openstack flavor for vendor image", db_index = True, null = False, blank = False];
}
message VMMETenant (TenantWithContainer){
option verbose_name = "Virtual Mobility Management Entity Service Instance";
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];
optional string enodeb_ip_addr = 2 [help_text = "external eNodeB IP address", max_length = 32, null = True, db_index = False, blank = True];
}