blob: 4ffe085e20c4aa9eb7167eaedbe8da65ce6f124b [file] [log] [blame]
Sapan Bhatia084c0982017-04-21 14:47:40 +02001option kind="vTR";
2option name="vtr";
Sapan Bhatia084c0982017-04-21 14:47:40 +02003
Scott Bakerc7958a92017-07-18 11:07:00 -07004message VTRTenant (ServiceInstance){
Matteo Scandolo02d2ffd2017-08-17 12:26:00 -07005 option verbose_name="Virtual Truck Roll Tenant";
6
7 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];
8 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];
9 optional string argument = 3 [db_index = False, max_length = 40, null = True, content_type = "stripped", blank = True];
10 optional string result = 4 [db_index = False, null = True, blank = True];
11 optional string result_code = 5 [db_index = False, max_length = 32, null = True, content_type = "stripped", blank = True];
12 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];
13 required uint32 target_id = 7 [db_index = False, null = False, blank = False];
Sapan Bhatia084c0982017-04-21 14:47:40 +020014}
15
16
17message VTRService (Service){
Matteo Scandolo02d2ffd2017-08-17 12:26:00 -070018 option verbose_name="Virtual Truck Roll Service";
Sapan Bhatia084c0982017-04-21 14:47:40 +020019}