blob: 6d268b8295d57a54d1bd5d68a550d4fae4683a98 [file] [log] [blame]
Sapan Bhatiafeccc6f2017-05-02 21:41:41 +02001option name = "vee";
Matteo Scandolocbc7ba12017-09-07 09:54:25 -07002option app_label = "vee";
Sapan Bhatiafeccc6f2017-05-02 21:41:41 +02003option verbose_name = "VEE Service";
4
5message VEEService(Service){
6 optional bool autoconfig = 1 [default = True, help_text="Autoconfigure VEE Service", null=False];
7}
8
Scott Bakerf07b41a2017-10-13 14:24:43 -07009message VEEServiceInstance (ServiceInstance){
10 option kind = "vEE";
11 option verbose_name = "vEE ServiceInstance";
12
13 optional int32 s_tag = 1 [help_text = "s-tag", null = True, db_index = False, blank = True];
14 optional int32 c_tag = 2 [help_text = "c-tag", null = True, db_index = False, blank = True];
15}