root | d8ab63c | 2017-07-25 07:19:31 +0000 | [diff] [blame] | 1 | |
| 2 | import base_section |
| 3 | |
| 4 | class Validation(base_section.BaseSection): |
| 5 | |
| 6 | name = "validation" |
| 7 | options = [ |
| 8 | 'auth_method', |
| 9 | 'connect_method', |
| 10 | 'connect_timeout', |
| 11 | 'floating_ip_range', |
| 12 | 'image_ssh_password', |
| 13 | 'image_ssh_user', |
| 14 | 'ip_version_for_ssh', |
| 15 | 'network_for_ssh', |
| 16 | 'ping_count', |
| 17 | 'ping_size', |
| 18 | 'ping_timeout', |
| 19 | 'run_validation', |
| 20 | 'security_group', |
| 21 | 'security_group_rules', |
| 22 | 'ssh_shell_prologue', |
| 23 | 'ssh_timeout', |
| 24 | ] |
| 25 | |
| 26 | |
| 27 | @property |
| 28 | def auth_method(self): |
| 29 | pass |
| 30 | |
| 31 | @property |
| 32 | def connect_method(self): |
| 33 | pass |
| 34 | |
| 35 | @property |
| 36 | def connect_timeout(self): |
| 37 | pass |
| 38 | |
| 39 | @property |
| 40 | def floating_ip_range(self): |
| 41 | pass |
| 42 | |
| 43 | @property |
| 44 | def image_ssh_password(self): |
| 45 | pass |
| 46 | |
| 47 | @property |
| 48 | def image_ssh_user(self): |
| 49 | pass |
| 50 | |
| 51 | @property |
| 52 | def ip_version_for_ssh(self): |
| 53 | pass |
| 54 | |
| 55 | @property |
| 56 | def network_for_ssh(self): |
| 57 | pass |
| 58 | |
| 59 | @property |
| 60 | def ping_count(self): |
| 61 | pass |
| 62 | |
| 63 | @property |
| 64 | def ping_size(self): |
| 65 | pass |
| 66 | |
| 67 | @property |
| 68 | def ping_timeout(self): |
| 69 | pass |
| 70 | |
| 71 | @property |
| 72 | def run_validation(self): |
| 73 | pass |
| 74 | |
| 75 | @property |
| 76 | def security_group(self): |
| 77 | pass |
| 78 | |
| 79 | @property |
| 80 | def security_group_rules(self): |
| 81 | pass |
| 82 | |
| 83 | @property |
| 84 | def ssh_shell_prologue(self): |
| 85 | pass |
| 86 | |
| 87 | @property |
| 88 | def ssh_timeout(self): |
| 89 | pass |