corl 0.5.0 → 0.5.1

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