root | d8ab63c | 2017-07-25 07:19:31 +0000 | [diff] [blame] | 1 | |
2 | import base_section | ||||
3 | |||||
4 | class Dns(base_section.BaseSection): | ||||
5 | |||||
6 | name = "dns" | ||||
7 | options = [ | ||||
8 | 'build_interval', | ||||
9 | 'build_timeout', | ||||
10 | 'catalog_type', | ||||
11 | 'endpoint_type', | ||||
12 | 'min_ttl', | ||||
13 | 'nameservers', | ||||
14 | 'query_timeout', | ||||
15 | ] | ||||
16 | |||||
17 | |||||
18 | @property | ||||
19 | def build_interval(self): | ||||
20 | pass | ||||
21 | |||||
22 | @property | ||||
23 | def build_timeout(self): | ||||
24 | pass | ||||
25 | |||||
26 | @property | ||||
27 | def catalog_type(self): | ||||
28 | pass | ||||
29 | |||||
30 | @property | ||||
31 | def endpoint_type(self): | ||||
32 | pass | ||||
33 | |||||
34 | @property | ||||
35 | def min_ttl(self): | ||||
36 | pass | ||||
37 | |||||
38 | @property | ||||
39 | def nameservers(self): | ||||
40 | pass | ||||
41 | |||||
42 | @property | ||||
43 | def query_timeout(self): | ||||
44 | pass |