blob: 73ebda7810d1bfab5def3c5579324fc9e4456335 [file] [log] [blame]
Scott Baker4eb615b2017-05-05 16:55:22 -07001option name = "rcord";
Scott Baker4eb615b2017-05-05 16:55:22 -07002
Scott Bakerc37e7a02017-07-17 17:32:20 -07003message CordSubscriberRoot (ServiceInstance) {
Scott Baker4eb615b2017-05-05 16:55:22 -07004 option kind = "CordSubscriberRoot";
Scott Baker2fb9e952017-11-15 08:28:32 -08005 option verbose_name = "RCORD Subscriber";
Scott Baker4eb615b2017-05-05 16:55:22 -07006
7 required bool firewall_enable = 1 [default = False, null = False, db_index = False, blank = True];
8 optional string firewall_rules = 2 [default = "accept all anywhere anywhere", null = True, db_index = False, blank = True];
9 required bool url_filter_enable = 3 [default = False, null = False, db_index = False, blank = True];
10 optional string url_filter_rules = 4 [default = "allow all", null = True, db_index = False, blank = True];
11 required string url_filter_level = 5 [default = "PG", max_length = 30, content_type = "stripped", blank = False, null = False, db_index = False];
12 required bool cdn_enable = 6 [default = False, null = False, db_index = False, blank = True];
13 required bool is_demo_user = 7 [default = False, null = False, db_index = False, blank = True];
14 required int32 uplink_speed = 8 [default = 1000000000, null = False, db_index = False, blank = False];
15 required int32 downlink_speed = 9 [default = 1000000000, null = False, db_index = False, blank = False];
16 required bool enable_uverse = 10 [default = True, null = False, db_index = False, blank = True];
17 required string status = 11 [default = "enabled", choices = "(('enabled', 'Enabled'), ('suspended', 'Suspended'), ('delinquent', 'Delinquent'), ('copyrightviolation', 'Copyright Violation'))", max_length = 30, content_type = "stripped", blank = False, null = False, db_index = False];
18}