blob: c68dbf1efbdf779d62d8a2a388dff7a2715d7edb [file] [log] [blame]
Woojoong Kime30f6062017-10-05 19:38:56 -05001option name = "vHSS";
2option verbose_name = "Virtual Home Subscriber Server";
3option app_label = "vhss";
4option kind = "vEPC";
5option legacy = "True";
6
7message VHSSService (Service){
8 option name = "VHSSService";
9 option verbose_name = "Virtual Home Subscriber Server Service";
10}
11
12message VHSSVendor (PlCoreBase){
13 option name = "VHSSVendor";
14 option verbose_name = "Virtual Home Subscriber Server Vendor";
15 required string name = 1 [help_text = "vendor name", max_length = 32, null = False, db_index = False, blank = False];
16 required manytoone image->Image:+ = 2 [help_text = "select image for this vendor", db_index = True, null = False, blank = False];
17 required manytoone flavor->Flavor:+ = 3 [help_text = "select openstack flavor for vendor image", db_index = True, null = False, blank = False];
18}
19
20message VHSSTenant (TenantWithContainer){
21 option name = "VHSSTenant";
22 option verbose_name = "Virtual Home Subscriber Server Tenant";
23 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];
24}
25