blob: a664ca005b30f6fdae7f0b326d824f3638f176f9 [file] [log] [blame]
Matteo Scandolo276681f2017-11-29 15:56:02 -07001option name = "venb";
Matteo Scandolo23e67602017-10-05 17:52:13 -07002option app_label = "venb";
3
4message VENBService (Service){
5 option verbose_name = "Virtual eNodeB Service";
JianHao69678342017-11-20 18:01:37 -08006 required string login_user = 1 [help_text = "vENB VM login user", default = "ng40", max_length = 32, content_type = "stripped", null = False, db_index = False, blank = False];
7 required string login_password = 2 [help_text = "vENB VM login password", default = "ng40", max_length = 32, content_type = "stripped", null = False, db_index = False, blank = False];
Andy Bavierf85dad32017-11-15 14:45:13 -07008 required string tas_ip = 3 [help_text = "TAS IP address", default = "103.0.0.100", max_length = 32, null = False, db_index = False, blank = False];
9 required string ntp_ip = 4 [help_text = "NTP server IP address", default = "193.0.0.222", max_length = 32, null = False, db_index = False, blank = False];
Matteo Scandolo23e67602017-10-05 17:52:13 -070010}
11
12message VENBServiceInstance (TenantWithContainer){
13 option verbose_name = "Virtual eNodeB Service Instance";
Scott Baker78774382018-03-02 10:38:43 -080014 option owner_class_name="VENBService";
Matteo Scandolo23e67602017-10-05 17:52:13 -070015}