add Vendor model to select flavor/image at Tenant creation

Change-Id: Id31ad8540fb6590805988bbbaebfef8d9886d702
diff --git a/xos/vbbu.xproto b/xos/vbbu.xproto
index 4e00a0d..4816892 100644
--- a/xos/vbbu.xproto
+++ b/xos/vbbu.xproto
@@ -9,7 +9,16 @@
     option verbose_name = "Virtual Broadband Base Unit Service";
 }
 
+message VBBUVendor (PlCoreBase){
+    option name = "VBBUVendor";
+    option verbose_name = "Virtual Broadband Base Unit 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 VBBUTenant (TenantWithContainer){
-     option name = "VBBUTenant";
-     option verbose_name = "Virtual Broadband Base Unit Tenant";
+    option name = "VBBUTenant";
+    option verbose_name = "Virtual Broadband Base Unit Tenant";
+    optional manytoone vbbu_vendor->VBBUVendor:vendor_tenants = 1 [help_text = "select vendor of choice, leave blank for slice default", db_index = True, null = True, blank = True];
 }