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