corl 0.4.29 → 0.5.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 (230) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -3
  3. data/Gemfile.lock +16 -13
  4. data/VERSION +1 -1
  5. data/bin/corl +21 -1
  6. data/bootstrap/os/ubuntu/00_base.sh +2 -2
  7. data/bootstrap/os/ubuntu/06_puppet.sh +7 -12
  8. data/bootstrap/os/ubuntu/09_nucleon.sh +1 -1
  9. data/bootstrap/os/ubuntu/10_corl.sh +1 -4
  10. data/corl.gemspec +193 -40
  11. data/lib/CORL/builder/identity.rb +68 -0
  12. data/lib/CORL/builder/package.rb +75 -0
  13. data/lib/CORL/configuration/file.rb +5 -5
  14. data/lib/CORL/machine/{aws.rb → AWS.rb} +2 -2
  15. data/lib/CORL/machine/physical.rb +1 -1
  16. data/lib/CORL/machine/rackspace.rb +1 -1
  17. data/lib/CORL/machine/vagrant.rb +2 -2
  18. data/lib/CORL/network/{default.rb → CORL.rb} +1 -1
  19. data/lib/CORL/node/{aws.rb → AWS.rb} +1 -1
  20. data/lib/CORL/node/local.rb +1 -1
  21. data/lib/CORL/node/vagrant.rb +7 -2
  22. data/lib/CORL/provisioner/puppetnode.rb +139 -131
  23. data/lib/core/build.rb +112 -0
  24. data/lib/core/facade.rb +48 -8
  25. data/lib/core/mixin/builder.rb +158 -0
  26. data/lib/core/mixin/lookup.rb +51 -20
  27. data/lib/core/mixin/machine/ssh.rb +16 -4
  28. data/lib/core/plugin/builder.rb +49 -0
  29. data/lib/core/plugin/{action.rb → cloud_action.rb} +22 -16
  30. data/lib/core/plugin/configuration.rb +9 -3
  31. data/lib/core/plugin/fog_machine.rb +3 -3
  32. data/lib/core/plugin/fog_node.rb +1 -1
  33. data/lib/core/plugin/machine.rb +2 -2
  34. data/lib/core/plugin/network.rb +39 -10
  35. data/lib/core/plugin/node.rb +95 -35
  36. data/lib/core/plugin/provisioner.rb +133 -113
  37. data/lib/core/util/puppet/resource.rb +1 -1
  38. data/lib/core/vagrant/actions/delete_cache.rb +7 -1
  39. data/lib/core/vagrant/commands/launcher.rb +2 -2
  40. data/lib/core/vagrant/config.rb +29 -2
  41. data/lib/corl.rb +9 -8
  42. data/lib/facter/corl_config_ready.rb +1 -1
  43. data/lib/facter/vagrant_exists.rb +1 -1
  44. data/lib/nucleon/action/cloud/create.rb +51 -0
  45. data/lib/nucleon/action/cloud/hiera.rb +61 -0
  46. data/lib/{CORL/action → nucleon/action/cloud}/images.rb +11 -2
  47. data/lib/nucleon/action/cloud/inspect.rb +47 -0
  48. data/lib/{CORL/action → nucleon/action/cloud}/machines.rb +11 -2
  49. data/lib/{CORL/action → nucleon/action/cloud}/regions.rb +11 -2
  50. data/lib/{CORL/action → nucleon/action/cloud}/vagrantfile.rb +11 -2
  51. data/lib/{CORL/action/ip.rb → nucleon/action/node/IP.rb} +11 -2
  52. data/lib/{CORL/action/ssh.rb → nucleon/action/node/SSH.rb} +15 -7
  53. data/lib/{CORL/action → nucleon/action/node}/authorize.rb +11 -2
  54. data/lib/{CORL/action → nucleon/action/node}/bootstrap.rb +13 -4
  55. data/lib/nucleon/action/node/build.rb +49 -0
  56. data/lib/{CORL/action → nucleon/action/node}/destroy.rb +14 -5
  57. data/lib/{CORL/action → nucleon/action/node}/exec.rb +11 -2
  58. data/lib/{CORL/action → nucleon/action/node}/facts.rb +12 -3
  59. data/lib/{CORL/action → nucleon/action/node}/image.rb +13 -4
  60. data/lib/nucleon/action/node/keypair.rb +85 -0
  61. data/lib/{CORL/action → nucleon/action/node}/lookup.rb +13 -4
  62. data/lib/{CORL/action → nucleon/action/node}/provision.rb +30 -8
  63. data/lib/{CORL/action → nucleon/action/node}/reboot.rb +13 -4
  64. data/lib/{CORL/action → nucleon/action/node}/revoke.rb +11 -2
  65. data/lib/{CORL/action → nucleon/action/node}/seed.rb +13 -4
  66. data/lib/{CORL/action → nucleon/action/node}/spawn.rb +19 -9
  67. data/lib/{CORL/action → nucleon/action/node}/start.rb +13 -4
  68. data/lib/{CORL/action → nucleon/action/node}/stop.rb +13 -4
  69. data/lib/{CORL → nucleon}/event/puppet.rb +2 -2
  70. data/lib/{CORL → nucleon}/template/environment.rb +2 -2
  71. data/lib/puppet/indirector/corl.rb +7 -4
  72. data/lib/puppet/parser/functions/corl_resources.rb +1 -0
  73. data/lib/puppet/parser/functions/global_array.rb +2 -1
  74. data/lib/puppet/parser/functions/global_hash.rb +2 -1
  75. data/lib/puppet/parser/functions/global_param.rb +2 -1
  76. data/lib/puppet/parser/functions/module_array.rb +2 -1
  77. data/lib/puppet/parser/functions/module_hash.rb +3 -2
  78. data/lib/puppet/parser/functions/module_param.rb +3 -2
  79. data/lib/puppet/parser/functions/render.rb +1 -0
  80. data/locales/en.yml +80 -0
  81. data/rdoc/site/0.4.29/CORL/Action/Authorize.html +485 -0
  82. data/rdoc/site/0.4.29/CORL/Action/Bootstrap.html +546 -0
  83. data/rdoc/site/0.4.29/CORL/Action/Build.html +396 -0
  84. data/rdoc/site/0.4.29/CORL/Action/Destroy.html +515 -0
  85. data/rdoc/site/0.4.29/CORL/Action/Exec.html +472 -0
  86. data/rdoc/site/0.4.29/CORL/Action/Facts.html +398 -0
  87. data/rdoc/site/0.4.29/CORL/Action/Image.html +515 -0
  88. data/rdoc/site/0.4.29/CORL/Action/Images.html +514 -0
  89. data/rdoc/site/0.4.29/CORL/Action/Ip.html +395 -0
  90. data/rdoc/site/0.4.29/CORL/Action/Keypair.html +494 -0
  91. data/rdoc/site/0.4.29/CORL/Action/Lookup.html +474 -0
  92. data/rdoc/site/0.4.29/CORL/Action/Machines.html +509 -0
  93. data/rdoc/site/0.4.29/CORL/Action/Provision.html +456 -0
  94. data/rdoc/site/0.4.29/CORL/Action/Reboot.html +515 -0
  95. data/rdoc/site/0.4.29/CORL/Action/Regions.html +509 -0
  96. data/rdoc/site/0.4.29/CORL/Action/Revoke.html +483 -0
  97. data/rdoc/site/0.4.29/CORL/Action/Seed.html +544 -0
  98. data/rdoc/site/0.4.29/CORL/Action/Spawn.html +616 -0
  99. data/rdoc/site/0.4.29/CORL/Action/Ssh.html +526 -0
  100. data/rdoc/site/0.4.29/CORL/Action/Start.html +515 -0
  101. data/rdoc/site/0.4.29/CORL/Action/Stop.html +515 -0
  102. data/rdoc/site/0.4.29/CORL/Action/Vagrantfile.html +457 -0
  103. data/rdoc/site/0.4.29/CORL/Action.html +360 -0
  104. data/rdoc/site/0.4.29/CORL/Configuration/File.html +1128 -0
  105. data/rdoc/site/0.4.29/CORL/Configuration.html +339 -0
  106. data/rdoc/site/0.4.29/CORL/Errors.html +339 -0
  107. data/rdoc/site/0.4.29/CORL/Event/Puppet.html +673 -0
  108. data/rdoc/site/0.4.29/CORL/Event.html +339 -0
  109. data/rdoc/site/0.4.29/CORL/Facade.html +742 -0
  110. data/rdoc/site/0.4.29/CORL/Machine/Aws.html +733 -0
  111. data/rdoc/site/0.4.29/CORL/Machine/Fog.html +1269 -0
  112. data/rdoc/site/0.4.29/CORL/Machine/Physical.html +1039 -0
  113. data/rdoc/site/0.4.29/CORL/Machine/Rackspace.html +514 -0
  114. data/rdoc/site/0.4.29/CORL/Machine/Vagrant.html +1300 -0
  115. data/rdoc/site/0.4.29/CORL/Machine.html +343 -0
  116. data/rdoc/site/0.4.29/CORL/Mixin/Action/Keypair.html +572 -0
  117. data/rdoc/site/0.4.29/CORL/Mixin/Action.html +339 -0
  118. data/rdoc/site/0.4.29/CORL/Mixin/Lookup.html +954 -0
  119. data/rdoc/site/0.4.29/CORL/Mixin/Machine/SSH.html +643 -0
  120. data/rdoc/site/0.4.29/CORL/Mixin/Machine.html +339 -0
  121. data/rdoc/site/0.4.29/CORL/Mixin/Macro/NetworkSettings.html +464 -0
  122. data/rdoc/site/0.4.29/CORL/Mixin/Macro.html +339 -0
  123. data/rdoc/site/0.4.29/CORL/Mixin.html +342 -0
  124. data/rdoc/site/0.4.29/CORL/Network/Default.html +391 -0
  125. data/rdoc/site/0.4.29/CORL/Network.html +339 -0
  126. data/rdoc/site/0.4.29/CORL/Node/Aws.html +716 -0
  127. data/rdoc/site/0.4.29/CORL/Node/Fog.html +1192 -0
  128. data/rdoc/site/0.4.29/CORL/Node/Local.html +424 -0
  129. data/rdoc/site/0.4.29/CORL/Node/Rackspace.html +709 -0
  130. data/rdoc/site/0.4.29/CORL/Node/Vagrant.html +1451 -0
  131. data/rdoc/site/0.4.29/CORL/Node.html +343 -0
  132. data/rdoc/site/0.4.29/CORL/Plugin/CloudAction.html +810 -0
  133. data/rdoc/site/0.4.29/CORL/Plugin.html +339 -0
  134. data/rdoc/site/0.4.29/CORL/Provisioner/Puppetnode.html +1095 -0
  135. data/rdoc/site/0.4.29/CORL/Provisioner.html +339 -0
  136. data/rdoc/site/0.4.29/CORL/Template/Environment.html +528 -0
  137. data/rdoc/site/0.4.29/CORL/Template.html +339 -0
  138. data/rdoc/site/0.4.29/CORL/Util/Puppet/Resource.html +1038 -0
  139. data/rdoc/site/0.4.29/CORL/Util/Puppet/ResourceGroup.html +920 -0
  140. data/rdoc/site/0.4.29/CORL/Util/Puppet.html +1087 -0
  141. data/rdoc/site/0.4.29/CORL/Util.html +341 -0
  142. data/rdoc/site/0.4.29/CORL/Vagrant/Config.html +896 -0
  143. data/rdoc/site/0.4.29/CORL/Vagrant.html +418 -0
  144. data/rdoc/site/0.4.29/CORL.html +465 -0
  145. data/rdoc/site/0.4.29/Facter/Util/Loader.html +396 -0
  146. data/rdoc/site/0.4.29/Facter/Util.html +339 -0
  147. data/rdoc/site/0.4.29/Facter.html +339 -0
  148. data/rdoc/site/0.4.29/Fog/Compute/AWS/Server.html +423 -0
  149. data/rdoc/site/0.4.29/Fog/Compute/AWS.html +345 -0
  150. data/rdoc/site/0.4.29/Fog/Compute/RackspaceV2/Server.html +408 -0
  151. data/rdoc/site/0.4.29/Fog/Compute/RackspaceV2.html +345 -0
  152. data/rdoc/site/0.4.29/Fog/Compute.html +340 -0
  153. data/rdoc/site/0.4.29/Fog.html +340 -0
  154. data/rdoc/site/0.4.29/Hiera/Backend.html +422 -0
  155. data/rdoc/site/0.4.29/Hiera/Corl_logger.html +449 -0
  156. data/rdoc/site/0.4.29/Hiera.html +346 -0
  157. data/rdoc/site/0.4.29/Nucleon/Config.html +357 -0
  158. data/rdoc/site/0.4.29/Nucleon/Plugin/Base.html +345 -0
  159. data/rdoc/site/0.4.29/Nucleon/Plugin/Configuration.html +1213 -0
  160. data/rdoc/site/0.4.29/Nucleon/Plugin/Machine.html +1279 -0
  161. data/rdoc/site/0.4.29/Nucleon/Plugin/Network.html +1425 -0
  162. data/rdoc/site/0.4.29/Nucleon/Plugin/Node.html +3715 -0
  163. data/rdoc/site/0.4.29/Nucleon/Plugin/Provisioner.html +1297 -0
  164. data/rdoc/site/0.4.29/Nucleon/Plugin.html +344 -0
  165. data/rdoc/site/0.4.29/Nucleon.html +344 -0
  166. data/rdoc/site/0.4.29/Object.html +358 -0
  167. data/rdoc/site/0.4.29/Puppet/DataBinding/Corl.html +345 -0
  168. data/rdoc/site/0.4.29/Puppet/DataBinding.html +338 -0
  169. data/rdoc/site/0.4.29/Puppet/Indirector/Corl.html +454 -0
  170. data/rdoc/site/0.4.29/Puppet/Indirector.html +338 -0
  171. data/rdoc/site/0.4.29/Puppet/Parser/Functions.html +480 -0
  172. data/rdoc/site/0.4.29/Puppet/Parser.html +338 -0
  173. data/rdoc/site/0.4.29/Puppet.html +338 -0
  174. data/rdoc/site/0.4.29/README_rdoc.html +340 -0
  175. data/rdoc/site/0.4.29/Vagrant/Config/Loader.html +399 -0
  176. data/rdoc/site/0.4.29/Vagrant/Config.html +339 -0
  177. data/rdoc/site/0.4.29/Vagrant/Vagrantfile.html +392 -0
  178. data/rdoc/site/0.4.29/Vagrant.html +346 -0
  179. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Action/DeleteCache.html +396 -0
  180. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Action/InitKeys.html +408 -0
  181. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Action/LinkNetwork.html +406 -0
  182. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Action.html +341 -0
  183. data/rdoc/site/0.4.29/VagrantPlugins/CORL/BaseAction.html +491 -0
  184. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Command/Launcher.html +533 -0
  185. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Command.html +339 -0
  186. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Config/CORL.html +732 -0
  187. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Config.html +339 -0
  188. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Plugin.html +345 -0
  189. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Provisioner/CORL.html +536 -0
  190. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Provisioner.html +339 -0
  191. data/rdoc/site/0.4.29/VagrantPlugins/CORL.html +346 -0
  192. data/rdoc/site/0.4.29/VagrantPlugins.html +346 -0
  193. data/rdoc/site/0.4.29/created.rid +96 -0
  194. data/rdoc/site/0.4.29/images/add.png +0 -0
  195. data/rdoc/site/0.4.29/images/brick.png +0 -0
  196. data/rdoc/site/0.4.29/images/brick_link.png +0 -0
  197. data/rdoc/site/0.4.29/images/bug.png +0 -0
  198. data/rdoc/site/0.4.29/images/bullet_black.png +0 -0
  199. data/rdoc/site/0.4.29/images/bullet_toggle_minus.png +0 -0
  200. data/rdoc/site/0.4.29/images/bullet_toggle_plus.png +0 -0
  201. data/rdoc/site/0.4.29/images/date.png +0 -0
  202. data/rdoc/site/0.4.29/images/delete.png +0 -0
  203. data/rdoc/site/0.4.29/images/find.png +0 -0
  204. data/rdoc/site/0.4.29/images/loadingAnimation.gif +0 -0
  205. data/rdoc/site/0.4.29/images/macFFBgHack.png +0 -0
  206. data/rdoc/site/0.4.29/images/package.png +0 -0
  207. data/rdoc/site/0.4.29/images/page_green.png +0 -0
  208. data/rdoc/site/0.4.29/images/page_white_text.png +0 -0
  209. data/rdoc/site/0.4.29/images/page_white_width.png +0 -0
  210. data/rdoc/site/0.4.29/images/plugin.png +0 -0
  211. data/rdoc/site/0.4.29/images/ruby.png +0 -0
  212. data/rdoc/site/0.4.29/images/tag_blue.png +0 -0
  213. data/rdoc/site/0.4.29/images/tag_green.png +0 -0
  214. data/rdoc/site/0.4.29/images/transparent.png +0 -0
  215. data/rdoc/site/0.4.29/images/wrench.png +0 -0
  216. data/rdoc/site/0.4.29/images/wrench_orange.png +0 -0
  217. data/rdoc/site/0.4.29/images/zoom.png +0 -0
  218. data/rdoc/site/0.4.29/index.html +339 -0
  219. data/rdoc/site/0.4.29/js/darkfish.js +155 -0
  220. data/rdoc/site/0.4.29/js/jquery.js +18 -0
  221. data/rdoc/site/0.4.29/js/navigation.js +142 -0
  222. data/rdoc/site/0.4.29/js/search.js +94 -0
  223. data/rdoc/site/0.4.29/js/search_index.js +1 -0
  224. data/rdoc/site/0.4.29/js/searcher.js +228 -0
  225. data/rdoc/site/0.4.29/rdoc.css +543 -0
  226. data/rdoc/site/0.4.29/table_of_contents.html +1561 -0
  227. metadata +192 -45
  228. data/lib/CORL/action/build.rb +0 -22
  229. data/lib/CORL/action/keypair.rb +0 -56
  230. data/lib/core/mod/facter_loader.rb +0 -15
@@ -0,0 +1,1561 @@
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 - corl 0.4.29</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 - corl 0.4.29</h1>
25
+
26
+ <h2>Pages</h2>
27
+ <ul>
28
+ <li class="file">
29
+ <a href="README_rdoc.html">README</a>
30
+
31
+ <img class="toc-toggle" src="images/transparent.png" alt="" title="toggle headings">
32
+ <ul class="initially-hidden">
33
+ <li><a href="README_rdoc.html#label-Contributing+to+CORL">Contributing to CORL</a>
34
+ <li><a href="README_rdoc.html#label-Copyright">Copyright</a>
35
+ </ul>
36
+ </li>
37
+
38
+ </ul>
39
+
40
+ <h2 id="classes">Classes/Modules</h2>
41
+ <ul>
42
+ <li class="module">
43
+ <a href="CORL.html">CORL</a>
44
+ </li>
45
+ <li class="module">
46
+ <a href="CORL/Action.html">CORL::Action</a>
47
+ </li>
48
+ <li class="class">
49
+ <a href="CORL/Action/Authorize.html">CORL::Action::Authorize</a>
50
+ </li>
51
+ <li class="class">
52
+ <a href="CORL/Action/Bootstrap.html">CORL::Action::Bootstrap</a>
53
+ </li>
54
+ <li class="class">
55
+ <a href="CORL/Action/Build.html">CORL::Action::Build</a>
56
+ </li>
57
+ <li class="class">
58
+ <a href="CORL/Action/Destroy.html">CORL::Action::Destroy</a>
59
+ </li>
60
+ <li class="class">
61
+ <a href="CORL/Action/Exec.html">CORL::Action::Exec</a>
62
+ </li>
63
+ <li class="class">
64
+ <a href="CORL/Action/Facts.html">CORL::Action::Facts</a>
65
+ </li>
66
+ <li class="class">
67
+ <a href="CORL/Action/Image.html">CORL::Action::Image</a>
68
+ </li>
69
+ <li class="class">
70
+ <a href="CORL/Action/Images.html">CORL::Action::Images</a>
71
+ </li>
72
+ <li class="class">
73
+ <a href="CORL/Action/Ip.html">CORL::Action::Ip</a>
74
+ </li>
75
+ <li class="class">
76
+ <a href="CORL/Action/Keypair.html">CORL::Action::Keypair</a>
77
+ </li>
78
+ <li class="class">
79
+ <a href="CORL/Action/Lookup.html">CORL::Action::Lookup</a>
80
+ </li>
81
+ <li class="class">
82
+ <a href="CORL/Action/Machines.html">CORL::Action::Machines</a>
83
+ </li>
84
+ <li class="class">
85
+ <a href="CORL/Action/Provision.html">CORL::Action::Provision</a>
86
+ </li>
87
+ <li class="class">
88
+ <a href="CORL/Action/Reboot.html">CORL::Action::Reboot</a>
89
+ </li>
90
+ <li class="class">
91
+ <a href="CORL/Action/Regions.html">CORL::Action::Regions</a>
92
+ </li>
93
+ <li class="class">
94
+ <a href="CORL/Action/Revoke.html">CORL::Action::Revoke</a>
95
+ </li>
96
+ <li class="class">
97
+ <a href="CORL/Action/Seed.html">CORL::Action::Seed</a>
98
+ </li>
99
+ <li class="class">
100
+ <a href="CORL/Action/Spawn.html">CORL::Action::Spawn</a>
101
+ </li>
102
+ <li class="class">
103
+ <a href="CORL/Action/Ssh.html">CORL::Action::Ssh</a>
104
+ </li>
105
+ <li class="class">
106
+ <a href="CORL/Action/Start.html">CORL::Action::Start</a>
107
+ </li>
108
+ <li class="class">
109
+ <a href="CORL/Action/Stop.html">CORL::Action::Stop</a>
110
+ </li>
111
+ <li class="class">
112
+ <a href="CORL/Action/Vagrantfile.html">CORL::Action::Vagrantfile</a>
113
+ </li>
114
+ <li class="module">
115
+ <a href="CORL/Configuration.html">CORL::Configuration</a>
116
+ </li>
117
+ <li class="class">
118
+ <a href="CORL/Configuration/File.html">CORL::Configuration::File</a>
119
+ </li>
120
+ <li class="module">
121
+ <a href="CORL/Errors.html">CORL::Errors</a>
122
+ </li>
123
+ <li class="module">
124
+ <a href="CORL/Event.html">CORL::Event</a>
125
+ </li>
126
+ <li class="class">
127
+ <a href="CORL/Event/Puppet.html">CORL::Event::Puppet</a>
128
+ </li>
129
+ <li class="module">
130
+ <a href="CORL/Facade.html">CORL::Facade</a>
131
+ </li>
132
+ <li class="module">
133
+ <a href="CORL/Machine.html">CORL::Machine</a>
134
+ </li>
135
+ <li class="class">
136
+ <a href="CORL/Machine/Aws.html">CORL::Machine::Aws</a>
137
+ </li>
138
+ <li class="class">
139
+ <a href="CORL/Machine/Fog.html">CORL::Machine::Fog</a>
140
+ </li>
141
+ <li class="class">
142
+ <a href="CORL/Machine/Physical.html">CORL::Machine::Physical</a>
143
+ </li>
144
+ <li class="class">
145
+ <a href="CORL/Machine/Rackspace.html">CORL::Machine::Rackspace</a>
146
+ </li>
147
+ <li class="class">
148
+ <a href="CORL/Machine/Vagrant.html">CORL::Machine::Vagrant</a>
149
+ </li>
150
+ <li class="module">
151
+ <a href="CORL/Mixin.html">CORL::Mixin</a>
152
+ </li>
153
+ <li class="module">
154
+ <a href="CORL/Mixin/Action.html">CORL::Mixin::Action</a>
155
+ </li>
156
+ <li class="module">
157
+ <a href="CORL/Mixin/Action/Keypair.html">CORL::Mixin::Action::Keypair</a>
158
+ </li>
159
+ <li class="module">
160
+ <a href="CORL/Mixin/Lookup.html">CORL::Mixin::Lookup</a>
161
+ </li>
162
+ <li class="module">
163
+ <a href="CORL/Mixin/Machine.html">CORL::Mixin::Machine</a>
164
+ </li>
165
+ <li class="module">
166
+ <a href="CORL/Mixin/Machine/SSH.html">CORL::Mixin::Machine::SSH</a>
167
+ </li>
168
+ <li class="module">
169
+ <a href="CORL/Mixin/Macro.html">CORL::Mixin::Macro</a>
170
+ </li>
171
+ <li class="module">
172
+ <a href="CORL/Mixin/Macro/NetworkSettings.html">CORL::Mixin::Macro::NetworkSettings</a>
173
+ </li>
174
+ <li class="module">
175
+ <a href="CORL/Network.html">CORL::Network</a>
176
+ </li>
177
+ <li class="class">
178
+ <a href="CORL/Network/Default.html">CORL::Network::Default</a>
179
+ </li>
180
+ <li class="module">
181
+ <a href="CORL/Node.html">CORL::Node</a>
182
+ </li>
183
+ <li class="class">
184
+ <a href="CORL/Node/Aws.html">CORL::Node::Aws</a>
185
+ </li>
186
+ <li class="class">
187
+ <a href="CORL/Node/Fog.html">CORL::Node::Fog</a>
188
+ </li>
189
+ <li class="class">
190
+ <a href="CORL/Node/Local.html">CORL::Node::Local</a>
191
+ </li>
192
+ <li class="class">
193
+ <a href="CORL/Node/Rackspace.html">CORL::Node::Rackspace</a>
194
+ </li>
195
+ <li class="class">
196
+ <a href="CORL/Node/Vagrant.html">CORL::Node::Vagrant</a>
197
+ </li>
198
+ <li class="module">
199
+ <a href="CORL/Plugin.html">CORL::Plugin</a>
200
+ </li>
201
+ <li class="class">
202
+ <a href="CORL/Plugin/CloudAction.html">CORL::Plugin::CloudAction</a>
203
+ </li>
204
+ <li class="module">
205
+ <a href="CORL/Provisioner.html">CORL::Provisioner</a>
206
+ </li>
207
+ <li class="class">
208
+ <a href="CORL/Provisioner/Puppetnode.html">CORL::Provisioner::Puppetnode</a>
209
+ </li>
210
+ <li class="module">
211
+ <a href="CORL/Template.html">CORL::Template</a>
212
+ </li>
213
+ <li class="class">
214
+ <a href="CORL/Template/Environment.html">CORL::Template::Environment</a>
215
+ </li>
216
+ <li class="module">
217
+ <a href="CORL/Util.html">CORL::Util</a>
218
+ </li>
219
+ <li class="module">
220
+ <a href="CORL/Util/Puppet.html">CORL::Util::Puppet</a>
221
+ </li>
222
+ <li class="class">
223
+ <a href="CORL/Util/Puppet/Resource.html">CORL::Util::Puppet::Resource</a>
224
+ </li>
225
+ <li class="class">
226
+ <a href="CORL/Util/Puppet/ResourceGroup.html">CORL::Util::Puppet::ResourceGroup</a>
227
+ </li>
228
+ <li class="module">
229
+ <a href="CORL/Vagrant.html">CORL::Vagrant</a>
230
+ </li>
231
+ <li class="module">
232
+ <a href="CORL/Vagrant/Config.html">CORL::Vagrant::Config</a>
233
+ </li>
234
+ <li class="module">
235
+ <a href="VagrantPlugins.html">VagrantPlugins</a>
236
+ </li>
237
+ <li class="module">
238
+ <a href="VagrantPlugins/CORL.html">VagrantPlugins::CORL</a>
239
+ </li>
240
+ <li class="module">
241
+ <a href="VagrantPlugins/CORL/Action.html">VagrantPlugins::CORL::Action</a>
242
+ </li>
243
+ <li class="class">
244
+ <a href="VagrantPlugins/CORL/Action/DeleteCache.html">VagrantPlugins::CORL::Action::DeleteCache</a>
245
+ </li>
246
+ <li class="class">
247
+ <a href="VagrantPlugins/CORL/Action/InitKeys.html">VagrantPlugins::CORL::Action::InitKeys</a>
248
+ </li>
249
+ <li class="class">
250
+ <a href="VagrantPlugins/CORL/Action/LinkNetwork.html">VagrantPlugins::CORL::Action::LinkNetwork</a>
251
+ </li>
252
+ <li class="class">
253
+ <a href="VagrantPlugins/CORL/BaseAction.html">VagrantPlugins::CORL::BaseAction</a>
254
+ </li>
255
+ <li class="module">
256
+ <a href="VagrantPlugins/CORL/Command.html">VagrantPlugins::CORL::Command</a>
257
+ </li>
258
+ <li class="class">
259
+ <a href="VagrantPlugins/CORL/Command/Launcher.html">VagrantPlugins::CORL::Command::Launcher</a>
260
+ </li>
261
+ <li class="module">
262
+ <a href="VagrantPlugins/CORL/Config.html">VagrantPlugins::CORL::Config</a>
263
+ </li>
264
+ <li class="class">
265
+ <a href="VagrantPlugins/CORL/Config/CORL.html">VagrantPlugins::CORL::Config::CORL</a>
266
+ </li>
267
+ <li class="class">
268
+ <a href="VagrantPlugins/CORL/Plugin.html">VagrantPlugins::CORL::Plugin</a>
269
+ </li>
270
+ <li class="module">
271
+ <a href="VagrantPlugins/CORL/Provisioner.html">VagrantPlugins::CORL::Provisioner</a>
272
+ </li>
273
+ <li class="class">
274
+ <a href="VagrantPlugins/CORL/Provisioner/CORL.html">VagrantPlugins::CORL::Provisioner::CORL</a>
275
+ </li>
276
+ <li class="module">
277
+ <a href="Nucleon.html">Nucleon</a>
278
+ </li>
279
+ <li class="class">
280
+ <a href="Nucleon/Config.html">Nucleon::Config</a>
281
+ </li>
282
+ <li class="module">
283
+ <a href="Nucleon/Plugin.html">Nucleon::Plugin</a>
284
+ </li>
285
+ <li class="class">
286
+ <a href="Nucleon/Plugin/Base.html">Nucleon::Plugin::Base</a>
287
+ </li>
288
+ <li class="class">
289
+ <a href="Nucleon/Plugin/Configuration.html">Nucleon::Plugin::Configuration</a>
290
+ </li>
291
+ <li class="class">
292
+ <a href="Nucleon/Plugin/Machine.html">Nucleon::Plugin::Machine</a>
293
+ </li>
294
+ <li class="class">
295
+ <a href="Nucleon/Plugin/Network.html">Nucleon::Plugin::Network</a>
296
+ </li>
297
+ <li class="class">
298
+ <a href="Nucleon/Plugin/Node.html">Nucleon::Plugin::Node</a>
299
+ </li>
300
+ <li class="class">
301
+ <a href="Nucleon/Plugin/Provisioner.html">Nucleon::Plugin::Provisioner</a>
302
+ </li>
303
+ <li class="module">
304
+ <a href="Puppet.html">Puppet</a>
305
+ </li>
306
+ <li class="module">
307
+ <a href="Puppet/DataBinding.html">Puppet::DataBinding</a>
308
+ </li>
309
+ <li class="class">
310
+ <a href="Puppet/DataBinding/Corl.html">Puppet::DataBinding::Corl</a>
311
+ </li>
312
+ <li class="module">
313
+ <a href="Puppet/Indirector.html">Puppet::Indirector</a>
314
+ </li>
315
+ <li class="class">
316
+ <a href="Puppet/Indirector/Corl.html">Puppet::Indirector::Corl</a>
317
+ </li>
318
+ <li class="module">
319
+ <a href="Puppet/Parser.html">Puppet::Parser</a>
320
+ </li>
321
+ <li class="module">
322
+ <a href="Puppet/Parser/Functions.html">Puppet::Parser::Functions</a>
323
+ </li>
324
+ <li class="module">
325
+ <a href="Fog.html">Fog</a>
326
+ </li>
327
+ <li class="module">
328
+ <a href="Fog/Compute.html">Fog::Compute</a>
329
+ </li>
330
+ <li class="class">
331
+ <a href="Fog/Compute/AWS.html">Fog::Compute::AWS</a>
332
+ </li>
333
+ <li class="class">
334
+ <a href="Fog/Compute/AWS/Server.html">Fog::Compute::AWS::Server</a>
335
+ </li>
336
+ <li class="class">
337
+ <a href="Fog/Compute/RackspaceV2.html">Fog::Compute::RackspaceV2</a>
338
+ </li>
339
+ <li class="class">
340
+ <a href="Fog/Compute/RackspaceV2/Server.html">Fog::Compute::RackspaceV2::Server</a>
341
+ </li>
342
+ <li class="module">
343
+ <a href="Vagrant.html">Vagrant</a>
344
+ </li>
345
+ <li class="module">
346
+ <a href="Vagrant/Config.html">Vagrant::Config</a>
347
+ </li>
348
+ <li class="class">
349
+ <a href="Vagrant/Config/Loader.html">Vagrant::Config::Loader</a>
350
+ </li>
351
+ <li class="class">
352
+ <a href="Vagrant/Vagrantfile.html">Vagrant::Vagrantfile</a>
353
+ </li>
354
+ <li class="module">
355
+ <a href="Facter.html">Facter</a>
356
+ </li>
357
+ <li class="module">
358
+ <a href="Facter/Util.html">Facter::Util</a>
359
+ </li>
360
+ <li class="class">
361
+ <a href="Facter/Util/Loader.html">Facter::Util::Loader</a>
362
+ </li>
363
+ <li class="class">
364
+ <a href="Hiera.html">Hiera</a>
365
+ </li>
366
+ <li class="module">
367
+ <a href="Hiera/Backend.html">Hiera::Backend</a>
368
+ </li>
369
+ <li class="module">
370
+ <a href="Hiera/Corl_logger.html">Hiera::Corl_logger</a>
371
+ </li>
372
+ <li class="class">
373
+ <a href="Object.html">Object</a>
374
+ </li>
375
+
376
+ </ul>
377
+
378
+ <h2 id="methods">Methods</h2>
379
+ <ul>
380
+
381
+ <li class="method"><a href="CORL.html#method-c-VERSION">::VERSION &mdash; CORL</a>
382
+
383
+ <li class="method"><a href="CORL/Util/Puppet.html#method-c-add">::add &mdash; CORL::Util::Puppet</a>
384
+
385
+ <li class="method"><a href="CORL/Util/Puppet.html#method-c-add_class">::add_class &mdash; CORL::Util::Puppet</a>
386
+
387
+ <li class="method"><a href="CORL/Util/Puppet.html#method-c-add_definition">::add_definition &mdash; CORL::Util::Puppet</a>
388
+
389
+ <li class="method"><a href="CORL/Util/Puppet.html#method-c-add_resource">::add_resource &mdash; CORL::Util::Puppet</a>
390
+
391
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-c-build_info">::build_info &mdash; Nucleon::Plugin::Provisioner</a>
392
+
393
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-c-build_info">::build_info &mdash; Nucleon::Plugin::Node</a>
394
+
395
+ <li class="method"><a href="CORL/Vagrant.html#method-c-command">::command &mdash; CORL::Vagrant</a>
396
+
397
+ <li class="method"><a href="CORL/Vagrant.html#method-c-command-3D">::command= &mdash; CORL::Vagrant</a>
398
+
399
+ <li class="method"><a href="CORL/Vagrant/Config.html#method-c-configure_provisioner">::configure_provisioner &mdash; CORL::Vagrant::Config</a>
400
+
401
+ <li class="method"><a href="CORL/Vagrant/Config.html#method-c-configure_shares">::configure_shares &mdash; CORL::Vagrant::Config</a>
402
+
403
+ <li class="method"><a href="CORL/Vagrant/Config.html#method-c-configure_ssh">::configure_ssh &mdash; CORL::Vagrant::Config</a>
404
+
405
+ <li class="method"><a href="CORL/Vagrant/Config.html#method-c-configure_vagrant">::configure_vagrant &mdash; CORL::Vagrant::Config</a>
406
+
407
+ <li class="method"><a href="CORL/Vagrant/Config.html#method-c-configure_vm">::configure_vm &mdash; CORL::Vagrant::Config</a>
408
+
409
+ <li class="method"><a href="Hiera/Corl_logger.html#method-c-debug">::debug &mdash; Hiera::Corl_logger</a>
410
+
411
+ <li class="method"><a href="CORL/Util/Puppet.html#method-c-debug_resource">::debug_resource &mdash; CORL::Util::Puppet</a>
412
+
413
+ <li class="method"><a href="CORL/Util/Puppet.html#method-c-each_module">::each_module &mdash; CORL::Util::Puppet</a>
414
+
415
+ <li class="method"><a href="CORL/Util/Puppet.html#method-c-import">::import &mdash; CORL::Util::Puppet</a>
416
+
417
+ <li class="method"><a href="CORL/Util/Puppet.html#method-c-include">::include &mdash; CORL::Util::Puppet</a>
418
+
419
+ <li class="method"><a href="CORL.html#method-c-lib_path">::lib_path &mdash; CORL</a>
420
+
421
+ <li class="method"><a href="CORL/Vagrant/Config.html#method-c-load_network">::load_network &mdash; CORL::Vagrant::Config</a>
422
+
423
+ <li class="method"><a href="CORL/Util/Puppet.html#method-c-logger">::logger &mdash; CORL::Util::Puppet</a>
424
+
425
+ <li class="method"><a href="Hiera/Backend.html#method-c-lookup">::lookup &mdash; Hiera::Backend</a>
426
+
427
+ <li class="method"><a href="CORL/Util/Puppet.html#method-c-lookup">::lookup &mdash; CORL::Util::Puppet</a>
428
+
429
+ <li class="method"><a href="CORL/Util/Puppet.html#method-c-namevar">::namevar &mdash; CORL::Util::Puppet</a>
430
+
431
+ <li class="method"><a href="CORL/Vagrant/Config.html#method-c-network">::network &mdash; CORL::Vagrant::Config</a>
432
+
433
+ <li class="method"><a href="CORL/Vagrant/Config.html#method-c-network-3D">::network= &mdash; CORL::Vagrant::Config</a>
434
+
435
+ <li class="method"><a href="Puppet/Indirector/Corl.html#method-c-new">::new &mdash; Puppet::Indirector::Corl</a>
436
+
437
+ <li class="method"><a href="VagrantPlugins/CORL/Config/CORL.html#method-c-new">::new &mdash; VagrantPlugins::CORL::Config::CORL</a>
438
+
439
+ <li class="method"><a href="CORL/Util/Puppet/Resource.html#method-c-new">::new &mdash; CORL::Util::Puppet::Resource</a>
440
+
441
+ <li class="method"><a href="VagrantPlugins/CORL/BaseAction.html#method-c-new">::new &mdash; VagrantPlugins::CORL::BaseAction</a>
442
+
443
+ <li class="method"><a href="VagrantPlugins/CORL/Provisioner/CORL.html#method-c-new">::new &mdash; VagrantPlugins::CORL::Provisioner::CORL</a>
444
+
445
+ <li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-c-new">::new &mdash; CORL::Util::Puppet::ResourceGroup</a>
446
+
447
+ <li class="method"><a href="CORL/Vagrant/Config.html#method-c-parse_params">::parse_params &mdash; CORL::Vagrant::Config</a>
448
+
449
+ <li class="method"><a href="CORL/Vagrant/Config.html#method-c-register">::register &mdash; CORL::Vagrant::Config</a>
450
+
451
+ <li class="method"><a href="CORL/Util/Puppet.html#method-c-register_plugins">::register_plugins &mdash; CORL::Util::Puppet</a>
452
+
453
+ <li class="method"><a href="CORL/Util/Puppet/Resource.html#method-c-render">::render &mdash; CORL::Util::Puppet::Resource</a>
454
+
455
+ <li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-c-status">::status &mdash; CORL::Provisioner::Puppetnode</a>
456
+
457
+ <li class="method"><a href="Hiera/Corl_logger.html#method-c-suitable-3F">::suitable? &mdash; Hiera::Corl_logger</a>
458
+
459
+ <li class="method"><a href="VagrantPlugins/CORL/Command/Launcher.html#method-c-synopsis">::synopsis &mdash; VagrantPlugins::CORL::Command::Launcher</a>
460
+
461
+ <li class="method"><a href="CORL/Util/Puppet.html#method-c-to_name">::to_name &mdash; CORL::Util::Puppet</a>
462
+
463
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-c-translate">::translate &mdash; Nucleon::Plugin::Node</a>
464
+
465
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-c-translate">::translate &mdash; Nucleon::Plugin::Provisioner</a>
466
+
467
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-c-translate_reference">::translate_reference &mdash; Nucleon::Plugin::Provisioner</a>
468
+
469
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-c-translate_reference">::translate_reference &mdash; Nucleon::Plugin::Node</a>
470
+
471
+ <li class="method"><a href="CORL/Util/Puppet.html#method-c-type_info">::type_info &mdash; CORL::Util::Puppet</a>
472
+
473
+ <li class="method"><a href="CORL/Util/Puppet.html#method-c-type_name">::type_name &mdash; CORL::Util::Puppet</a>
474
+
475
+ <li class="method"><a href="Hiera/Corl_logger.html#method-c-warn">::warn &mdash; Hiera::Corl_logger</a>
476
+
477
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-action">#action &mdash; Nucleon::Plugin::Node</a>
478
+
479
+ <li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-add">#add &mdash; CORL::Util::Puppet::ResourceGroup</a>
480
+
481
+ <li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-add_composite_resource">#add_composite_resource &mdash; CORL::Util::Puppet::ResourceGroup</a>
482
+
483
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-add_node">#add_node &mdash; Nucleon::Plugin::Network</a>
484
+
485
+ <li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-add_search_path">#add_search_path &mdash; CORL::Provisioner::Puppetnode</a>
486
+
487
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-api_key">#api_key &mdash; CORL::Node::Fog</a>
488
+
489
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-api_key-3D">#api_key= &mdash; CORL::Node::Fog</a>
490
+
491
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-api_user">#api_user &mdash; CORL::Node::Fog</a>
492
+
493
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-api_user-3D">#api_user= &mdash; CORL::Node::Fog</a>
494
+
495
+ <li class="method"><a href="CORL/Action/Image.html#method-i-arguments">#arguments &mdash; CORL::Action::Image</a>
496
+
497
+ <li class="method"><a href="CORL/Action/Ssh.html#method-i-arguments">#arguments &mdash; CORL::Action::Ssh</a>
498
+
499
+ <li class="method"><a href="CORL/Action/Spawn.html#method-i-arguments">#arguments &mdash; CORL::Action::Spawn</a>
500
+
501
+ <li class="method"><a href="CORL/Action/Seed.html#method-i-arguments">#arguments &mdash; CORL::Action::Seed</a>
502
+
503
+ <li class="method"><a href="CORL/Action/Images.html#method-i-arguments">#arguments &mdash; CORL::Action::Images</a>
504
+
505
+ <li class="method"><a href="CORL/Action/Start.html#method-i-arguments">#arguments &mdash; CORL::Action::Start</a>
506
+
507
+ <li class="method"><a href="CORL/Action/Reboot.html#method-i-arguments">#arguments &mdash; CORL::Action::Reboot</a>
508
+
509
+ <li class="method"><a href="CORL/Action/Exec.html#method-i-arguments">#arguments &mdash; CORL::Action::Exec</a>
510
+
511
+ <li class="method"><a href="CORL/Action/Bootstrap.html#method-i-arguments">#arguments &mdash; CORL::Action::Bootstrap</a>
512
+
513
+ <li class="method"><a href="CORL/Action/Stop.html#method-i-arguments">#arguments &mdash; CORL::Action::Stop</a>
514
+
515
+ <li class="method"><a href="CORL/Action/Revoke.html#method-i-arguments">#arguments &mdash; CORL::Action::Revoke</a>
516
+
517
+ <li class="method"><a href="CORL/Action/Lookup.html#method-i-arguments">#arguments &mdash; CORL::Action::Lookup</a>
518
+
519
+ <li class="method"><a href="CORL/Action/Authorize.html#method-i-arguments">#arguments &mdash; CORL::Action::Authorize</a>
520
+
521
+ <li class="method"><a href="CORL/Action/Destroy.html#method-i-arguments">#arguments &mdash; CORL::Action::Destroy</a>
522
+
523
+ <li class="method"><a href="CORL/Action/Regions.html#method-i-arguments">#arguments &mdash; CORL::Action::Regions</a>
524
+
525
+ <li class="method"><a href="CORL/Action/Machines.html#method-i-arguments">#arguments &mdash; CORL::Action::Machines</a>
526
+
527
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-attach">#attach &mdash; Nucleon::Plugin::Configuration</a>
528
+
529
+ <li class="method"><a href="CORL/Configuration/File.html#method-i-attach">#attach &mdash; CORL::Configuration::File</a>
530
+
531
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-attach_data">#attach_data &mdash; Nucleon::Plugin::Network</a>
532
+
533
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-attach_files">#attach_files &mdash; Nucleon::Plugin::Network</a>
534
+
535
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-attach_keys">#attach_keys &mdash; Nucleon::Plugin::Node</a>
536
+
537
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-auth_url">#auth_url &mdash; CORL::Node::Fog</a>
538
+
539
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-auth_url-3D">#auth_url= &mdash; CORL::Node::Fog</a>
540
+
541
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-autoload">#autoload &mdash; Nucleon::Plugin::Configuration</a>
542
+
543
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-autoload-3D">#autoload= &mdash; Nucleon::Plugin::Configuration</a>
544
+
545
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-autosave">#autosave &mdash; Nucleon::Plugin::Configuration</a>
546
+
547
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-autosave-3D">#autosave= &mdash; Nucleon::Plugin::Configuration</a>
548
+
549
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-batch">#batch &mdash; Nucleon::Plugin::Network</a>
550
+
551
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-bootstrap">#bootstrap &mdash; Nucleon::Plugin::Node</a>
552
+
553
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-bootstrap_script">#bootstrap_script &mdash; CORL::Node::Vagrant</a>
554
+
555
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-bootstrap_script">#bootstrap_script &mdash; Nucleon::Plugin::Node</a>
556
+
557
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-bootstrap_script-3D">#bootstrap_script= &mdash; CORL::Node::Vagrant</a>
558
+
559
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-bootstrap_script-3D">#bootstrap_script= &mdash; Nucleon::Plugin::Node</a>
560
+
561
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-build">#build &mdash; CORL::Node::Vagrant</a>
562
+
563
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-build">#build &mdash; Nucleon::Plugin::Provisioner</a>
564
+
565
+ <li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-build">#build &mdash; CORL::Provisioner::Puppetnode</a>
566
+
567
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-build">#build &mdash; Nucleon::Plugin::Node</a>
568
+
569
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-build_directory">#build_directory &mdash; Nucleon::Plugin::Network</a>
570
+
571
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-build_directory">#build_directory &mdash; Nucleon::Plugin::Provisioner</a>
572
+
573
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-build_info">#build_info &mdash; Nucleon::Plugin::Provisioner</a>
574
+
575
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-build_locations">#build_locations &mdash; Nucleon::Plugin::Provisioner</a>
576
+
577
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-build_profiles">#build_profiles &mdash; Nucleon::Plugin::Provisioner</a>
578
+
579
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-build_time">#build_time &mdash; Nucleon::Plugin::Node</a>
580
+
581
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-build_time">#build_time &mdash; CORL::Node::Vagrant</a>
582
+
583
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-build_time-3D">#build_time= &mdash; Nucleon::Plugin::Node</a>
584
+
585
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-build_time-3D">#build_time= &mdash; CORL::Node::Vagrant</a>
586
+
587
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-cache">#cache &mdash; Nucleon::Plugin::Network</a>
588
+
589
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-cache">#cache &mdash; Nucleon::Plugin::Configuration</a>
590
+
591
+ <li class="method"><a href="VagrantPlugins/CORL/BaseAction.html#method-i-call">#call &mdash; VagrantPlugins::CORL::BaseAction</a>
592
+
593
+ <li class="method"><a href="VagrantPlugins/CORL/Action/InitKeys.html#method-i-call">#call &mdash; VagrantPlugins::CORL::Action::InitKeys</a>
594
+
595
+ <li class="method"><a href="VagrantPlugins/CORL/Action/LinkNetwork.html#method-i-call">#call &mdash; VagrantPlugins::CORL::Action::LinkNetwork</a>
596
+
597
+ <li class="method"><a href="VagrantPlugins/CORL/Action/DeleteCache.html#method-i-call">#call &mdash; VagrantPlugins::CORL::Action::DeleteCache</a>
598
+
599
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-can_persist-3F">#can_persist? &mdash; Nucleon::Plugin::Configuration</a>
600
+
601
+ <li class="method"><a href="CORL/Event/Puppet.html#method-i-check">#check &mdash; CORL::Event::Puppet</a>
602
+
603
+ <li class="method"><a href="VagrantPlugins/CORL/Provisioner/CORL.html#method-i-clean">#clean &mdash; VagrantPlugins::CORL::Provisioner::CORL</a>
604
+
605
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-clear">#clear &mdash; Nucleon::Plugin::Configuration</a>
606
+
607
+ <li class="method"><a href="Vagrant/Config/Loader.html#method-i-clear_config_cache">#clear_config_cache &mdash; Vagrant::Config::Loader</a>
608
+
609
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-cli">#cli &mdash; Nucleon::Plugin::Node</a>
610
+
611
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-cli_capture">#cli_capture &mdash; Nucleon::Plugin::Node</a>
612
+
613
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-cli_check">#cli_check &mdash; Nucleon::Plugin::Node</a>
614
+
615
+ <li class="method"><a href="CORL/Mixin/Machine/SSH.html#method-i-close_ssh_session">#close_ssh_session &mdash; CORL::Mixin::Machine::SSH</a>
616
+
617
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-command">#command &mdash; Nucleon::Plugin::Node</a>
618
+
619
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-command">#command &mdash; CORL::Machine::Vagrant</a>
620
+
621
+ <li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-compiler">#compiler &mdash; CORL::Provisioner::Puppetnode</a>
622
+
623
+ <li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-composite_resources">#composite_resources &mdash; CORL::Util::Puppet::ResourceGroup</a>
624
+
625
+ <li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-composite_resources-3D">#composite_resources= &mdash; CORL::Util::Puppet::ResourceGroup</a>
626
+
627
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-compute">#compute &mdash; CORL::Machine::Fog</a>
628
+
629
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-compute-3D">#compute= &mdash; CORL::Machine::Fog</a>
630
+
631
+ <li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-concatenate">#concatenate &mdash; CORL::Provisioner::Puppetnode</a>
632
+
633
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-concatenate">#concatenate &mdash; Nucleon::Plugin::Provisioner</a>
634
+
635
+ <li class="method"><a href="CORL/Mixin/Lookup.html#method-i-config_initialized-3F">#config_initialized? &mdash; CORL::Mixin::Lookup</a>
636
+
637
+ <li class="method"><a href="CORL/Facade.html#method-i-configuration">#configuration &mdash; CORL::Facade</a>
638
+
639
+ <li class="method"><a href="CORL/Facade.html#method-i-configurations">#configurations &mdash; CORL::Facade</a>
640
+
641
+ <li class="method"><a href="CORL/Action/Images.html#method-i-configure">#configure &mdash; CORL::Action::Images</a>
642
+
643
+ <li class="method"><a href="CORL/Action/Start.html#method-i-configure">#configure &mdash; CORL::Action::Start</a>
644
+
645
+ <li class="method"><a href="CORL/Action/Machines.html#method-i-configure">#configure &mdash; CORL::Action::Machines</a>
646
+
647
+ <li class="method"><a href="CORL/Action/Provision.html#method-i-configure">#configure &mdash; CORL::Action::Provision</a>
648
+
649
+ <li class="method"><a href="CORL/Action/Stop.html#method-i-configure">#configure &mdash; CORL::Action::Stop</a>
650
+
651
+ <li class="method"><a href="CORL/Action/Keypair.html#method-i-configure">#configure &mdash; CORL::Action::Keypair</a>
652
+
653
+ <li class="method"><a href="CORL/Action/Ssh.html#method-i-configure">#configure &mdash; CORL::Action::Ssh</a>
654
+
655
+ <li class="method"><a href="CORL/Action/Image.html#method-i-configure">#configure &mdash; CORL::Action::Image</a>
656
+
657
+ <li class="method"><a href="CORL/Action/Reboot.html#method-i-configure">#configure &mdash; CORL::Action::Reboot</a>
658
+
659
+ <li class="method"><a href="CORL/Action/Regions.html#method-i-configure">#configure &mdash; CORL::Action::Regions</a>
660
+
661
+ <li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-configure">#configure &mdash; CORL::Plugin::CloudAction</a>
662
+
663
+ <li class="method"><a href="CORL/Action/Revoke.html#method-i-configure">#configure &mdash; CORL::Action::Revoke</a>
664
+
665
+ <li class="method"><a href="CORL/Action/Exec.html#method-i-configure">#configure &mdash; CORL::Action::Exec</a>
666
+
667
+ <li class="method"><a href="CORL/Action/Vagrantfile.html#method-i-configure">#configure &mdash; CORL::Action::Vagrantfile</a>
668
+
669
+ <li class="method"><a href="VagrantPlugins/CORL/Provisioner/CORL.html#method-i-configure">#configure &mdash; VagrantPlugins::CORL::Provisioner::CORL</a>
670
+
671
+ <li class="method"><a href="CORL/Action/Destroy.html#method-i-configure">#configure &mdash; CORL::Action::Destroy</a>
672
+
673
+ <li class="method"><a href="CORL/Action/Seed.html#method-i-configure">#configure &mdash; CORL::Action::Seed</a>
674
+
675
+ <li class="method"><a href="CORL/Action/Bootstrap.html#method-i-configure">#configure &mdash; CORL::Action::Bootstrap</a>
676
+
677
+ <li class="method"><a href="CORL/Action/Spawn.html#method-i-configure">#configure &mdash; CORL::Action::Spawn</a>
678
+
679
+ <li class="method"><a href="CORL/Action/Lookup.html#method-i-configure">#configure &mdash; CORL::Action::Lookup</a>
680
+
681
+ <li class="method"><a href="CORL/Action/Authorize.html#method-i-configure">#configure &mdash; CORL::Action::Authorize</a>
682
+
683
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-connection_options">#connection_options &mdash; CORL::Node::Fog</a>
684
+
685
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-connection_options-3D">#connection_options= &mdash; CORL::Node::Fog</a>
686
+
687
+ <li class="method"><a href="CORL/Node/Aws.html#method-i-create">#create &mdash; CORL::Node::Aws</a>
688
+
689
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-create">#create &mdash; Nucleon::Plugin::Node</a>
690
+
691
+ <li class="method"><a href="CORL/Node/Rackspace.html#method-i-create">#create &mdash; CORL::Node::Rackspace</a>
692
+
693
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-create">#create &mdash; CORL::Machine::Vagrant</a>
694
+
695
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-create">#create &mdash; Nucleon::Plugin::Machine</a>
696
+
697
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-create">#create &mdash; CORL::Machine::Physical</a>
698
+
699
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-create">#create &mdash; CORL::Node::Fog</a>
700
+
701
+ <li class="method"><a href="CORL/Machine/Aws.html#method-i-create">#create &mdash; CORL::Machine::Aws</a>
702
+
703
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-create">#create &mdash; CORL::Node::Vagrant</a>
704
+
705
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-create">#create &mdash; CORL::Machine::Fog</a>
706
+
707
+ <li class="method"><a href="CORL/Node/Aws.html#method-i-create_config">#create_config &mdash; CORL::Node::Aws</a>
708
+
709
+ <li class="method"><a href="CORL/Node/Rackspace.html#method-i-create_config">#create_config &mdash; CORL::Node::Rackspace</a>
710
+
711
+ <li class="method"><a href="CORL/Machine/Aws.html#method-i-create_image">#create_image &mdash; CORL::Machine::Aws</a>
712
+
713
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-create_image">#create_image &mdash; Nucleon::Plugin::Machine</a>
714
+
715
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-create_image">#create_image &mdash; CORL::Node::Vagrant</a>
716
+
717
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-create_image">#create_image &mdash; CORL::Machine::Fog</a>
718
+
719
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-create_image">#create_image &mdash; CORL::Machine::Physical</a>
720
+
721
+ <li class="method"><a href="CORL/Machine/Rackspace.html#method-i-create_image">#create_image &mdash; CORL::Machine::Rackspace</a>
722
+
723
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-create_image">#create_image &mdash; CORL::Node::Fog</a>
724
+
725
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-create_image">#create_image &mdash; CORL::Machine::Vagrant</a>
726
+
727
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-create_image">#create_image &mdash; Nucleon::Plugin::Node</a>
728
+
729
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-create_machine">#create_machine &mdash; Nucleon::Plugin::Node</a>
730
+
731
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-created-3F">#created? &mdash; CORL::Machine::Fog</a>
732
+
733
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-created-3F">#created? &mdash; CORL::Machine::Physical</a>
734
+
735
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-created-3F">#created? &mdash; Nucleon::Plugin::Machine</a>
736
+
737
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-created-3F">#created? &mdash; CORL::Machine::Vagrant</a>
738
+
739
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-custom_facts">#custom_facts &mdash; Nucleon::Plugin::Node</a>
740
+
741
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-custom_facts-3D">#custom_facts= &mdash; Nucleon::Plugin::Node</a>
742
+
743
+ <li class="method"><a href="CORL/Mixin/Lookup.html#method-i-debug_lookup">#debug_lookup &mdash; CORL::Mixin::Lookup</a>
744
+
745
+ <li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-default">#default &mdash; CORL::Util::Puppet::ResourceGroup</a>
746
+
747
+ <li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-default-3D">#default= &mdash; CORL::Util::Puppet::ResourceGroup</a>
748
+
749
+ <li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-defaults">#defaults &mdash; CORL::Util::Puppet::Resource</a>
750
+
751
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-delete">#delete &mdash; Nucleon::Plugin::Configuration</a>
752
+
753
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-delete_attachments">#delete_attachments &mdash; Nucleon::Plugin::Configuration</a>
754
+
755
+ <li class="method"><a href="CORL/Configuration/File.html#method-i-delete_attachments">#delete_attachments &mdash; CORL::Configuration::File</a>
756
+
757
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-delete_attachments">#delete_attachments &mdash; Nucleon::Plugin::Network</a>
758
+
759
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-delete_keys">#delete_keys &mdash; Nucleon::Plugin::Node</a>
760
+
761
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-destroy">#destroy &mdash; Nucleon::Plugin::Node</a>
762
+
763
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-destroy">#destroy &mdash; CORL::Machine::Vagrant</a>
764
+
765
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-destroy">#destroy &mdash; Nucleon::Plugin::Machine</a>
766
+
767
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-destroy">#destroy &mdash; CORL::Machine::Physical</a>
768
+
769
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-destroy">#destroy &mdash; CORL::Machine::Fog</a>
770
+
771
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-destroy">#destroy &mdash; CORL::Node::Vagrant</a>
772
+
773
+ <li class="method"><a href="CORL/Machine/Aws.html#method-i-destroy">#destroy &mdash; CORL::Machine::Aws</a>
774
+
775
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-destroy">#destroy &mdash; CORL::Node::Fog</a>
776
+
777
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-directory">#directory &mdash; Nucleon::Plugin::Network</a>
778
+
779
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-directory">#directory &mdash; Nucleon::Plugin::Configuration</a>
780
+
781
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-directory">#directory &mdash; Nucleon::Plugin::Provisioner</a>
782
+
783
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-directory-3D">#directory= &mdash; Nucleon::Plugin::Provisioner</a>
784
+
785
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-download">#download &mdash; Nucleon::Plugin::Node</a>
786
+
787
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-download">#download &mdash; Nucleon::Plugin::Machine</a>
788
+
789
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-download">#download &mdash; CORL::Machine::Physical</a>
790
+
791
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-download">#download &mdash; CORL::Machine::Vagrant</a>
792
+
793
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-download">#download &mdash; CORL::Node::Vagrant</a>
794
+
795
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-download">#download &mdash; CORL::Node::Fog</a>
796
+
797
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-download">#download &mdash; CORL::Machine::Fog</a>
798
+
799
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-each_node_config">#each_node_config &mdash; Nucleon::Plugin::Network</a>
800
+
801
+ <li class="method"><a href="CORL/Event/Puppet.html#method-i-element">#element &mdash; CORL::Event::Puppet</a>
802
+
803
+ <li class="method"><a href="CORL/Event/Puppet.html#method-i-element-3D">#element= &mdash; CORL::Event::Puppet</a>
804
+
805
+ <li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-ensure_network">#ensure_network &mdash; CORL::Plugin::CloudAction</a>
806
+
807
+ <li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-ensure_node">#ensure_node &mdash; CORL::Plugin::CloudAction</a>
808
+
809
+ <li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-ensure_ready">#ensure_ready &mdash; CORL::Util::Puppet::Resource</a>
810
+
811
+ <li class="method"><a href="CORL/Machine/Aws.html#method-i-ensure_security_group">#ensure_security_group &mdash; CORL::Machine::Aws</a>
812
+
813
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-env">#env &mdash; CORL::Machine::Vagrant</a>
814
+
815
+ <li class="method"><a href="VagrantPlugins/CORL/Command/Launcher.html#method-i-env">#env &mdash; VagrantPlugins::CORL::Command::Launcher</a>
816
+
817
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-exec">#exec &mdash; Nucleon::Plugin::Node</a>
818
+
819
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-exec">#exec &mdash; CORL::Node::Fog</a>
820
+
821
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-exec">#exec &mdash; CORL::Machine::Vagrant</a>
822
+
823
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-exec">#exec &mdash; CORL::Machine::Physical</a>
824
+
825
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-exec">#exec &mdash; Nucleon::Plugin::Machine</a>
826
+
827
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-exec">#exec &mdash; CORL::Machine::Fog</a>
828
+
829
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-exec">#exec &mdash; CORL::Node::Vagrant</a>
830
+
831
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-exec_options">#exec_options &mdash; CORL::Node::Vagrant</a>
832
+
833
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-exec_options">#exec_options &mdash; CORL::Node::Fog</a>
834
+
835
+ <li class="method"><a href="CORL/Action/Vagrantfile.html#method-i-execute">#execute &mdash; CORL::Action::Vagrantfile</a>
836
+
837
+ <li class="method"><a href="CORL/Action/Revoke.html#method-i-execute">#execute &mdash; CORL::Action::Revoke</a>
838
+
839
+ <li class="method"><a href="CORL/Action/Stop.html#method-i-execute">#execute &mdash; CORL::Action::Stop</a>
840
+
841
+ <li class="method"><a href="CORL/Action/Seed.html#method-i-execute">#execute &mdash; CORL::Action::Seed</a>
842
+
843
+ <li class="method"><a href="VagrantPlugins/CORL/Command/Launcher.html#method-i-execute">#execute &mdash; VagrantPlugins::CORL::Command::Launcher</a>
844
+
845
+ <li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-execute">#execute &mdash; CORL::Plugin::CloudAction</a>
846
+
847
+ <li class="method"><a href="CORL/Action/Facts.html#method-i-execute">#execute &mdash; CORL::Action::Facts</a>
848
+
849
+ <li class="method"><a href="CORL/Action/Spawn.html#method-i-execute">#execute &mdash; CORL::Action::Spawn</a>
850
+
851
+ <li class="method"><a href="CORL/Action/Destroy.html#method-i-execute">#execute &mdash; CORL::Action::Destroy</a>
852
+
853
+ <li class="method"><a href="CORL/Action/Regions.html#method-i-execute">#execute &mdash; CORL::Action::Regions</a>
854
+
855
+ <li class="method"><a href="CORL/Action/Image.html#method-i-execute">#execute &mdash; CORL::Action::Image</a>
856
+
857
+ <li class="method"><a href="CORL/Action/Reboot.html#method-i-execute">#execute &mdash; CORL::Action::Reboot</a>
858
+
859
+ <li class="method"><a href="CORL/Action/Build.html#method-i-execute">#execute &mdash; CORL::Action::Build</a>
860
+
861
+ <li class="method"><a href="CORL/Action/Images.html#method-i-execute">#execute &mdash; CORL::Action::Images</a>
862
+
863
+ <li class="method"><a href="CORL/Action/Ip.html#method-i-execute">#execute &mdash; CORL::Action::Ip</a>
864
+
865
+ <li class="method"><a href="CORL/Action/Ssh.html#method-i-execute">#execute &mdash; CORL::Action::Ssh</a>
866
+
867
+ <li class="method"><a href="CORL/Action/Keypair.html#method-i-execute">#execute &mdash; CORL::Action::Keypair</a>
868
+
869
+ <li class="method"><a href="CORL/Action/Bootstrap.html#method-i-execute">#execute &mdash; CORL::Action::Bootstrap</a>
870
+
871
+ <li class="method"><a href="CORL/Action/Lookup.html#method-i-execute">#execute &mdash; CORL::Action::Lookup</a>
872
+
873
+ <li class="method"><a href="CORL/Action/Start.html#method-i-execute">#execute &mdash; CORL::Action::Start</a>
874
+
875
+ <li class="method"><a href="CORL/Action/Provision.html#method-i-execute">#execute &mdash; CORL::Action::Provision</a>
876
+
877
+ <li class="method"><a href="CORL/Action/Authorize.html#method-i-execute">#execute &mdash; CORL::Action::Authorize</a>
878
+
879
+ <li class="method"><a href="CORL/Action/Exec.html#method-i-execute">#execute &mdash; CORL::Action::Exec</a>
880
+
881
+ <li class="method"><a href="CORL/Action/Machines.html#method-i-execute">#execute &mdash; CORL::Action::Machines</a>
882
+
883
+ <li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-execute_remote">#execute_remote &mdash; CORL::Plugin::CloudAction</a>
884
+
885
+ <li class="method"><a href="CORL/Action/Spawn.html#method-i-extract_hostnames">#extract_hostnames &mdash; CORL::Action::Spawn</a>
886
+
887
+ <li class="method"><a href="CORL/Mixin/Lookup.html#method-i-fact">#fact &mdash; CORL::Mixin::Lookup</a>
888
+
889
+ <li class="method"><a href="CORL/Mixin/Lookup.html#method-i-facts">#facts &mdash; CORL::Mixin::Lookup</a>
890
+
891
+ <li class="method"><a href="CORL/Configuration/File.html#method-i-fetch_project">#fetch_project &mdash; CORL::Configuration::File</a>
892
+
893
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-filter_output">#filter_output &mdash; CORL::Node::Vagrant</a>
894
+
895
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-filter_output">#filter_output &mdash; Nucleon::Plugin::Node</a>
896
+
897
+ <li class="method"><a href="VagrantPlugins/CORL/Config/CORL.html#method-i-finalize-21">#finalize! &mdash; VagrantPlugins::CORL::Config::CORL</a>
898
+
899
+ <li class="method"><a href="Puppet/Indirector/Corl.html#method-i-find">#find &mdash; Puppet::Indirector::Corl</a>
900
+
901
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-find_profiles">#find_profiles &mdash; Nucleon::Plugin::Provisioner</a>
902
+
903
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-gateway">#gateway &mdash; Nucleon::Plugin::Provisioner</a>
904
+
905
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-gateway-3D">#gateway= &mdash; Nucleon::Plugin::Provisioner</a>
906
+
907
+ <li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-get_node">#get_node &mdash; CORL::Provisioner::Puppetnode</a>
908
+
909
+ <li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-group">#group &mdash; CORL::Util::Puppet::Resource</a>
910
+
911
+ <li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-handle">#handle &mdash; CORL::Provisioner::Puppetnode</a>
912
+
913
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-has_nodes-3F">#has_nodes? &mdash; Nucleon::Plugin::Network</a>
914
+
915
+ <li class="method"><a href="CORL/Mixin/Lookup.html#method-i-hiera">#hiera &mdash; CORL::Mixin::Lookup</a>
916
+
917
+ <li class="method"><a href="CORL/Mixin/Lookup.html#method-i-hiera_configuration">#hiera_configuration &mdash; CORL::Mixin::Lookup</a>
918
+
919
+ <li class="method"><a href="CORL/Mixin/Lookup.html#method-i-hiera_facts">#hiera_facts &mdash; CORL::Mixin::Lookup</a>
920
+
921
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-hiera_facts">#hiera_facts &mdash; Nucleon::Plugin::Node</a>
922
+
923
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-hiera_override_dir">#hiera_override_dir &mdash; Nucleon::Plugin::Network</a>
924
+
925
+ <li class="method"><a href="CORL/Mixin/Lookup.html#method-i-hiera_override_dir">#hiera_override_dir &mdash; CORL::Mixin::Lookup</a>
926
+
927
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-hiera_override_dir">#hiera_override_dir &mdash; Nucleon::Plugin::Node</a>
928
+
929
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-home">#home &mdash; Nucleon::Plugin::Network</a>
930
+
931
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-home">#home &mdash; Nucleon::Plugin::Node</a>
932
+
933
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-hostname">#hostname &mdash; CORL::Machine::Physical</a>
934
+
935
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-hostname">#hostname &mdash; Nucleon::Plugin::Machine</a>
936
+
937
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-hostname">#hostname &mdash; Nucleon::Plugin::Node</a>
938
+
939
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-id">#id &mdash; Nucleon::Plugin::Provisioner</a>
940
+
941
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-id">#id &mdash; Nucleon::Plugin::Node</a>
942
+
943
+ <li class="method"><a href="CORL/Action/Stop.html#method-i-ignore">#ignore &mdash; CORL::Action::Stop</a>
944
+
945
+ <li class="method"><a href="CORL/Action/Image.html#method-i-ignore">#ignore &mdash; CORL::Action::Image</a>
946
+
947
+ <li class="method"><a href="CORL/Action/Images.html#method-i-ignore">#ignore &mdash; CORL::Action::Images</a>
948
+
949
+ <li class="method"><a href="CORL/Action/Keypair.html#method-i-ignore">#ignore &mdash; CORL::Action::Keypair</a>
950
+
951
+ <li class="method"><a href="CORL/Action/Bootstrap.html#method-i-ignore">#ignore &mdash; CORL::Action::Bootstrap</a>
952
+
953
+ <li class="method"><a href="CORL/Action/Ssh.html#method-i-ignore">#ignore &mdash; CORL::Action::Ssh</a>
954
+
955
+ <li class="method"><a href="CORL/Action/Machines.html#method-i-ignore">#ignore &mdash; CORL::Action::Machines</a>
956
+
957
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-ignore">#ignore &mdash; Nucleon::Plugin::Configuration</a>
958
+
959
+ <li class="method"><a href="CORL/Action/Start.html#method-i-ignore">#ignore &mdash; CORL::Action::Start</a>
960
+
961
+ <li class="method"><a href="CORL/Action/Spawn.html#method-i-ignore">#ignore &mdash; CORL::Action::Spawn</a>
962
+
963
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-ignore">#ignore &mdash; Nucleon::Plugin::Network</a>
964
+
965
+ <li class="method"><a href="CORL/Action/Regions.html#method-i-ignore">#ignore &mdash; CORL::Action::Regions</a>
966
+
967
+ <li class="method"><a href="CORL/Action/Reboot.html#method-i-ignore">#ignore &mdash; CORL::Action::Reboot</a>
968
+
969
+ <li class="method"><a href="CORL/Action/Destroy.html#method-i-ignore">#ignore &mdash; CORL::Action::Destroy</a>
970
+
971
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-image">#image &mdash; CORL::Machine::Physical</a>
972
+
973
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-image">#image &mdash; Nucleon::Plugin::Node</a>
974
+
975
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-image">#image &mdash; CORL::Machine::Fog</a>
976
+
977
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-image">#image &mdash; Nucleon::Plugin::Machine</a>
978
+
979
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-image-3D">#image= &mdash; Nucleon::Plugin::Node</a>
980
+
981
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-image_id">#image_id &mdash; Nucleon::Plugin::Node</a>
982
+
983
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-image_id">#image_id &mdash; CORL::Node::Vagrant</a>
984
+
985
+ <li class="method"><a href="CORL/Node/Rackspace.html#method-i-image_search_text">#image_search_text &mdash; CORL::Node::Rackspace</a>
986
+
987
+ <li class="method"><a href="CORL/Node/Aws.html#method-i-image_search_text">#image_search_text &mdash; CORL::Node::Aws</a>
988
+
989
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-image_search_text">#image_search_text &mdash; CORL::Node::Vagrant</a>
990
+
991
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-image_search_text">#image_search_text &mdash; Nucleon::Plugin::Node</a>
992
+
993
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-images">#images &mdash; Nucleon::Plugin::Machine</a>
994
+
995
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-images">#images &mdash; CORL::Machine::Fog</a>
996
+
997
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-images">#images &mdash; Nucleon::Plugin::Node</a>
998
+
999
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-import">#import &mdash; Nucleon::Plugin::Configuration</a>
1000
+
1001
+ <li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-import">#import &mdash; CORL::Util::Puppet::Resource</a>
1002
+
1003
+ <li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-import">#import &mdash; CORL::Provisioner::Puppetnode</a>
1004
+
1005
+ <li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-info">#info &mdash; CORL::Util::Puppet::ResourceGroup</a>
1006
+
1007
+ <li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-info">#info &mdash; CORL::Util::Puppet::Resource</a>
1008
+
1009
+ <li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-info-3D">#info= &mdash; CORL::Util::Puppet::ResourceGroup</a>
1010
+
1011
+ <li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-info-3D">#info= &mdash; CORL::Util::Puppet::Resource</a>
1012
+
1013
+ <li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-init_network">#init_network &mdash; CORL::Plugin::CloudAction</a>
1014
+
1015
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-init_node">#init_node &mdash; Nucleon::Plugin::Network</a>
1016
+
1017
+ <li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-init_puppet">#init_puppet &mdash; CORL::Provisioner::Puppetnode</a>
1018
+
1019
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-init_server">#init_server &mdash; CORL::Machine::Fog</a>
1020
+
1021
+ <li class="method"><a href="CORL/Machine/Rackspace.html#method-i-init_server">#init_server &mdash; CORL::Machine::Rackspace</a>
1022
+
1023
+ <li class="method"><a href="CORL/Machine/Aws.html#method-i-init_server">#init_server &mdash; CORL::Machine::Aws</a>
1024
+
1025
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-init_shares">#init_shares &mdash; CORL::Node::Vagrant</a>
1026
+
1027
+ <li class="method"><a href="CORL/Machine/Aws.html#method-i-init_ssh">#init_ssh &mdash; CORL::Machine::Aws</a>
1028
+
1029
+ <li class="method"><a href="CORL/Mixin/Machine/SSH.html#method-i-init_ssh_session">#init_ssh_session &mdash; CORL::Mixin::Machine::SSH</a>
1030
+
1031
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-initialized-3F">#initialized? &mdash; Nucleon::Plugin::Provisioner</a>
1032
+
1033
+ <li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-inspect">#inspect &mdash; CORL::Util::Puppet::ResourceGroup</a>
1034
+
1035
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-key_config">#key_config &mdash; CORL::Node::Fog</a>
1036
+
1037
+ <li class="method"><a href="CORL/Mixin/Action/Keypair.html#method-i-keypair">#keypair &mdash; CORL::Mixin::Action::Keypair</a>
1038
+
1039
+ <li class="method"><a href="CORL/Mixin/Action/Keypair.html#method-i-keypair-3D">#keypair= &mdash; CORL::Mixin::Action::Keypair</a>
1040
+
1041
+ <li class="method"><a href="CORL/Mixin/Action/Keypair.html#method-i-keypair_clean">#keypair_clean &mdash; CORL::Mixin::Action::Keypair</a>
1042
+
1043
+ <li class="method"><a href="CORL/Mixin/Action/Keypair.html#method-i-keypair_config">#keypair_config &mdash; CORL::Mixin::Action::Keypair</a>
1044
+
1045
+ <li class="method"><a href="CORL/Mixin/Action/Keypair.html#method-i-keypair_ignore">#keypair_ignore &mdash; CORL::Mixin::Action::Keypair</a>
1046
+
1047
+ <li class="method"><a href="CORL/Machine/Aws.html#method-i-keypair_name">#keypair_name &mdash; CORL::Machine::Aws</a>
1048
+
1049
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-load">#load &mdash; Nucleon::Plugin::Machine</a>
1050
+
1051
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-load">#load &mdash; Nucleon::Plugin::Network</a>
1052
+
1053
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-load">#load &mdash; CORL::Machine::Physical</a>
1054
+
1055
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-load">#load &mdash; Nucleon::Plugin::Configuration</a>
1056
+
1057
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-load">#load &mdash; CORL::Machine::Fog</a>
1058
+
1059
+ <li class="method"><a href="CORL/Configuration/File.html#method-i-load">#load &mdash; CORL::Configuration::File</a>
1060
+
1061
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-load">#load &mdash; CORL::Machine::Vagrant</a>
1062
+
1063
+ <li class="method"><a href="Facter/Util/Loader.html#method-i-load_dir">#load_dir &mdash; Facter::Util::Loader</a>
1064
+
1065
+ <li class="method"><a href="CORL/Node/Local.html#method-i-local-3F">#local? &mdash; CORL::Node::Local</a>
1066
+
1067
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-local-3F">#local? &mdash; Nucleon::Plugin::Node</a>
1068
+
1069
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-local_machine">#local_machine &mdash; Nucleon::Plugin::Node</a>
1070
+
1071
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-local_machine-3D">#local_machine= &mdash; Nucleon::Plugin::Node</a>
1072
+
1073
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-local_node">#local_node &mdash; Nucleon::Plugin::Network</a>
1074
+
1075
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-localize">#localize &mdash; Nucleon::Plugin::Node</a>
1076
+
1077
+ <li class="method"><a href="CORL/Mixin/Lookup.html#method-i-lookup">#lookup &mdash; CORL::Mixin::Lookup</a>
1078
+
1079
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-lookup">#lookup &mdash; Nucleon::Plugin::Provisioner</a>
1080
+
1081
+ <li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-lookup">#lookup &mdash; CORL::Provisioner::Puppetnode</a>
1082
+
1083
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-lookup_array">#lookup_array &mdash; Nucleon::Plugin::Node</a>
1084
+
1085
+ <li class="method"><a href="CORL/Mixin/Lookup.html#method-i-lookup_array">#lookup_array &mdash; CORL::Mixin::Lookup</a>
1086
+
1087
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-lookup_config">#lookup_config &mdash; Nucleon::Plugin::Node</a>
1088
+
1089
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-lookup_facts">#lookup_facts &mdash; Nucleon::Plugin::Node</a>
1090
+
1091
+ <li class="method"><a href="CORL/Mixin/Lookup.html#method-i-lookup_hash">#lookup_hash &mdash; CORL::Mixin::Lookup</a>
1092
+
1093
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-lookup_hash">#lookup_hash &mdash; Nucleon::Plugin::Node</a>
1094
+
1095
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-machine">#machine &mdash; Nucleon::Plugin::Node</a>
1096
+
1097
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-machine-3D">#machine= &mdash; Nucleon::Plugin::Node</a>
1098
+
1099
+ <li class="method"><a href="CORL/Node/Rackspace.html#method-i-machine_config">#machine_config &mdash; CORL::Node::Rackspace</a>
1100
+
1101
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-machine_config">#machine_config &mdash; CORL::Node::Fog</a>
1102
+
1103
+ <li class="method"><a href="CORL/Node/Aws.html#method-i-machine_config">#machine_config &mdash; CORL::Node::Aws</a>
1104
+
1105
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-machine_config">#machine_config &mdash; Nucleon::Plugin::Node</a>
1106
+
1107
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-machine_config">#machine_config &mdash; CORL::Node::Vagrant</a>
1108
+
1109
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-machine_type">#machine_type &mdash; Nucleon::Plugin::Machine</a>
1110
+
1111
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-machine_type">#machine_type &mdash; Nucleon::Plugin::Node</a>
1112
+
1113
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-machine_type">#machine_type &mdash; CORL::Machine::Physical</a>
1114
+
1115
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-machine_type">#machine_type &mdash; CORL::Machine::Fog</a>
1116
+
1117
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-machine_type_id">#machine_type_id &mdash; CORL::Node::Vagrant</a>
1118
+
1119
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-machine_type_id">#machine_type_id &mdash; Nucleon::Plugin::Node</a>
1120
+
1121
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-machine_types">#machine_types &mdash; Nucleon::Plugin::Machine</a>
1122
+
1123
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-machine_types">#machine_types &mdash; CORL::Machine::Vagrant</a>
1124
+
1125
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-machine_types">#machine_types &mdash; Nucleon::Plugin::Node</a>
1126
+
1127
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-machine_types">#machine_types &mdash; CORL::Machine::Fog</a>
1128
+
1129
+ <li class="method"><a href="CORL/Event/Puppet.html#method-i-message">#message &mdash; CORL::Event::Puppet</a>
1130
+
1131
+ <li class="method"><a href="CORL/Event/Puppet.html#method-i-message-3D">#message= &mdash; CORL::Event::Puppet</a>
1132
+
1133
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-method_missing">#method_missing &mdash; Nucleon::Plugin::Node</a>
1134
+
1135
+ <li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-namespace">#namespace &mdash; CORL::Plugin::CloudAction</a>
1136
+
1137
+ <li class="method"><a href="CORL/Facade.html#method-i-network">#network &mdash; CORL::Facade</a>
1138
+
1139
+ <li class="method"><a href="CORL/Mixin/Macro/NetworkSettings.html#method-i-network_settings">#network_settings &mdash; CORL::Mixin::Macro::NetworkSettings</a>
1140
+
1141
+ <li class="method"><a href="CORL/Facade.html#method-i-networks">#networks &mdash; CORL::Facade</a>
1142
+
1143
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-new_machine">#new_machine &mdash; CORL::Machine::Vagrant</a>
1144
+
1145
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-node">#node &mdash; Nucleon::Plugin::Machine</a>
1146
+
1147
+ <li class="method"><a href="CORL/Facade.html#method-i-node">#node &mdash; CORL::Facade</a>
1148
+
1149
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-node-3D">#node= &mdash; Nucleon::Plugin::Machine</a>
1150
+
1151
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-node_by_ip">#node_by_ip &mdash; Nucleon::Plugin::Network</a>
1152
+
1153
+ <li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-node_config">#node_config &mdash; CORL::Plugin::CloudAction</a>
1154
+
1155
+ <li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-node_exec">#node_exec &mdash; CORL::Plugin::CloudAction</a>
1156
+
1157
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-node_groups">#node_groups &mdash; Nucleon::Plugin::Network</a>
1158
+
1159
+ <li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-node_ignore">#node_ignore &mdash; CORL::Plugin::CloudAction</a>
1160
+
1161
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-node_info">#node_info &mdash; Nucleon::Plugin::Network</a>
1162
+
1163
+ <li class="method"><a href="CORL/Facade.html#method-i-nodes">#nodes &mdash; CORL::Facade</a>
1164
+
1165
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-nodes_by_reference">#nodes_by_reference &mdash; Nucleon::Plugin::Network</a>
1166
+
1167
+ <li class="method"><a href="CORL/Network/Default.html#method-i-normalize">#normalize &mdash; CORL::Network::Default</a>
1168
+
1169
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-normalize">#normalize &mdash; CORL::Node::Fog</a>
1170
+
1171
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-normalize">#normalize &mdash; Nucleon::Plugin::Provisioner</a>
1172
+
1173
+ <li class="method"><a href="CORL/Node/Local.html#method-i-normalize">#normalize &mdash; CORL::Node::Local</a>
1174
+
1175
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-normalize">#normalize &mdash; CORL::Machine::Physical</a>
1176
+
1177
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-normalize">#normalize &mdash; Nucleon::Plugin::Network</a>
1178
+
1179
+ <li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-normalize">#normalize &mdash; CORL::Provisioner::Puppetnode</a>
1180
+
1181
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-normalize">#normalize &mdash; Nucleon::Plugin::Machine</a>
1182
+
1183
+ <li class="method"><a href="CORL/Configuration/File.html#method-i-normalize">#normalize &mdash; CORL::Configuration::File</a>
1184
+
1185
+ <li class="method"><a href="CORL/Node/Rackspace.html#method-i-normalize">#normalize &mdash; CORL::Node::Rackspace</a>
1186
+
1187
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-normalize">#normalize &mdash; CORL::Node::Vagrant</a>
1188
+
1189
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-normalize">#normalize &mdash; Nucleon::Plugin::Node</a>
1190
+
1191
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-normalize">#normalize &mdash; Nucleon::Plugin::Configuration</a>
1192
+
1193
+ <li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-normalize">#normalize &mdash; CORL::Util::Puppet::ResourceGroup</a>
1194
+
1195
+ <li class="method"><a href="CORL/Mixin/Lookup.html#method-i-normalize">#normalize &mdash; CORL::Mixin::Lookup</a>
1196
+
1197
+ <li class="method"><a href="CORL/Node/Aws.html#method-i-normalize">#normalize &mdash; CORL::Node::Aws</a>
1198
+
1199
+ <li class="method"><a href="CORL/Event/Puppet.html#method-i-normalize">#normalize &mdash; CORL::Event::Puppet</a>
1200
+
1201
+ <li class="method"><a href="CORL/Event/Puppet.html#method-i-operation">#operation &mdash; CORL::Event::Puppet</a>
1202
+
1203
+ <li class="method"><a href="CORL/Event/Puppet.html#method-i-operation-3D">#operation= &mdash; CORL::Event::Puppet</a>
1204
+
1205
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-packages">#packages &mdash; Nucleon::Plugin::Provisioner</a>
1206
+
1207
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-private_ip">#private_ip &mdash; CORL::Machine::Fog</a>
1208
+
1209
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-private_ip">#private_ip &mdash; Nucleon::Plugin::Machine</a>
1210
+
1211
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-private_ip">#private_ip &mdash; CORL::Machine::Physical</a>
1212
+
1213
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-private_ip">#private_ip &mdash; Nucleon::Plugin::Node</a>
1214
+
1215
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-private_key">#private_key &mdash; Nucleon::Plugin::Node</a>
1216
+
1217
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-private_key-3D">#private_key= &mdash; Nucleon::Plugin::Node</a>
1218
+
1219
+ <li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-process">#process &mdash; CORL::Util::Puppet::Resource</a>
1220
+
1221
+ <li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-profile_id">#profile_id &mdash; CORL::Provisioner::Puppetnode</a>
1222
+
1223
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-profiles">#profiles &mdash; Nucleon::Plugin::Provisioner</a>
1224
+
1225
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-profiles">#profiles &mdash; Nucleon::Plugin::Node</a>
1226
+
1227
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-profiles-3D">#profiles= &mdash; Nucleon::Plugin::Node</a>
1228
+
1229
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-project">#project &mdash; Nucleon::Plugin::Configuration</a>
1230
+
1231
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-provision">#provision &mdash; Nucleon::Plugin::Provisioner</a>
1232
+
1233
+ <li class="method"><a href="VagrantPlugins/CORL/Provisioner/CORL.html#method-i-provision">#provision &mdash; VagrantPlugins::CORL::Provisioner::CORL</a>
1234
+
1235
+ <li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-provision">#provision &mdash; CORL::Provisioner::Puppetnode</a>
1236
+
1237
+ <li class="method"><a href="CORL/Facade.html#method-i-provisioner">#provisioner &mdash; CORL::Facade</a>
1238
+
1239
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-provisioner_info">#provisioner_info &mdash; Nucleon::Plugin::Node</a>
1240
+
1241
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-provisioners">#provisioners &mdash; Nucleon::Plugin::Node</a>
1242
+
1243
+ <li class="method"><a href="CORL/Facade.html#method-i-provisioners">#provisioners &mdash; CORL::Facade</a>
1244
+
1245
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-public_ip">#public_ip &mdash; Nucleon::Plugin::Node</a>
1246
+
1247
+ <li class="method"><a href="CORL/Facade.html#method-i-public_ip">#public_ip &mdash; CORL::Facade</a>
1248
+
1249
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-public_ip">#public_ip &mdash; CORL::Machine::Physical</a>
1250
+
1251
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-public_ip">#public_ip &mdash; CORL::Machine::Fog</a>
1252
+
1253
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-public_ip">#public_ip &mdash; Nucleon::Plugin::Machine</a>
1254
+
1255
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-public_key">#public_key &mdash; Nucleon::Plugin::Node</a>
1256
+
1257
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-public_key-3D">#public_key= &mdash; Nucleon::Plugin::Node</a>
1258
+
1259
+ <li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-ready">#ready &mdash; CORL::Util::Puppet::Resource</a>
1260
+
1261
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-refresh_config">#refresh_config &mdash; CORL::Machine::Vagrant</a>
1262
+
1263
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-region">#region &mdash; CORL::Node::Fog</a>
1264
+
1265
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-region-3D">#region= &mdash; CORL::Node::Fog</a>
1266
+
1267
+ <li class="method"><a href="CORL/Node/Rackspace.html#method-i-regions">#regions &mdash; CORL::Node::Rackspace</a>
1268
+
1269
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-regions">#regions &mdash; CORL::Node::Fog</a>
1270
+
1271
+ <li class="method"><a href="CORL/Node/Aws.html#method-i-regions">#regions &mdash; CORL::Node::Aws</a>
1272
+
1273
+ <li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-register">#register &mdash; CORL::Provisioner::Puppetnode</a>
1274
+
1275
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-register">#register &mdash; Nucleon::Plugin::Provisioner</a>
1276
+
1277
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-reload">#reload &mdash; CORL::Machine::Vagrant</a>
1278
+
1279
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-reload">#reload &mdash; CORL::Node::Vagrant</a>
1280
+
1281
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-reload">#reload &mdash; CORL::Machine::Physical</a>
1282
+
1283
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-reload">#reload &mdash; CORL::Machine::Fog</a>
1284
+
1285
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-reload">#reload &mdash; Nucleon::Plugin::Machine</a>
1286
+
1287
+ <li class="method"><a href="Vagrant/Vagrantfile.html#method-i-reload">#reload &mdash; Vagrant::Vagrantfile</a>
1288
+
1289
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-reload">#reload &mdash; Nucleon::Plugin::Node</a>
1290
+
1291
+ <li class="method"><a href="CORL/Machine/Rackspace.html#method-i-reload">#reload &mdash; CORL::Machine::Rackspace</a>
1292
+
1293
+ <li class="method"><a href="CORL/Machine/Aws.html#method-i-reload">#reload &mdash; CORL::Machine::Aws</a>
1294
+
1295
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-reload">#reload &mdash; CORL::Node::Fog</a>
1296
+
1297
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-remote">#remote &mdash; Nucleon::Plugin::Configuration</a>
1298
+
1299
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-remote">#remote &mdash; Nucleon::Plugin::Network</a>
1300
+
1301
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-remove">#remove &mdash; Nucleon::Plugin::Configuration</a>
1302
+
1303
+ <li class="method"><a href="CORL/Configuration/File.html#method-i-remove">#remove &mdash; CORL::Configuration::File</a>
1304
+
1305
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-remove_plugin">#remove_plugin &mdash; Nucleon::Plugin::Configuration</a>
1306
+
1307
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-remove_plugin">#remove_plugin &mdash; Nucleon::Plugin::Node</a>
1308
+
1309
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-remove_plugin">#remove_plugin &mdash; Nucleon::Plugin::Network</a>
1310
+
1311
+ <li class="method"><a href="CORL/Event/Puppet.html#method-i-render">#render &mdash; CORL::Event::Puppet</a>
1312
+
1313
+ <li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-render">#render &mdash; CORL::Util::Puppet::Resource</a>
1314
+
1315
+ <li class="method"><a href="CORL/Template/Environment.html#method-i-render_assignment">#render_assignment &mdash; CORL::Template::Environment</a>
1316
+
1317
+ <li class="method"><a href="CORL/Node/Rackspace.html#method-i-render_image">#render_image &mdash; CORL::Node::Rackspace</a>
1318
+
1319
+ <li class="method"><a href="CORL/Node/Aws.html#method-i-render_image">#render_image &mdash; CORL::Node::Aws</a>
1320
+
1321
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-render_image">#render_image &mdash; Nucleon::Plugin::Node</a>
1322
+
1323
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-render_image">#render_image &mdash; CORL::Node::Vagrant</a>
1324
+
1325
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-render_machine_type">#render_machine_type &mdash; CORL::Node::Vagrant</a>
1326
+
1327
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-render_machine_type">#render_machine_type &mdash; Nucleon::Plugin::Node</a>
1328
+
1329
+ <li class="method"><a href="CORL/Node/Rackspace.html#method-i-render_machine_type">#render_machine_type &mdash; CORL::Node::Rackspace</a>
1330
+
1331
+ <li class="method"><a href="CORL/Node/Aws.html#method-i-render_machine_type">#render_machine_type &mdash; CORL::Node::Aws</a>
1332
+
1333
+ <li class="method"><a href="CORL/Template/Environment.html#method-i-render_name">#render_name &mdash; CORL::Template::Environment</a>
1334
+
1335
+ <li class="method"><a href="CORL/Template/Environment.html#method-i-render_processed">#render_processed &mdash; CORL::Template::Environment</a>
1336
+
1337
+ <li class="method"><a href="CORL/Template/Environment.html#method-i-render_value">#render_value &mdash; CORL::Template::Environment</a>
1338
+
1339
+ <li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-resources">#resources &mdash; CORL::Util::Puppet::ResourceGroup</a>
1340
+
1341
+ <li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-resources-3D">#resources= &mdash; CORL::Util::Puppet::ResourceGroup</a>
1342
+
1343
+ <li class="method"><a href="CORL/Configuration/File.html#method-i-router">#router &mdash; CORL::Configuration::File</a>
1344
+
1345
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-run">#run &mdash; CORL::Machine::Vagrant</a>
1346
+
1347
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-run">#run &mdash; Nucleon::Plugin::Node</a>
1348
+
1349
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-running-3F">#running? &mdash; CORL::Machine::Fog</a>
1350
+
1351
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-running-3F">#running? &mdash; CORL::Machine::Physical</a>
1352
+
1353
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-running-3F">#running? &mdash; Nucleon::Plugin::Machine</a>
1354
+
1355
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-running-3F">#running? &mdash; CORL::Machine::Vagrant</a>
1356
+
1357
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-save">#save &mdash; Nucleon::Plugin::Node</a>
1358
+
1359
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-save">#save &mdash; Nucleon::Plugin::Network</a>
1360
+
1361
+ <li class="method"><a href="CORL/Configuration/File.html#method-i-save">#save &mdash; CORL::Configuration::File</a>
1362
+
1363
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-save">#save &mdash; Nucleon::Plugin::Configuration</a>
1364
+
1365
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-save">#save &mdash; CORL::Node::Vagrant</a>
1366
+
1367
+ <li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-scope">#scope &mdash; CORL::Provisioner::Puppetnode</a>
1368
+
1369
+ <li class="method"><a href="CORL/Configuration/File.html#method-i-search">#search &mdash; CORL::Configuration::File</a>
1370
+
1371
+ <li class="method"><a href="CORL/Configuration/File.html#method-i-search_files">#search_files &mdash; CORL::Configuration::File</a>
1372
+
1373
+ <li class="method"><a href="CORL/Configuration/File.html#method-i-select_largest">#select_largest &mdash; CORL::Configuration::File</a>
1374
+
1375
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-send_files">#send_files &mdash; Nucleon::Plugin::Node</a>
1376
+
1377
+ <li class="method"><a href="CORL/Configuration/File.html#method-i-separate">#separate &mdash; CORL::Configuration::File</a>
1378
+
1379
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-server">#server &mdash; CORL::Machine::Vagrant</a>
1380
+
1381
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-server">#server &mdash; CORL::Machine::Fog</a>
1382
+
1383
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-server-3D">#server= &mdash; CORL::Machine::Fog</a>
1384
+
1385
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-server-3D">#server= &mdash; CORL::Machine::Vagrant</a>
1386
+
1387
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-set">#set &mdash; Nucleon::Plugin::Configuration</a>
1388
+
1389
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-set_command">#set_command &mdash; CORL::Machine::Vagrant</a>
1390
+
1391
+ <li class="method"><a href="CORL/Machine/Rackspace.html#method-i-set_connection">#set_connection &mdash; CORL::Machine::Rackspace</a>
1392
+
1393
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-set_connection">#set_connection &mdash; CORL::Machine::Fog</a>
1394
+
1395
+ <li class="method"><a href="CORL/Machine/Aws.html#method-i-set_connection">#set_connection &mdash; CORL::Machine::Aws</a>
1396
+
1397
+ <li class="method"><a href="CORL/Configuration/File.html#method-i-set_location">#set_location &mdash; CORL::Configuration::File</a>
1398
+
1399
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-set_location">#set_location &mdash; Nucleon::Plugin::Configuration</a>
1400
+
1401
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-set_remote">#set_remote &mdash; Nucleon::Plugin::Network</a>
1402
+
1403
+ <li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-set_remote">#set_remote &mdash; Nucleon::Plugin::Configuration</a>
1404
+
1405
+ <li class="method"><a href="Fog/Compute/RackspaceV2/Server.html#method-i-setup">#setup &mdash; Fog::Compute::RackspaceV2::Server</a>
1406
+
1407
+ <li class="method"><a href="Fog/Compute/AWS/Server.html#method-i-setup">#setup &mdash; Fog::Compute::AWS::Server</a>
1408
+
1409
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-shares">#shares &mdash; CORL::Node::Vagrant</a>
1410
+
1411
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-shares-3D">#shares= &mdash; CORL::Node::Vagrant</a>
1412
+
1413
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-ssh">#ssh &mdash; CORL::Node::Vagrant</a>
1414
+
1415
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-ssh-3D">#ssh= &mdash; CORL::Node::Vagrant</a>
1416
+
1417
+ <li class="method"><a href="CORL/Mixin/Machine/SSH.html#method-i-ssh_download">#ssh_download &mdash; CORL::Mixin::Machine::SSH</a>
1418
+
1419
+ <li class="method"><a href="CORL/Mixin/Machine/SSH.html#method-i-ssh_exec">#ssh_exec &mdash; CORL::Mixin::Machine::SSH</a>
1420
+
1421
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-ssh_path">#ssh_path &mdash; Nucleon::Plugin::Node</a>
1422
+
1423
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-ssh_port">#ssh_port &mdash; Nucleon::Plugin::Node</a>
1424
+
1425
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-ssh_port-3D">#ssh_port= &mdash; Nucleon::Plugin::Node</a>
1426
+
1427
+ <li class="method"><a href="CORL/Mixin/Machine/SSH.html#method-i-ssh_terminal">#ssh_terminal &mdash; CORL::Mixin::Machine::SSH</a>
1428
+
1429
+ <li class="method"><a href="CORL/Mixin/Machine/SSH.html#method-i-ssh_upload">#ssh_upload &mdash; CORL::Mixin::Machine::SSH</a>
1430
+
1431
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-ssh_wait_for_ready">#ssh_wait_for_ready &mdash; CORL::Machine::Fog</a>
1432
+
1433
+ <li class="method"><a href="CORL/Mixin/Machine/SSH.html#method-i-ssh_wait_for_ready">#ssh_wait_for_ready &mdash; CORL::Mixin::Machine::SSH</a>
1434
+
1435
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-start">#start &mdash; CORL::Machine::Vagrant</a>
1436
+
1437
+ <li class="method"><a href="CORL/Node/Rackspace.html#method-i-start">#start &mdash; CORL::Node::Rackspace</a>
1438
+
1439
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-start">#start &mdash; CORL::Node::Fog</a>
1440
+
1441
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-start">#start &mdash; CORL::Machine::Physical</a>
1442
+
1443
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-start">#start &mdash; Nucleon::Plugin::Node</a>
1444
+
1445
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-start">#start &mdash; Nucleon::Plugin::Machine</a>
1446
+
1447
+ <li class="method"><a href="CORL/Node/Aws.html#method-i-start">#start &mdash; CORL::Node::Aws</a>
1448
+
1449
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-start">#start &mdash; CORL::Node::Vagrant</a>
1450
+
1451
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-start_machine">#start_machine &mdash; CORL::Machine::Vagrant</a>
1452
+
1453
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-state">#state &mdash; CORL::Machine::Fog</a>
1454
+
1455
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-state">#state &mdash; CORL::Machine::Vagrant</a>
1456
+
1457
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-state">#state &mdash; CORL::Node::Vagrant</a>
1458
+
1459
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-state">#state &mdash; Nucleon::Plugin::Node</a>
1460
+
1461
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-state">#state &mdash; CORL::Machine::Physical</a>
1462
+
1463
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-state">#state &mdash; Nucleon::Plugin::Machine</a>
1464
+
1465
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-stop">#stop &mdash; CORL::Node::Fog</a>
1466
+
1467
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-stop">#stop &mdash; CORL::Machine::Vagrant</a>
1468
+
1469
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-stop">#stop &mdash; Nucleon::Plugin::Node</a>
1470
+
1471
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-stop">#stop &mdash; CORL::Machine::Fog</a>
1472
+
1473
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-stop">#stop &mdash; CORL::Node::Vagrant</a>
1474
+
1475
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-stop">#stop &mdash; Nucleon::Plugin::Machine</a>
1476
+
1477
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-stop">#stop &mdash; CORL::Machine::Physical</a>
1478
+
1479
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-supported_profiles">#supported_profiles &mdash; Nucleon::Plugin::Provisioner</a>
1480
+
1481
+ <li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-tag">#tag &mdash; CORL::Util::Puppet::Resource</a>
1482
+
1483
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-terminal">#terminal &mdash; CORL::Machine::Physical</a>
1484
+
1485
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-terminal">#terminal &mdash; Nucleon::Plugin::Node</a>
1486
+
1487
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-terminal">#terminal &mdash; CORL::Machine::Fog</a>
1488
+
1489
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-terminal">#terminal &mdash; Nucleon::Plugin::Machine</a>
1490
+
1491
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-terminal">#terminal &mdash; CORL::Machine::Vagrant</a>
1492
+
1493
+ <li class="method"><a href="Nucleon/Plugin/Network.html#method-i-test_node">#test_node &mdash; Nucleon::Plugin::Network</a>
1494
+
1495
+ <li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-title">#title &mdash; CORL::Util::Puppet::Resource</a>
1496
+
1497
+ <li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-title-3D">#title= &mdash; CORL::Util::Puppet::Resource</a>
1498
+
1499
+ <li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-translate">#translate &mdash; CORL::Util::Puppet::Resource</a>
1500
+
1501
+ <li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-translate">#translate &mdash; CORL::Util::Puppet::ResourceGroup</a>
1502
+
1503
+ <li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-translate_reference">#translate_reference &mdash; Nucleon::Plugin::Provisioner</a>
1504
+
1505
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-translate_reference">#translate_reference &mdash; Nucleon::Plugin::Node</a>
1506
+
1507
+ <li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-translate_resource_refs">#translate_resource_refs &mdash; CORL::Util::Puppet::Resource</a>
1508
+
1509
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-translate_state">#translate_state &mdash; Nucleon::Plugin::Machine</a>
1510
+
1511
+ <li class="method"><a href="CORL/Configuration/File.html#method-i-update_project">#update_project &mdash; CORL::Configuration::File</a>
1512
+
1513
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-upload">#upload &mdash; CORL::Node::Vagrant</a>
1514
+
1515
+ <li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-upload">#upload &mdash; Nucleon::Plugin::Machine</a>
1516
+
1517
+ <li class="method"><a href="CORL/Node/Fog.html#method-i-upload">#upload &mdash; CORL::Node::Fog</a>
1518
+
1519
+ <li class="method"><a href="CORL/Machine/Physical.html#method-i-upload">#upload &mdash; CORL::Machine::Physical</a>
1520
+
1521
+ <li class="method"><a href="CORL/Machine/Fog.html#method-i-upload">#upload &mdash; CORL::Machine::Fog</a>
1522
+
1523
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-upload">#upload &mdash; Nucleon::Plugin::Node</a>
1524
+
1525
+ <li class="method"><a href="CORL/Machine/Vagrant.html#method-i-upload">#upload &mdash; CORL::Machine::Vagrant</a>
1526
+
1527
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-usable_image-3F">#usable_image? &mdash; Nucleon::Plugin::Node</a>
1528
+
1529
+ <li class="method"><a href="CORL/Node/Aws.html#method-i-usable_image-3F">#usable_image? &mdash; CORL::Node::Aws</a>
1530
+
1531
+ <li class="method"><a href="CORL/Node/Rackspace.html#method-i-usable_image-3F">#usable_image? &mdash; CORL::Node::Rackspace</a>
1532
+
1533
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-user">#user &mdash; Nucleon::Plugin::Node</a>
1534
+
1535
+ <li class="method"><a href="Nucleon/Plugin/Node.html#method-i-user-3D">#user= &mdash; Nucleon::Plugin::Node</a>
1536
+
1537
+ <li class="method"><a href="CORL/Facade.html#method-i-vagrant-3F">#vagrant? &mdash; CORL::Facade</a>
1538
+
1539
+ <li class="method"><a href="CORL/Facade.html#method-i-vagrant_config">#vagrant_config &mdash; CORL::Facade</a>
1540
+
1541
+ <li class="method"><a href="CORL/Facade.html#method-i-vagrant_config_loaded-3F">#vagrant_config_loaded? &mdash; CORL::Facade</a>
1542
+
1543
+ <li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-validate">#validate &mdash; CORL::Plugin::CloudAction</a>
1544
+
1545
+ <li class="method"><a href="VagrantPlugins/CORL/Config/CORL.html#method-i-validate">#validate &mdash; VagrantPlugins::CORL::Config::CORL</a>
1546
+
1547
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-vm">#vm &mdash; CORL::Node::Vagrant</a>
1548
+
1549
+ <li class="method"><a href="CORL/Node/Vagrant.html#method-i-vm-3D">#vm= &mdash; CORL::Node::Vagrant</a>
1550
+
1551
+ <li class="method"><a href="VagrantPlugins/CORL/Command/Launcher.html#method-i-vm_machine">#vm_machine &mdash; VagrantPlugins::CORL::Command::Launcher</a>
1552
+
1553
+ </ul>
1554
+
1555
+
1556
+ <footer id="validator-badges">
1557
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
1558
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.2.
1559
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
1560
+ </footer>
1561
+