[CORD-1630] Model verbose_name
Change-Id: Ie90c55847c0372766300d342303707daf2da5e1e
diff --git a/xos/vtr.xproto b/xos/vtr.xproto
index e21812b..4ffe085 100644
--- a/xos/vtr.xproto
+++ b/xos/vtr.xproto
@@ -1,17 +1,19 @@
option kind="vTR";
option name="vtr";
-option verbose_name="Virtual Truck Roll Service";
message VTRTenant (ServiceInstance){
- required string test = 1 [choices = "(('ping', 'Ping'), ('traceroute', 'Trace Route'), ('tcpdump', 'Tcp Dump'), ('memory', 'Memory'), ('bandwidth', 'Bandwidth'))", max_length = 30, content_type = "stripped", blank = False, help_text = "type of test", null = False, db_index = False];
- required string scope = 2 [choices = "(('container', 'Container'), ('vm', 'VM'))", max_length = 30, content_type = "stripped", blank = False, help_text = "scope of test", null = False, db_index = False];
- optional string argument = 3 [db_index = False, max_length = 40, null = True, content_type = "stripped", blank = True];
- optional string result = 4 [db_index = False, null = True, blank = True];
- optional string result_code = 5 [db_index = False, max_length = 32, null = True, content_type = "stripped", blank = True];
- required string target_type = 6 [max_length = 1024, content_type = "stripped", blank = False, help_text = "Target type id linked to this vtrtenant", null = False, db_index = False];
- required uint32 target_id = 7 [db_index = False, null = False, blank = False];
+ option verbose_name="Virtual Truck Roll Tenant";
+
+ required string test = 1 [choices = "(('ping', 'Ping'), ('traceroute', 'Trace Route'), ('tcpdump', 'Tcp Dump'), ('memory', 'Memory'), ('bandwidth', 'Bandwidth'))", max_length = 30, content_type = "stripped", blank = False, help_text = "type of test", null = False, db_index = False];
+ required string scope = 2 [choices = "(('container', 'Container'), ('vm', 'VM'))", max_length = 30, content_type = "stripped", blank = False, help_text = "scope of test", null = False, db_index = False];
+ optional string argument = 3 [db_index = False, max_length = 40, null = True, content_type = "stripped", blank = True];
+ optional string result = 4 [db_index = False, null = True, blank = True];
+ optional string result_code = 5 [db_index = False, max_length = 32, null = True, content_type = "stripped", blank = True];
+ required string target_type = 6 [max_length = 1024, content_type = "stripped", blank = False, help_text = "Target type id linked to this vtrtenant", null = False, db_index = False];
+ required uint32 target_id = 7 [db_index = False, null = False, blank = False];
}
message VTRService (Service){
+ option verbose_name="Virtual Truck Roll Service";
}