appscale-tools 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (114) hide show
  1. data/LICENSE +37 -0
  2. data/README +17 -0
  3. data/bin/appscale-add-keypair +15 -0
  4. data/bin/appscale-describe-instances +16 -0
  5. data/bin/appscale-remove-app +13 -0
  6. data/bin/appscale-reset-pwd +13 -0
  7. data/bin/appscale-run-instances +15 -0
  8. data/bin/appscale-terminate-instances +14 -0
  9. data/bin/appscale-upload-app +13 -0
  10. data/doc/AdvancedNode.html +163 -0
  11. data/doc/AppControllerClient.html +831 -0
  12. data/doc/AppEngineConfigException.html +165 -0
  13. data/doc/AppScaleException.html +165 -0
  14. data/doc/AppScaleTools.html +768 -0
  15. data/doc/BadCommandLineArgException.html +166 -0
  16. data/doc/BadConfigurationException.html +166 -0
  17. data/doc/CommonFunctions.html +2559 -0
  18. data/doc/EncryptionHelper.html +332 -0
  19. data/doc/GodInterface.html +443 -0
  20. data/doc/InfrastructureException.html +166 -0
  21. data/doc/Node.html +470 -0
  22. data/doc/NodeLayout.html +1297 -0
  23. data/doc/Object.html +539 -0
  24. data/doc/ParseArgs.html +268 -0
  25. data/doc/RemoteLogging.html +268 -0
  26. data/doc/SimpleNode.html +163 -0
  27. data/doc/UsageText.html +1204 -0
  28. data/doc/UserAppClient.html +993 -0
  29. data/doc/VMTools.html +1365 -0
  30. data/doc/bin/appscale-add-keypair.html +56 -0
  31. data/doc/bin/appscale-describe-instances.html +56 -0
  32. data/doc/bin/appscale-remove-app.html +56 -0
  33. data/doc/bin/appscale-reset-pwd.html +56 -0
  34. data/doc/bin/appscale-run-instances.html +56 -0
  35. data/doc/bin/appscale-terminate-instances.html +56 -0
  36. data/doc/bin/appscale-upload-app.html +56 -0
  37. data/doc/created.rid +21 -0
  38. data/doc/images/add.png +0 -0
  39. data/doc/images/brick.png +0 -0
  40. data/doc/images/brick_link.png +0 -0
  41. data/doc/images/bug.png +0 -0
  42. data/doc/images/bullet_black.png +0 -0
  43. data/doc/images/bullet_toggle_minus.png +0 -0
  44. data/doc/images/bullet_toggle_plus.png +0 -0
  45. data/doc/images/date.png +0 -0
  46. data/doc/images/delete.png +0 -0
  47. data/doc/images/find.png +0 -0
  48. data/doc/images/loadingAnimation.gif +0 -0
  49. data/doc/images/macFFBgHack.png +0 -0
  50. data/doc/images/package.png +0 -0
  51. data/doc/images/page_green.png +0 -0
  52. data/doc/images/page_white_text.png +0 -0
  53. data/doc/images/page_white_width.png +0 -0
  54. data/doc/images/plugin.png +0 -0
  55. data/doc/images/ruby.png +0 -0
  56. data/doc/images/tag_blue.png +0 -0
  57. data/doc/images/tag_green.png +0 -0
  58. data/doc/images/transparent.png +0 -0
  59. data/doc/images/wrench.png +0 -0
  60. data/doc/images/wrench_orange.png +0 -0
  61. data/doc/images/zoom.png +0 -0
  62. data/doc/index.html +116 -0
  63. data/doc/js/darkfish.js +153 -0
  64. data/doc/js/jquery.js +18 -0
  65. data/doc/js/navigation.js +142 -0
  66. data/doc/js/quicksearch.js +114 -0
  67. data/doc/js/search.js +94 -0
  68. data/doc/js/search_index.js +1 -0
  69. data/doc/js/searcher.js +228 -0
  70. data/doc/js/thickbox-compressed.js +10 -0
  71. data/doc/lib/app_controller_client_rb.html +60 -0
  72. data/doc/lib/appscale_tools_rb.html +88 -0
  73. data/doc/lib/common_functions_rb.html +78 -0
  74. data/doc/lib/custom_exceptions_rb.html +54 -0
  75. data/doc/lib/encryption_helper_rb.html +60 -0
  76. data/doc/lib/godinterface_rb.html +52 -0
  77. data/doc/lib/node_layout_rb.html +55 -0
  78. data/doc/lib/parse_args_rb.html +58 -0
  79. data/doc/lib/remote_log_rb.html +58 -0
  80. data/doc/lib/sshcopyid.html +174 -0
  81. data/doc/lib/usage_text_rb.html +58 -0
  82. data/doc/lib/user_app_client_rb.html +62 -0
  83. data/doc/lib/vm_tools_rb.html +62 -0
  84. data/doc/table_of_contents.html +496 -0
  85. data/lib/app_controller_client.rb +181 -0
  86. data/lib/appscale_tools.rb +403 -0
  87. data/lib/common_functions.rb +1467 -0
  88. data/lib/custom_exceptions.rb +25 -0
  89. data/lib/encryption_helper.rb +86 -0
  90. data/lib/godinterface.rb +152 -0
  91. data/lib/node_layout.rb +665 -0
  92. data/lib/parse_args.rb +415 -0
  93. data/lib/remote_log.rb +46 -0
  94. data/lib/sshcopyid +65 -0
  95. data/lib/usage_text.rb +144 -0
  96. data/lib/user_app_client.rb +245 -0
  97. data/lib/vm_tools.rb +549 -0
  98. data/test/tc_app_controller_client.rb +10 -0
  99. data/test/tc_appscale_add_keypair.rb +44 -0
  100. data/test/tc_appscale_describe_instances.rb +69 -0
  101. data/test/tc_appscale_remove_app.rb +128 -0
  102. data/test/tc_appscale_reset_pwd.rb +156 -0
  103. data/test/tc_appscale_run_instances.rb +48 -0
  104. data/test/tc_appscale_terminate_instances.rb +104 -0
  105. data/test/tc_appscale_upload_app.rb +166 -0
  106. data/test/tc_common_functions.rb +56 -0
  107. data/test/tc_encryption_helper.rb +10 -0
  108. data/test/tc_god_interface.rb +10 -0
  109. data/test/tc_node_layout.rb +93 -0
  110. data/test/tc_parse_args.rb +160 -0
  111. data/test/tc_user_app_client.rb +10 -0
  112. data/test/tc_vm_tools.rb +10 -0
  113. data/test/ts_all.rb +20 -0
  114. metadata +211 -0
@@ -0,0 +1,496 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>Table of Contents - RDoc Documentation</title>
8
+
9
+ <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "./";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
21
+
22
+
23
+ <body class="indexpage">
24
+ <h1>Table of Contents - RDoc Documentation</h1>
25
+
26
+ <h2>Pages</h2>
27
+ <ul>
28
+ <li class="file">
29
+ <a href="lib/sshcopyid.html">sshcopyid</a>
30
+ </li>
31
+
32
+ </ul>
33
+
34
+ <h2 id="classes">Classes/Modules</h2>
35
+ <ul>
36
+ <li class="class">
37
+ <a href="AdvancedNode.html">AdvancedNode</a>
38
+ </li>
39
+ <li class="class">
40
+ <a href="AppControllerClient.html">AppControllerClient</a>
41
+ </li>
42
+ <li class="class">
43
+ <a href="AppEngineConfigException.html">AppEngineConfigException</a>
44
+ </li>
45
+ <li class="class">
46
+ <a href="AppScaleException.html">AppScaleException</a>
47
+ </li>
48
+ <li class="module">
49
+ <a href="AppScaleTools.html">AppScaleTools</a>
50
+ </li>
51
+ <li class="class">
52
+ <a href="BadCommandLineArgException.html">BadCommandLineArgException</a>
53
+ </li>
54
+ <li class="class">
55
+ <a href="BadConfigurationException.html">BadConfigurationException</a>
56
+ </li>
57
+ <li class="module">
58
+ <a href="CommonFunctions.html">CommonFunctions</a>
59
+ </li>
60
+ <li class="module">
61
+ <a href="EncryptionHelper.html">EncryptionHelper</a>
62
+ </li>
63
+ <li class="module">
64
+ <a href="GodInterface.html">GodInterface</a>
65
+ </li>
66
+ <li class="class">
67
+ <a href="InfrastructureException.html">InfrastructureException</a>
68
+ </li>
69
+ <li class="class">
70
+ <a href="Node.html">Node</a>
71
+ </li>
72
+ <li class="class">
73
+ <a href="NodeLayout.html">NodeLayout</a>
74
+ </li>
75
+ <li class="class">
76
+ <a href="Object.html">Object</a>
77
+ </li>
78
+ <li class="module">
79
+ <a href="ParseArgs.html">ParseArgs</a>
80
+ </li>
81
+ <li class="module">
82
+ <a href="RemoteLogging.html">RemoteLogging</a>
83
+ </li>
84
+ <li class="class">
85
+ <a href="SimpleNode.html">SimpleNode</a>
86
+ </li>
87
+ <li class="module">
88
+ <a href="UsageText.html">UsageText</a>
89
+ </li>
90
+ <li class="class">
91
+ <a href="UserAppClient.html">UserAppClient</a>
92
+ </li>
93
+ <li class="module">
94
+ <a href="VMTools.html">VMTools</a>
95
+ </li>
96
+
97
+ </ul>
98
+
99
+ <h2 id="methods">Methods</h2>
100
+ <ul>
101
+
102
+ <li class="method"><a href="AppScaleTools.html#method-c-add_keypair">::add_keypair &mdash; AppScaleTools</a>
103
+
104
+ <li class="method"><a href="UsageText.html#method-c-appengine">::appengine &mdash; UsageText</a>
105
+
106
+ <li class="method"><a href="UsageText.html#method-c-appname">::appname &mdash; UsageText</a>
107
+
108
+ <li class="method"><a href="UsageText.html#method-c-auto">::auto &mdash; UsageText</a>
109
+
110
+ <li class="method"><a href="UsageText.html#method-c-backup_neptune_info">::backup_neptune_info &mdash; UsageText</a>
111
+
112
+ <li class="method"><a href="CommonFunctions.html#method-c-clear_app">::clear_app &mdash; CommonFunctions</a>
113
+
114
+ <li class="method"><a href="UsageText.html#method-c-confirm">::confirm &mdash; UsageText</a>
115
+
116
+ <li class="method"><a href="CommonFunctions.html#method-c-convert_fqdn_to_ip">::convert_fqdn_to_ip &mdash; CommonFunctions</a>
117
+
118
+ <li class="method"><a href="CommonFunctions.html#method-c-create_user">::create_user &mdash; CommonFunctions</a>
119
+
120
+ <li class="method"><a href="AppScaleTools.html#method-c-describe_instances">::describe_instances &mdash; AppScaleTools</a>
121
+
122
+ <li class="method"><a href="UsageText.html#method-c-email">::email &mdash; UsageText</a>
123
+
124
+ <li class="method"><a href="CommonFunctions.html#method-c-encrypt_password">::encrypt_password &mdash; CommonFunctions</a>
125
+
126
+ <li class="method"><a href="VMTools.html#method-c-ensure_keyname_not_in_use">::ensure_keyname_not_in_use &mdash; VMTools</a>
127
+
128
+ <li class="method"><a href="VMTools.html#method-c-ensure_min_vms_available">::ensure_min_vms_available &mdash; VMTools</a>
129
+
130
+ <li class="method"><a href="VMTools.html#method-c-ensure_tools_are_installed">::ensure_tools_are_installed &mdash; VMTools</a>
131
+
132
+ <li class="method"><a href="UsageText.html#method-c-file">::file &mdash; UsageText</a>
133
+
134
+ <li class="method"><a href="CommonFunctions.html#method-c-find_real_ssh_key">::find_real_ssh_key &mdash; CommonFunctions</a>
135
+
136
+ <li class="method"><a href="UsageText.html#method-c-force">::force &mdash; UsageText</a>
137
+
138
+ <li class="method"><a href="EncryptionHelper.html#method-c-generate_pem_files">::generate_pem_files &mdash; EncryptionHelper</a>
139
+
140
+ <li class="method"><a href="EncryptionHelper.html#method-c-generate_secret_key">::generate_secret_key &mdash; EncryptionHelper</a>
141
+
142
+ <li class="method"><a href="EncryptionHelper.html#method-c-generate_ssh_key">::generate_ssh_key &mdash; EncryptionHelper</a>
143
+
144
+ <li class="method"><a href="CommonFunctions.html#method-c-get_all_public_ips">::get_all_public_ips &mdash; CommonFunctions</a>
145
+
146
+ <li class="method"><a href="CommonFunctions.html#method-c-get_app_info">::get_app_info &mdash; CommonFunctions</a>
147
+
148
+ <li class="method"><a href="CommonFunctions.html#method-c-get_app_info_from_options">::get_app_info_from_options &mdash; CommonFunctions</a>
149
+
150
+ <li class="method"><a href="CommonFunctions.html#method-c-get_app_name_from_tar">::get_app_name_from_tar &mdash; CommonFunctions</a>
151
+
152
+ <li class="method"><a href="CommonFunctions.html#method-c-get_app_name_via_xml">::get_app_name_via_xml &mdash; CommonFunctions</a>
153
+
154
+ <li class="method"><a href="CommonFunctions.html#method-c-get_app_name_via_yaml">::get_app_name_via_yaml &mdash; CommonFunctions</a>
155
+
156
+ <li class="method"><a href="VMTools.html#method-c-get_cloud_creds">::get_cloud_creds &mdash; VMTools</a>
157
+
158
+ <li class="method"><a href="CommonFunctions.html#method-c-get_credentials">::get_credentials &mdash; CommonFunctions</a>
159
+
160
+ <li class="method"><a href="VMTools.html#method-c-get_creds_from_env">::get_creds_from_env &mdash; VMTools</a>
161
+
162
+ <li class="method"><a href="CommonFunctions.html#method-c-get_db_master_ip">::get_db_master_ip &mdash; CommonFunctions</a>
163
+
164
+ <li class="method"><a href="CommonFunctions.html#method-c-get_email">::get_email &mdash; CommonFunctions</a>
165
+
166
+ <li class="method"><a href="CommonFunctions.html#method-c-get_from_yaml">::get_from_yaml &mdash; CommonFunctions</a>
167
+
168
+ <li class="method"><a href="CommonFunctions.html#method-c-get_head_node_ip">::get_head_node_ip &mdash; CommonFunctions</a>
169
+
170
+ <li class="method"><a href="VMTools.html#method-c-get_hybrid_creds">::get_hybrid_creds &mdash; VMTools</a>
171
+
172
+ <li class="method"><a href="VMTools.html#method-c-get_hybrid_env_vars">::get_hybrid_env_vars &mdash; VMTools</a>
173
+
174
+ <li class="method"><a href="VMTools.html#method-c-get_hybrid_machine">::get_hybrid_machine &mdash; VMTools</a>
175
+
176
+ <li class="method"><a href="CommonFunctions.html#method-c-get_infrastructure">::get_infrastructure &mdash; CommonFunctions</a>
177
+
178
+ <li class="method"><a href="VMTools.html#method-c-get_initial_layout">::get_initial_layout &mdash; VMTools</a>
179
+
180
+ <li class="method"><a href="VMTools.html#method-c-get_ips">::get_ips &mdash; VMTools</a>
181
+
182
+ <li class="method"><a href="CommonFunctions.html#method-c-get_ips_from_yaml">::get_ips_from_yaml &mdash; CommonFunctions</a>
183
+
184
+ <li class="method"><a href="CommonFunctions.html#method-c-get_line_from_stdin_no_echo">::get_line_from_stdin_no_echo &mdash; CommonFunctions</a>
185
+
186
+ <li class="method"><a href="CommonFunctions.html#method-c-get_load_balancer_id">::get_load_balancer_id &mdash; CommonFunctions</a>
187
+
188
+ <li class="method"><a href="CommonFunctions.html#method-c-get_load_balancer_ip">::get_load_balancer_ip &mdash; CommonFunctions</a>
189
+
190
+ <li class="method"><a href="CommonFunctions.html#method-c-get_login_ip">::get_login_ip &mdash; CommonFunctions</a>
191
+
192
+ <li class="method"><a href="CommonFunctions.html#method-c-get_password">::get_password &mdash; CommonFunctions</a>
193
+
194
+ <li class="method"><a href="VMTools.html#method-c-get_public_ips">::get_public_ips &mdash; VMTools</a>
195
+
196
+ <li class="method"><a href="CommonFunctions.html#method-c-get_random_alphanumeric">::get_random_alphanumeric &mdash; CommonFunctions</a>
197
+
198
+ <li class="method"><a href="CommonFunctions.html#method-c-get_remote_appscale_home">::get_remote_appscale_home &mdash; CommonFunctions</a>
199
+
200
+ <li class="method"><a href="CommonFunctions.html#method-c-get_role_from_nodes">::get_role_from_nodes &mdash; CommonFunctions</a>
201
+
202
+ <li class="method"><a href="CommonFunctions.html#method-c-get_secret_key">::get_secret_key &mdash; CommonFunctions</a>
203
+
204
+ <li class="method"><a href="CommonFunctions.html#method-c-get_table">::get_table &mdash; CommonFunctions</a>
205
+
206
+ <li class="method"><a href="UsageText.html#method-c-get_usage">::get_usage &mdash; UsageText</a>
207
+
208
+ <li class="method"><a href="CommonFunctions.html#method-c-get_username_from_options">::get_username_from_options &mdash; CommonFunctions</a>
209
+
210
+ <li class="method"><a href="ParseArgs.html#method-c-get_vals_from_args">::get_vals_from_args &mdash; ParseArgs</a>
211
+
212
+ <li class="method"><a href="VMTools.html#method-c-get_vmm_keys">::get_vmm_keys &mdash; VMTools</a>
213
+
214
+ <li class="method"><a href="UsageText.html#method-c-group">::group &mdash; UsageText</a>
215
+
216
+ <li class="method"><a href="UsageText.html#method-c-h">::h &mdash; UsageText</a>
217
+
218
+ <li class="method"><a href="UsageText.html#method-c-help">::help &mdash; UsageText</a>
219
+
220
+ <li class="method"><a href="UsageText.html#method-c-iaas">::iaas &mdash; UsageText</a>
221
+
222
+ <li class="method"><a href="UsageText.html#method-c-infrastructure">::infrastructure &mdash; UsageText</a>
223
+
224
+ <li class="method"><a href="UsageText.html#method-c-instance_type">::instance_type &mdash; UsageText</a>
225
+
226
+ <li class="method"><a href="UsageText.html#method-c-ips">::ips &mdash; UsageText</a>
227
+
228
+ <li class="method"><a href="CommonFunctions.html#method-c-is_port_open-3F">::is_port_open? &mdash; CommonFunctions</a>
229
+
230
+ <li class="method"><a href="UsageText.html#method-c-keyname">::keyname &mdash; UsageText</a>
231
+
232
+ <li class="method"><a href="VMTools.html#method-c-local_ip">::local_ip &mdash; VMTools</a>
233
+
234
+ <li class="method"><a href="VMTools.html#method-c-lookup_cloud_env">::lookup_cloud_env &mdash; VMTools</a>
235
+
236
+ <li class="method"><a href="UsageText.html#method-c-machine">::machine &mdash; UsageText</a>
237
+
238
+ <li class="method"><a href="CommonFunctions.html#method-c-make_appscale_directory">::make_appscale_directory &mdash; CommonFunctions</a>
239
+
240
+ <li class="method"><a href="UsageText.html#method-c-max">::max &mdash; UsageText</a>
241
+
242
+ <li class="method"><a href="UsageText.html#method-c-min">::min &mdash; UsageText</a>
243
+
244
+ <li class="method"><a href="CommonFunctions.html#method-c-move_app">::move_app &mdash; CommonFunctions</a>
245
+
246
+ <li class="method"><a href="UsageText.html#method-c-n">::n &mdash; UsageText</a>
247
+
248
+ <li class="method"><a href="NodeLayout.html#method-c-new">::new &mdash; NodeLayout</a>
249
+
250
+ <li class="method"><a href="AppControllerClient.html#method-c-new">::new &mdash; AppControllerClient</a>
251
+
252
+ <li class="method"><a href="Node.html#method-c-new">::new &mdash; Node</a>
253
+
254
+ <li class="method"><a href="UserAppClient.html#method-c-new">::new &mdash; UserAppClient</a>
255
+
256
+ <li class="method"><a href="VMTools.html#method-c-open_ports_in_cloud">::open_ports_in_cloud &mdash; VMTools</a>
257
+
258
+ <li class="method"><a href="RemoteLogging.html#method-c-post">::post &mdash; RemoteLogging</a>
259
+
260
+ <li class="method"><a href="UsageText.html#method-c-r">::r &mdash; UsageText</a>
261
+
262
+ <li class="method"><a href="CommonFunctions.html#method-c-read_file">::read_file &mdash; CommonFunctions</a>
263
+
264
+ <li class="method"><a href="CommonFunctions.html#method-c-read_nodes_json">::read_nodes_json &mdash; CommonFunctions</a>
265
+
266
+ <li class="method"><a href="RemoteLogging.html#method-c-remote_post">::remote_post &mdash; RemoteLogging</a>
267
+
268
+ <li class="method"><a href="GodInterface.html#method-c-remove">::remove &mdash; GodInterface</a>
269
+
270
+ <li class="method"><a href="AppScaleTools.html#method-c-remove_app">::remove_app &mdash; AppScaleTools</a>
271
+
272
+ <li class="method"><a href="CommonFunctions.html#method-c-require_commands">::require_commands &mdash; CommonFunctions</a>
273
+
274
+ <li class="method"><a href="AppScaleTools.html#method-c-reset_password">::reset_password &mdash; AppScaleTools</a>
275
+
276
+ <li class="method"><a href="UsageText.html#method-c-restore_from_tar">::restore_from_tar &mdash; UsageText</a>
277
+
278
+ <li class="method"><a href="UsageText.html#method-c-restore_neptune_info">::restore_neptune_info &mdash; UsageText</a>
279
+
280
+ <li class="method"><a href="CommonFunctions.html#method-c-rsync_files">::rsync_files &mdash; CommonFunctions</a>
281
+
282
+ <li class="method"><a href="AppScaleTools.html#method-c-run_instances">::run_instances &mdash; AppScaleTools</a>
283
+
284
+ <li class="method"><a href="CommonFunctions.html#method-c-run_remote_command">::run_remote_command &mdash; CommonFunctions</a>
285
+
286
+ <li class="method"><a href="UsageText.html#method-c-scp">::scp &mdash; UsageText</a>
287
+
288
+ <li class="method"><a href="CommonFunctions.html#method-c-scp_app_to_ip">::scp_app_to_ip &mdash; CommonFunctions</a>
289
+
290
+ <li class="method"><a href="CommonFunctions.html#method-c-scp_file">::scp_file &mdash; CommonFunctions</a>
291
+
292
+ <li class="method"><a href="VMTools.html#method-c-set_hybrid_creds">::set_hybrid_creds &mdash; VMTools</a>
293
+
294
+ <li class="method"><a href="CommonFunctions.html#method-c-shell">::shell &mdash; CommonFunctions</a>
295
+
296
+ <li class="method"><a href="GodInterface.html#method-c-shutdown">::shutdown &mdash; GodInterface</a>
297
+
298
+ <li class="method"><a href="CommonFunctions.html#method-c-sleep_until_port_is_closed">::sleep_until_port_is_closed &mdash; CommonFunctions</a>
299
+
300
+ <li class="method"><a href="CommonFunctions.html#method-c-sleep_until_port_is_open">::sleep_until_port_is_open &mdash; CommonFunctions</a>
301
+
302
+ <li class="method"><a href="VMTools.html#method-c-spawn_head_node">::spawn_head_node &mdash; VMTools</a>
303
+
304
+ <li class="method"><a href="VMTools.html#method-c-spawn_head_node_via_cloud">::spawn_head_node_via_cloud &mdash; VMTools</a>
305
+
306
+ <li class="method"><a href="VMTools.html#method-c-spawn_head_node_via_vmm">::spawn_head_node_via_vmm &mdash; VMTools</a>
307
+
308
+ <li class="method"><a href="VMTools.html#method-c-spawn_vms">::spawn_vms &mdash; VMTools</a>
309
+
310
+ <li class="method"><a href="GodInterface.html#method-c-start">::start &mdash; GodInterface</a>
311
+
312
+ <li class="method"><a href="GodInterface.html#method-c-start_god">::start_god &mdash; GodInterface</a>
313
+
314
+ <li class="method"><a href="CommonFunctions.html#method-c-start_head_node">::start_head_node &mdash; CommonFunctions</a>
315
+
316
+ <li class="method"><a href="GodInterface.html#method-c-stop">::stop &mdash; GodInterface</a>
317
+
318
+ <li class="method"><a href="UsageText.html#method-c-table">::table &mdash; UsageText</a>
319
+
320
+ <li class="method"><a href="VMTools.html#method-c-terminate_all_vms">::terminate_all_vms &mdash; VMTools</a>
321
+
322
+ <li class="method"><a href="VMTools.html#method-c-terminate_infrastructure_machines">::terminate_infrastructure_machines &mdash; VMTools</a>
323
+
324
+ <li class="method"><a href="AppScaleTools.html#method-c-terminate_instances">::terminate_instances &mdash; AppScaleTools</a>
325
+
326
+ <li class="method"><a href="UsageText.html#method-c-test">::test &mdash; UsageText</a>
327
+
328
+ <li class="method"><a href="CommonFunctions.html#method-c-update_appcontroller">::update_appcontroller &mdash; CommonFunctions</a>
329
+
330
+ <li class="method"><a href="CommonFunctions.html#method-c-update_locations_file">::update_locations_file &mdash; CommonFunctions</a>
331
+
332
+ <li class="method"><a href="AppScaleTools.html#method-c-upload_app">::upload_app &mdash; AppScaleTools</a>
333
+
334
+ <li class="method"><a href="UsageText.html#method-c-usage">::usage &mdash; UsageText</a>
335
+
336
+ <li class="method"><a href="CommonFunctions.html#method-c-user_has_cmd-3F">::user_has_cmd? &mdash; CommonFunctions</a>
337
+
338
+ <li class="method"><a href="UsageText.html#method-c-v">::v &mdash; UsageText</a>
339
+
340
+ <li class="method"><a href="CommonFunctions.html#method-c-validate_app_name">::validate_app_name &mdash; CommonFunctions</a>
341
+
342
+ <li class="method"><a href="UsageText.html#method-c-verbose">::verbose &mdash; UsageText</a>
343
+
344
+ <li class="method"><a href="VMTools.html#method-c-verify_credentials_are_set_correctly">::verify_credentials_are_set_correctly &mdash; VMTools</a>
345
+
346
+ <li class="method"><a href="VMTools.html#method-c-verify_credentials_exist">::verify_credentials_exist &mdash; VMTools</a>
347
+
348
+ <li class="method"><a href="VMTools.html#method-c-verify_ids">::verify_ids &mdash; VMTools</a>
349
+
350
+ <li class="method"><a href="UsageText.html#method-c-version">::version &mdash; UsageText</a>
351
+
352
+ <li class="method"><a href="UsageText.html#method-c-w">::w &mdash; UsageText</a>
353
+
354
+ <li class="method"><a href="CommonFunctions.html#method-c-wait_for_app_to_start">::wait_for_app_to_start &mdash; CommonFunctions</a>
355
+
356
+ <li class="method"><a href="CommonFunctions.html#method-c-wait_for_nodes_to_load">::wait_for_nodes_to_load &mdash; CommonFunctions</a>
357
+
358
+ <li class="method"><a href="CommonFunctions.html#method-c-wait_until_redirect">::wait_until_redirect &mdash; CommonFunctions</a>
359
+
360
+ <li class="method"><a href="CommonFunctions.html#method-c-warn_on_large_app_size">::warn_on_large_app_size &mdash; CommonFunctions</a>
361
+
362
+ <li class="method"><a href="CommonFunctions.html#method-c-write_and_copy_node_file">::write_and_copy_node_file &mdash; CommonFunctions</a>
363
+
364
+ <li class="method"><a href="CommonFunctions.html#method-c-write_file">::write_file &mdash; CommonFunctions</a>
365
+
366
+ <li class="method"><a href="CommonFunctions.html#method-c-write_node_file">::write_node_file &mdash; CommonFunctions</a>
367
+
368
+ <li class="method"><a href="CommonFunctions.html#method-c-write_nodes_json">::write_nodes_json &mdash; CommonFunctions</a>
369
+
370
+ <li class="method"><a href="Node.html#method-i-add_db_role">#add_db_role &mdash; Node</a>
371
+
372
+ <li class="method"><a href="UserAppClient.html#method-i-add_instance">#add_instance &mdash; UserAppClient</a>
373
+
374
+ <li class="method"><a href="Node.html#method-i-add_rabbitmq_role">#add_rabbitmq_role &mdash; Node</a>
375
+
376
+ <li class="method"><a href="Node.html#method-i-add_role">#add_role &mdash; Node</a>
377
+
378
+ <li class="method"><a href="AppControllerClient.html#method-i-app_is_running-3F">#app_is_running? &mdash; AppControllerClient</a>
379
+
380
+ <li class="method"><a href="UserAppClient.html#method-i-change_password">#change_password &mdash; UserAppClient</a>
381
+
382
+ <li class="method"><a href="UserAppClient.html#method-i-commit_new_app">#commit_new_app &mdash; UserAppClient</a>
383
+
384
+ <li class="method"><a href="UserAppClient.html#method-i-commit_new_app_name">#commit_new_app_name &mdash; UserAppClient</a>
385
+
386
+ <li class="method"><a href="UserAppClient.html#method-i-commit_new_user">#commit_new_user &mdash; UserAppClient</a>
387
+
388
+ <li class="method"><a href="UserAppClient.html#method-i-commit_tar">#commit_tar &mdash; UserAppClient</a>
389
+
390
+ <li class="method"><a href="NodeLayout.html#method-i-db_master">#db_master &mdash; NodeLayout</a>
391
+
392
+ <li class="method"><a href="UserAppClient.html#method-i-delete_app">#delete_app &mdash; UserAppClient</a>
393
+
394
+ <li class="method"><a href="UserAppClient.html#method-i-delete_instance">#delete_instance &mdash; UserAppClient</a>
395
+
396
+ <li class="method"><a href="UserAppClient.html#method-i-does_app_exist-3F">#does_app_exist? &mdash; UserAppClient</a>
397
+
398
+ <li class="method"><a href="UserAppClient.html#method-i-does_user_exist-3F">#does_user_exist? &mdash; UserAppClient</a>
399
+
400
+ <li class="method"><a href="AppControllerClient.html#method-i-done_uploading">#done_uploading &mdash; AppControllerClient</a>
401
+
402
+ <li class="method"><a href="NodeLayout.html#method-i-errors">#errors &mdash; NodeLayout</a>
403
+
404
+ <li class="method"><a href="Node.html#method-i-errors">#errors &mdash; Node</a>
405
+
406
+ <li class="method"><a href="Node.html#method-i-expand_roles">#expand_roles &mdash; Node</a>
407
+
408
+ <li class="method"><a href="NodeLayout.html#method-i-generate_cloud_layout">#generate_cloud_layout &mdash; NodeLayout</a>
409
+
410
+ <li class="method"><a href="UserAppClient.html#method-i-get_all_apps">#get_all_apps &mdash; UserAppClient</a>
411
+
412
+ <li class="method"><a href="AppControllerClient.html#method-i-get_all_public_ips">#get_all_public_ips &mdash; AppControllerClient</a>
413
+
414
+ <li class="method"><a href="UserAppClient.html#method-i-get_app_admin">#get_app_admin &mdash; UserAppClient</a>
415
+
416
+ <li class="method"><a href="UserAppClient.html#method-i-get_app_data">#get_app_data &mdash; UserAppClient</a>
417
+
418
+ <li class="method"><a href="AppControllerClient.html#method-i-get_role_info">#get_role_info &mdash; AppControllerClient</a>
419
+
420
+ <li class="method"><a href="AppControllerClient.html#method-i-get_status">#get_status &mdash; AppControllerClient</a>
421
+
422
+ <li class="method"><a href="UserAppClient.html#method-i-get_tar">#get_tar &mdash; UserAppClient</a>
423
+
424
+ <li class="method"><a href="AppControllerClient.html#method-i-get_userappserver_ip">#get_userappserver_ip &mdash; AppControllerClient</a>
425
+
426
+ <li class="method"><a href="NodeLayout.html#method-i-head_node">#head_node &mdash; NodeLayout</a>
427
+
428
+ <li class="method"><a href="NodeLayout.html#method-i-is_advanced_format-3F">#is_advanced_format? &mdash; NodeLayout</a>
429
+
430
+ <li class="method"><a href="AppControllerClient.html#method-i-is_done_initializing-3F">#is_done_initializing? &mdash; AppControllerClient</a>
431
+
432
+ <li class="method"><a href="AppControllerClient.html#method-i-is_done_loading-3F">#is_done_loading? &mdash; AppControllerClient</a>
433
+
434
+ <li class="method"><a href="AppControllerClient.html#method-i-is_live-3F">#is_live? &mdash; AppControllerClient</a>
435
+
436
+ <li class="method"><a href="NodeLayout.html#method-i-is_simple_format-3F">#is_simple_format? &mdash; NodeLayout</a>
437
+
438
+ <li class="method"><a href="AppControllerClient.html#method-i-kill">#kill &mdash; AppControllerClient</a>
439
+
440
+ <li class="method"><a href="NodeLayout.html#method-i-login_node">#login_node &mdash; NodeLayout</a>
441
+
442
+ <li class="method"><a href="UserAppClient.html#method-i-make_call">#make_call &mdash; UserAppClient</a>
443
+
444
+ <li class="method"><a href="AppControllerClient.html#method-i-make_call">#make_call &mdash; AppControllerClient</a>
445
+
446
+ <li class="method"><a href="NodeLayout.html#method-i-max_images">#max_images &mdash; NodeLayout</a>
447
+
448
+ <li class="method"><a href="NodeLayout.html#method-i-min_images">#min_images &mdash; NodeLayout</a>
449
+
450
+ <li class="method"><a href="NodeLayout.html#method-i-nodes">#nodes &mdash; NodeLayout</a>
451
+
452
+ <li class="method"><a href="NodeLayout.html#method-i-other_nodes">#other_nodes &mdash; NodeLayout</a>
453
+
454
+ <li class="method"><a href="NodeLayout.html#method-i-parse_ip">#parse_ip &mdash; NodeLayout</a>
455
+
456
+ <li class="method"><a href="NodeLayout.html#method-i-read_factor">#read_factor &mdash; NodeLayout</a>
457
+
458
+ <li class="method"><a href="NodeLayout.html#method-i-replication_factor">#replication_factor &mdash; NodeLayout</a>
459
+
460
+ <li class="method"><a href="UserAppClient.html#method-i-set_capabilities">#set_capabilities &mdash; UserAppClient</a>
461
+
462
+ <li class="method"><a href="UserAppClient.html#method-i-set_cloud_admin_capabilities">#set_cloud_admin_capabilities &mdash; UserAppClient</a>
463
+
464
+ <li class="method"><a href="UserAppClient.html#method-i-set_cloud_admin_status">#set_cloud_admin_status &mdash; UserAppClient</a>
465
+
466
+ <li class="method"><a href="AppControllerClient.html#method-i-set_parameters">#set_parameters &mdash; AppControllerClient</a>
467
+
468
+ <li class="method"><a href="AppControllerClient.html#method-i-status">#status &mdash; AppControllerClient</a>
469
+
470
+ <li class="method"><a href="AppControllerClient.html#method-i-stop_app">#stop_app &mdash; AppControllerClient</a>
471
+
472
+ <li class="method"><a href="NodeLayout.html#method-i-to_hash">#to_hash &mdash; NodeLayout</a>
473
+
474
+ <li class="method"><a href="AppControllerClient.html#method-i-update">#update &mdash; AppControllerClient</a>
475
+
476
+ <li class="method"><a href="Node.html#method-i-valid-3F">#valid? &mdash; Node</a>
477
+
478
+ <li class="method"><a href="NodeLayout.html#method-i-valid-3F">#valid? &mdash; NodeLayout</a>
479
+
480
+ <li class="method"><a href="NodeLayout.html#method-i-valid_advanced_format-3F">#valid_advanced_format? &mdash; NodeLayout</a>
481
+
482
+ <li class="method"><a href="NodeLayout.html#method-i-valid_database_replication-3F">#valid_database_replication? &mdash; NodeLayout</a>
483
+
484
+ <li class="method"><a href="NodeLayout.html#method-i-valid_simple_format-3F">#valid_simple_format? &mdash; NodeLayout</a>
485
+
486
+ <li class="method"><a href="NodeLayout.html#method-i-write_factor">#write_factor &mdash; NodeLayout</a>
487
+
488
+ </ul>
489
+
490
+
491
+ <footer id="validator-badges">
492
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
493
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.
494
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
495
+ </footer>
496
+