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.
- data/LICENSE +37 -0
- data/README +17 -0
- data/bin/appscale-add-keypair +15 -0
- data/bin/appscale-describe-instances +16 -0
- data/bin/appscale-remove-app +13 -0
- data/bin/appscale-reset-pwd +13 -0
- data/bin/appscale-run-instances +15 -0
- data/bin/appscale-terminate-instances +14 -0
- data/bin/appscale-upload-app +13 -0
- data/doc/AdvancedNode.html +163 -0
- data/doc/AppControllerClient.html +831 -0
- data/doc/AppEngineConfigException.html +165 -0
- data/doc/AppScaleException.html +165 -0
- data/doc/AppScaleTools.html +768 -0
- data/doc/BadCommandLineArgException.html +166 -0
- data/doc/BadConfigurationException.html +166 -0
- data/doc/CommonFunctions.html +2559 -0
- data/doc/EncryptionHelper.html +332 -0
- data/doc/GodInterface.html +443 -0
- data/doc/InfrastructureException.html +166 -0
- data/doc/Node.html +470 -0
- data/doc/NodeLayout.html +1297 -0
- data/doc/Object.html +539 -0
- data/doc/ParseArgs.html +268 -0
- data/doc/RemoteLogging.html +268 -0
- data/doc/SimpleNode.html +163 -0
- data/doc/UsageText.html +1204 -0
- data/doc/UserAppClient.html +993 -0
- data/doc/VMTools.html +1365 -0
- data/doc/bin/appscale-add-keypair.html +56 -0
- data/doc/bin/appscale-describe-instances.html +56 -0
- data/doc/bin/appscale-remove-app.html +56 -0
- data/doc/bin/appscale-reset-pwd.html +56 -0
- data/doc/bin/appscale-run-instances.html +56 -0
- data/doc/bin/appscale-terminate-instances.html +56 -0
- data/doc/bin/appscale-upload-app.html +56 -0
- data/doc/created.rid +21 -0
- data/doc/images/add.png +0 -0
- data/doc/images/brick.png +0 -0
- data/doc/images/brick_link.png +0 -0
- data/doc/images/bug.png +0 -0
- data/doc/images/bullet_black.png +0 -0
- data/doc/images/bullet_toggle_minus.png +0 -0
- data/doc/images/bullet_toggle_plus.png +0 -0
- data/doc/images/date.png +0 -0
- data/doc/images/delete.png +0 -0
- data/doc/images/find.png +0 -0
- data/doc/images/loadingAnimation.gif +0 -0
- data/doc/images/macFFBgHack.png +0 -0
- data/doc/images/package.png +0 -0
- data/doc/images/page_green.png +0 -0
- data/doc/images/page_white_text.png +0 -0
- data/doc/images/page_white_width.png +0 -0
- data/doc/images/plugin.png +0 -0
- data/doc/images/ruby.png +0 -0
- data/doc/images/tag_blue.png +0 -0
- data/doc/images/tag_green.png +0 -0
- data/doc/images/transparent.png +0 -0
- data/doc/images/wrench.png +0 -0
- data/doc/images/wrench_orange.png +0 -0
- data/doc/images/zoom.png +0 -0
- data/doc/index.html +116 -0
- data/doc/js/darkfish.js +153 -0
- data/doc/js/jquery.js +18 -0
- data/doc/js/navigation.js +142 -0
- data/doc/js/quicksearch.js +114 -0
- data/doc/js/search.js +94 -0
- data/doc/js/search_index.js +1 -0
- data/doc/js/searcher.js +228 -0
- data/doc/js/thickbox-compressed.js +10 -0
- data/doc/lib/app_controller_client_rb.html +60 -0
- data/doc/lib/appscale_tools_rb.html +88 -0
- data/doc/lib/common_functions_rb.html +78 -0
- data/doc/lib/custom_exceptions_rb.html +54 -0
- data/doc/lib/encryption_helper_rb.html +60 -0
- data/doc/lib/godinterface_rb.html +52 -0
- data/doc/lib/node_layout_rb.html +55 -0
- data/doc/lib/parse_args_rb.html +58 -0
- data/doc/lib/remote_log_rb.html +58 -0
- data/doc/lib/sshcopyid.html +174 -0
- data/doc/lib/usage_text_rb.html +58 -0
- data/doc/lib/user_app_client_rb.html +62 -0
- data/doc/lib/vm_tools_rb.html +62 -0
- data/doc/table_of_contents.html +496 -0
- data/lib/app_controller_client.rb +181 -0
- data/lib/appscale_tools.rb +403 -0
- data/lib/common_functions.rb +1467 -0
- data/lib/custom_exceptions.rb +25 -0
- data/lib/encryption_helper.rb +86 -0
- data/lib/godinterface.rb +152 -0
- data/lib/node_layout.rb +665 -0
- data/lib/parse_args.rb +415 -0
- data/lib/remote_log.rb +46 -0
- data/lib/sshcopyid +65 -0
- data/lib/usage_text.rb +144 -0
- data/lib/user_app_client.rb +245 -0
- data/lib/vm_tools.rb +549 -0
- data/test/tc_app_controller_client.rb +10 -0
- data/test/tc_appscale_add_keypair.rb +44 -0
- data/test/tc_appscale_describe_instances.rb +69 -0
- data/test/tc_appscale_remove_app.rb +128 -0
- data/test/tc_appscale_reset_pwd.rb +156 -0
- data/test/tc_appscale_run_instances.rb +48 -0
- data/test/tc_appscale_terminate_instances.rb +104 -0
- data/test/tc_appscale_upload_app.rb +166 -0
- data/test/tc_common_functions.rb +56 -0
- data/test/tc_encryption_helper.rb +10 -0
- data/test/tc_god_interface.rb +10 -0
- data/test/tc_node_layout.rb +93 -0
- data/test/tc_parse_args.rb +160 -0
- data/test/tc_user_app_client.rb +10 -0
- data/test/tc_vm_tools.rb +10 -0
- data/test/ts_all.rb +20 -0
- 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 — AppScaleTools</a>
|
|
103
|
+
|
|
104
|
+
<li class="method"><a href="UsageText.html#method-c-appengine">::appengine — UsageText</a>
|
|
105
|
+
|
|
106
|
+
<li class="method"><a href="UsageText.html#method-c-appname">::appname — UsageText</a>
|
|
107
|
+
|
|
108
|
+
<li class="method"><a href="UsageText.html#method-c-auto">::auto — UsageText</a>
|
|
109
|
+
|
|
110
|
+
<li class="method"><a href="UsageText.html#method-c-backup_neptune_info">::backup_neptune_info — UsageText</a>
|
|
111
|
+
|
|
112
|
+
<li class="method"><a href="CommonFunctions.html#method-c-clear_app">::clear_app — CommonFunctions</a>
|
|
113
|
+
|
|
114
|
+
<li class="method"><a href="UsageText.html#method-c-confirm">::confirm — UsageText</a>
|
|
115
|
+
|
|
116
|
+
<li class="method"><a href="CommonFunctions.html#method-c-convert_fqdn_to_ip">::convert_fqdn_to_ip — CommonFunctions</a>
|
|
117
|
+
|
|
118
|
+
<li class="method"><a href="CommonFunctions.html#method-c-create_user">::create_user — CommonFunctions</a>
|
|
119
|
+
|
|
120
|
+
<li class="method"><a href="AppScaleTools.html#method-c-describe_instances">::describe_instances — AppScaleTools</a>
|
|
121
|
+
|
|
122
|
+
<li class="method"><a href="UsageText.html#method-c-email">::email — UsageText</a>
|
|
123
|
+
|
|
124
|
+
<li class="method"><a href="CommonFunctions.html#method-c-encrypt_password">::encrypt_password — CommonFunctions</a>
|
|
125
|
+
|
|
126
|
+
<li class="method"><a href="VMTools.html#method-c-ensure_keyname_not_in_use">::ensure_keyname_not_in_use — VMTools</a>
|
|
127
|
+
|
|
128
|
+
<li class="method"><a href="VMTools.html#method-c-ensure_min_vms_available">::ensure_min_vms_available — VMTools</a>
|
|
129
|
+
|
|
130
|
+
<li class="method"><a href="VMTools.html#method-c-ensure_tools_are_installed">::ensure_tools_are_installed — VMTools</a>
|
|
131
|
+
|
|
132
|
+
<li class="method"><a href="UsageText.html#method-c-file">::file — UsageText</a>
|
|
133
|
+
|
|
134
|
+
<li class="method"><a href="CommonFunctions.html#method-c-find_real_ssh_key">::find_real_ssh_key — CommonFunctions</a>
|
|
135
|
+
|
|
136
|
+
<li class="method"><a href="UsageText.html#method-c-force">::force — UsageText</a>
|
|
137
|
+
|
|
138
|
+
<li class="method"><a href="EncryptionHelper.html#method-c-generate_pem_files">::generate_pem_files — EncryptionHelper</a>
|
|
139
|
+
|
|
140
|
+
<li class="method"><a href="EncryptionHelper.html#method-c-generate_secret_key">::generate_secret_key — EncryptionHelper</a>
|
|
141
|
+
|
|
142
|
+
<li class="method"><a href="EncryptionHelper.html#method-c-generate_ssh_key">::generate_ssh_key — EncryptionHelper</a>
|
|
143
|
+
|
|
144
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_all_public_ips">::get_all_public_ips — CommonFunctions</a>
|
|
145
|
+
|
|
146
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_app_info">::get_app_info — CommonFunctions</a>
|
|
147
|
+
|
|
148
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_app_info_from_options">::get_app_info_from_options — CommonFunctions</a>
|
|
149
|
+
|
|
150
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_app_name_from_tar">::get_app_name_from_tar — CommonFunctions</a>
|
|
151
|
+
|
|
152
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_app_name_via_xml">::get_app_name_via_xml — CommonFunctions</a>
|
|
153
|
+
|
|
154
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_app_name_via_yaml">::get_app_name_via_yaml — CommonFunctions</a>
|
|
155
|
+
|
|
156
|
+
<li class="method"><a href="VMTools.html#method-c-get_cloud_creds">::get_cloud_creds — VMTools</a>
|
|
157
|
+
|
|
158
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_credentials">::get_credentials — CommonFunctions</a>
|
|
159
|
+
|
|
160
|
+
<li class="method"><a href="VMTools.html#method-c-get_creds_from_env">::get_creds_from_env — VMTools</a>
|
|
161
|
+
|
|
162
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_db_master_ip">::get_db_master_ip — CommonFunctions</a>
|
|
163
|
+
|
|
164
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_email">::get_email — CommonFunctions</a>
|
|
165
|
+
|
|
166
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_from_yaml">::get_from_yaml — CommonFunctions</a>
|
|
167
|
+
|
|
168
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_head_node_ip">::get_head_node_ip — CommonFunctions</a>
|
|
169
|
+
|
|
170
|
+
<li class="method"><a href="VMTools.html#method-c-get_hybrid_creds">::get_hybrid_creds — VMTools</a>
|
|
171
|
+
|
|
172
|
+
<li class="method"><a href="VMTools.html#method-c-get_hybrid_env_vars">::get_hybrid_env_vars — VMTools</a>
|
|
173
|
+
|
|
174
|
+
<li class="method"><a href="VMTools.html#method-c-get_hybrid_machine">::get_hybrid_machine — VMTools</a>
|
|
175
|
+
|
|
176
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_infrastructure">::get_infrastructure — CommonFunctions</a>
|
|
177
|
+
|
|
178
|
+
<li class="method"><a href="VMTools.html#method-c-get_initial_layout">::get_initial_layout — VMTools</a>
|
|
179
|
+
|
|
180
|
+
<li class="method"><a href="VMTools.html#method-c-get_ips">::get_ips — VMTools</a>
|
|
181
|
+
|
|
182
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_ips_from_yaml">::get_ips_from_yaml — 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 — CommonFunctions</a>
|
|
185
|
+
|
|
186
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_load_balancer_id">::get_load_balancer_id — CommonFunctions</a>
|
|
187
|
+
|
|
188
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_load_balancer_ip">::get_load_balancer_ip — CommonFunctions</a>
|
|
189
|
+
|
|
190
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_login_ip">::get_login_ip — CommonFunctions</a>
|
|
191
|
+
|
|
192
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_password">::get_password — CommonFunctions</a>
|
|
193
|
+
|
|
194
|
+
<li class="method"><a href="VMTools.html#method-c-get_public_ips">::get_public_ips — VMTools</a>
|
|
195
|
+
|
|
196
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_random_alphanumeric">::get_random_alphanumeric — CommonFunctions</a>
|
|
197
|
+
|
|
198
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_remote_appscale_home">::get_remote_appscale_home — CommonFunctions</a>
|
|
199
|
+
|
|
200
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_role_from_nodes">::get_role_from_nodes — CommonFunctions</a>
|
|
201
|
+
|
|
202
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_secret_key">::get_secret_key — CommonFunctions</a>
|
|
203
|
+
|
|
204
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_table">::get_table — CommonFunctions</a>
|
|
205
|
+
|
|
206
|
+
<li class="method"><a href="UsageText.html#method-c-get_usage">::get_usage — UsageText</a>
|
|
207
|
+
|
|
208
|
+
<li class="method"><a href="CommonFunctions.html#method-c-get_username_from_options">::get_username_from_options — CommonFunctions</a>
|
|
209
|
+
|
|
210
|
+
<li class="method"><a href="ParseArgs.html#method-c-get_vals_from_args">::get_vals_from_args — ParseArgs</a>
|
|
211
|
+
|
|
212
|
+
<li class="method"><a href="VMTools.html#method-c-get_vmm_keys">::get_vmm_keys — VMTools</a>
|
|
213
|
+
|
|
214
|
+
<li class="method"><a href="UsageText.html#method-c-group">::group — UsageText</a>
|
|
215
|
+
|
|
216
|
+
<li class="method"><a href="UsageText.html#method-c-h">::h — UsageText</a>
|
|
217
|
+
|
|
218
|
+
<li class="method"><a href="UsageText.html#method-c-help">::help — UsageText</a>
|
|
219
|
+
|
|
220
|
+
<li class="method"><a href="UsageText.html#method-c-iaas">::iaas — UsageText</a>
|
|
221
|
+
|
|
222
|
+
<li class="method"><a href="UsageText.html#method-c-infrastructure">::infrastructure — UsageText</a>
|
|
223
|
+
|
|
224
|
+
<li class="method"><a href="UsageText.html#method-c-instance_type">::instance_type — UsageText</a>
|
|
225
|
+
|
|
226
|
+
<li class="method"><a href="UsageText.html#method-c-ips">::ips — UsageText</a>
|
|
227
|
+
|
|
228
|
+
<li class="method"><a href="CommonFunctions.html#method-c-is_port_open-3F">::is_port_open? — CommonFunctions</a>
|
|
229
|
+
|
|
230
|
+
<li class="method"><a href="UsageText.html#method-c-keyname">::keyname — UsageText</a>
|
|
231
|
+
|
|
232
|
+
<li class="method"><a href="VMTools.html#method-c-local_ip">::local_ip — VMTools</a>
|
|
233
|
+
|
|
234
|
+
<li class="method"><a href="VMTools.html#method-c-lookup_cloud_env">::lookup_cloud_env — VMTools</a>
|
|
235
|
+
|
|
236
|
+
<li class="method"><a href="UsageText.html#method-c-machine">::machine — UsageText</a>
|
|
237
|
+
|
|
238
|
+
<li class="method"><a href="CommonFunctions.html#method-c-make_appscale_directory">::make_appscale_directory — CommonFunctions</a>
|
|
239
|
+
|
|
240
|
+
<li class="method"><a href="UsageText.html#method-c-max">::max — UsageText</a>
|
|
241
|
+
|
|
242
|
+
<li class="method"><a href="UsageText.html#method-c-min">::min — UsageText</a>
|
|
243
|
+
|
|
244
|
+
<li class="method"><a href="CommonFunctions.html#method-c-move_app">::move_app — CommonFunctions</a>
|
|
245
|
+
|
|
246
|
+
<li class="method"><a href="UsageText.html#method-c-n">::n — UsageText</a>
|
|
247
|
+
|
|
248
|
+
<li class="method"><a href="NodeLayout.html#method-c-new">::new — NodeLayout</a>
|
|
249
|
+
|
|
250
|
+
<li class="method"><a href="AppControllerClient.html#method-c-new">::new — AppControllerClient</a>
|
|
251
|
+
|
|
252
|
+
<li class="method"><a href="Node.html#method-c-new">::new — Node</a>
|
|
253
|
+
|
|
254
|
+
<li class="method"><a href="UserAppClient.html#method-c-new">::new — UserAppClient</a>
|
|
255
|
+
|
|
256
|
+
<li class="method"><a href="VMTools.html#method-c-open_ports_in_cloud">::open_ports_in_cloud — VMTools</a>
|
|
257
|
+
|
|
258
|
+
<li class="method"><a href="RemoteLogging.html#method-c-post">::post — RemoteLogging</a>
|
|
259
|
+
|
|
260
|
+
<li class="method"><a href="UsageText.html#method-c-r">::r — UsageText</a>
|
|
261
|
+
|
|
262
|
+
<li class="method"><a href="CommonFunctions.html#method-c-read_file">::read_file — CommonFunctions</a>
|
|
263
|
+
|
|
264
|
+
<li class="method"><a href="CommonFunctions.html#method-c-read_nodes_json">::read_nodes_json — CommonFunctions</a>
|
|
265
|
+
|
|
266
|
+
<li class="method"><a href="RemoteLogging.html#method-c-remote_post">::remote_post — RemoteLogging</a>
|
|
267
|
+
|
|
268
|
+
<li class="method"><a href="GodInterface.html#method-c-remove">::remove — GodInterface</a>
|
|
269
|
+
|
|
270
|
+
<li class="method"><a href="AppScaleTools.html#method-c-remove_app">::remove_app — AppScaleTools</a>
|
|
271
|
+
|
|
272
|
+
<li class="method"><a href="CommonFunctions.html#method-c-require_commands">::require_commands — CommonFunctions</a>
|
|
273
|
+
|
|
274
|
+
<li class="method"><a href="AppScaleTools.html#method-c-reset_password">::reset_password — AppScaleTools</a>
|
|
275
|
+
|
|
276
|
+
<li class="method"><a href="UsageText.html#method-c-restore_from_tar">::restore_from_tar — UsageText</a>
|
|
277
|
+
|
|
278
|
+
<li class="method"><a href="UsageText.html#method-c-restore_neptune_info">::restore_neptune_info — UsageText</a>
|
|
279
|
+
|
|
280
|
+
<li class="method"><a href="CommonFunctions.html#method-c-rsync_files">::rsync_files — CommonFunctions</a>
|
|
281
|
+
|
|
282
|
+
<li class="method"><a href="AppScaleTools.html#method-c-run_instances">::run_instances — AppScaleTools</a>
|
|
283
|
+
|
|
284
|
+
<li class="method"><a href="CommonFunctions.html#method-c-run_remote_command">::run_remote_command — CommonFunctions</a>
|
|
285
|
+
|
|
286
|
+
<li class="method"><a href="UsageText.html#method-c-scp">::scp — UsageText</a>
|
|
287
|
+
|
|
288
|
+
<li class="method"><a href="CommonFunctions.html#method-c-scp_app_to_ip">::scp_app_to_ip — CommonFunctions</a>
|
|
289
|
+
|
|
290
|
+
<li class="method"><a href="CommonFunctions.html#method-c-scp_file">::scp_file — CommonFunctions</a>
|
|
291
|
+
|
|
292
|
+
<li class="method"><a href="VMTools.html#method-c-set_hybrid_creds">::set_hybrid_creds — VMTools</a>
|
|
293
|
+
|
|
294
|
+
<li class="method"><a href="CommonFunctions.html#method-c-shell">::shell — CommonFunctions</a>
|
|
295
|
+
|
|
296
|
+
<li class="method"><a href="GodInterface.html#method-c-shutdown">::shutdown — GodInterface</a>
|
|
297
|
+
|
|
298
|
+
<li class="method"><a href="CommonFunctions.html#method-c-sleep_until_port_is_closed">::sleep_until_port_is_closed — CommonFunctions</a>
|
|
299
|
+
|
|
300
|
+
<li class="method"><a href="CommonFunctions.html#method-c-sleep_until_port_is_open">::sleep_until_port_is_open — CommonFunctions</a>
|
|
301
|
+
|
|
302
|
+
<li class="method"><a href="VMTools.html#method-c-spawn_head_node">::spawn_head_node — VMTools</a>
|
|
303
|
+
|
|
304
|
+
<li class="method"><a href="VMTools.html#method-c-spawn_head_node_via_cloud">::spawn_head_node_via_cloud — VMTools</a>
|
|
305
|
+
|
|
306
|
+
<li class="method"><a href="VMTools.html#method-c-spawn_head_node_via_vmm">::spawn_head_node_via_vmm — VMTools</a>
|
|
307
|
+
|
|
308
|
+
<li class="method"><a href="VMTools.html#method-c-spawn_vms">::spawn_vms — VMTools</a>
|
|
309
|
+
|
|
310
|
+
<li class="method"><a href="GodInterface.html#method-c-start">::start — GodInterface</a>
|
|
311
|
+
|
|
312
|
+
<li class="method"><a href="GodInterface.html#method-c-start_god">::start_god — GodInterface</a>
|
|
313
|
+
|
|
314
|
+
<li class="method"><a href="CommonFunctions.html#method-c-start_head_node">::start_head_node — CommonFunctions</a>
|
|
315
|
+
|
|
316
|
+
<li class="method"><a href="GodInterface.html#method-c-stop">::stop — GodInterface</a>
|
|
317
|
+
|
|
318
|
+
<li class="method"><a href="UsageText.html#method-c-table">::table — UsageText</a>
|
|
319
|
+
|
|
320
|
+
<li class="method"><a href="VMTools.html#method-c-terminate_all_vms">::terminate_all_vms — VMTools</a>
|
|
321
|
+
|
|
322
|
+
<li class="method"><a href="VMTools.html#method-c-terminate_infrastructure_machines">::terminate_infrastructure_machines — VMTools</a>
|
|
323
|
+
|
|
324
|
+
<li class="method"><a href="AppScaleTools.html#method-c-terminate_instances">::terminate_instances — AppScaleTools</a>
|
|
325
|
+
|
|
326
|
+
<li class="method"><a href="UsageText.html#method-c-test">::test — UsageText</a>
|
|
327
|
+
|
|
328
|
+
<li class="method"><a href="CommonFunctions.html#method-c-update_appcontroller">::update_appcontroller — CommonFunctions</a>
|
|
329
|
+
|
|
330
|
+
<li class="method"><a href="CommonFunctions.html#method-c-update_locations_file">::update_locations_file — CommonFunctions</a>
|
|
331
|
+
|
|
332
|
+
<li class="method"><a href="AppScaleTools.html#method-c-upload_app">::upload_app — AppScaleTools</a>
|
|
333
|
+
|
|
334
|
+
<li class="method"><a href="UsageText.html#method-c-usage">::usage — UsageText</a>
|
|
335
|
+
|
|
336
|
+
<li class="method"><a href="CommonFunctions.html#method-c-user_has_cmd-3F">::user_has_cmd? — CommonFunctions</a>
|
|
337
|
+
|
|
338
|
+
<li class="method"><a href="UsageText.html#method-c-v">::v — UsageText</a>
|
|
339
|
+
|
|
340
|
+
<li class="method"><a href="CommonFunctions.html#method-c-validate_app_name">::validate_app_name — CommonFunctions</a>
|
|
341
|
+
|
|
342
|
+
<li class="method"><a href="UsageText.html#method-c-verbose">::verbose — UsageText</a>
|
|
343
|
+
|
|
344
|
+
<li class="method"><a href="VMTools.html#method-c-verify_credentials_are_set_correctly">::verify_credentials_are_set_correctly — VMTools</a>
|
|
345
|
+
|
|
346
|
+
<li class="method"><a href="VMTools.html#method-c-verify_credentials_exist">::verify_credentials_exist — VMTools</a>
|
|
347
|
+
|
|
348
|
+
<li class="method"><a href="VMTools.html#method-c-verify_ids">::verify_ids — VMTools</a>
|
|
349
|
+
|
|
350
|
+
<li class="method"><a href="UsageText.html#method-c-version">::version — UsageText</a>
|
|
351
|
+
|
|
352
|
+
<li class="method"><a href="UsageText.html#method-c-w">::w — UsageText</a>
|
|
353
|
+
|
|
354
|
+
<li class="method"><a href="CommonFunctions.html#method-c-wait_for_app_to_start">::wait_for_app_to_start — CommonFunctions</a>
|
|
355
|
+
|
|
356
|
+
<li class="method"><a href="CommonFunctions.html#method-c-wait_for_nodes_to_load">::wait_for_nodes_to_load — CommonFunctions</a>
|
|
357
|
+
|
|
358
|
+
<li class="method"><a href="CommonFunctions.html#method-c-wait_until_redirect">::wait_until_redirect — CommonFunctions</a>
|
|
359
|
+
|
|
360
|
+
<li class="method"><a href="CommonFunctions.html#method-c-warn_on_large_app_size">::warn_on_large_app_size — CommonFunctions</a>
|
|
361
|
+
|
|
362
|
+
<li class="method"><a href="CommonFunctions.html#method-c-write_and_copy_node_file">::write_and_copy_node_file — CommonFunctions</a>
|
|
363
|
+
|
|
364
|
+
<li class="method"><a href="CommonFunctions.html#method-c-write_file">::write_file — CommonFunctions</a>
|
|
365
|
+
|
|
366
|
+
<li class="method"><a href="CommonFunctions.html#method-c-write_node_file">::write_node_file — CommonFunctions</a>
|
|
367
|
+
|
|
368
|
+
<li class="method"><a href="CommonFunctions.html#method-c-write_nodes_json">::write_nodes_json — CommonFunctions</a>
|
|
369
|
+
|
|
370
|
+
<li class="method"><a href="Node.html#method-i-add_db_role">#add_db_role — Node</a>
|
|
371
|
+
|
|
372
|
+
<li class="method"><a href="UserAppClient.html#method-i-add_instance">#add_instance — UserAppClient</a>
|
|
373
|
+
|
|
374
|
+
<li class="method"><a href="Node.html#method-i-add_rabbitmq_role">#add_rabbitmq_role — Node</a>
|
|
375
|
+
|
|
376
|
+
<li class="method"><a href="Node.html#method-i-add_role">#add_role — Node</a>
|
|
377
|
+
|
|
378
|
+
<li class="method"><a href="AppControllerClient.html#method-i-app_is_running-3F">#app_is_running? — AppControllerClient</a>
|
|
379
|
+
|
|
380
|
+
<li class="method"><a href="UserAppClient.html#method-i-change_password">#change_password — UserAppClient</a>
|
|
381
|
+
|
|
382
|
+
<li class="method"><a href="UserAppClient.html#method-i-commit_new_app">#commit_new_app — UserAppClient</a>
|
|
383
|
+
|
|
384
|
+
<li class="method"><a href="UserAppClient.html#method-i-commit_new_app_name">#commit_new_app_name — UserAppClient</a>
|
|
385
|
+
|
|
386
|
+
<li class="method"><a href="UserAppClient.html#method-i-commit_new_user">#commit_new_user — UserAppClient</a>
|
|
387
|
+
|
|
388
|
+
<li class="method"><a href="UserAppClient.html#method-i-commit_tar">#commit_tar — UserAppClient</a>
|
|
389
|
+
|
|
390
|
+
<li class="method"><a href="NodeLayout.html#method-i-db_master">#db_master — NodeLayout</a>
|
|
391
|
+
|
|
392
|
+
<li class="method"><a href="UserAppClient.html#method-i-delete_app">#delete_app — UserAppClient</a>
|
|
393
|
+
|
|
394
|
+
<li class="method"><a href="UserAppClient.html#method-i-delete_instance">#delete_instance — UserAppClient</a>
|
|
395
|
+
|
|
396
|
+
<li class="method"><a href="UserAppClient.html#method-i-does_app_exist-3F">#does_app_exist? — UserAppClient</a>
|
|
397
|
+
|
|
398
|
+
<li class="method"><a href="UserAppClient.html#method-i-does_user_exist-3F">#does_user_exist? — UserAppClient</a>
|
|
399
|
+
|
|
400
|
+
<li class="method"><a href="AppControllerClient.html#method-i-done_uploading">#done_uploading — AppControllerClient</a>
|
|
401
|
+
|
|
402
|
+
<li class="method"><a href="NodeLayout.html#method-i-errors">#errors — NodeLayout</a>
|
|
403
|
+
|
|
404
|
+
<li class="method"><a href="Node.html#method-i-errors">#errors — Node</a>
|
|
405
|
+
|
|
406
|
+
<li class="method"><a href="Node.html#method-i-expand_roles">#expand_roles — Node</a>
|
|
407
|
+
|
|
408
|
+
<li class="method"><a href="NodeLayout.html#method-i-generate_cloud_layout">#generate_cloud_layout — NodeLayout</a>
|
|
409
|
+
|
|
410
|
+
<li class="method"><a href="UserAppClient.html#method-i-get_all_apps">#get_all_apps — UserAppClient</a>
|
|
411
|
+
|
|
412
|
+
<li class="method"><a href="AppControllerClient.html#method-i-get_all_public_ips">#get_all_public_ips — AppControllerClient</a>
|
|
413
|
+
|
|
414
|
+
<li class="method"><a href="UserAppClient.html#method-i-get_app_admin">#get_app_admin — UserAppClient</a>
|
|
415
|
+
|
|
416
|
+
<li class="method"><a href="UserAppClient.html#method-i-get_app_data">#get_app_data — UserAppClient</a>
|
|
417
|
+
|
|
418
|
+
<li class="method"><a href="AppControllerClient.html#method-i-get_role_info">#get_role_info — AppControllerClient</a>
|
|
419
|
+
|
|
420
|
+
<li class="method"><a href="AppControllerClient.html#method-i-get_status">#get_status — AppControllerClient</a>
|
|
421
|
+
|
|
422
|
+
<li class="method"><a href="UserAppClient.html#method-i-get_tar">#get_tar — UserAppClient</a>
|
|
423
|
+
|
|
424
|
+
<li class="method"><a href="AppControllerClient.html#method-i-get_userappserver_ip">#get_userappserver_ip — AppControllerClient</a>
|
|
425
|
+
|
|
426
|
+
<li class="method"><a href="NodeLayout.html#method-i-head_node">#head_node — NodeLayout</a>
|
|
427
|
+
|
|
428
|
+
<li class="method"><a href="NodeLayout.html#method-i-is_advanced_format-3F">#is_advanced_format? — NodeLayout</a>
|
|
429
|
+
|
|
430
|
+
<li class="method"><a href="AppControllerClient.html#method-i-is_done_initializing-3F">#is_done_initializing? — AppControllerClient</a>
|
|
431
|
+
|
|
432
|
+
<li class="method"><a href="AppControllerClient.html#method-i-is_done_loading-3F">#is_done_loading? — AppControllerClient</a>
|
|
433
|
+
|
|
434
|
+
<li class="method"><a href="AppControllerClient.html#method-i-is_live-3F">#is_live? — AppControllerClient</a>
|
|
435
|
+
|
|
436
|
+
<li class="method"><a href="NodeLayout.html#method-i-is_simple_format-3F">#is_simple_format? — NodeLayout</a>
|
|
437
|
+
|
|
438
|
+
<li class="method"><a href="AppControllerClient.html#method-i-kill">#kill — AppControllerClient</a>
|
|
439
|
+
|
|
440
|
+
<li class="method"><a href="NodeLayout.html#method-i-login_node">#login_node — NodeLayout</a>
|
|
441
|
+
|
|
442
|
+
<li class="method"><a href="UserAppClient.html#method-i-make_call">#make_call — UserAppClient</a>
|
|
443
|
+
|
|
444
|
+
<li class="method"><a href="AppControllerClient.html#method-i-make_call">#make_call — AppControllerClient</a>
|
|
445
|
+
|
|
446
|
+
<li class="method"><a href="NodeLayout.html#method-i-max_images">#max_images — NodeLayout</a>
|
|
447
|
+
|
|
448
|
+
<li class="method"><a href="NodeLayout.html#method-i-min_images">#min_images — NodeLayout</a>
|
|
449
|
+
|
|
450
|
+
<li class="method"><a href="NodeLayout.html#method-i-nodes">#nodes — NodeLayout</a>
|
|
451
|
+
|
|
452
|
+
<li class="method"><a href="NodeLayout.html#method-i-other_nodes">#other_nodes — NodeLayout</a>
|
|
453
|
+
|
|
454
|
+
<li class="method"><a href="NodeLayout.html#method-i-parse_ip">#parse_ip — NodeLayout</a>
|
|
455
|
+
|
|
456
|
+
<li class="method"><a href="NodeLayout.html#method-i-read_factor">#read_factor — NodeLayout</a>
|
|
457
|
+
|
|
458
|
+
<li class="method"><a href="NodeLayout.html#method-i-replication_factor">#replication_factor — NodeLayout</a>
|
|
459
|
+
|
|
460
|
+
<li class="method"><a href="UserAppClient.html#method-i-set_capabilities">#set_capabilities — UserAppClient</a>
|
|
461
|
+
|
|
462
|
+
<li class="method"><a href="UserAppClient.html#method-i-set_cloud_admin_capabilities">#set_cloud_admin_capabilities — UserAppClient</a>
|
|
463
|
+
|
|
464
|
+
<li class="method"><a href="UserAppClient.html#method-i-set_cloud_admin_status">#set_cloud_admin_status — UserAppClient</a>
|
|
465
|
+
|
|
466
|
+
<li class="method"><a href="AppControllerClient.html#method-i-set_parameters">#set_parameters — AppControllerClient</a>
|
|
467
|
+
|
|
468
|
+
<li class="method"><a href="AppControllerClient.html#method-i-status">#status — AppControllerClient</a>
|
|
469
|
+
|
|
470
|
+
<li class="method"><a href="AppControllerClient.html#method-i-stop_app">#stop_app — AppControllerClient</a>
|
|
471
|
+
|
|
472
|
+
<li class="method"><a href="NodeLayout.html#method-i-to_hash">#to_hash — NodeLayout</a>
|
|
473
|
+
|
|
474
|
+
<li class="method"><a href="AppControllerClient.html#method-i-update">#update — AppControllerClient</a>
|
|
475
|
+
|
|
476
|
+
<li class="method"><a href="Node.html#method-i-valid-3F">#valid? — Node</a>
|
|
477
|
+
|
|
478
|
+
<li class="method"><a href="NodeLayout.html#method-i-valid-3F">#valid? — NodeLayout</a>
|
|
479
|
+
|
|
480
|
+
<li class="method"><a href="NodeLayout.html#method-i-valid_advanced_format-3F">#valid_advanced_format? — NodeLayout</a>
|
|
481
|
+
|
|
482
|
+
<li class="method"><a href="NodeLayout.html#method-i-valid_database_replication-3F">#valid_database_replication? — NodeLayout</a>
|
|
483
|
+
|
|
484
|
+
<li class="method"><a href="NodeLayout.html#method-i-valid_simple_format-3F">#valid_simple_format? — NodeLayout</a>
|
|
485
|
+
|
|
486
|
+
<li class="method"><a href="NodeLayout.html#method-i-write_factor">#write_factor — 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
|
+
|