fog-maestrodev 1.7.0.20121114190951

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3248) hide show
  1. data/.document +3 -0
  2. data/.gitignore +22 -0
  3. data/.irbrc +82 -0
  4. data/.travis.yml +21 -0
  5. data/Gemfile +3 -0
  6. data/README.md +155 -0
  7. data/Rakefile +444 -0
  8. data/benchs/fog_vs.rb +106 -0
  9. data/benchs/params.rb +43 -0
  10. data/benchs/parse_vs_push.rb +69 -0
  11. data/bin/fog +52 -0
  12. data/changelog.txt +3573 -0
  13. data/docs/_config.yml +39 -0
  14. data/docs/_layouts/default.html +111 -0
  15. data/docs/about/contributing.markdown +228 -0
  16. data/docs/about/getting_started.markdown +108 -0
  17. data/docs/about/press.markdown +52 -0
  18. data/docs/about/structure.markdown +78 -0
  19. data/docs/about/users.markdown +34 -0
  20. data/docs/cdn/index.markdown +148 -0
  21. data/docs/compute/index.markdown +122 -0
  22. data/docs/dns/index.markdown +79 -0
  23. data/docs/index.markdown +88 -0
  24. data/docs/public/crossdomain.xml +25 -0
  25. data/docs/public/css/fog.css +142 -0
  26. data/docs/public/css/handheld.css +8 -0
  27. data/docs/public/css/style.css +129 -0
  28. data/docs/public/images/.gitignore +3 -0
  29. data/docs/public/images/engineyard.png +0 -0
  30. data/docs/public/images/fog.png +0 -0
  31. data/docs/public/js/libs/dd_belatedpng.js +289 -0
  32. data/docs/public/js/libs/dd_belatedpng.min.js +13 -0
  33. data/docs/public/js/libs/jquery-1.4.2.js +6240 -0
  34. data/docs/public/js/libs/jquery-1.4.2.min.js +154 -0
  35. data/docs/public/js/libs/modernizr-1.6.js +892 -0
  36. data/docs/public/js/libs/modernizr-1.6.min.js +30 -0
  37. data/docs/public/js/mylibs/.gitignore +3 -0
  38. data/docs/public/js/plugins.js +34 -0
  39. data/docs/public/js/profiling/config.js +59 -0
  40. data/docs/public/js/profiling/yahoo-profiling.css +7 -0
  41. data/docs/public/js/profiling/yahoo-profiling.js +1028 -0
  42. data/docs/public/js/profiling/yahoo-profiling.min.js +39 -0
  43. data/docs/public/js/script.js +26 -0
  44. data/docs/public/robots.txt +5 -0
  45. data/docs/storage/index.markdown +204 -0
  46. data/fog.gemspec +71 -0
  47. data/lib/fog/atmos/models/storage/directories.rb +48 -0
  48. data/lib/fog/atmos/models/storage/directory.rb +53 -0
  49. data/lib/fog/atmos/models/storage/file.rb +109 -0
  50. data/lib/fog/atmos/models/storage/files.rb +73 -0
  51. data/lib/fog/atmos/requests/storage/delete_namespace.rb +19 -0
  52. data/lib/fog/atmos/requests/storage/get_namespace.rb +20 -0
  53. data/lib/fog/atmos/requests/storage/head_namespace.rb +20 -0
  54. data/lib/fog/atmos/requests/storage/post_namespace.rb +20 -0
  55. data/lib/fog/atmos/requests/storage/put_namespace.rb +20 -0
  56. data/lib/fog/atmos/storage.rb +186 -0
  57. data/lib/fog/atmos.rb +11 -0
  58. data/lib/fog/aws/auto_scaling.rb +286 -0
  59. data/lib/fog/aws/beanstalk.rb +152 -0
  60. data/lib/fog/aws/cdn.rb +196 -0
  61. data/lib/fog/aws/cloud_formation.rb +127 -0
  62. data/lib/fog/aws/cloud_watch.rb +167 -0
  63. data/lib/fog/aws/compute.rb +407 -0
  64. data/lib/fog/aws/credential_fetcher.rb +64 -0
  65. data/lib/fog/aws/dns.rb +139 -0
  66. data/lib/fog/aws/dynamodb.rb +176 -0
  67. data/lib/fog/aws/elasticache.rb +192 -0
  68. data/lib/fog/aws/elb/policy_types.rb +466 -0
  69. data/lib/fog/aws/elb.rb +229 -0
  70. data/lib/fog/aws/emr.rb +134 -0
  71. data/lib/fog/aws/glacier.rb +172 -0
  72. data/lib/fog/aws/iam.rb +225 -0
  73. data/lib/fog/aws/models/auto_scaling/activities.rb +30 -0
  74. data/lib/fog/aws/models/auto_scaling/activity.rb +29 -0
  75. data/lib/fog/aws/models/auto_scaling/configuration.rb +65 -0
  76. data/lib/fog/aws/models/auto_scaling/configurations.rb +35 -0
  77. data/lib/fog/aws/models/auto_scaling/group.rb +147 -0
  78. data/lib/fog/aws/models/auto_scaling/groups.rb +35 -0
  79. data/lib/fog/aws/models/auto_scaling/instance.rb +60 -0
  80. data/lib/fog/aws/models/auto_scaling/instances.rb +30 -0
  81. data/lib/fog/aws/models/auto_scaling/policies.rb +33 -0
  82. data/lib/fog/aws/models/auto_scaling/policy.rb +46 -0
  83. data/lib/fog/aws/models/beanstalk/application.rb +62 -0
  84. data/lib/fog/aws/models/beanstalk/applications.rb +25 -0
  85. data/lib/fog/aws/models/beanstalk/environment.rb +145 -0
  86. data/lib/fog/aws/models/beanstalk/environments.rb +29 -0
  87. data/lib/fog/aws/models/beanstalk/event.rb +20 -0
  88. data/lib/fog/aws/models/beanstalk/events.rb +19 -0
  89. data/lib/fog/aws/models/beanstalk/template.rb +78 -0
  90. data/lib/fog/aws/models/beanstalk/templates.rb +70 -0
  91. data/lib/fog/aws/models/beanstalk/version.rb +79 -0
  92. data/lib/fog/aws/models/beanstalk/versions.rb +31 -0
  93. data/lib/fog/aws/models/cdn/distribution.rb +93 -0
  94. data/lib/fog/aws/models/cdn/distribution_helper.rb +64 -0
  95. data/lib/fog/aws/models/cdn/distributions.rb +32 -0
  96. data/lib/fog/aws/models/cdn/distributions_helper.rb +47 -0
  97. data/lib/fog/aws/models/cdn/invalidation.rb +64 -0
  98. data/lib/fog/aws/models/cdn/invalidations.rb +54 -0
  99. data/lib/fog/aws/models/cdn/streaming_distribution.rb +77 -0
  100. data/lib/fog/aws/models/cdn/streaming_distributions.rb +32 -0
  101. data/lib/fog/aws/models/cloud_watch/alarm.rb +60 -0
  102. data/lib/fog/aws/models/cloud_watch/alarm_data.rb +39 -0
  103. data/lib/fog/aws/models/cloud_watch/alarm_datum.rb +66 -0
  104. data/lib/fog/aws/models/cloud_watch/alarm_histories.rb +18 -0
  105. data/lib/fog/aws/models/cloud_watch/alarm_history.rb +16 -0
  106. data/lib/fog/aws/models/cloud_watch/alarms.rb +47 -0
  107. data/lib/fog/aws/models/cloud_watch/metric.rb +14 -0
  108. data/lib/fog/aws/models/cloud_watch/metric_statistic.rb +45 -0
  109. data/lib/fog/aws/models/cloud_watch/metric_statistics.rb +23 -0
  110. data/lib/fog/aws/models/cloud_watch/metrics.rb +32 -0
  111. data/lib/fog/aws/models/compute/address.rb +76 -0
  112. data/lib/fog/aws/models/compute/addresses.rb +100 -0
  113. data/lib/fog/aws/models/compute/dhcp_option.rb +68 -0
  114. data/lib/fog/aws/models/compute/dhcp_options.rb +91 -0
  115. data/lib/fog/aws/models/compute/flavor.rb +21 -0
  116. data/lib/fog/aws/models/compute/flavors.rb +187 -0
  117. data/lib/fog/aws/models/compute/image.rb +48 -0
  118. data/lib/fog/aws/models/compute/images.rb +62 -0
  119. data/lib/fog/aws/models/compute/internet_gateway.rb +81 -0
  120. data/lib/fog/aws/models/compute/internet_gateways.rb +91 -0
  121. data/lib/fog/aws/models/compute/key_pair.rb +59 -0
  122. data/lib/fog/aws/models/compute/key_pairs.rb +88 -0
  123. data/lib/fog/aws/models/compute/network_interface.rb +70 -0
  124. data/lib/fog/aws/models/compute/network_interfaces.rb +136 -0
  125. data/lib/fog/aws/models/compute/security_group.rb +285 -0
  126. data/lib/fog/aws/models/compute/security_groups.rb +120 -0
  127. data/lib/fog/aws/models/compute/server.rb +252 -0
  128. data/lib/fog/aws/models/compute/servers.rb +158 -0
  129. data/lib/fog/aws/models/compute/snapshot.rb +56 -0
  130. data/lib/fog/aws/models/compute/snapshots.rb +52 -0
  131. data/lib/fog/aws/models/compute/spot_request.rb +120 -0
  132. data/lib/fog/aws/models/compute/spot_requests.rb +91 -0
  133. data/lib/fog/aws/models/compute/subnet.rb +57 -0
  134. data/lib/fog/aws/models/compute/subnets.rb +99 -0
  135. data/lib/fog/aws/models/compute/tag.rb +34 -0
  136. data/lib/fog/aws/models/compute/tags.rb +34 -0
  137. data/lib/fog/aws/models/compute/volume.rb +131 -0
  138. data/lib/fog/aws/models/compute/volumes.rb +121 -0
  139. data/lib/fog/aws/models/compute/vpc.rb +63 -0
  140. data/lib/fog/aws/models/compute/vpcs.rb +93 -0
  141. data/lib/fog/aws/models/dns/record.rb +106 -0
  142. data/lib/fog/aws/models/dns/records.rb +126 -0
  143. data/lib/fog/aws/models/dns/zone.rb +53 -0
  144. data/lib/fog/aws/models/dns/zones.rb +33 -0
  145. data/lib/fog/aws/models/elasticache/cluster.rb +69 -0
  146. data/lib/fog/aws/models/elasticache/clusters.rb +31 -0
  147. data/lib/fog/aws/models/elasticache/parameter_group.rb +32 -0
  148. data/lib/fog/aws/models/elasticache/parameter_groups.rb +30 -0
  149. data/lib/fog/aws/models/elasticache/security_group.rb +52 -0
  150. data/lib/fog/aws/models/elasticache/security_groups.rb +30 -0
  151. data/lib/fog/aws/models/elb/listener.rb +59 -0
  152. data/lib/fog/aws/models/elb/listeners.rb +32 -0
  153. data/lib/fog/aws/models/elb/load_balancer.rb +173 -0
  154. data/lib/fog/aws/models/elb/load_balancers.rb +38 -0
  155. data/lib/fog/aws/models/elb/policies.rb +40 -0
  156. data/lib/fog/aws/models/elb/policy.rb +52 -0
  157. data/lib/fog/aws/models/glacier/archive.rb +70 -0
  158. data/lib/fog/aws/models/glacier/archives.rb +30 -0
  159. data/lib/fog/aws/models/glacier/job.rb +65 -0
  160. data/lib/fog/aws/models/glacier/jobs.rb +45 -0
  161. data/lib/fog/aws/models/glacier/vault.rb +53 -0
  162. data/lib/fog/aws/models/glacier/vaults.rb +28 -0
  163. data/lib/fog/aws/models/iam/access_key.rb +38 -0
  164. data/lib/fog/aws/models/iam/access_keys.rb +36 -0
  165. data/lib/fog/aws/models/iam/policies.rb +44 -0
  166. data/lib/fog/aws/models/iam/policy.rb +39 -0
  167. data/lib/fog/aws/models/iam/user.rb +40 -0
  168. data/lib/fog/aws/models/iam/users.rb +49 -0
  169. data/lib/fog/aws/models/rds/parameter.rb +21 -0
  170. data/lib/fog/aws/models/rds/parameter_group.rb +36 -0
  171. data/lib/fog/aws/models/rds/parameter_groups.rb +27 -0
  172. data/lib/fog/aws/models/rds/parameters.rb +37 -0
  173. data/lib/fog/aws/models/rds/security_group.rb +82 -0
  174. data/lib/fog/aws/models/rds/security_groups.rb +43 -0
  175. data/lib/fog/aws/models/rds/server.rb +131 -0
  176. data/lib/fog/aws/models/rds/servers.rb +27 -0
  177. data/lib/fog/aws/models/rds/snapshot.rb +50 -0
  178. data/lib/fog/aws/models/rds/snapshots.rb +48 -0
  179. data/lib/fog/aws/models/rds/subnet_group.rb +20 -0
  180. data/lib/fog/aws/models/rds/subnet_groups.rb +27 -0
  181. data/lib/fog/aws/models/storage/directories.rb +43 -0
  182. data/lib/fog/aws/models/storage/directory.rb +126 -0
  183. data/lib/fog/aws/models/storage/file.rb +194 -0
  184. data/lib/fog/aws/models/storage/files.rb +122 -0
  185. data/lib/fog/aws/models/storage/version.rb +36 -0
  186. data/lib/fog/aws/models/storage/versions.rb +38 -0
  187. data/lib/fog/aws/parsers/auto_scaling/basic.rb +28 -0
  188. data/lib/fog/aws/parsers/auto_scaling/describe_adjustment_types.rb +52 -0
  189. data/lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb +159 -0
  190. data/lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_instances.rb +43 -0
  191. data/lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_notification_types.rb +43 -0
  192. data/lib/fog/aws/parsers/auto_scaling/describe_launch_configurations.rb +94 -0
  193. data/lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb +66 -0
  194. data/lib/fog/aws/parsers/auto_scaling/describe_notification_configurations.rb +42 -0
  195. data/lib/fog/aws/parsers/auto_scaling/describe_policies.rb +68 -0
  196. data/lib/fog/aws/parsers/auto_scaling/describe_scaling_activities.rb +47 -0
  197. data/lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb +52 -0
  198. data/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb +46 -0
  199. data/lib/fog/aws/parsers/auto_scaling/describe_tags.rb +46 -0
  200. data/lib/fog/aws/parsers/auto_scaling/describe_termination_policy_types.rb +44 -0
  201. data/lib/fog/aws/parsers/auto_scaling/put_notification_configuration.rb +27 -0
  202. data/lib/fog/aws/parsers/auto_scaling/put_scaling_policy.rb +30 -0
  203. data/lib/fog/aws/parsers/auto_scaling/terminate_instance_in_auto_scaling_group.rb +35 -0
  204. data/lib/fog/aws/parsers/beanstalk/check_dns_availability.rb +19 -0
  205. data/lib/fog/aws/parsers/beanstalk/create_application.rb +24 -0
  206. data/lib/fog/aws/parsers/beanstalk/create_application_version.rb +26 -0
  207. data/lib/fog/aws/parsers/beanstalk/create_configuration_template.rb +29 -0
  208. data/lib/fog/aws/parsers/beanstalk/create_environment.rb +37 -0
  209. data/lib/fog/aws/parsers/beanstalk/create_storage_location.rb +18 -0
  210. data/lib/fog/aws/parsers/beanstalk/describe_application_versions.rb +26 -0
  211. data/lib/fog/aws/parsers/beanstalk/describe_applications.rb +24 -0
  212. data/lib/fog/aws/parsers/beanstalk/describe_configuration_options.rb +32 -0
  213. data/lib/fog/aws/parsers/beanstalk/describe_configuration_settings.rb +30 -0
  214. data/lib/fog/aws/parsers/beanstalk/describe_environment_resources.rb +26 -0
  215. data/lib/fog/aws/parsers/beanstalk/describe_environments.rb +38 -0
  216. data/lib/fog/aws/parsers/beanstalk/describe_events.rb +27 -0
  217. data/lib/fog/aws/parsers/beanstalk/empty.rb +27 -0
  218. data/lib/fog/aws/parsers/beanstalk/list_available_solution_stacks.rb +21 -0
  219. data/lib/fog/aws/parsers/beanstalk/parser.rb +93 -0
  220. data/lib/fog/aws/parsers/beanstalk/retrieve_environment_info.rb +22 -0
  221. data/lib/fog/aws/parsers/beanstalk/terminate_environment.rb +37 -0
  222. data/lib/fog/aws/parsers/beanstalk/update_application.rb +24 -0
  223. data/lib/fog/aws/parsers/beanstalk/update_application_version.rb +26 -0
  224. data/lib/fog/aws/parsers/beanstalk/update_configuration_template.rb +29 -0
  225. data/lib/fog/aws/parsers/beanstalk/update_environment.rb +37 -0
  226. data/lib/fog/aws/parsers/beanstalk/validate_configuration_settings.rb +22 -0
  227. data/lib/fog/aws/parsers/cdn/distribution.rb +59 -0
  228. data/lib/fog/aws/parsers/cdn/get_distribution_list.rb +61 -0
  229. data/lib/fog/aws/parsers/cdn/get_invalidation.rb +32 -0
  230. data/lib/fog/aws/parsers/cdn/get_invalidation_list.rb +42 -0
  231. data/lib/fog/aws/parsers/cdn/get_streaming_distribution_list.rb +59 -0
  232. data/lib/fog/aws/parsers/cdn/post_invalidation.rb +28 -0
  233. data/lib/fog/aws/parsers/cdn/streaming_distribution.rb +59 -0
  234. data/lib/fog/aws/parsers/cloud_formation/basic.rb +12 -0
  235. data/lib/fog/aws/parsers/cloud_formation/create_stack.rb +19 -0
  236. data/lib/fog/aws/parsers/cloud_formation/describe_stack_events.rb +31 -0
  237. data/lib/fog/aws/parsers/cloud_formation/describe_stack_resources.rb +31 -0
  238. data/lib/fog/aws/parsers/cloud_formation/describe_stacks.rb +81 -0
  239. data/lib/fog/aws/parsers/cloud_formation/get_template.rb +19 -0
  240. data/lib/fog/aws/parsers/cloud_formation/update_stack.rb +19 -0
  241. data/lib/fog/aws/parsers/cloud_formation/validate_template.rb +52 -0
  242. data/lib/fog/aws/parsers/cloud_watch/delete_alarms.rb +26 -0
  243. data/lib/fog/aws/parsers/cloud_watch/describe_alarm_history.rb +40 -0
  244. data/lib/fog/aws/parsers/cloud_watch/describe_alarms.rb +73 -0
  245. data/lib/fog/aws/parsers/cloud_watch/describe_alarms_for_metric.rb +71 -0
  246. data/lib/fog/aws/parsers/cloud_watch/disable_alarm_actions.rb +26 -0
  247. data/lib/fog/aws/parsers/cloud_watch/enable_alarm_actions.rb +26 -0
  248. data/lib/fog/aws/parsers/cloud_watch/get_metric_statistics.rb +43 -0
  249. data/lib/fog/aws/parsers/cloud_watch/list_metrics.rb +58 -0
  250. data/lib/fog/aws/parsers/cloud_watch/put_metric_alarm.rb +26 -0
  251. data/lib/fog/aws/parsers/cloud_watch/put_metric_data.rb +26 -0
  252. data/lib/fog/aws/parsers/cloud_watch/set_alarm_state.rb +26 -0
  253. data/lib/fog/aws/parsers/compute/allocate_address.rb +19 -0
  254. data/lib/fog/aws/parsers/compute/associate_address.rb +25 -0
  255. data/lib/fog/aws/parsers/compute/associate_dhcp_options.rb +24 -0
  256. data/lib/fog/aws/parsers/compute/attach_internet_gateway.rb +24 -0
  257. data/lib/fog/aws/parsers/compute/attach_network_interface.rb +18 -0
  258. data/lib/fog/aws/parsers/compute/attach_volume.rb +22 -0
  259. data/lib/fog/aws/parsers/compute/basic.rb +25 -0
  260. data/lib/fog/aws/parsers/compute/cancel_spot_instance_requests.rb +30 -0
  261. data/lib/fog/aws/parsers/compute/create_dhcp_options.rb +75 -0
  262. data/lib/fog/aws/parsers/compute/create_image.rb +20 -0
  263. data/lib/fog/aws/parsers/compute/create_internet_gateway.rb +65 -0
  264. data/lib/fog/aws/parsers/compute/create_key_pair.rb +20 -0
  265. data/lib/fog/aws/parsers/compute/create_network_interface.rb +28 -0
  266. data/lib/fog/aws/parsers/compute/create_security_group.rb +24 -0
  267. data/lib/fog/aws/parsers/compute/create_snapshot.rb +26 -0
  268. data/lib/fog/aws/parsers/compute/create_subnet.rb +51 -0
  269. data/lib/fog/aws/parsers/compute/create_volume.rb +24 -0
  270. data/lib/fog/aws/parsers/compute/create_vpc.rb +51 -0
  271. data/lib/fog/aws/parsers/compute/delete_dhcp_options.rb +24 -0
  272. data/lib/fog/aws/parsers/compute/delete_internet_gateway.rb +24 -0
  273. data/lib/fog/aws/parsers/compute/delete_network_interface.rb +24 -0
  274. data/lib/fog/aws/parsers/compute/delete_subnet.rb +24 -0
  275. data/lib/fog/aws/parsers/compute/delete_vpc.rb +24 -0
  276. data/lib/fog/aws/parsers/compute/deregister_image.rb +20 -0
  277. data/lib/fog/aws/parsers/compute/describe_addresses.rb +30 -0
  278. data/lib/fog/aws/parsers/compute/describe_availability_zones.rb +43 -0
  279. data/lib/fog/aws/parsers/compute/describe_dhcp_options.rb +75 -0
  280. data/lib/fog/aws/parsers/compute/describe_images.rb +91 -0
  281. data/lib/fog/aws/parsers/compute/describe_instance_status.rb +74 -0
  282. data/lib/fog/aws/parsers/compute/describe_instances.rb +110 -0
  283. data/lib/fog/aws/parsers/compute/describe_internet_gateways.rb +65 -0
  284. data/lib/fog/aws/parsers/compute/describe_key_pairs.rb +30 -0
  285. data/lib/fog/aws/parsers/compute/describe_network_interface_attribute.rb +79 -0
  286. data/lib/fog/aws/parsers/compute/describe_network_interfaces.rb +43 -0
  287. data/lib/fog/aws/parsers/compute/describe_placement_groups.rb +30 -0
  288. data/lib/fog/aws/parsers/compute/describe_regions.rb +30 -0
  289. data/lib/fog/aws/parsers/compute/describe_reserved_instances.rb +36 -0
  290. data/lib/fog/aws/parsers/compute/describe_reserved_instances_offerings.rb +34 -0
  291. data/lib/fog/aws/parsers/compute/describe_security_groups.rb +100 -0
  292. data/lib/fog/aws/parsers/compute/describe_snapshots.rb +54 -0
  293. data/lib/fog/aws/parsers/compute/describe_spot_price_history.rb +34 -0
  294. data/lib/fog/aws/parsers/compute/describe_subnets.rb +49 -0
  295. data/lib/fog/aws/parsers/compute/describe_tags.rb +30 -0
  296. data/lib/fog/aws/parsers/compute/describe_volume_status.rb +87 -0
  297. data/lib/fog/aws/parsers/compute/describe_volumes.rb +71 -0
  298. data/lib/fog/aws/parsers/compute/describe_vpcs.rb +49 -0
  299. data/lib/fog/aws/parsers/compute/detach_internet_gateway.rb +24 -0
  300. data/lib/fog/aws/parsers/compute/detach_network_interface.rb +24 -0
  301. data/lib/fog/aws/parsers/compute/detach_volume.rb +22 -0
  302. data/lib/fog/aws/parsers/compute/get_console_output.rb +28 -0
  303. data/lib/fog/aws/parsers/compute/get_password_data.rb +26 -0
  304. data/lib/fog/aws/parsers/compute/import_key_pair.rb +20 -0
  305. data/lib/fog/aws/parsers/compute/monitor_unmonitor_instances.rb +35 -0
  306. data/lib/fog/aws/parsers/compute/network_interface_parser.rb +89 -0
  307. data/lib/fog/aws/parsers/compute/purchase_reserved_instances_offering.rb +24 -0
  308. data/lib/fog/aws/parsers/compute/register_image.rb +20 -0
  309. data/lib/fog/aws/parsers/compute/run_instances.rb +84 -0
  310. data/lib/fog/aws/parsers/compute/spot_datafeed_subscription.rb +29 -0
  311. data/lib/fog/aws/parsers/compute/spot_instance_requests.rb +67 -0
  312. data/lib/fog/aws/parsers/compute/start_stop_instances.rb +41 -0
  313. data/lib/fog/aws/parsers/compute/terminate_instances.rb +55 -0
  314. data/lib/fog/aws/parsers/dns/change_resource_record_sets.rb +26 -0
  315. data/lib/fog/aws/parsers/dns/create_hosted_zone.rb +55 -0
  316. data/lib/fog/aws/parsers/dns/delete_hosted_zone.rb +25 -0
  317. data/lib/fog/aws/parsers/dns/get_change.rb +26 -0
  318. data/lib/fog/aws/parsers/dns/get_hosted_zone.rb +43 -0
  319. data/lib/fog/aws/parsers/dns/list_hosted_zones.rb +37 -0
  320. data/lib/fog/aws/parsers/dns/list_resource_record_sets.rb +56 -0
  321. data/lib/fog/aws/parsers/elasticache/authorize_cache_security_group_ingress.rb +26 -0
  322. data/lib/fog/aws/parsers/elasticache/base.rb +32 -0
  323. data/lib/fog/aws/parsers/elasticache/cache_cluster_parser.rb +79 -0
  324. data/lib/fog/aws/parsers/elasticache/describe_cache_clusters.rb +27 -0
  325. data/lib/fog/aws/parsers/elasticache/describe_cache_parameters.rb +22 -0
  326. data/lib/fog/aws/parsers/elasticache/describe_engine_default_parameters.rb +22 -0
  327. data/lib/fog/aws/parsers/elasticache/describe_parameter_groups.rb +27 -0
  328. data/lib/fog/aws/parsers/elasticache/describe_security_groups.rb +27 -0
  329. data/lib/fog/aws/parsers/elasticache/engine_defaults_parser.rb +59 -0
  330. data/lib/fog/aws/parsers/elasticache/event_list.rb +40 -0
  331. data/lib/fog/aws/parsers/elasticache/modify_parameter_group.rb +27 -0
  332. data/lib/fog/aws/parsers/elasticache/parameter_group_parser.rb +30 -0
  333. data/lib/fog/aws/parsers/elasticache/reset_parameter_group.rb +27 -0
  334. data/lib/fog/aws/parsers/elasticache/security_group_parser.rb +40 -0
  335. data/lib/fog/aws/parsers/elasticache/single_cache_cluster.rb +22 -0
  336. data/lib/fog/aws/parsers/elasticache/single_parameter_group.rb +22 -0
  337. data/lib/fog/aws/parsers/elasticache/single_security_group.rb +34 -0
  338. data/lib/fog/aws/parsers/elb/apply_security_groups_to_load_balancer.rb +26 -0
  339. data/lib/fog/aws/parsers/elb/attach_load_balancer_to_subnets.rb +26 -0
  340. data/lib/fog/aws/parsers/elb/configure_health_check.rb +37 -0
  341. data/lib/fog/aws/parsers/elb/create_load_balancer.rb +26 -0
  342. data/lib/fog/aws/parsers/elb/delete_load_balancer.rb +24 -0
  343. data/lib/fog/aws/parsers/elb/deregister_instances_from_load_balancer.rb +26 -0
  344. data/lib/fog/aws/parsers/elb/describe_instance_health.rb +30 -0
  345. data/lib/fog/aws/parsers/elb/describe_load_balancer_policies.rb +64 -0
  346. data/lib/fog/aws/parsers/elb/describe_load_balancer_policy_types.rb +70 -0
  347. data/lib/fog/aws/parsers/elb/describe_load_balancers.rb +140 -0
  348. data/lib/fog/aws/parsers/elb/detach_load_balancer_from_subnets.rb +26 -0
  349. data/lib/fog/aws/parsers/elb/disable_availability_zones_for_load_balancer.rb +26 -0
  350. data/lib/fog/aws/parsers/elb/empty.rb +28 -0
  351. data/lib/fog/aws/parsers/elb/enable_availability_zones_for_load_balancer.rb +26 -0
  352. data/lib/fog/aws/parsers/elb/register_instances_with_load_balancer.rb +26 -0
  353. data/lib/fog/aws/parsers/emr/add_instance_groups.rb +28 -0
  354. data/lib/fog/aws/parsers/emr/add_job_flow_steps.rb +17 -0
  355. data/lib/fog/aws/parsers/emr/describe_job_flows.rb +140 -0
  356. data/lib/fog/aws/parsers/emr/modify_instance_groups.rb +17 -0
  357. data/lib/fog/aws/parsers/emr/run_job_flow.rb +19 -0
  358. data/lib/fog/aws/parsers/emr/set_termination_protection.rb +17 -0
  359. data/lib/fog/aws/parsers/emr/terminate_job_flows.rb +17 -0
  360. data/lib/fog/aws/parsers/iam/base_instance_profile.rb +79 -0
  361. data/lib/fog/aws/parsers/iam/basic.rb +19 -0
  362. data/lib/fog/aws/parsers/iam/create_access_key.rb +26 -0
  363. data/lib/fog/aws/parsers/iam/create_group.rb +26 -0
  364. data/lib/fog/aws/parsers/iam/create_user.rb +26 -0
  365. data/lib/fog/aws/parsers/iam/get_group.rb +55 -0
  366. data/lib/fog/aws/parsers/iam/get_group_policy.rb +27 -0
  367. data/lib/fog/aws/parsers/iam/get_role_policy.rb +32 -0
  368. data/lib/fog/aws/parsers/iam/get_user.rb +27 -0
  369. data/lib/fog/aws/parsers/iam/get_user_policy.rb +33 -0
  370. data/lib/fog/aws/parsers/iam/instance_profile.rb +34 -0
  371. data/lib/fog/aws/parsers/iam/list_access_keys.rb +32 -0
  372. data/lib/fog/aws/parsers/iam/list_account_aliases.rb +28 -0
  373. data/lib/fog/aws/parsers/iam/list_groups.rb +32 -0
  374. data/lib/fog/aws/parsers/iam/list_groups_for_user.rb +32 -0
  375. data/lib/fog/aws/parsers/iam/list_instance_profiles.rb +34 -0
  376. data/lib/fog/aws/parsers/iam/list_policies.rb +28 -0
  377. data/lib/fog/aws/parsers/iam/list_roles.rb +31 -0
  378. data/lib/fog/aws/parsers/iam/list_server_certificates.rb +38 -0
  379. data/lib/fog/aws/parsers/iam/list_signing_certificates.rb +32 -0
  380. data/lib/fog/aws/parsers/iam/list_users.rb +32 -0
  381. data/lib/fog/aws/parsers/iam/login_profile.rb +27 -0
  382. data/lib/fog/aws/parsers/iam/role_parser.rb +53 -0
  383. data/lib/fog/aws/parsers/iam/single_role.rb +29 -0
  384. data/lib/fog/aws/parsers/iam/update_group.rb +26 -0
  385. data/lib/fog/aws/parsers/iam/update_user.rb +27 -0
  386. data/lib/fog/aws/parsers/iam/upload_server_certificate.rb +28 -0
  387. data/lib/fog/aws/parsers/iam/upload_signing_certificate.rb +26 -0
  388. data/lib/fog/aws/parsers/rds/authorize_db_security_group_ingress.rb +38 -0
  389. data/lib/fog/aws/parsers/rds/base.rb +32 -0
  390. data/lib/fog/aws/parsers/rds/create_db_instance.rb +34 -0
  391. data/lib/fog/aws/parsers/rds/create_db_instance_read_replica.rb +34 -0
  392. data/lib/fog/aws/parsers/rds/create_db_parameter_group.rb +35 -0
  393. data/lib/fog/aws/parsers/rds/create_db_security_group.rb +38 -0
  394. data/lib/fog/aws/parsers/rds/create_db_snapshot.rb +35 -0
  395. data/lib/fog/aws/parsers/rds/create_db_subnet_group.rb +38 -0
  396. data/lib/fog/aws/parsers/rds/db_engine_version_parser.rb +35 -0
  397. data/lib/fog/aws/parsers/rds/db_parser.rb +125 -0
  398. data/lib/fog/aws/parsers/rds/delete_db_instance.rb +35 -0
  399. data/lib/fog/aws/parsers/rds/delete_db_parameter_group.rb +27 -0
  400. data/lib/fog/aws/parsers/rds/delete_db_security_group.rb +33 -0
  401. data/lib/fog/aws/parsers/rds/delete_db_snapshot.rb +34 -0
  402. data/lib/fog/aws/parsers/rds/describe_db_engine_versions.rb +39 -0
  403. data/lib/fog/aws/parsers/rds/describe_db_instances.rb +36 -0
  404. data/lib/fog/aws/parsers/rds/describe_db_parameter_groups.rb +38 -0
  405. data/lib/fog/aws/parsers/rds/describe_db_parameters.rb +44 -0
  406. data/lib/fog/aws/parsers/rds/describe_db_reserved_instances.rb +43 -0
  407. data/lib/fog/aws/parsers/rds/describe_db_security_groups.rb +39 -0
  408. data/lib/fog/aws/parsers/rds/describe_db_snapshots.rb +39 -0
  409. data/lib/fog/aws/parsers/rds/describe_db_subnet_groups.rb +38 -0
  410. data/lib/fog/aws/parsers/rds/event_list.rb +40 -0
  411. data/lib/fog/aws/parsers/rds/modify_db_instance.rb +34 -0
  412. data/lib/fog/aws/parsers/rds/modify_db_parameter_group.rb +28 -0
  413. data/lib/fog/aws/parsers/rds/reboot_db_instance.rb +35 -0
  414. data/lib/fog/aws/parsers/rds/restore_db_instance_from_db_snapshot.rb +34 -0
  415. data/lib/fog/aws/parsers/rds/restore_db_instance_to_point_in_time.rb +35 -0
  416. data/lib/fog/aws/parsers/rds/revoke_db_security_group_ingress.rb +39 -0
  417. data/lib/fog/aws/parsers/rds/security_group_parser.rb +39 -0
  418. data/lib/fog/aws/parsers/rds/snapshot_parser.rb +41 -0
  419. data/lib/fog/aws/parsers/rds/subnet_group_parser.rb +38 -0
  420. data/lib/fog/aws/parsers/rds/tag_list_parser.rb +35 -0
  421. data/lib/fog/aws/parsers/ses/delete_verified_email_address.rb +24 -0
  422. data/lib/fog/aws/parsers/ses/get_send_quota.rb +26 -0
  423. data/lib/fog/aws/parsers/ses/get_send_statistics.rb +29 -0
  424. data/lib/fog/aws/parsers/ses/list_verified_email_addresses.rb +25 -0
  425. data/lib/fog/aws/parsers/ses/send_email.rb +26 -0
  426. data/lib/fog/aws/parsers/ses/send_raw_email.rb +26 -0
  427. data/lib/fog/aws/parsers/ses/verify_email_address.rb +24 -0
  428. data/lib/fog/aws/parsers/simpledb/basic.rb +31 -0
  429. data/lib/fog/aws/parsers/simpledb/domain_metadata.rb +32 -0
  430. data/lib/fog/aws/parsers/simpledb/get_attributes.rb +36 -0
  431. data/lib/fog/aws/parsers/simpledb/list_domains.rb +30 -0
  432. data/lib/fog/aws/parsers/simpledb/select.rb +41 -0
  433. data/lib/fog/aws/parsers/sns/add_permission.rb +24 -0
  434. data/lib/fog/aws/parsers/sns/confirm_subscription.rb +24 -0
  435. data/lib/fog/aws/parsers/sns/create_topic.rb +24 -0
  436. data/lib/fog/aws/parsers/sns/delete_topic.rb +24 -0
  437. data/lib/fog/aws/parsers/sns/get_topic_attributes.rb +32 -0
  438. data/lib/fog/aws/parsers/sns/list_subscriptions.rb +29 -0
  439. data/lib/fog/aws/parsers/sns/list_topics.rb +26 -0
  440. data/lib/fog/aws/parsers/sns/publish.rb +24 -0
  441. data/lib/fog/aws/parsers/sns/remove_permission.rb +24 -0
  442. data/lib/fog/aws/parsers/sns/set_topic_attributes.rb +24 -0
  443. data/lib/fog/aws/parsers/sns/subscribe.rb +24 -0
  444. data/lib/fog/aws/parsers/sns/unsubscribe.rb +24 -0
  445. data/lib/fog/aws/parsers/sqs/basic.rb +23 -0
  446. data/lib/fog/aws/parsers/sqs/create_queue.rb +26 -0
  447. data/lib/fog/aws/parsers/sqs/get_queue_attributes.rb +35 -0
  448. data/lib/fog/aws/parsers/sqs/list_queues.rb +25 -0
  449. data/lib/fog/aws/parsers/sqs/receive_message.rb +41 -0
  450. data/lib/fog/aws/parsers/sqs/send_message.rb +28 -0
  451. data/lib/fog/aws/parsers/storage/access_control_list.rb +46 -0
  452. data/lib/fog/aws/parsers/storage/complete_multipart_upload.rb +24 -0
  453. data/lib/fog/aws/parsers/storage/copy_object.rb +22 -0
  454. data/lib/fog/aws/parsers/storage/get_bucket.rb +62 -0
  455. data/lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb +32 -0
  456. data/lib/fog/aws/parsers/storage/get_bucket_location.rb +20 -0
  457. data/lib/fog/aws/parsers/storage/get_bucket_logging.rb +40 -0
  458. data/lib/fog/aws/parsers/storage/get_bucket_object_versions.rb +88 -0
  459. data/lib/fog/aws/parsers/storage/get_bucket_versioning.rb +24 -0
  460. data/lib/fog/aws/parsers/storage/get_bucket_website.rb +26 -0
  461. data/lib/fog/aws/parsers/storage/get_request_payment.rb +20 -0
  462. data/lib/fog/aws/parsers/storage/get_service.rb +32 -0
  463. data/lib/fog/aws/parsers/storage/initiate_multipart_upload.rb +24 -0
  464. data/lib/fog/aws/parsers/storage/list_multipart_uploads.rb +56 -0
  465. data/lib/fog/aws/parsers/storage/list_parts.rb +40 -0
  466. data/lib/fog/aws/parsers/sts/get_session_token.rb +31 -0
  467. data/lib/fog/aws/rds.rb +231 -0
  468. data/lib/fog/aws/requests/auto_scaling/create_auto_scaling_group.rb +137 -0
  469. data/lib/fog/aws/requests/auto_scaling/create_launch_configuration.rb +112 -0
  470. data/lib/fog/aws/requests/auto_scaling/create_or_update_tags.rb +63 -0
  471. data/lib/fog/aws/requests/auto_scaling/delete_auto_scaling_group.rb +60 -0
  472. data/lib/fog/aws/requests/auto_scaling/delete_launch_configuration.rb +57 -0
  473. data/lib/fog/aws/requests/auto_scaling/delete_notification_configuration.rb +63 -0
  474. data/lib/fog/aws/requests/auto_scaling/delete_policy.rb +56 -0
  475. data/lib/fog/aws/requests/auto_scaling/delete_scheduled_action.rb +48 -0
  476. data/lib/fog/aws/requests/auto_scaling/delete_tags.rb +63 -0
  477. data/lib/fog/aws/requests/auto_scaling/describe_adjustment_types.rb +53 -0
  478. data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_groups.rb +132 -0
  479. data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_instances.rb +95 -0
  480. data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_notification_types.rb +55 -0
  481. data/lib/fog/aws/requests/auto_scaling/describe_launch_configurations.rb +117 -0
  482. data/lib/fog/aws/requests/auto_scaling/describe_metric_collection_types.rb +61 -0
  483. data/lib/fog/aws/requests/auto_scaling/describe_notification_configurations.rb +79 -0
  484. data/lib/fog/aws/requests/auto_scaling/describe_policies.rb +97 -0
  485. data/lib/fog/aws/requests/auto_scaling/describe_scaling_activities.rb +88 -0
  486. data/lib/fog/aws/requests/auto_scaling/describe_scaling_process_types.rb +55 -0
  487. data/lib/fog/aws/requests/auto_scaling/describe_scheduled_actions.rb +88 -0
  488. data/lib/fog/aws/requests/auto_scaling/describe_tags.rb +74 -0
  489. data/lib/fog/aws/requests/auto_scaling/describe_termination_policy_types.rb +53 -0
  490. data/lib/fog/aws/requests/auto_scaling/disable_metrics_collection.rb +56 -0
  491. data/lib/fog/aws/requests/auto_scaling/enable_metrics_collection.rb +66 -0
  492. data/lib/fog/aws/requests/auto_scaling/execute_policy.rb +50 -0
  493. data/lib/fog/aws/requests/auto_scaling/put_notification_configuration.rb +70 -0
  494. data/lib/fog/aws/requests/auto_scaling/put_scaling_policy.rb +85 -0
  495. data/lib/fog/aws/requests/auto_scaling/put_scheduled_update_group_action.rb +70 -0
  496. data/lib/fog/aws/requests/auto_scaling/resume_processes.rb +50 -0
  497. data/lib/fog/aws/requests/auto_scaling/set_desired_capacity.rb +87 -0
  498. data/lib/fog/aws/requests/auto_scaling/set_instance_health.rb +55 -0
  499. data/lib/fog/aws/requests/auto_scaling/suspend_processes.rb +57 -0
  500. data/lib/fog/aws/requests/auto_scaling/terminate_instance_in_auto_scaling_group.rb +65 -0
  501. data/lib/fog/aws/requests/auto_scaling/update_auto_scaling_group.rb +91 -0
  502. data/lib/fog/aws/requests/beanstalk/check_dns_availability.rb +27 -0
  503. data/lib/fog/aws/requests/beanstalk/create_application.rb +29 -0
  504. data/lib/fog/aws/requests/beanstalk/create_application_version.rb +41 -0
  505. data/lib/fog/aws/requests/beanstalk/create_configuration_template.rb +47 -0
  506. data/lib/fog/aws/requests/beanstalk/create_environment.rb +50 -0
  507. data/lib/fog/aws/requests/beanstalk/create_storage_location.rb +27 -0
  508. data/lib/fog/aws/requests/beanstalk/delete_application.rb +29 -0
  509. data/lib/fog/aws/requests/beanstalk/delete_application_version.rb +36 -0
  510. data/lib/fog/aws/requests/beanstalk/delete_configuration_template.rb +34 -0
  511. data/lib/fog/aws/requests/beanstalk/delete_environment_configuration.rb +34 -0
  512. data/lib/fog/aws/requests/beanstalk/describe_application_versions.rb +34 -0
  513. data/lib/fog/aws/requests/beanstalk/describe_applications.rb +30 -0
  514. data/lib/fog/aws/requests/beanstalk/describe_configuration_options.rb +40 -0
  515. data/lib/fog/aws/requests/beanstalk/describe_configuration_settings.rb +31 -0
  516. data/lib/fog/aws/requests/beanstalk/describe_environment_resources.rb +29 -0
  517. data/lib/fog/aws/requests/beanstalk/describe_environments.rb +40 -0
  518. data/lib/fog/aws/requests/beanstalk/describe_events.rb +29 -0
  519. data/lib/fog/aws/requests/beanstalk/list_available_solution_stacks.rb +27 -0
  520. data/lib/fog/aws/requests/beanstalk/rebuild_environment.rb +30 -0
  521. data/lib/fog/aws/requests/beanstalk/request_environment_info.rb +29 -0
  522. data/lib/fog/aws/requests/beanstalk/restart_app_server.rb +29 -0
  523. data/lib/fog/aws/requests/beanstalk/retrieve_environment_info.rb +29 -0
  524. data/lib/fog/aws/requests/beanstalk/swap_environment_cnames.rb +29 -0
  525. data/lib/fog/aws/requests/beanstalk/terminate_environment.rb +31 -0
  526. data/lib/fog/aws/requests/beanstalk/update_application.rb +30 -0
  527. data/lib/fog/aws/requests/beanstalk/update_application_version.rb +30 -0
  528. data/lib/fog/aws/requests/beanstalk/update_configuration_template.rb +36 -0
  529. data/lib/fog/aws/requests/beanstalk/update_environment.rb +42 -0
  530. data/lib/fog/aws/requests/beanstalk/validate_configuration_settings.rb +33 -0
  531. data/lib/fog/aws/requests/cdn/delete_distribution.rb +59 -0
  532. data/lib/fog/aws/requests/cdn/delete_streaming_distribution.rb +58 -0
  533. data/lib/fog/aws/requests/cdn/get_distribution.rb +85 -0
  534. data/lib/fog/aws/requests/cdn/get_distribution_list.rb +88 -0
  535. data/lib/fog/aws/requests/cdn/get_invalidation.rb +60 -0
  536. data/lib/fog/aws/requests/cdn/get_invalidation_list.rb +83 -0
  537. data/lib/fog/aws/requests/cdn/get_streaming_distribution.rb +76 -0
  538. data/lib/fog/aws/requests/cdn/get_streaming_distribution_list.rb +89 -0
  539. data/lib/fog/aws/requests/cdn/post_distribution.rb +135 -0
  540. data/lib/fog/aws/requests/cdn/post_invalidation.rb +84 -0
  541. data/lib/fog/aws/requests/cdn/post_streaming_distribution.rb +122 -0
  542. data/lib/fog/aws/requests/cdn/put_distribution_config.rb +122 -0
  543. data/lib/fog/aws/requests/cdn/put_streaming_distribution_config.rb +111 -0
  544. data/lib/fog/aws/requests/cloud_formation/create_stack.rb +77 -0
  545. data/lib/fog/aws/requests/cloud_formation/delete_stack.rb +30 -0
  546. data/lib/fog/aws/requests/cloud_formation/describe_stack_events.rb +44 -0
  547. data/lib/fog/aws/requests/cloud_formation/describe_stack_resources.rb +43 -0
  548. data/lib/fog/aws/requests/cloud_formation/describe_stacks.rb +42 -0
  549. data/lib/fog/aws/requests/cloud_formation/get_template.rb +32 -0
  550. data/lib/fog/aws/requests/cloud_formation/update_stack.rb +62 -0
  551. data/lib/fog/aws/requests/cloud_formation/validate_template.rb +34 -0
  552. data/lib/fog/aws/requests/cloud_watch/delete_alarms.rb +48 -0
  553. data/lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb +33 -0
  554. data/lib/fog/aws/requests/cloud_watch/describe_alarms.rb +56 -0
  555. data/lib/fog/aws/requests/cloud_watch/describe_alarms_for_metric.rb +39 -0
  556. data/lib/fog/aws/requests/cloud_watch/disable_alarm_actions.rb +30 -0
  557. data/lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb +30 -0
  558. data/lib/fog/aws/requests/cloud_watch/get_metric_statistics.rb +48 -0
  559. data/lib/fog/aws/requests/cloud_watch/list_metrics.rb +38 -0
  560. data/lib/fog/aws/requests/cloud_watch/put_metric_alarm.rb +93 -0
  561. data/lib/fog/aws/requests/cloud_watch/put_metric_data.rb +73 -0
  562. data/lib/fog/aws/requests/cloud_watch/set_alarm_state.rb +31 -0
  563. data/lib/fog/aws/requests/compute/allocate_address.rb +59 -0
  564. data/lib/fog/aws/requests/compute/associate_address.rb +94 -0
  565. data/lib/fog/aws/requests/compute/associate_dhcp_options.rb +57 -0
  566. data/lib/fog/aws/requests/compute/attach_internet_gateway.rb +56 -0
  567. data/lib/fog/aws/requests/compute/attach_network_interface.rb +57 -0
  568. data/lib/fog/aws/requests/compute/attach_volume.rb +87 -0
  569. data/lib/fog/aws/requests/compute/authorize_security_group_ingress.rb +213 -0
  570. data/lib/fog/aws/requests/compute/cancel_spot_instance_requests.rb +34 -0
  571. data/lib/fog/aws/requests/compute/create_dhcp_options.rb +76 -0
  572. data/lib/fog/aws/requests/compute/create_image.rb +92 -0
  573. data/lib/fog/aws/requests/compute/create_internet_gateway.rb +52 -0
  574. data/lib/fog/aws/requests/compute/create_key_pair.rb +56 -0
  575. data/lib/fog/aws/requests/compute/create_network_interface.rb +118 -0
  576. data/lib/fog/aws/requests/compute/create_placement_group.rb +34 -0
  577. data/lib/fog/aws/requests/compute/create_security_group.rb +64 -0
  578. data/lib/fog/aws/requests/compute/create_snapshot.rb +72 -0
  579. data/lib/fog/aws/requests/compute/create_spot_datafeed_subscription.rb +41 -0
  580. data/lib/fog/aws/requests/compute/create_subnet.rb +80 -0
  581. data/lib/fog/aws/requests/compute/create_tags.rb +87 -0
  582. data/lib/fog/aws/requests/compute/create_volume.rb +125 -0
  583. data/lib/fog/aws/requests/compute/create_vpc.rb +72 -0
  584. data/lib/fog/aws/requests/compute/delete_dhcp_options.rb +51 -0
  585. data/lib/fog/aws/requests/compute/delete_internet_gateway.rb +49 -0
  586. data/lib/fog/aws/requests/compute/delete_key_pair.rb +47 -0
  587. data/lib/fog/aws/requests/compute/delete_network_interface.rb +52 -0
  588. data/lib/fog/aws/requests/compute/delete_placement_group.rb +32 -0
  589. data/lib/fog/aws/requests/compute/delete_security_group.rb +92 -0
  590. data/lib/fog/aws/requests/compute/delete_snapshot.rb +50 -0
  591. data/lib/fog/aws/requests/compute/delete_spot_datafeed_subscription.rb +28 -0
  592. data/lib/fog/aws/requests/compute/delete_subnet.rb +50 -0
  593. data/lib/fog/aws/requests/compute/delete_tags.rb +86 -0
  594. data/lib/fog/aws/requests/compute/delete_volume.rb +56 -0
  595. data/lib/fog/aws/requests/compute/delete_vpc.rb +53 -0
  596. data/lib/fog/aws/requests/compute/deregister_image.rb +53 -0
  597. data/lib/fog/aws/requests/compute/describe_addresses.rb +66 -0
  598. data/lib/fog/aws/requests/compute/describe_availability_zones.rb +95 -0
  599. data/lib/fog/aws/requests/compute/describe_dhcp_options.rb +55 -0
  600. data/lib/fog/aws/requests/compute/describe_images.rb +130 -0
  601. data/lib/fog/aws/requests/compute/describe_instance_status.rb +48 -0
  602. data/lib/fog/aws/requests/compute/describe_instances.rb +229 -0
  603. data/lib/fog/aws/requests/compute/describe_internet_gateways.rb +60 -0
  604. data/lib/fog/aws/requests/compute/describe_key_pairs.rb +68 -0
  605. data/lib/fog/aws/requests/compute/describe_network_interface_attribute.rb +67 -0
  606. data/lib/fog/aws/requests/compute/describe_network_interfaces.rb +85 -0
  607. data/lib/fog/aws/requests/compute/describe_placement_groups.rb +35 -0
  608. data/lib/fog/aws/requests/compute/describe_regions.rb +68 -0
  609. data/lib/fog/aws/requests/compute/describe_reserved_instances.rb +60 -0
  610. data/lib/fog/aws/requests/compute/describe_reserved_instances_offerings.rb +64 -0
  611. data/lib/fog/aws/requests/compute/describe_security_groups.rb +101 -0
  612. data/lib/fog/aws/requests/compute/describe_snapshots.rb +122 -0
  613. data/lib/fog/aws/requests/compute/describe_spot_datafeed_subscription.rb +35 -0
  614. data/lib/fog/aws/requests/compute/describe_spot_instance_requests.rb +48 -0
  615. data/lib/fog/aws/requests/compute/describe_spot_price_history.rb +37 -0
  616. data/lib/fog/aws/requests/compute/describe_subnets.rb +64 -0
  617. data/lib/fog/aws/requests/compute/describe_tags.rb +107 -0
  618. data/lib/fog/aws/requests/compute/describe_volume_status.rb +45 -0
  619. data/lib/fog/aws/requests/compute/describe_volumes.rb +120 -0
  620. data/lib/fog/aws/requests/compute/describe_vpcs.rb +61 -0
  621. data/lib/fog/aws/requests/compute/detach_internet_gateway.rb +56 -0
  622. data/lib/fog/aws/requests/compute/detach_network_interface.rb +49 -0
  623. data/lib/fog/aws/requests/compute/detach_volume.rb +65 -0
  624. data/lib/fog/aws/requests/compute/disassociate_address.rb +58 -0
  625. data/lib/fog/aws/requests/compute/get_console_output.rb +54 -0
  626. data/lib/fog/aws/requests/compute/get_password_data.rb +56 -0
  627. data/lib/fog/aws/requests/compute/import_key_pair.rb +56 -0
  628. data/lib/fog/aws/requests/compute/modify_image_attribute.rb +74 -0
  629. data/lib/fog/aws/requests/compute/modify_instance_attribute.rb +44 -0
  630. data/lib/fog/aws/requests/compute/modify_network_interface_attribute.rb +90 -0
  631. data/lib/fog/aws/requests/compute/modify_snapshot_attribute.rb +37 -0
  632. data/lib/fog/aws/requests/compute/monitor_instances.rb +54 -0
  633. data/lib/fog/aws/requests/compute/purchase_reserved_instances_offering.rb +63 -0
  634. data/lib/fog/aws/requests/compute/reboot_instances.rb +54 -0
  635. data/lib/fog/aws/requests/compute/register_image.rb +133 -0
  636. data/lib/fog/aws/requests/compute/release_address.rb +63 -0
  637. data/lib/fog/aws/requests/compute/request_spot_instances.rb +89 -0
  638. data/lib/fog/aws/requests/compute/reset_network_interface_attribute.rb +56 -0
  639. data/lib/fog/aws/requests/compute/revoke_security_group_ingress.rb +102 -0
  640. data/lib/fog/aws/requests/compute/run_instances.rb +186 -0
  641. data/lib/fog/aws/requests/compute/start_instances.rb +60 -0
  642. data/lib/fog/aws/requests/compute/stop_instances.rb +61 -0
  643. data/lib/fog/aws/requests/compute/terminate_instances.rb +96 -0
  644. data/lib/fog/aws/requests/compute/unmonitor_instances.rb +55 -0
  645. data/lib/fog/aws/requests/dns/change_resource_record_sets.rb +210 -0
  646. data/lib/fog/aws/requests/dns/create_hosted_zone.rb +104 -0
  647. data/lib/fog/aws/requests/dns/delete_hosted_zone.rb +39 -0
  648. data/lib/fog/aws/requests/dns/get_change.rb +38 -0
  649. data/lib/fog/aws/requests/dns/get_hosted_zone.rb +65 -0
  650. data/lib/fog/aws/requests/dns/list_hosted_zones.rb +99 -0
  651. data/lib/fog/aws/requests/dns/list_resource_record_sets.rb +65 -0
  652. data/lib/fog/aws/requests/dynamodb/batch_get_item.rb +43 -0
  653. data/lib/fog/aws/requests/dynamodb/batch_write_item.rb +35 -0
  654. data/lib/fog/aws/requests/dynamodb/create_table.rb +55 -0
  655. data/lib/fog/aws/requests/dynamodb/delete_item.rb +45 -0
  656. data/lib/fog/aws/requests/dynamodb/delete_table.rb +42 -0
  657. data/lib/fog/aws/requests/dynamodb/describe_table.rb +44 -0
  658. data/lib/fog/aws/requests/dynamodb/get_item.rb +43 -0
  659. data/lib/fog/aws/requests/dynamodb/list_tables.rb +29 -0
  660. data/lib/fog/aws/requests/dynamodb/put_item.rb +41 -0
  661. data/lib/fog/aws/requests/dynamodb/query.rb +44 -0
  662. data/lib/fog/aws/requests/dynamodb/scan.rb +45 -0
  663. data/lib/fog/aws/requests/dynamodb/update_item.rb +49 -0
  664. data/lib/fog/aws/requests/dynamodb/update_table.rb +46 -0
  665. data/lib/fog/aws/requests/elasticache/authorize_cache_security_group_ingress.rb +36 -0
  666. data/lib/fog/aws/requests/elasticache/create_cache_cluster.rb +86 -0
  667. data/lib/fog/aws/requests/elasticache/create_cache_parameter_group.rb +37 -0
  668. data/lib/fog/aws/requests/elasticache/create_cache_security_group.rb +33 -0
  669. data/lib/fog/aws/requests/elasticache/delete_cache_cluster.rb +41 -0
  670. data/lib/fog/aws/requests/elasticache/delete_cache_parameter_group.rb +31 -0
  671. data/lib/fog/aws/requests/elasticache/delete_cache_security_group.rb +31 -0
  672. data/lib/fog/aws/requests/elasticache/describe_cache_clusters.rb +54 -0
  673. data/lib/fog/aws/requests/elasticache/describe_cache_parameter_groups.rb +34 -0
  674. data/lib/fog/aws/requests/elasticache/describe_cache_parameters.rb +36 -0
  675. data/lib/fog/aws/requests/elasticache/describe_cache_security_groups.rb +34 -0
  676. data/lib/fog/aws/requests/elasticache/describe_engine_default_parameters.rb +35 -0
  677. data/lib/fog/aws/requests/elasticache/describe_events.rb +49 -0
  678. data/lib/fog/aws/requests/elasticache/modify_cache_cluster.rb +102 -0
  679. data/lib/fog/aws/requests/elasticache/modify_cache_parameter_group.rb +45 -0
  680. data/lib/fog/aws/requests/elasticache/reboot_cache_cluster.rb +52 -0
  681. data/lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb +46 -0
  682. data/lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb +37 -0
  683. data/lib/fog/aws/requests/elb/apply_security_groups_to_load_balancer.rb +61 -0
  684. data/lib/fog/aws/requests/elb/attach_load_balancer_to_subnets.rb +61 -0
  685. data/lib/fog/aws/requests/elb/configure_health_check.rb +65 -0
  686. data/lib/fog/aws/requests/elb/create_app_cookie_stickiness_policy.rb +56 -0
  687. data/lib/fog/aws/requests/elb/create_lb_cookie_stickiness_policy.rb +58 -0
  688. data/lib/fog/aws/requests/elb/create_load_balancer.rb +119 -0
  689. data/lib/fog/aws/requests/elb/create_load_balancer_listeners.rb +88 -0
  690. data/lib/fog/aws/requests/elb/create_load_balancer_policy.rb +79 -0
  691. data/lib/fog/aws/requests/elb/delete_load_balancer.rb +51 -0
  692. data/lib/fog/aws/requests/elb/delete_load_balancer_listeners.rb +50 -0
  693. data/lib/fog/aws/requests/elb/delete_load_balancer_policy.rb +54 -0
  694. data/lib/fog/aws/requests/elb/deregister_instances_from_load_balancer.rb +63 -0
  695. data/lib/fog/aws/requests/elb/describe_instance_health.rb +72 -0
  696. data/lib/fog/aws/requests/elb/describe_load_balancer_policies.rb +71 -0
  697. data/lib/fog/aws/requests/elb/describe_load_balancer_policy_types.rb +68 -0
  698. data/lib/fog/aws/requests/elb/describe_load_balancers.rb +119 -0
  699. data/lib/fog/aws/requests/elb/detach_load_balancer_from_subnets.rb +61 -0
  700. data/lib/fog/aws/requests/elb/disable_availability_zones_for_load_balancer.rb +59 -0
  701. data/lib/fog/aws/requests/elb/enable_availability_zones_for_load_balancer.rb +61 -0
  702. data/lib/fog/aws/requests/elb/register_instances_with_load_balancer.rb +64 -0
  703. data/lib/fog/aws/requests/elb/set_load_balancer_listener_ssl_certificate.rb +67 -0
  704. data/lib/fog/aws/requests/elb/set_load_balancer_policies_of_listener.rb +80 -0
  705. data/lib/fog/aws/requests/emr/add_instance_groups.rb +46 -0
  706. data/lib/fog/aws/requests/emr/add_job_flow_steps.rb +49 -0
  707. data/lib/fog/aws/requests/emr/describe_job_flows.rb +108 -0
  708. data/lib/fog/aws/requests/emr/modify_instance_groups.rb +40 -0
  709. data/lib/fog/aws/requests/emr/run_job_flow.rb +108 -0
  710. data/lib/fog/aws/requests/emr/set_termination_protection.rb +39 -0
  711. data/lib/fog/aws/requests/emr/terminate_job_flows.rb +37 -0
  712. data/lib/fog/aws/requests/glacier/abort_multipart_upload.rb +35 -0
  713. data/lib/fog/aws/requests/glacier/complete_multipart_upload.rb +42 -0
  714. data/lib/fog/aws/requests/glacier/create_archive.rb +43 -0
  715. data/lib/fog/aws/requests/glacier/create_vault.rb +34 -0
  716. data/lib/fog/aws/requests/glacier/delete_archive.rb +35 -0
  717. data/lib/fog/aws/requests/glacier/delete_vault.rb +34 -0
  718. data/lib/fog/aws/requests/glacier/delete_vault_notification_configuration.rb +33 -0
  719. data/lib/fog/aws/requests/glacier/describe_job.rb +35 -0
  720. data/lib/fog/aws/requests/glacier/describe_vault.rb +34 -0
  721. data/lib/fog/aws/requests/glacier/get_job_output.rb +41 -0
  722. data/lib/fog/aws/requests/glacier/get_vault_notification_configuration.rb +34 -0
  723. data/lib/fog/aws/requests/glacier/initiate_job.rb +41 -0
  724. data/lib/fog/aws/requests/glacier/initiate_multipart_upload.rb +38 -0
  725. data/lib/fog/aws/requests/glacier/list_jobs.rb +39 -0
  726. data/lib/fog/aws/requests/glacier/list_multipart_uploads.rb +37 -0
  727. data/lib/fog/aws/requests/glacier/list_parts.rb +37 -0
  728. data/lib/fog/aws/requests/glacier/list_vaults.rb +36 -0
  729. data/lib/fog/aws/requests/glacier/set_vault_notification_configuration.rb +37 -0
  730. data/lib/fog/aws/requests/glacier/upload_part.rb +46 -0
  731. data/lib/fog/aws/requests/iam/add_role_to_instance_profile.rb +35 -0
  732. data/lib/fog/aws/requests/iam/add_user_to_group.rb +58 -0
  733. data/lib/fog/aws/requests/iam/create_access_key.rb +61 -0
  734. data/lib/fog/aws/requests/iam/create_account_alias.rb +19 -0
  735. data/lib/fog/aws/requests/iam/create_group.rb +60 -0
  736. data/lib/fog/aws/requests/iam/create_instance_profile.rb +46 -0
  737. data/lib/fog/aws/requests/iam/create_login_profile.rb +36 -0
  738. data/lib/fog/aws/requests/iam/create_role.rb +56 -0
  739. data/lib/fog/aws/requests/iam/create_user.rb +60 -0
  740. data/lib/fog/aws/requests/iam/delete_access_key.rb +51 -0
  741. data/lib/fog/aws/requests/iam/delete_account_alias.rb +19 -0
  742. data/lib/fog/aws/requests/iam/delete_group.rb +51 -0
  743. data/lib/fog/aws/requests/iam/delete_group_policy.rb +34 -0
  744. data/lib/fog/aws/requests/iam/delete_instance_profile.rb +32 -0
  745. data/lib/fog/aws/requests/iam/delete_login_profile.rb +31 -0
  746. data/lib/fog/aws/requests/iam/delete_role.rb +32 -0
  747. data/lib/fog/aws/requests/iam/delete_role_policy.rb +35 -0
  748. data/lib/fog/aws/requests/iam/delete_server_certificate.rb +46 -0
  749. data/lib/fog/aws/requests/iam/delete_signing_certificate.rb +33 -0
  750. data/lib/fog/aws/requests/iam/delete_user.rb +49 -0
  751. data/lib/fog/aws/requests/iam/delete_user_policy.rb +50 -0
  752. data/lib/fog/aws/requests/iam/get_group.rb +62 -0
  753. data/lib/fog/aws/requests/iam/get_group_policy.rb +36 -0
  754. data/lib/fog/aws/requests/iam/get_instance_profile.rb +42 -0
  755. data/lib/fog/aws/requests/iam/get_login_profile.rb +35 -0
  756. data/lib/fog/aws/requests/iam/get_role.rb +38 -0
  757. data/lib/fog/aws/requests/iam/get_role_policy.rb +36 -0
  758. data/lib/fog/aws/requests/iam/get_server_certificate.rb +48 -0
  759. data/lib/fog/aws/requests/iam/get_user.rb +56 -0
  760. data/lib/fog/aws/requests/iam/get_user_policy.rb +53 -0
  761. data/lib/fog/aws/requests/iam/list_access_keys.rb +61 -0
  762. data/lib/fog/aws/requests/iam/list_account_aliases.rb +18 -0
  763. data/lib/fog/aws/requests/iam/list_group_policies.rb +39 -0
  764. data/lib/fog/aws/requests/iam/list_groups.rb +60 -0
  765. data/lib/fog/aws/requests/iam/list_groups_for_user.rb +67 -0
  766. data/lib/fog/aws/requests/iam/list_instance_profiles.rb +50 -0
  767. data/lib/fog/aws/requests/iam/list_instance_profiles_for_role.rb +51 -0
  768. data/lib/fog/aws/requests/iam/list_role_policies.rb +39 -0
  769. data/lib/fog/aws/requests/iam/list_roles.rb +43 -0
  770. data/lib/fog/aws/requests/iam/list_server_certificates.rb +56 -0
  771. data/lib/fog/aws/requests/iam/list_signing_certificates.rb +38 -0
  772. data/lib/fog/aws/requests/iam/list_user_policies.rb +57 -0
  773. data/lib/fog/aws/requests/iam/list_users.rb +59 -0
  774. data/lib/fog/aws/requests/iam/put_group_policy.rb +36 -0
  775. data/lib/fog/aws/requests/iam/put_role_policy.rb +36 -0
  776. data/lib/fog/aws/requests/iam/put_user_policy.rb +54 -0
  777. data/lib/fog/aws/requests/iam/remove_role_from_instance_profile.rb +36 -0
  778. data/lib/fog/aws/requests/iam/remove_user_from_group.rb +53 -0
  779. data/lib/fog/aws/requests/iam/update_access_key.rb +36 -0
  780. data/lib/fog/aws/requests/iam/update_group.rb +39 -0
  781. data/lib/fog/aws/requests/iam/update_login_profile.rb +33 -0
  782. data/lib/fog/aws/requests/iam/update_server_certificate.rb +37 -0
  783. data/lib/fog/aws/requests/iam/update_signing_certificate.rb +32 -0
  784. data/lib/fog/aws/requests/iam/update_user.rb +39 -0
  785. data/lib/fog/aws/requests/iam/upload_server_certificate.rb +97 -0
  786. data/lib/fog/aws/requests/iam/upload_signing_certificate.rb +38 -0
  787. data/lib/fog/aws/requests/rds/add_tags_to_resource.rb +46 -0
  788. data/lib/fog/aws/requests/rds/authorize_db_security_group_ingress.rb +72 -0
  789. data/lib/fog/aws/requests/rds/create_db_instance.rb +126 -0
  790. data/lib/fog/aws/requests/rds/create_db_instance_read_replica.rb +82 -0
  791. data/lib/fog/aws/requests/rds/create_db_parameter_group.rb +59 -0
  792. data/lib/fog/aws/requests/rds/create_db_security_group.rb +55 -0
  793. data/lib/fog/aws/requests/rds/create_db_snapshot.rb +72 -0
  794. data/lib/fog/aws/requests/rds/create_db_subnet_group.rb +58 -0
  795. data/lib/fog/aws/requests/rds/delete_db_instance.rb +55 -0
  796. data/lib/fog/aws/requests/rds/delete_db_parameter_group.rb +46 -0
  797. data/lib/fog/aws/requests/rds/delete_db_security_group.rb +46 -0
  798. data/lib/fog/aws/requests/rds/delete_db_snapshot.rb +47 -0
  799. data/lib/fog/aws/requests/rds/describe_db_engine_versions.rb +34 -0
  800. data/lib/fog/aws/requests/rds/describe_db_instances.rb +95 -0
  801. data/lib/fog/aws/requests/rds/describe_db_parameter_groups.rb +63 -0
  802. data/lib/fog/aws/requests/rds/describe_db_parameters.rb +45 -0
  803. data/lib/fog/aws/requests/rds/describe_db_reserved_instances.rb +42 -0
  804. data/lib/fog/aws/requests/rds/describe_db_security_groups.rb +85 -0
  805. data/lib/fog/aws/requests/rds/describe_db_snapshots.rb +71 -0
  806. data/lib/fog/aws/requests/rds/describe_db_subnet_groups.rb +63 -0
  807. data/lib/fog/aws/requests/rds/describe_events.rb +52 -0
  808. data/lib/fog/aws/requests/rds/list_tags_for_resource.rb +44 -0
  809. data/lib/fog/aws/requests/rds/modify_db_instance.rb +80 -0
  810. data/lib/fog/aws/requests/rds/modify_db_parameter_group.rb +55 -0
  811. data/lib/fog/aws/requests/rds/reboot_db_instance.rb +51 -0
  812. data/lib/fog/aws/requests/rds/remove_tags_from_resource.rb +44 -0
  813. data/lib/fog/aws/requests/rds/restore_db_instance_from_db_snapshot.rb +34 -0
  814. data/lib/fog/aws/requests/rds/restore_db_instance_to_point_in_time.rb +35 -0
  815. data/lib/fog/aws/requests/rds/revoke_db_security_group_ingress.rb +70 -0
  816. data/lib/fog/aws/requests/ses/delete_verified_email_address.rb +28 -0
  817. data/lib/fog/aws/requests/ses/get_send_quota.rb +31 -0
  818. data/lib/fog/aws/requests/ses/get_send_statistics.rb +34 -0
  819. data/lib/fog/aws/requests/ses/list_verified_email_addresses.rb +28 -0
  820. data/lib/fog/aws/requests/ses/send_email.rb +73 -0
  821. data/lib/fog/aws/requests/ses/send_raw_email.rb +41 -0
  822. data/lib/fog/aws/requests/ses/verify_email_address.rb +28 -0
  823. data/lib/fog/aws/requests/simpledb/batch_put_attributes.rb +64 -0
  824. data/lib/fog/aws/requests/simpledb/create_domain.rb +44 -0
  825. data/lib/fog/aws/requests/simpledb/delete_attributes.rb +73 -0
  826. data/lib/fog/aws/requests/simpledb/delete_domain.rb +45 -0
  827. data/lib/fog/aws/requests/simpledb/domain_metadata.rb +76 -0
  828. data/lib/fog/aws/requests/simpledb/get_attributes.rb +84 -0
  829. data/lib/fog/aws/requests/simpledb/list_domains.rb +59 -0
  830. data/lib/fog/aws/requests/simpledb/put_attributes.rb +78 -0
  831. data/lib/fog/aws/requests/simpledb/select.rb +43 -0
  832. data/lib/fog/aws/requests/sns/add_permission.rb +26 -0
  833. data/lib/fog/aws/requests/sns/confirm_subscription.rb +33 -0
  834. data/lib/fog/aws/requests/sns/create_topic.rb +29 -0
  835. data/lib/fog/aws/requests/sns/delete_topic.rb +29 -0
  836. data/lib/fog/aws/requests/sns/get_topic_attributes.rb +29 -0
  837. data/lib/fog/aws/requests/sns/list_subscriptions.rb +29 -0
  838. data/lib/fog/aws/requests/sns/list_subscriptions_by_topic.rb +31 -0
  839. data/lib/fog/aws/requests/sns/list_topics.rb +29 -0
  840. data/lib/fog/aws/requests/sns/publish.rb +34 -0
  841. data/lib/fog/aws/requests/sns/remove_permission.rb +26 -0
  842. data/lib/fog/aws/requests/sns/set_topic_attributes.rb +33 -0
  843. data/lib/fog/aws/requests/sns/subscribe.rb +33 -0
  844. data/lib/fog/aws/requests/sns/unsubscribe.rb +29 -0
  845. data/lib/fog/aws/requests/sqs/change_message_visibility.rb +63 -0
  846. data/lib/fog/aws/requests/sqs/create_queue.rb +65 -0
  847. data/lib/fog/aws/requests/sqs/delete_message.rb +60 -0
  848. data/lib/fog/aws/requests/sqs/delete_queue.rb +52 -0
  849. data/lib/fog/aws/requests/sqs/get_queue_attributes.rb +52 -0
  850. data/lib/fog/aws/requests/sqs/list_queues.rb +42 -0
  851. data/lib/fog/aws/requests/sqs/receive_message.rb +87 -0
  852. data/lib/fog/aws/requests/sqs/send_message.rb +69 -0
  853. data/lib/fog/aws/requests/sqs/set_queue_attributes.rb +51 -0
  854. data/lib/fog/aws/requests/storage/abort_multipart_upload.rb +30 -0
  855. data/lib/fog/aws/requests/storage/acl_utils.rb +62 -0
  856. data/lib/fog/aws/requests/storage/complete_multipart_upload.rb +52 -0
  857. data/lib/fog/aws/requests/storage/copy_object.rb +82 -0
  858. data/lib/fog/aws/requests/storage/delete_bucket.rb +50 -0
  859. data/lib/fog/aws/requests/storage/delete_bucket_lifecycle.rb +30 -0
  860. data/lib/fog/aws/requests/storage/delete_bucket_policy.rb +32 -0
  861. data/lib/fog/aws/requests/storage/delete_bucket_website.rb +32 -0
  862. data/lib/fog/aws/requests/storage/delete_object.rb +121 -0
  863. data/lib/fog/aws/requests/storage/get_bucket.rb +115 -0
  864. data/lib/fog/aws/requests/storage/get_bucket_acl.rb +72 -0
  865. data/lib/fog/aws/requests/storage/get_bucket_lifecycle.rb +41 -0
  866. data/lib/fog/aws/requests/storage/get_bucket_location.rb +61 -0
  867. data/lib/fog/aws/requests/storage/get_bucket_logging.rb +50 -0
  868. data/lib/fog/aws/requests/storage/get_bucket_object_versions.rb +168 -0
  869. data/lib/fog/aws/requests/storage/get_bucket_policy.rb +37 -0
  870. data/lib/fog/aws/requests/storage/get_bucket_versioning.rb +72 -0
  871. data/lib/fog/aws/requests/storage/get_bucket_website.rb +42 -0
  872. data/lib/fog/aws/requests/storage/get_object.rb +191 -0
  873. data/lib/fog/aws/requests/storage/get_object_acl.rb +83 -0
  874. data/lib/fog/aws/requests/storage/get_object_http_url.rb +58 -0
  875. data/lib/fog/aws/requests/storage/get_object_https_url.rb +40 -0
  876. data/lib/fog/aws/requests/storage/get_object_torrent.rb +50 -0
  877. data/lib/fog/aws/requests/storage/get_object_url.rb +58 -0
  878. data/lib/fog/aws/requests/storage/get_request_payment.rb +52 -0
  879. data/lib/fog/aws/requests/storage/get_service.rb +57 -0
  880. data/lib/fog/aws/requests/storage/head_object.rb +69 -0
  881. data/lib/fog/aws/requests/storage/initiate_multipart_upload.rb +47 -0
  882. data/lib/fog/aws/requests/storage/list_multipart_uploads.rb +60 -0
  883. data/lib/fog/aws/requests/storage/list_parts.rb +59 -0
  884. data/lib/fog/aws/requests/storage/post_object_hidden_fields.rb +40 -0
  885. data/lib/fog/aws/requests/storage/put_bucket.rb +77 -0
  886. data/lib/fog/aws/requests/storage/put_bucket_acl.rb +73 -0
  887. data/lib/fog/aws/requests/storage/put_bucket_lifecycle.rb +48 -0
  888. data/lib/fog/aws/requests/storage/put_bucket_logging.rb +83 -0
  889. data/lib/fog/aws/requests/storage/put_bucket_policy.rb +30 -0
  890. data/lib/fog/aws/requests/storage/put_bucket_versioning.rb +77 -0
  891. data/lib/fog/aws/requests/storage/put_bucket_website.rb +66 -0
  892. data/lib/fog/aws/requests/storage/put_object.rb +116 -0
  893. data/lib/fog/aws/requests/storage/put_object_acl.rb +82 -0
  894. data/lib/fog/aws/requests/storage/put_object_url.rb +51 -0
  895. data/lib/fog/aws/requests/storage/put_request_payment.rb +51 -0
  896. data/lib/fog/aws/requests/storage/sync_clock.rb +28 -0
  897. data/lib/fog/aws/requests/storage/upload_part.rb +44 -0
  898. data/lib/fog/aws/requests/sts/get_federation_token.rb +21 -0
  899. data/lib/fog/aws/requests/sts/get_session_token.rb +19 -0
  900. data/lib/fog/aws/ses.rb +121 -0
  901. data/lib/fog/aws/signaturev4.rb +73 -0
  902. data/lib/fog/aws/simpledb.rb +205 -0
  903. data/lib/fog/aws/sns.rb +116 -0
  904. data/lib/fog/aws/sqs.rb +150 -0
  905. data/lib/fog/aws/storage.rb +404 -0
  906. data/lib/fog/aws/sts.rb +136 -0
  907. data/lib/fog/aws.rb +305 -0
  908. data/lib/fog/bare_metal_cloud/compute.rb +100 -0
  909. data/lib/fog/bare_metal_cloud/requests/compute/add_server.rb +33 -0
  910. data/lib/fog/bare_metal_cloud/requests/compute/add_server_by_configuration.rb +33 -0
  911. data/lib/fog/bare_metal_cloud/requests/compute/cancel_server.rb +30 -0
  912. data/lib/fog/bare_metal_cloud/requests/compute/get_server.rb +41 -0
  913. data/lib/fog/bare_metal_cloud/requests/compute/list_configurations.rb +27 -0
  914. data/lib/fog/bare_metal_cloud/requests/compute/list_images.rb +27 -0
  915. data/lib/fog/bare_metal_cloud/requests/compute/list_plans.rb +30 -0
  916. data/lib/fog/bare_metal_cloud/requests/compute/list_servers.rb +36 -0
  917. data/lib/fog/bare_metal_cloud/requests/compute/reboot_server.rb +24 -0
  918. data/lib/fog/bare_metal_cloud.rb +11 -0
  919. data/lib/fog/bin/atmos.rb +31 -0
  920. data/lib/fog/bin/aws.rb +115 -0
  921. data/lib/fog/bin/bare_metal_cloud.rb +31 -0
  922. data/lib/fog/bin/bluebox.rb +36 -0
  923. data/lib/fog/bin/brightbox.rb +35 -0
  924. data/lib/fog/bin/clodo.rb +31 -0
  925. data/lib/fog/bin/cloudstack.rb +30 -0
  926. data/lib/fog/bin/dnsimple.rb +31 -0
  927. data/lib/fog/bin/dnsmadeeasy.rb +31 -0
  928. data/lib/fog/bin/dynect.rb +30 -0
  929. data/lib/fog/bin/ecloud.rb +35 -0
  930. data/lib/fog/bin/glesys.rb +31 -0
  931. data/lib/fog/bin/go_grid.rb +31 -0
  932. data/lib/fog/bin/google.rb +31 -0
  933. data/lib/fog/bin/hp.rb +38 -0
  934. data/lib/fog/bin/ibm.rb +34 -0
  935. data/lib/fog/bin/joyent.rb +31 -0
  936. data/lib/fog/bin/libvirt.rb +60 -0
  937. data/lib/fog/bin/linode.rb +36 -0
  938. data/lib/fog/bin/local.rb +31 -0
  939. data/lib/fog/bin/ninefold.rb +36 -0
  940. data/lib/fog/bin/openstack.rb +41 -0
  941. data/lib/fog/bin/ovirt.rb +30 -0
  942. data/lib/fog/bin/rackspace.rb +60 -0
  943. data/lib/fog/bin/serverlove.rb +31 -0
  944. data/lib/fog/bin/stormondemand.rb +31 -0
  945. data/lib/fog/bin/terremark.rb +31 -0
  946. data/lib/fog/bin/vcloud.rb +30 -0
  947. data/lib/fog/bin/virtual_box.rb +57 -0
  948. data/lib/fog/bin/vmfusion.rb +60 -0
  949. data/lib/fog/bin/voxel.rb +31 -0
  950. data/lib/fog/bin/vsphere.rb +30 -0
  951. data/lib/fog/bin/xenserver.rb +31 -0
  952. data/lib/fog/bin/zerigo.rb +31 -0
  953. data/lib/fog/bin.rb +93 -0
  954. data/lib/fog/bluebox/compute.rb +104 -0
  955. data/lib/fog/bluebox/dns.rb +104 -0
  956. data/lib/fog/bluebox/models/compute/flavor.rb +45 -0
  957. data/lib/fog/bluebox/models/compute/flavors.rb +28 -0
  958. data/lib/fog/bluebox/models/compute/image.rb +34 -0
  959. data/lib/fog/bluebox/models/compute/images.rb +28 -0
  960. data/lib/fog/bluebox/models/compute/location.rb +17 -0
  961. data/lib/fog/bluebox/models/compute/locations.rb +28 -0
  962. data/lib/fog/bluebox/models/compute/server.rb +120 -0
  963. data/lib/fog/bluebox/models/compute/servers.rb +36 -0
  964. data/lib/fog/bluebox/models/dns/record.rb +55 -0
  965. data/lib/fog/bluebox/models/dns/records.rb +36 -0
  966. data/lib/fog/bluebox/models/dns/zone.rb +64 -0
  967. data/lib/fog/bluebox/models/dns/zones.rb +28 -0
  968. data/lib/fog/bluebox/parsers/dns/create_record.rb +26 -0
  969. data/lib/fog/bluebox/parsers/dns/create_zone.rb +26 -0
  970. data/lib/fog/bluebox/parsers/dns/get_record.rb +21 -0
  971. data/lib/fog/bluebox/parsers/dns/get_records.rb +28 -0
  972. data/lib/fog/bluebox/parsers/dns/get_zone.rb +26 -0
  973. data/lib/fog/bluebox/parsers/dns/get_zones.rb +30 -0
  974. data/lib/fog/bluebox/requests/compute/create_block.rb +47 -0
  975. data/lib/fog/bluebox/requests/compute/create_template.rb +27 -0
  976. data/lib/fog/bluebox/requests/compute/destroy_block.rb +26 -0
  977. data/lib/fog/bluebox/requests/compute/destroy_template.rb +26 -0
  978. data/lib/fog/bluebox/requests/compute/get_block.rb +26 -0
  979. data/lib/fog/bluebox/requests/compute/get_blocks.rb +28 -0
  980. data/lib/fog/bluebox/requests/compute/get_location.rb +26 -0
  981. data/lib/fog/bluebox/requests/compute/get_locations.rb +24 -0
  982. data/lib/fog/bluebox/requests/compute/get_product.rb +26 -0
  983. data/lib/fog/bluebox/requests/compute/get_products.rb +25 -0
  984. data/lib/fog/bluebox/requests/compute/get_template.rb +26 -0
  985. data/lib/fog/bluebox/requests/compute/get_templates.rb +26 -0
  986. data/lib/fog/bluebox/requests/compute/reboot_block.rb +27 -0
  987. data/lib/fog/bluebox/requests/dns/create_record.rb +48 -0
  988. data/lib/fog/bluebox/requests/dns/create_zone.rb +52 -0
  989. data/lib/fog/bluebox/requests/dns/delete_record.rb +31 -0
  990. data/lib/fog/bluebox/requests/dns/delete_zone.rb +31 -0
  991. data/lib/fog/bluebox/requests/dns/get_record.rb +40 -0
  992. data/lib/fog/bluebox/requests/dns/get_records.rb +41 -0
  993. data/lib/fog/bluebox/requests/dns/get_zone.rb +44 -0
  994. data/lib/fog/bluebox/requests/dns/get_zones.rb +43 -0
  995. data/lib/fog/bluebox/requests/dns/update_record.rb +34 -0
  996. data/lib/fog/bluebox/requests/dns/update_zone.rb +30 -0
  997. data/lib/fog/bluebox.rb +12 -0
  998. data/lib/fog/brightbox/compute.rb +287 -0
  999. data/lib/fog/brightbox/models/compute/account.rb +63 -0
  1000. data/lib/fog/brightbox/models/compute/accounts.rb +29 -0
  1001. data/lib/fog/brightbox/models/compute/api_client.rb +37 -0
  1002. data/lib/fog/brightbox/models/compute/api_clients.rb +24 -0
  1003. data/lib/fog/brightbox/models/compute/application.rb +27 -0
  1004. data/lib/fog/brightbox/models/compute/applications.rb +28 -0
  1005. data/lib/fog/brightbox/models/compute/cloud_ip.rb +59 -0
  1006. data/lib/fog/brightbox/models/compute/cloud_ips.rb +34 -0
  1007. data/lib/fog/brightbox/models/compute/firewall_policies.rb +29 -0
  1008. data/lib/fog/brightbox/models/compute/firewall_policy.rb +65 -0
  1009. data/lib/fog/brightbox/models/compute/firewall_rule.rb +54 -0
  1010. data/lib/fog/brightbox/models/compute/firewall_rules.rb +24 -0
  1011. data/lib/fog/brightbox/models/compute/flavor.rb +32 -0
  1012. data/lib/fog/brightbox/models/compute/flavors.rb +28 -0
  1013. data/lib/fog/brightbox/models/compute/image.rb +66 -0
  1014. data/lib/fog/brightbox/models/compute/images.rb +28 -0
  1015. data/lib/fog/brightbox/models/compute/load_balancer.rb +59 -0
  1016. data/lib/fog/brightbox/models/compute/load_balancers.rb +28 -0
  1017. data/lib/fog/brightbox/models/compute/server.rb +202 -0
  1018. data/lib/fog/brightbox/models/compute/server_group.rb +96 -0
  1019. data/lib/fog/brightbox/models/compute/server_groups.rb +29 -0
  1020. data/lib/fog/brightbox/models/compute/servers.rb +29 -0
  1021. data/lib/fog/brightbox/models/compute/user.rb +43 -0
  1022. data/lib/fog/brightbox/models/compute/users.rb +27 -0
  1023. data/lib/fog/brightbox/models/compute/zone.rb +22 -0
  1024. data/lib/fog/brightbox/models/compute/zones.rb +29 -0
  1025. data/lib/fog/brightbox/requests/compute/activate_console_server.rb +14 -0
  1026. data/lib/fog/brightbox/requests/compute/add_listeners_load_balancer.rb +14 -0
  1027. data/lib/fog/brightbox/requests/compute/add_nodes_load_balancer.rb +14 -0
  1028. data/lib/fog/brightbox/requests/compute/add_servers_server_group.rb +28 -0
  1029. data/lib/fog/brightbox/requests/compute/apply_to_firewall_policy.rb +14 -0
  1030. data/lib/fog/brightbox/requests/compute/create_api_client.rb +13 -0
  1031. data/lib/fog/brightbox/requests/compute/create_application.rb +13 -0
  1032. data/lib/fog/brightbox/requests/compute/create_cloud_ip.rb +13 -0
  1033. data/lib/fog/brightbox/requests/compute/create_firewall_policy.rb +13 -0
  1034. data/lib/fog/brightbox/requests/compute/create_firewall_rule.rb +13 -0
  1035. data/lib/fog/brightbox/requests/compute/create_image.rb +13 -0
  1036. data/lib/fog/brightbox/requests/compute/create_load_balancer.rb +13 -0
  1037. data/lib/fog/brightbox/requests/compute/create_server.rb +13 -0
  1038. data/lib/fog/brightbox/requests/compute/create_server_group.rb +13 -0
  1039. data/lib/fog/brightbox/requests/compute/destroy_api_client.rb +14 -0
  1040. data/lib/fog/brightbox/requests/compute/destroy_application.rb +14 -0
  1041. data/lib/fog/brightbox/requests/compute/destroy_cloud_ip.rb +14 -0
  1042. data/lib/fog/brightbox/requests/compute/destroy_firewall_policy.rb +14 -0
  1043. data/lib/fog/brightbox/requests/compute/destroy_firewall_rule.rb +14 -0
  1044. data/lib/fog/brightbox/requests/compute/destroy_image.rb +14 -0
  1045. data/lib/fog/brightbox/requests/compute/destroy_load_balancer.rb +14 -0
  1046. data/lib/fog/brightbox/requests/compute/destroy_server.rb +14 -0
  1047. data/lib/fog/brightbox/requests/compute/destroy_server_group.rb +14 -0
  1048. data/lib/fog/brightbox/requests/compute/get_account.rb +37 -0
  1049. data/lib/fog/brightbox/requests/compute/get_api_client.rb +14 -0
  1050. data/lib/fog/brightbox/requests/compute/get_application.rb +14 -0
  1051. data/lib/fog/brightbox/requests/compute/get_authenticated_user.rb +19 -0
  1052. data/lib/fog/brightbox/requests/compute/get_cloud_ip.rb +14 -0
  1053. data/lib/fog/brightbox/requests/compute/get_firewall_policy.rb +14 -0
  1054. data/lib/fog/brightbox/requests/compute/get_firewall_rule.rb +14 -0
  1055. data/lib/fog/brightbox/requests/compute/get_image.rb +14 -0
  1056. data/lib/fog/brightbox/requests/compute/get_interface.rb +14 -0
  1057. data/lib/fog/brightbox/requests/compute/get_load_balancer.rb +14 -0
  1058. data/lib/fog/brightbox/requests/compute/get_scoped_account.rb +19 -0
  1059. data/lib/fog/brightbox/requests/compute/get_server.rb +14 -0
  1060. data/lib/fog/brightbox/requests/compute/get_server_group.rb +14 -0
  1061. data/lib/fog/brightbox/requests/compute/get_server_type.rb +14 -0
  1062. data/lib/fog/brightbox/requests/compute/get_user.rb +37 -0
  1063. data/lib/fog/brightbox/requests/compute/get_zone.rb +14 -0
  1064. data/lib/fog/brightbox/requests/compute/list_accounts.rb +13 -0
  1065. data/lib/fog/brightbox/requests/compute/list_api_clients.rb +13 -0
  1066. data/lib/fog/brightbox/requests/compute/list_applications.rb +13 -0
  1067. data/lib/fog/brightbox/requests/compute/list_cloud_ips.rb +13 -0
  1068. data/lib/fog/brightbox/requests/compute/list_firewall_policies.rb +13 -0
  1069. data/lib/fog/brightbox/requests/compute/list_images.rb +13 -0
  1070. data/lib/fog/brightbox/requests/compute/list_load_balancers.rb +13 -0
  1071. data/lib/fog/brightbox/requests/compute/list_server_groups.rb +13 -0
  1072. data/lib/fog/brightbox/requests/compute/list_server_types.rb +13 -0
  1073. data/lib/fog/brightbox/requests/compute/list_servers.rb +13 -0
  1074. data/lib/fog/brightbox/requests/compute/list_users.rb +13 -0
  1075. data/lib/fog/brightbox/requests/compute/list_zones.rb +13 -0
  1076. data/lib/fog/brightbox/requests/compute/map_cloud_ip.rb +14 -0
  1077. data/lib/fog/brightbox/requests/compute/move_servers_server_group.rb +29 -0
  1078. data/lib/fog/brightbox/requests/compute/remove_firewall_policy.rb +14 -0
  1079. data/lib/fog/brightbox/requests/compute/remove_listeners_load_balancer.rb +14 -0
  1080. data/lib/fog/brightbox/requests/compute/remove_nodes_load_balancer.rb +14 -0
  1081. data/lib/fog/brightbox/requests/compute/remove_servers_server_group.rb +27 -0
  1082. data/lib/fog/brightbox/requests/compute/reset_ftp_password_account.rb +13 -0
  1083. data/lib/fog/brightbox/requests/compute/reset_secret_api_client.rb +14 -0
  1084. data/lib/fog/brightbox/requests/compute/reset_secret_application.rb +14 -0
  1085. data/lib/fog/brightbox/requests/compute/shutdown_server.rb +14 -0
  1086. data/lib/fog/brightbox/requests/compute/snapshot_server.rb +14 -0
  1087. data/lib/fog/brightbox/requests/compute/start_server.rb +14 -0
  1088. data/lib/fog/brightbox/requests/compute/stop_server.rb +14 -0
  1089. data/lib/fog/brightbox/requests/compute/unmap_cloud_ip.rb +14 -0
  1090. data/lib/fog/brightbox/requests/compute/update_account.rb +62 -0
  1091. data/lib/fog/brightbox/requests/compute/update_api_client.rb +15 -0
  1092. data/lib/fog/brightbox/requests/compute/update_application.rb +15 -0
  1093. data/lib/fog/brightbox/requests/compute/update_cloud_ip.rb +15 -0
  1094. data/lib/fog/brightbox/requests/compute/update_firewall_rule.rb +15 -0
  1095. data/lib/fog/brightbox/requests/compute/update_image.rb +15 -0
  1096. data/lib/fog/brightbox/requests/compute/update_load_balancer.rb +15 -0
  1097. data/lib/fog/brightbox/requests/compute/update_scoped_account.rb +37 -0
  1098. data/lib/fog/brightbox/requests/compute/update_server.rb +15 -0
  1099. data/lib/fog/brightbox/requests/compute/update_server_group.rb +15 -0
  1100. data/lib/fog/brightbox/requests/compute/update_user.rb +15 -0
  1101. data/lib/fog/brightbox.rb +10 -0
  1102. data/lib/fog/cdn.rb +30 -0
  1103. data/lib/fog/clodo/compute.rb +150 -0
  1104. data/lib/fog/clodo/models/compute/image.rb +31 -0
  1105. data/lib/fog/clodo/models/compute/images.rb +28 -0
  1106. data/lib/fog/clodo/models/compute/server.rb +126 -0
  1107. data/lib/fog/clodo/models/compute/servers.rb +36 -0
  1108. data/lib/fog/clodo/requests/compute/add_ip_address.rb +49 -0
  1109. data/lib/fog/clodo/requests/compute/create_server.rb +112 -0
  1110. data/lib/fog/clodo/requests/compute/delete_ip_address.rb +47 -0
  1111. data/lib/fog/clodo/requests/compute/delete_server.rb +44 -0
  1112. data/lib/fog/clodo/requests/compute/get_image_details.rb +20 -0
  1113. data/lib/fog/clodo/requests/compute/get_server_details.rb +49 -0
  1114. data/lib/fog/clodo/requests/compute/list_images.rb +48 -0
  1115. data/lib/fog/clodo/requests/compute/list_images_detail.rb +61 -0
  1116. data/lib/fog/clodo/requests/compute/list_servers.rb +50 -0
  1117. data/lib/fog/clodo/requests/compute/list_servers_detail.rb +51 -0
  1118. data/lib/fog/clodo/requests/compute/move_ip_address.rb +34 -0
  1119. data/lib/fog/clodo/requests/compute/reboot_server.rb +19 -0
  1120. data/lib/fog/clodo/requests/compute/rebuild_server.rb +21 -0
  1121. data/lib/fog/clodo/requests/compute/server_action.rb +25 -0
  1122. data/lib/fog/clodo/requests/compute/start_server.rb +19 -0
  1123. data/lib/fog/clodo/requests/compute/stop_server.rb +19 -0
  1124. data/lib/fog/clodo.rb +34 -0
  1125. data/lib/fog/cloudstack/compute.rb +441 -0
  1126. data/lib/fog/cloudstack/models/compute/address.rb +17 -0
  1127. data/lib/fog/cloudstack/models/compute/flavor.rb +33 -0
  1128. data/lib/fog/cloudstack/models/compute/flavors.rb +28 -0
  1129. data/lib/fog/cloudstack/models/compute/image.rb +72 -0
  1130. data/lib/fog/cloudstack/models/compute/images.rb +41 -0
  1131. data/lib/fog/cloudstack/models/compute/job.rb +42 -0
  1132. data/lib/fog/cloudstack/models/compute/jobs.rb +28 -0
  1133. data/lib/fog/cloudstack/models/compute/security_group.rb +50 -0
  1134. data/lib/fog/cloudstack/models/compute/security_group_rule.rb +62 -0
  1135. data/lib/fog/cloudstack/models/compute/security_group_rules.rb +37 -0
  1136. data/lib/fog/cloudstack/models/compute/security_groups.rb +27 -0
  1137. data/lib/fog/cloudstack/models/compute/server.rb +116 -0
  1138. data/lib/fog/cloudstack/models/compute/servers.rb +34 -0
  1139. data/lib/fog/cloudstack/models/compute/volume.rb +115 -0
  1140. data/lib/fog/cloudstack/models/compute/volumes.rb +28 -0
  1141. data/lib/fog/cloudstack/models/compute/zone.rb +38 -0
  1142. data/lib/fog/cloudstack/models/compute/zones.rb +33 -0
  1143. data/lib/fog/cloudstack/requests/compute/acquire_ip_address.rb +21 -0
  1144. data/lib/fog/cloudstack/requests/compute/assign_to_load_balancer_rule.rb +25 -0
  1145. data/lib/fog/cloudstack/requests/compute/assign_virtual_machine.rb +18 -0
  1146. data/lib/fog/cloudstack/requests/compute/attach_volume.rb +70 -0
  1147. data/lib/fog/cloudstack/requests/compute/authorize_security_group_egress.rb +68 -0
  1148. data/lib/fog/cloudstack/requests/compute/authorize_security_group_ingress.rb +73 -0
  1149. data/lib/fog/cloudstack/requests/compute/change_service_for_virtual_machine.rb +20 -0
  1150. data/lib/fog/cloudstack/requests/compute/create_account.rb +20 -0
  1151. data/lib/fog/cloudstack/requests/compute/create_domain.rb +20 -0
  1152. data/lib/fog/cloudstack/requests/compute/create_load_balancer_rule.rb +20 -0
  1153. data/lib/fog/cloudstack/requests/compute/create_network.rb +20 -0
  1154. data/lib/fog/cloudstack/requests/compute/create_port_forwarding_rule.rb +20 -0
  1155. data/lib/fog/cloudstack/requests/compute/create_security_group.rb +28 -0
  1156. data/lib/fog/cloudstack/requests/compute/create_snapshot.rb +20 -0
  1157. data/lib/fog/cloudstack/requests/compute/create_snapshot_policy.rb +20 -0
  1158. data/lib/fog/cloudstack/requests/compute/create_ssh_key_pair.rb +22 -0
  1159. data/lib/fog/cloudstack/requests/compute/create_user.rb +20 -0
  1160. data/lib/fog/cloudstack/requests/compute/create_volume.rb +63 -0
  1161. data/lib/fog/cloudstack/requests/compute/create_zone.rb +20 -0
  1162. data/lib/fog/cloudstack/requests/compute/delete_account.rb +20 -0
  1163. data/lib/fog/cloudstack/requests/compute/delete_domain.rb +20 -0
  1164. data/lib/fog/cloudstack/requests/compute/delete_load_balancer_rule.rb +20 -0
  1165. data/lib/fog/cloudstack/requests/compute/delete_port_forwarding_rule.rb +20 -0
  1166. data/lib/fog/cloudstack/requests/compute/delete_security_group.rb +37 -0
  1167. data/lib/fog/cloudstack/requests/compute/delete_snapshot.rb +20 -0
  1168. data/lib/fog/cloudstack/requests/compute/delete_snapshot_policies.rb +20 -0
  1169. data/lib/fog/cloudstack/requests/compute/delete_ssh_key_pair.rb +21 -0
  1170. data/lib/fog/cloudstack/requests/compute/delete_template.rb +20 -0
  1171. data/lib/fog/cloudstack/requests/compute/delete_user.rb +20 -0
  1172. data/lib/fog/cloudstack/requests/compute/delete_volume.rb +40 -0
  1173. data/lib/fog/cloudstack/requests/compute/deploy_virtual_machine.rb +129 -0
  1174. data/lib/fog/cloudstack/requests/compute/destroy_virtual_machine.rb +51 -0
  1175. data/lib/fog/cloudstack/requests/compute/detach_volume.rb +62 -0
  1176. data/lib/fog/cloudstack/requests/compute/disable_account.rb +20 -0
  1177. data/lib/fog/cloudstack/requests/compute/disable_user.rb +20 -0
  1178. data/lib/fog/cloudstack/requests/compute/enable_account.rb +20 -0
  1179. data/lib/fog/cloudstack/requests/compute/enable_user.rb +20 -0
  1180. data/lib/fog/cloudstack/requests/compute/generate_usage_records.rb +28 -0
  1181. data/lib/fog/cloudstack/requests/compute/get_vm_password.rb +21 -0
  1182. data/lib/fog/cloudstack/requests/compute/list_accounts.rb +20 -0
  1183. data/lib/fog/cloudstack/requests/compute/list_alerts.rb +20 -0
  1184. data/lib/fog/cloudstack/requests/compute/list_async_jobs.rb +32 -0
  1185. data/lib/fog/cloudstack/requests/compute/list_capabilities.rb +20 -0
  1186. data/lib/fog/cloudstack/requests/compute/list_capacity.rb +20 -0
  1187. data/lib/fog/cloudstack/requests/compute/list_clusters.rb +20 -0
  1188. data/lib/fog/cloudstack/requests/compute/list_configurations.rb +20 -0
  1189. data/lib/fog/cloudstack/requests/compute/list_disk_offerings.rb +20 -0
  1190. data/lib/fog/cloudstack/requests/compute/list_domain_children.rb +20 -0
  1191. data/lib/fog/cloudstack/requests/compute/list_domains.rb +20 -0
  1192. data/lib/fog/cloudstack/requests/compute/list_events.rb +20 -0
  1193. data/lib/fog/cloudstack/requests/compute/list_external_firewalls.rb +20 -0
  1194. data/lib/fog/cloudstack/requests/compute/list_external_load_balancers.rb +20 -0
  1195. data/lib/fog/cloudstack/requests/compute/list_firewall_rules.rb +15 -0
  1196. data/lib/fog/cloudstack/requests/compute/list_hosts.rb +20 -0
  1197. data/lib/fog/cloudstack/requests/compute/list_hypervisors.rb +20 -0
  1198. data/lib/fog/cloudstack/requests/compute/list_instance_groups.rb +20 -0
  1199. data/lib/fog/cloudstack/requests/compute/list_isos.rb +20 -0
  1200. data/lib/fog/cloudstack/requests/compute/list_load_balancer_rule_instances.rb +23 -0
  1201. data/lib/fog/cloudstack/requests/compute/list_load_balancer_rules.rb +22 -0
  1202. data/lib/fog/cloudstack/requests/compute/list_network_offerings.rb +20 -0
  1203. data/lib/fog/cloudstack/requests/compute/list_networks.rb +20 -0
  1204. data/lib/fog/cloudstack/requests/compute/list_os_categories.rb +22 -0
  1205. data/lib/fog/cloudstack/requests/compute/list_os_types.rb +22 -0
  1206. data/lib/fog/cloudstack/requests/compute/list_pods.rb +20 -0
  1207. data/lib/fog/cloudstack/requests/compute/list_port_forwarding_rules.rb +22 -0
  1208. data/lib/fog/cloudstack/requests/compute/list_public_ip_addresses.rb +22 -0
  1209. data/lib/fog/cloudstack/requests/compute/list_resource_limits.rb +20 -0
  1210. data/lib/fog/cloudstack/requests/compute/list_security_groups.rb +38 -0
  1211. data/lib/fog/cloudstack/requests/compute/list_service_offerings.rb +42 -0
  1212. data/lib/fog/cloudstack/requests/compute/list_snapshot_policies.rb +20 -0
  1213. data/lib/fog/cloudstack/requests/compute/list_snapshots.rb +20 -0
  1214. data/lib/fog/cloudstack/requests/compute/list_ssh_key_pairs.rb +20 -0
  1215. data/lib/fog/cloudstack/requests/compute/list_storage_pools.rb +20 -0
  1216. data/lib/fog/cloudstack/requests/compute/list_templates.rb +35 -0
  1217. data/lib/fog/cloudstack/requests/compute/list_usage_records.rb +28 -0
  1218. data/lib/fog/cloudstack/requests/compute/list_users.rb +20 -0
  1219. data/lib/fog/cloudstack/requests/compute/list_virtual_machines.rb +26 -0
  1220. data/lib/fog/cloudstack/requests/compute/list_volumes.rb +38 -0
  1221. data/lib/fog/cloudstack/requests/compute/list_zones.rb +34 -0
  1222. data/lib/fog/cloudstack/requests/compute/migrate_virtual_machine.rb +20 -0
  1223. data/lib/fog/cloudstack/requests/compute/query_async_job_result.rb +32 -0
  1224. data/lib/fog/cloudstack/requests/compute/reboot_virtual_machine.rb +31 -0
  1225. data/lib/fog/cloudstack/requests/compute/recover_virtual_machine.rb +20 -0
  1226. data/lib/fog/cloudstack/requests/compute/register_ssh_key_pair.rb +20 -0
  1227. data/lib/fog/cloudstack/requests/compute/register_template.rb +35 -0
  1228. data/lib/fog/cloudstack/requests/compute/register_user_keys.rb +20 -0
  1229. data/lib/fog/cloudstack/requests/compute/remove_from_load_balancer_rule.rb +25 -0
  1230. data/lib/fog/cloudstack/requests/compute/reset_password_for_virtual_machine.rb +21 -0
  1231. data/lib/fog/cloudstack/requests/compute/revoke_security_group_egress.rb +42 -0
  1232. data/lib/fog/cloudstack/requests/compute/revoke_security_group_ingress.rb +47 -0
  1233. data/lib/fog/cloudstack/requests/compute/start_virtual_machine.rb +20 -0
  1234. data/lib/fog/cloudstack/requests/compute/stop_virtual_machine.rb +20 -0
  1235. data/lib/fog/cloudstack/requests/compute/update_account.rb +20 -0
  1236. data/lib/fog/cloudstack/requests/compute/update_domain.rb +20 -0
  1237. data/lib/fog/cloudstack/requests/compute/update_resource_count.rb +20 -0
  1238. data/lib/fog/cloudstack/requests/compute/update_user.rb +20 -0
  1239. data/lib/fog/cloudstack/requests/compute/update_virtual_machine.rb +20 -0
  1240. data/lib/fog/cloudstack.rb +40 -0
  1241. data/lib/fog/compute/models/server.rb +73 -0
  1242. data/lib/fog/compute.rb +123 -0
  1243. data/lib/fog/core/attributes.rb +204 -0
  1244. data/lib/fog/core/collection.rb +134 -0
  1245. data/lib/fog/core/connection.rb +35 -0
  1246. data/lib/fog/core/credentials.rb +65 -0
  1247. data/lib/fog/core/current_machine.rb +34 -0
  1248. data/lib/fog/core/deprecation.rb +23 -0
  1249. data/lib/fog/core/errors.rb +102 -0
  1250. data/lib/fog/core/hmac.rb +48 -0
  1251. data/lib/fog/core/json.rb +46 -0
  1252. data/lib/fog/core/logger.rb +43 -0
  1253. data/lib/fog/core/mock.rb +92 -0
  1254. data/lib/fog/core/model.rb +69 -0
  1255. data/lib/fog/core/parser.rb +103 -0
  1256. data/lib/fog/core/provider.rb +35 -0
  1257. data/lib/fog/core/scp.rb +95 -0
  1258. data/lib/fog/core/service.rb +223 -0
  1259. data/lib/fog/core/ssh.rb +136 -0
  1260. data/lib/fog/core/time.rb +32 -0
  1261. data/lib/fog/core/timeout.rb +11 -0
  1262. data/lib/fog/core/wait_for.rb +15 -0
  1263. data/lib/fog/core.rb +37 -0
  1264. data/lib/fog/dns.rb +56 -0
  1265. data/lib/fog/dnsimple/dns.rb +95 -0
  1266. data/lib/fog/dnsimple/models/dns/record.rb +67 -0
  1267. data/lib/fog/dnsimple/models/dns/records.rb +38 -0
  1268. data/lib/fog/dnsimple/models/dns/zone.rb +50 -0
  1269. data/lib/fog/dnsimple/models/dns/zones.rb +29 -0
  1270. data/lib/fog/dnsimple/requests/dns/create_domain.rb +27 -0
  1271. data/lib/fog/dnsimple/requests/dns/create_record.rb +48 -0
  1272. data/lib/fog/dnsimple/requests/dns/delete_domain.rb +26 -0
  1273. data/lib/fog/dnsimple/requests/dns/delete_record.rb +21 -0
  1274. data/lib/fog/dnsimple/requests/dns/get_domain.rb +37 -0
  1275. data/lib/fog/dnsimple/requests/dns/get_record.rb +34 -0
  1276. data/lib/fog/dnsimple/requests/dns/list_domains.rb +35 -0
  1277. data/lib/fog/dnsimple/requests/dns/list_records.rb +32 -0
  1278. data/lib/fog/dnsimple/requests/dns/update_record.rb +42 -0
  1279. data/lib/fog/dnsimple.rb +11 -0
  1280. data/lib/fog/dnsmadeeasy/dns.rb +135 -0
  1281. data/lib/fog/dnsmadeeasy/models/dns/record.rb +80 -0
  1282. data/lib/fog/dnsmadeeasy/models/dns/records.rb +36 -0
  1283. data/lib/fog/dnsmadeeasy/models/dns/zone.rb +42 -0
  1284. data/lib/fog/dnsmadeeasy/models/dns/zones.rb +30 -0
  1285. data/lib/fog/dnsmadeeasy/requests/dns/create_domain.rb +29 -0
  1286. data/lib/fog/dnsmadeeasy/requests/dns/create_record.rb +62 -0
  1287. data/lib/fog/dnsmadeeasy/requests/dns/create_secondary.rb +36 -0
  1288. data/lib/fog/dnsmadeeasy/requests/dns/delete_all_domains.rb +23 -0
  1289. data/lib/fog/dnsmadeeasy/requests/dns/delete_all_secondary.rb +22 -0
  1290. data/lib/fog/dnsmadeeasy/requests/dns/delete_domain.rb +25 -0
  1291. data/lib/fog/dnsmadeeasy/requests/dns/delete_record.rb +26 -0
  1292. data/lib/fog/dnsmadeeasy/requests/dns/delete_secondary.rb +25 -0
  1293. data/lib/fog/dnsmadeeasy/requests/dns/get_domain.rb +29 -0
  1294. data/lib/fog/dnsmadeeasy/requests/dns/get_record.rb +38 -0
  1295. data/lib/fog/dnsmadeeasy/requests/dns/get_secondary.rb +29 -0
  1296. data/lib/fog/dnsmadeeasy/requests/dns/list_domains.rb +24 -0
  1297. data/lib/fog/dnsmadeeasy/requests/dns/list_records.rb +42 -0
  1298. data/lib/fog/dnsmadeeasy/requests/dns/list_secondary.rb +24 -0
  1299. data/lib/fog/dnsmadeeasy/requests/dns/update_record.rb +56 -0
  1300. data/lib/fog/dnsmadeeasy/requests/dns/update_secondary.rb +36 -0
  1301. data/lib/fog/dnsmadeeasy.rb +11 -0
  1302. data/lib/fog/dynect/dns.rb +139 -0
  1303. data/lib/fog/dynect/models/dns/record.rb +66 -0
  1304. data/lib/fog/dynect/models/dns/records.rb +53 -0
  1305. data/lib/fog/dynect/models/dns/zone.rb +60 -0
  1306. data/lib/fog/dynect/models/dns/zones.rb +29 -0
  1307. data/lib/fog/dynect/requests/dns/delete_record.rb +56 -0
  1308. data/lib/fog/dynect/requests/dns/delete_zone.rb +42 -0
  1309. data/lib/fog/dynect/requests/dns/get_node_list.rb +56 -0
  1310. data/lib/fog/dynect/requests/dns/get_record.rb +84 -0
  1311. data/lib/fog/dynect/requests/dns/get_zone.rb +58 -0
  1312. data/lib/fog/dynect/requests/dns/post_record.rb +72 -0
  1313. data/lib/fog/dynect/requests/dns/post_session.rb +44 -0
  1314. data/lib/fog/dynect/requests/dns/post_zone.rb +71 -0
  1315. data/lib/fog/dynect/requests/dns/put_zone.rb +76 -0
  1316. data/lib/fog/dynect.rb +26 -0
  1317. data/lib/fog/ecloud/collection.rb +26 -0
  1318. data/lib/fog/ecloud/compute.rb +515 -0
  1319. data/lib/fog/ecloud/generate_collection.rb +130 -0
  1320. data/lib/fog/ecloud/ipaddr.rb +5 -0
  1321. data/lib/fog/ecloud/mock_data_classes.rb +768 -0
  1322. data/lib/fog/ecloud/model.rb +22 -0
  1323. data/lib/fog/ecloud/models/compute/admin_organization.rb +39 -0
  1324. data/lib/fog/ecloud/models/compute/admin_organizations.rb +27 -0
  1325. data/lib/fog/ecloud/models/compute/api_key.rb +21 -0
  1326. data/lib/fog/ecloud/models/compute/api_keys.rb +27 -0
  1327. data/lib/fog/ecloud/models/compute/association.rb +23 -0
  1328. data/lib/fog/ecloud/models/compute/associations.rb +35 -0
  1329. data/lib/fog/ecloud/models/compute/authentication_level.rb +22 -0
  1330. data/lib/fog/ecloud/models/compute/authentication_levels.rb +27 -0
  1331. data/lib/fog/ecloud/models/compute/backup_internet_service.rb +45 -0
  1332. data/lib/fog/ecloud/models/compute/backup_internet_services.rb +42 -0
  1333. data/lib/fog/ecloud/models/compute/catalog.rb +40 -0
  1334. data/lib/fog/ecloud/models/compute/catalog_configuration.rb +23 -0
  1335. data/lib/fog/ecloud/models/compute/catalog_configurations.rb +27 -0
  1336. data/lib/fog/ecloud/models/compute/catalog_item.rb +24 -0
  1337. data/lib/fog/ecloud/models/compute/compute_pool.rb +59 -0
  1338. data/lib/fog/ecloud/models/compute/compute_pools.rb +34 -0
  1339. data/lib/fog/ecloud/models/compute/cpu_usage_detail.rb +17 -0
  1340. data/lib/fog/ecloud/models/compute/cpu_usage_detail_summary.rb +27 -0
  1341. data/lib/fog/ecloud/models/compute/environment.rb +105 -0
  1342. data/lib/fog/ecloud/models/compute/environments.rb +40 -0
  1343. data/lib/fog/ecloud/models/compute/firewall_acl.rb +27 -0
  1344. data/lib/fog/ecloud/models/compute/firewall_acls.rb +28 -0
  1345. data/lib/fog/ecloud/models/compute/group.rb +39 -0
  1346. data/lib/fog/ecloud/models/compute/groups.rb +28 -0
  1347. data/lib/fog/ecloud/models/compute/guest_process.rb +15 -0
  1348. data/lib/fog/ecloud/models/compute/guest_processes.rb +27 -0
  1349. data/lib/fog/ecloud/models/compute/hardware_configuration.rb +18 -0
  1350. data/lib/fog/ecloud/models/compute/hardware_configurations.rb +27 -0
  1351. data/lib/fog/ecloud/models/compute/internet_service.rb +91 -0
  1352. data/lib/fog/ecloud/models/compute/internet_services.rb +46 -0
  1353. data/lib/fog/ecloud/models/compute/ip_address.rb +25 -0
  1354. data/lib/fog/ecloud/models/compute/ip_addresses.rb +28 -0
  1355. data/lib/fog/ecloud/models/compute/layout.rb +20 -0
  1356. data/lib/fog/ecloud/models/compute/layouts.rb +27 -0
  1357. data/lib/fog/ecloud/models/compute/location.rb +23 -0
  1358. data/lib/fog/ecloud/models/compute/locations.rb +31 -0
  1359. data/lib/fog/ecloud/models/compute/login_banner.rb +16 -0
  1360. data/lib/fog/ecloud/models/compute/login_banners.rb +27 -0
  1361. data/lib/fog/ecloud/models/compute/memory_usage_detail.rb +16 -0
  1362. data/lib/fog/ecloud/models/compute/memory_usage_detail_summary.rb +27 -0
  1363. data/lib/fog/ecloud/models/compute/monitor.rb +46 -0
  1364. data/lib/fog/ecloud/models/compute/monitors.rb +31 -0
  1365. data/lib/fog/ecloud/models/compute/network.rb +36 -0
  1366. data/lib/fog/ecloud/models/compute/networks.rb +29 -0
  1367. data/lib/fog/ecloud/models/compute/node.rb +39 -0
  1368. data/lib/fog/ecloud/models/compute/nodes.rb +44 -0
  1369. data/lib/fog/ecloud/models/compute/operating_system.rb +17 -0
  1370. data/lib/fog/ecloud/models/compute/operating_system_families.rb +27 -0
  1371. data/lib/fog/ecloud/models/compute/operating_system_family.rb +21 -0
  1372. data/lib/fog/ecloud/models/compute/operating_systems.rb +26 -0
  1373. data/lib/fog/ecloud/models/compute/organization.rb +79 -0
  1374. data/lib/fog/ecloud/models/compute/organizations.rb +39 -0
  1375. data/lib/fog/ecloud/models/compute/password_complexity_rule.rb +49 -0
  1376. data/lib/fog/ecloud/models/compute/password_complexity_rules.rb +27 -0
  1377. data/lib/fog/ecloud/models/compute/physical_device.rb +22 -0
  1378. data/lib/fog/ecloud/models/compute/physical_devices.rb +27 -0
  1379. data/lib/fog/ecloud/models/compute/public_ip.rb +26 -0
  1380. data/lib/fog/ecloud/models/compute/public_ips.rb +33 -0
  1381. data/lib/fog/ecloud/models/compute/rnat.rb +27 -0
  1382. data/lib/fog/ecloud/models/compute/rnats.rb +27 -0
  1383. data/lib/fog/ecloud/models/compute/role.rb +24 -0
  1384. data/lib/fog/ecloud/models/compute/roles.rb +37 -0
  1385. data/lib/fog/ecloud/models/compute/row.rb +53 -0
  1386. data/lib/fog/ecloud/models/compute/rows.rb +37 -0
  1387. data/lib/fog/ecloud/models/compute/server.rb +277 -0
  1388. data/lib/fog/ecloud/models/compute/server_configuration_option.rb +17 -0
  1389. data/lib/fog/ecloud/models/compute/server_configuration_options.rb +27 -0
  1390. data/lib/fog/ecloud/models/compute/servers.rb +69 -0
  1391. data/lib/fog/ecloud/models/compute/ssh_key.rb +20 -0
  1392. data/lib/fog/ecloud/models/compute/ssh_keys.rb +27 -0
  1393. data/lib/fog/ecloud/models/compute/storage_usage_detail.rb +16 -0
  1394. data/lib/fog/ecloud/models/compute/storage_usage_detail_summary.rb +27 -0
  1395. data/lib/fog/ecloud/models/compute/support_ticket.rb +29 -0
  1396. data/lib/fog/ecloud/models/compute/support_tickets.rb +27 -0
  1397. data/lib/fog/ecloud/models/compute/tag.rb +13 -0
  1398. data/lib/fog/ecloud/models/compute/tags.rb +27 -0
  1399. data/lib/fog/ecloud/models/compute/task.rb +20 -0
  1400. data/lib/fog/ecloud/models/compute/tasks.rb +31 -0
  1401. data/lib/fog/ecloud/models/compute/template.rb +24 -0
  1402. data/lib/fog/ecloud/models/compute/templates.rb +40 -0
  1403. data/lib/fog/ecloud/models/compute/trusted_network_group.rb +33 -0
  1404. data/lib/fog/ecloud/models/compute/trusted_network_groups.rb +28 -0
  1405. data/lib/fog/ecloud/models/compute/user.rb +35 -0
  1406. data/lib/fog/ecloud/models/compute/users.rb +27 -0
  1407. data/lib/fog/ecloud/requests/compute/admin_disable_support_access.rb +9 -0
  1408. data/lib/fog/ecloud/requests/compute/admin_edit_authentication_levels.rb +34 -0
  1409. data/lib/fog/ecloud/requests/compute/admin_edit_login_banner.rb +32 -0
  1410. data/lib/fog/ecloud/requests/compute/admin_edit_password_complexity_rules.rb +74 -0
  1411. data/lib/fog/ecloud/requests/compute/admin_enable_support_access.rb +9 -0
  1412. data/lib/fog/ecloud/requests/compute/backup_internet_service_create.rb +47 -0
  1413. data/lib/fog/ecloud/requests/compute/backup_internet_service_delete.rb +11 -0
  1414. data/lib/fog/ecloud/requests/compute/backup_internet_service_edit.rb +47 -0
  1415. data/lib/fog/ecloud/requests/compute/compute_pool_edit.rb +37 -0
  1416. data/lib/fog/ecloud/requests/compute/firewall_acls_create.rb +79 -0
  1417. data/lib/fog/ecloud/requests/compute/firewall_acls_delete.rb +11 -0
  1418. data/lib/fog/ecloud/requests/compute/get_admin_organization.rb +11 -0
  1419. data/lib/fog/ecloud/requests/compute/get_admin_organizations.rb +11 -0
  1420. data/lib/fog/ecloud/requests/compute/get_api_key.rb +11 -0
  1421. data/lib/fog/ecloud/requests/compute/get_api_keys.rb +11 -0
  1422. data/lib/fog/ecloud/requests/compute/get_association.rb +11 -0
  1423. data/lib/fog/ecloud/requests/compute/get_associations.rb +11 -0
  1424. data/lib/fog/ecloud/requests/compute/get_authentication_level.rb +11 -0
  1425. data/lib/fog/ecloud/requests/compute/get_authentication_levels.rb +11 -0
  1426. data/lib/fog/ecloud/requests/compute/get_backup_internet_service.rb +11 -0
  1427. data/lib/fog/ecloud/requests/compute/get_backup_internet_services.rb +11 -0
  1428. data/lib/fog/ecloud/requests/compute/get_catalog.rb +11 -0
  1429. data/lib/fog/ecloud/requests/compute/get_catalog_configuration.rb +11 -0
  1430. data/lib/fog/ecloud/requests/compute/get_catalog_configurations.rb +11 -0
  1431. data/lib/fog/ecloud/requests/compute/get_catalog_item.rb +11 -0
  1432. data/lib/fog/ecloud/requests/compute/get_compute_pool.rb +11 -0
  1433. data/lib/fog/ecloud/requests/compute/get_compute_pools.rb +11 -0
  1434. data/lib/fog/ecloud/requests/compute/get_cpu_usage_detail.rb +11 -0
  1435. data/lib/fog/ecloud/requests/compute/get_cpu_usage_detail_summary.rb +11 -0
  1436. data/lib/fog/ecloud/requests/compute/get_environment.rb +11 -0
  1437. data/lib/fog/ecloud/requests/compute/get_environments.rb +0 -0
  1438. data/lib/fog/ecloud/requests/compute/get_firewall_acl.rb +11 -0
  1439. data/lib/fog/ecloud/requests/compute/get_firewall_acls.rb +11 -0
  1440. data/lib/fog/ecloud/requests/compute/get_group.rb +11 -0
  1441. data/lib/fog/ecloud/requests/compute/get_groups.rb +11 -0
  1442. data/lib/fog/ecloud/requests/compute/get_guest_process.rb +11 -0
  1443. data/lib/fog/ecloud/requests/compute/get_guest_processes.rb +11 -0
  1444. data/lib/fog/ecloud/requests/compute/get_hardware_configuration.rb +11 -0
  1445. data/lib/fog/ecloud/requests/compute/get_hardware_configurations.rb +11 -0
  1446. data/lib/fog/ecloud/requests/compute/get_internet_service.rb +11 -0
  1447. data/lib/fog/ecloud/requests/compute/get_internet_services.rb +11 -0
  1448. data/lib/fog/ecloud/requests/compute/get_ip_address.rb +11 -0
  1449. data/lib/fog/ecloud/requests/compute/get_ip_addresses.rb +11 -0
  1450. data/lib/fog/ecloud/requests/compute/get_layout.rb +11 -0
  1451. data/lib/fog/ecloud/requests/compute/get_layouts.rb +11 -0
  1452. data/lib/fog/ecloud/requests/compute/get_location.rb +12 -0
  1453. data/lib/fog/ecloud/requests/compute/get_locations.rb +12 -0
  1454. data/lib/fog/ecloud/requests/compute/get_login_banner.rb +11 -0
  1455. data/lib/fog/ecloud/requests/compute/get_login_banners.rb +11 -0
  1456. data/lib/fog/ecloud/requests/compute/get_memory_usage_detail.rb +11 -0
  1457. data/lib/fog/ecloud/requests/compute/get_memory_usage_detail_summary.rb +11 -0
  1458. data/lib/fog/ecloud/requests/compute/get_monitor.rb +11 -0
  1459. data/lib/fog/ecloud/requests/compute/get_monitors.rb +11 -0
  1460. data/lib/fog/ecloud/requests/compute/get_network.rb +11 -0
  1461. data/lib/fog/ecloud/requests/compute/get_network_summary.rb +11 -0
  1462. data/lib/fog/ecloud/requests/compute/get_networks.rb +11 -0
  1463. data/lib/fog/ecloud/requests/compute/get_node.rb +11 -0
  1464. data/lib/fog/ecloud/requests/compute/get_nodes.rb +11 -0
  1465. data/lib/fog/ecloud/requests/compute/get_operating_system.rb +11 -0
  1466. data/lib/fog/ecloud/requests/compute/get_operating_system_families.rb +11 -0
  1467. data/lib/fog/ecloud/requests/compute/get_operating_system_family.rb +11 -0
  1468. data/lib/fog/ecloud/requests/compute/get_organization.rb +11 -0
  1469. data/lib/fog/ecloud/requests/compute/get_organizations.rb +11 -0
  1470. data/lib/fog/ecloud/requests/compute/get_password_complexity_rule.rb +11 -0
  1471. data/lib/fog/ecloud/requests/compute/get_password_complexity_rules.rb +11 -0
  1472. data/lib/fog/ecloud/requests/compute/get_physical_device.rb +11 -0
  1473. data/lib/fog/ecloud/requests/compute/get_physical_devices.rb +11 -0
  1474. data/lib/fog/ecloud/requests/compute/get_process.rb +11 -0
  1475. data/lib/fog/ecloud/requests/compute/get_processes.rb +11 -0
  1476. data/lib/fog/ecloud/requests/compute/get_public_ip.rb +11 -0
  1477. data/lib/fog/ecloud/requests/compute/get_public_ips.rb +11 -0
  1478. data/lib/fog/ecloud/requests/compute/get_rnat.rb +11 -0
  1479. data/lib/fog/ecloud/requests/compute/get_rnats.rb +11 -0
  1480. data/lib/fog/ecloud/requests/compute/get_role.rb +11 -0
  1481. data/lib/fog/ecloud/requests/compute/get_roles.rb +11 -0
  1482. data/lib/fog/ecloud/requests/compute/get_row.rb +11 -0
  1483. data/lib/fog/ecloud/requests/compute/get_rows.rb +11 -0
  1484. data/lib/fog/ecloud/requests/compute/get_server.rb +11 -0
  1485. data/lib/fog/ecloud/requests/compute/get_server_configuration_option.rb +11 -0
  1486. data/lib/fog/ecloud/requests/compute/get_server_configuration_options.rb +11 -0
  1487. data/lib/fog/ecloud/requests/compute/get_servers.rb +11 -0
  1488. data/lib/fog/ecloud/requests/compute/get_ssh_key.rb +11 -0
  1489. data/lib/fog/ecloud/requests/compute/get_ssh_keys.rb +11 -0
  1490. data/lib/fog/ecloud/requests/compute/get_storage_usage_detail.rb +11 -0
  1491. data/lib/fog/ecloud/requests/compute/get_storage_usage_detail_summary.rb +11 -0
  1492. data/lib/fog/ecloud/requests/compute/get_support_ticket.rb +11 -0
  1493. data/lib/fog/ecloud/requests/compute/get_support_tickets.rb +11 -0
  1494. data/lib/fog/ecloud/requests/compute/get_tag.rb +11 -0
  1495. data/lib/fog/ecloud/requests/compute/get_tags.rb +11 -0
  1496. data/lib/fog/ecloud/requests/compute/get_task.rb +11 -0
  1497. data/lib/fog/ecloud/requests/compute/get_tasks.rb +11 -0
  1498. data/lib/fog/ecloud/requests/compute/get_template.rb +11 -0
  1499. data/lib/fog/ecloud/requests/compute/get_templates.rb +11 -0
  1500. data/lib/fog/ecloud/requests/compute/get_trusted_network_group.rb +11 -0
  1501. data/lib/fog/ecloud/requests/compute/get_trusted_network_groups.rb +11 -0
  1502. data/lib/fog/ecloud/requests/compute/get_user.rb +11 -0
  1503. data/lib/fog/ecloud/requests/compute/get_users.rb +11 -0
  1504. data/lib/fog/ecloud/requests/compute/groups_create.rb +31 -0
  1505. data/lib/fog/ecloud/requests/compute/groups_delete.rb +11 -0
  1506. data/lib/fog/ecloud/requests/compute/groups_edit.rb +29 -0
  1507. data/lib/fog/ecloud/requests/compute/groups_movedown.rb +11 -0
  1508. data/lib/fog/ecloud/requests/compute/groups_moveup.rb +11 -0
  1509. data/lib/fog/ecloud/requests/compute/internet_service_create.rb +67 -0
  1510. data/lib/fog/ecloud/requests/compute/internet_service_delete.rb +11 -0
  1511. data/lib/fog/ecloud/requests/compute/internet_service_edit.rb +60 -0
  1512. data/lib/fog/ecloud/requests/compute/monitors_create_default.rb +11 -0
  1513. data/lib/fog/ecloud/requests/compute/monitors_create_ecv.rb +40 -0
  1514. data/lib/fog/ecloud/requests/compute/monitors_create_http.rb +44 -0
  1515. data/lib/fog/ecloud/requests/compute/monitors_create_loopback.rb +11 -0
  1516. data/lib/fog/ecloud/requests/compute/monitors_create_ping.rb +35 -0
  1517. data/lib/fog/ecloud/requests/compute/monitors_disable.rb +11 -0
  1518. data/lib/fog/ecloud/requests/compute/monitors_edit_ecv.rb +40 -0
  1519. data/lib/fog/ecloud/requests/compute/monitors_edit_http.rb +44 -0
  1520. data/lib/fog/ecloud/requests/compute/monitors_edit_ping.rb +35 -0
  1521. data/lib/fog/ecloud/requests/compute/monitors_enable.rb +11 -0
  1522. data/lib/fog/ecloud/requests/compute/node_service_create.rb +45 -0
  1523. data/lib/fog/ecloud/requests/compute/node_service_delete.rb +11 -0
  1524. data/lib/fog/ecloud/requests/compute/node_service_edit.rb +41 -0
  1525. data/lib/fog/ecloud/requests/compute/power_off.rb +11 -0
  1526. data/lib/fog/ecloud/requests/compute/power_on.rb +11 -0
  1527. data/lib/fog/ecloud/requests/compute/power_reset.rb +11 -0
  1528. data/lib/fog/ecloud/requests/compute/power_shutdown.rb +11 -0
  1529. data/lib/fog/ecloud/requests/compute/public_ip_activate.rb +11 -0
  1530. data/lib/fog/ecloud/requests/compute/rnat_associations_create_device.rb +32 -0
  1531. data/lib/fog/ecloud/requests/compute/rnat_associations_delete.rb +9 -0
  1532. data/lib/fog/ecloud/requests/compute/rnat_associations_edit_network.rb +31 -0
  1533. data/lib/fog/ecloud/requests/compute/rows_create.rb +29 -0
  1534. data/lib/fog/ecloud/requests/compute/rows_delete.rb +11 -0
  1535. data/lib/fog/ecloud/requests/compute/rows_edit.rb +29 -0
  1536. data/lib/fog/ecloud/requests/compute/rows_movedown.rb +11 -0
  1537. data/lib/fog/ecloud/requests/compute/rows_moveup.rb +11 -0
  1538. data/lib/fog/ecloud/requests/compute/trusted_network_groups_create.rb +53 -0
  1539. data/lib/fog/ecloud/requests/compute/trusted_network_groups_delete.rb +11 -0
  1540. data/lib/fog/ecloud/requests/compute/trusted_network_groups_edit.rb +53 -0
  1541. data/lib/fog/ecloud/requests/compute/virtual_machine_add_ip.rb +40 -0
  1542. data/lib/fog/ecloud/requests/compute/virtual_machine_copy.rb +118 -0
  1543. data/lib/fog/ecloud/requests/compute/virtual_machine_copy_identical.rb +45 -0
  1544. data/lib/fog/ecloud/requests/compute/virtual_machine_create_from_template.rb +125 -0
  1545. data/lib/fog/ecloud/requests/compute/virtual_machine_delete.rb +11 -0
  1546. data/lib/fog/ecloud/requests/compute/virtual_machine_edit.rb +47 -0
  1547. data/lib/fog/ecloud/requests/compute/virtual_machine_edit_hardware_configuration.rb +53 -0
  1548. data/lib/fog/ecloud/requests/compute/virtual_machine_import.rb +67 -0
  1549. data/lib/fog/ecloud/requests/compute/virtual_machine_upload_file.rb +31 -0
  1550. data/lib/fog/ecloud.rb +17 -0
  1551. data/lib/fog/glesys/compute.rb +130 -0
  1552. data/lib/fog/glesys/models/compute/ip.rb +75 -0
  1553. data/lib/fog/glesys/models/compute/ips.rb +39 -0
  1554. data/lib/fog/glesys/models/compute/server.rb +76 -0
  1555. data/lib/fog/glesys/models/compute/servers.rb +40 -0
  1556. data/lib/fog/glesys/models/compute/template.rb +25 -0
  1557. data/lib/fog/glesys/models/compute/templates.rb +22 -0
  1558. data/lib/fog/glesys/requests/compute/create.rb +15 -0
  1559. data/lib/fog/glesys/requests/compute/destroy.rb +18 -0
  1560. data/lib/fog/glesys/requests/compute/ip_add.rb +14 -0
  1561. data/lib/fog/glesys/requests/compute/ip_details.rb +14 -0
  1562. data/lib/fog/glesys/requests/compute/ip_list_free.rb +14 -0
  1563. data/lib/fog/glesys/requests/compute/ip_list_own.rb +14 -0
  1564. data/lib/fog/glesys/requests/compute/ip_release.rb +14 -0
  1565. data/lib/fog/glesys/requests/compute/ip_remove.rb +14 -0
  1566. data/lib/fog/glesys/requests/compute/ip_take.rb +14 -0
  1567. data/lib/fog/glesys/requests/compute/list_servers.rb +19 -0
  1568. data/lib/fog/glesys/requests/compute/reboot.rb +14 -0
  1569. data/lib/fog/glesys/requests/compute/server_details.rb +14 -0
  1570. data/lib/fog/glesys/requests/compute/server_status.rb +14 -0
  1571. data/lib/fog/glesys/requests/compute/start.rb +14 -0
  1572. data/lib/fog/glesys/requests/compute/stop.rb +14 -0
  1573. data/lib/fog/glesys/requests/compute/template_list.rb +14 -0
  1574. data/lib/fog/glesys.rb +11 -0
  1575. data/lib/fog/go_grid/compute.rb +116 -0
  1576. data/lib/fog/go_grid/models/compute/image.rb +60 -0
  1577. data/lib/fog/go_grid/models/compute/images.rb +33 -0
  1578. data/lib/fog/go_grid/models/compute/password.rb +50 -0
  1579. data/lib/fog/go_grid/models/compute/passwords.rb +36 -0
  1580. data/lib/fog/go_grid/models/compute/server.rb +98 -0
  1581. data/lib/fog/go_grid/models/compute/servers.rb +36 -0
  1582. data/lib/fog/go_grid/requests/compute/common_lookup_list.rb +28 -0
  1583. data/lib/fog/go_grid/requests/compute/grid_image_get.rb +41 -0
  1584. data/lib/fog/go_grid/requests/compute/grid_image_list.rb +44 -0
  1585. data/lib/fog/go_grid/requests/compute/grid_ip_list.rb +30 -0
  1586. data/lib/fog/go_grid/requests/compute/grid_loadbalancer_list.rb +28 -0
  1587. data/lib/fog/go_grid/requests/compute/grid_server_add.rb +36 -0
  1588. data/lib/fog/go_grid/requests/compute/grid_server_delete.rb +25 -0
  1589. data/lib/fog/go_grid/requests/compute/grid_server_get.rb +25 -0
  1590. data/lib/fog/go_grid/requests/compute/grid_server_list.rb +30 -0
  1591. data/lib/fog/go_grid/requests/compute/grid_server_power.rb +26 -0
  1592. data/lib/fog/go_grid/requests/compute/support_password_get.rb +28 -0
  1593. data/lib/fog/go_grid/requests/compute/support_password_list.rb +30 -0
  1594. data/lib/fog/go_grid.rb +11 -0
  1595. data/lib/fog/google/models/storage/directories.rb +43 -0
  1596. data/lib/fog/google/models/storage/directory.rb +78 -0
  1597. data/lib/fog/google/models/storage/file.rb +142 -0
  1598. data/lib/fog/google/models/storage/files.rb +103 -0
  1599. data/lib/fog/google/parsers/storage/access_control_list.rb +48 -0
  1600. data/lib/fog/google/parsers/storage/copy_object.rb +22 -0
  1601. data/lib/fog/google/parsers/storage/get_bucket.rb +62 -0
  1602. data/lib/fog/google/parsers/storage/get_bucket_logging.rb +40 -0
  1603. data/lib/fog/google/parsers/storage/get_bucket_object_versions.rb +88 -0
  1604. data/lib/fog/google/parsers/storage/get_bucket_versioning.rb +24 -0
  1605. data/lib/fog/google/parsers/storage/get_request_payment.rb +20 -0
  1606. data/lib/fog/google/parsers/storage/get_service.rb +32 -0
  1607. data/lib/fog/google/requests/storage/copy_object.rb +72 -0
  1608. data/lib/fog/google/requests/storage/delete_bucket.rb +46 -0
  1609. data/lib/fog/google/requests/storage/delete_object.rb +50 -0
  1610. data/lib/fog/google/requests/storage/get_bucket.rb +110 -0
  1611. data/lib/fog/google/requests/storage/get_bucket_acl.rb +63 -0
  1612. data/lib/fog/google/requests/storage/get_object.rb +112 -0
  1613. data/lib/fog/google/requests/storage/get_object_acl.rb +74 -0
  1614. data/lib/fog/google/requests/storage/get_object_http_url.rb +51 -0
  1615. data/lib/fog/google/requests/storage/get_object_https_url.rb +51 -0
  1616. data/lib/fog/google/requests/storage/get_object_torrent.rb +47 -0
  1617. data/lib/fog/google/requests/storage/get_object_url.rb +37 -0
  1618. data/lib/fog/google/requests/storage/get_service.rb +53 -0
  1619. data/lib/fog/google/requests/storage/head_object.rb +64 -0
  1620. data/lib/fog/google/requests/storage/put_bucket.rb +75 -0
  1621. data/lib/fog/google/requests/storage/put_bucket_acl.rb +73 -0
  1622. data/lib/fog/google/requests/storage/put_object.rb +93 -0
  1623. data/lib/fog/google/requests/storage/put_object_url.rb +54 -0
  1624. data/lib/fog/google/storage.rb +271 -0
  1625. data/lib/fog/google.rb +23 -0
  1626. data/lib/fog/hp/README_HP.rdoc +60 -0
  1627. data/lib/fog/hp/cdn.rb +131 -0
  1628. data/lib/fog/hp/compute.rb +182 -0
  1629. data/lib/fog/hp/models/compute/address.rb +71 -0
  1630. data/lib/fog/hp/models/compute/addresses.rb +29 -0
  1631. data/lib/fog/hp/models/compute/flavor.rb +24 -0
  1632. data/lib/fog/hp/models/compute/flavors.rb +28 -0
  1633. data/lib/fog/hp/models/compute/image.rb +37 -0
  1634. data/lib/fog/hp/models/compute/images.rb +34 -0
  1635. data/lib/fog/hp/models/compute/key_pair.rb +59 -0
  1636. data/lib/fog/hp/models/compute/key_pairs.rb +31 -0
  1637. data/lib/fog/hp/models/compute/security_group.rb +50 -0
  1638. data/lib/fog/hp/models/compute/security_groups.rb +29 -0
  1639. data/lib/fog/hp/models/compute/server.rb +207 -0
  1640. data/lib/fog/hp/models/compute/servers.rb +36 -0
  1641. data/lib/fog/hp/models/storage/directories.rb +50 -0
  1642. data/lib/fog/hp/models/storage/directory.rb +160 -0
  1643. data/lib/fog/hp/models/storage/file.rb +87 -0
  1644. data/lib/fog/hp/models/storage/files.rb +103 -0
  1645. data/lib/fog/hp/requests/cdn/delete_container.rb +38 -0
  1646. data/lib/fog/hp/requests/cdn/get_containers.rb +44 -0
  1647. data/lib/fog/hp/requests/cdn/head_container.rb +50 -0
  1648. data/lib/fog/hp/requests/cdn/post_container.rb +52 -0
  1649. data/lib/fog/hp/requests/cdn/put_container.rb +53 -0
  1650. data/lib/fog/hp/requests/compute/allocate_address.rb +49 -0
  1651. data/lib/fog/hp/requests/compute/associate_address.rb +42 -0
  1652. data/lib/fog/hp/requests/compute/change_password_server.rb +33 -0
  1653. data/lib/fog/hp/requests/compute/confirm_resized_server.rb +34 -0
  1654. data/lib/fog/hp/requests/compute/create_image.rb +63 -0
  1655. data/lib/fog/hp/requests/compute/create_key_pair.rb +81 -0
  1656. data/lib/fog/hp/requests/compute/create_security_group.rb +83 -0
  1657. data/lib/fog/hp/requests/compute/create_security_group_rule.rb +75 -0
  1658. data/lib/fog/hp/requests/compute/create_server.rb +140 -0
  1659. data/lib/fog/hp/requests/compute/delete_image.rb +45 -0
  1660. data/lib/fog/hp/requests/compute/delete_key_pair.rb +39 -0
  1661. data/lib/fog/hp/requests/compute/delete_security_group.rb +41 -0
  1662. data/lib/fog/hp/requests/compute/delete_security_group_rule.rb +49 -0
  1663. data/lib/fog/hp/requests/compute/delete_server.rb +43 -0
  1664. data/lib/fog/hp/requests/compute/disassociate_address.rb +39 -0
  1665. data/lib/fog/hp/requests/compute/get_address.rb +45 -0
  1666. data/lib/fog/hp/requests/compute/get_flavor_details.rb +51 -0
  1667. data/lib/fog/hp/requests/compute/get_image_details.rb +43 -0
  1668. data/lib/fog/hp/requests/compute/get_security_group.rb +57 -0
  1669. data/lib/fog/hp/requests/compute/get_server_details.rb +52 -0
  1670. data/lib/fog/hp/requests/compute/list_addresses.rb +41 -0
  1671. data/lib/fog/hp/requests/compute/list_flavors.rb +44 -0
  1672. data/lib/fog/hp/requests/compute/list_flavors_detail.rb +46 -0
  1673. data/lib/fog/hp/requests/compute/list_images.rb +40 -0
  1674. data/lib/fog/hp/requests/compute/list_images_detail.rb +49 -0
  1675. data/lib/fog/hp/requests/compute/list_key_pairs.rb +44 -0
  1676. data/lib/fog/hp/requests/compute/list_security_groups.rb +54 -0
  1677. data/lib/fog/hp/requests/compute/list_server_addresses.rb +42 -0
  1678. data/lib/fog/hp/requests/compute/list_server_private_addresses.rb +58 -0
  1679. data/lib/fog/hp/requests/compute/list_server_public_addresses.rb +58 -0
  1680. data/lib/fog/hp/requests/compute/list_servers.rb +41 -0
  1681. data/lib/fog/hp/requests/compute/list_servers_detail.rb +56 -0
  1682. data/lib/fog/hp/requests/compute/reboot_server.rb +34 -0
  1683. data/lib/fog/hp/requests/compute/rebuild_server.rb +32 -0
  1684. data/lib/fog/hp/requests/compute/release_address.rb +39 -0
  1685. data/lib/fog/hp/requests/compute/resize_server.rb +39 -0
  1686. data/lib/fog/hp/requests/compute/revert_resized_server.rb +35 -0
  1687. data/lib/fog/hp/requests/compute/server_action.rb +25 -0
  1688. data/lib/fog/hp/requests/compute/update_server.rb +42 -0
  1689. data/lib/fog/hp/requests/storage/delete_container.rb +43 -0
  1690. data/lib/fog/hp/requests/storage/delete_object.rb +44 -0
  1691. data/lib/fog/hp/requests/storage/get_container.rb +92 -0
  1692. data/lib/fog/hp/requests/storage/get_containers.rb +71 -0
  1693. data/lib/fog/hp/requests/storage/get_object.rb +83 -0
  1694. data/lib/fog/hp/requests/storage/head_container.rb +40 -0
  1695. data/lib/fog/hp/requests/storage/head_containers.rb +37 -0
  1696. data/lib/fog/hp/requests/storage/head_object.rb +35 -0
  1697. data/lib/fog/hp/requests/storage/put_container.rb +48 -0
  1698. data/lib/fog/hp/requests/storage/put_object.rb +94 -0
  1699. data/lib/fog/hp/storage.rb +201 -0
  1700. data/lib/fog/hp.rb +234 -0
  1701. data/lib/fog/ibm/compute.rb +235 -0
  1702. data/lib/fog/ibm/models/compute/address.rb +62 -0
  1703. data/lib/fog/ibm/models/compute/addresses.rb +28 -0
  1704. data/lib/fog/ibm/models/compute/image.rb +70 -0
  1705. data/lib/fog/ibm/models/compute/images.rb +27 -0
  1706. data/lib/fog/ibm/models/compute/instance-type.rb +14 -0
  1707. data/lib/fog/ibm/models/compute/instance-types.rb +15 -0
  1708. data/lib/fog/ibm/models/compute/key.rb +35 -0
  1709. data/lib/fog/ibm/models/compute/keys.rb +35 -0
  1710. data/lib/fog/ibm/models/compute/location.rb +15 -0
  1711. data/lib/fog/ibm/models/compute/locations.rb +27 -0
  1712. data/lib/fog/ibm/models/compute/server.rb +193 -0
  1713. data/lib/fog/ibm/models/compute/servers.rb +27 -0
  1714. data/lib/fog/ibm/models/compute/vlan.rb +15 -0
  1715. data/lib/fog/ibm/models/compute/vlans.rb +28 -0
  1716. data/lib/fog/ibm/models/storage/offering.rb +18 -0
  1717. data/lib/fog/ibm/models/storage/offerings.rb +19 -0
  1718. data/lib/fog/ibm/models/storage/volume.rb +98 -0
  1719. data/lib/fog/ibm/models/storage/volumes.rb +27 -0
  1720. data/lib/fog/ibm/requests/compute/clone_image.rb +48 -0
  1721. data/lib/fog/ibm/requests/compute/create_address.rb +50 -0
  1722. data/lib/fog/ibm/requests/compute/create_image.rb +56 -0
  1723. data/lib/fog/ibm/requests/compute/create_instance.rb +80 -0
  1724. data/lib/fog/ibm/requests/compute/create_key.rb +61 -0
  1725. data/lib/fog/ibm/requests/compute/delete_address.rb +46 -0
  1726. data/lib/fog/ibm/requests/compute/delete_image.rb +43 -0
  1727. data/lib/fog/ibm/requests/compute/delete_instance.rb +52 -0
  1728. data/lib/fog/ibm/requests/compute/delete_key.rb +41 -0
  1729. data/lib/fog/ibm/requests/compute/get_image.rb +67 -0
  1730. data/lib/fog/ibm/requests/compute/get_image_agreement.rb +66 -0
  1731. data/lib/fog/ibm/requests/compute/get_image_manifest.rb +39 -0
  1732. data/lib/fog/ibm/requests/compute/get_instance.rb +76 -0
  1733. data/lib/fog/ibm/requests/compute/get_instance_logs.rb +25 -0
  1734. data/lib/fog/ibm/requests/compute/get_key.rb +49 -0
  1735. data/lib/fog/ibm/requests/compute/get_location.rb +55 -0
  1736. data/lib/fog/ibm/requests/compute/get_request.rb +78 -0
  1737. data/lib/fog/ibm/requests/compute/list_address_offerings.rb +58 -0
  1738. data/lib/fog/ibm/requests/compute/list_addresses.rb +53 -0
  1739. data/lib/fog/ibm/requests/compute/list_images.rb +58 -0
  1740. data/lib/fog/ibm/requests/compute/list_instances.rb +57 -0
  1741. data/lib/fog/ibm/requests/compute/list_keys.rb +57 -0
  1742. data/lib/fog/ibm/requests/compute/list_locations.rb +37 -0
  1743. data/lib/fog/ibm/requests/compute/list_vlans.rb +47 -0
  1744. data/lib/fog/ibm/requests/compute/modify_instance.rb +71 -0
  1745. data/lib/fog/ibm/requests/compute/modify_key.rb +52 -0
  1746. data/lib/fog/ibm/requests/storage/create_volume.rb +66 -0
  1747. data/lib/fog/ibm/requests/storage/delete_volume.rb +42 -0
  1748. data/lib/fog/ibm/requests/storage/get_volume.rb +72 -0
  1749. data/lib/fog/ibm/requests/storage/list_offerings.rb +76 -0
  1750. data/lib/fog/ibm/requests/storage/list_volumes.rb +47 -0
  1751. data/lib/fog/ibm/storage.rb +82 -0
  1752. data/lib/fog/ibm.rb +176 -0
  1753. data/lib/fog/identity.rb +24 -0
  1754. data/lib/fog/image.rb +24 -0
  1755. data/lib/fog/joyent/compute.rb +243 -0
  1756. data/lib/fog/joyent/errors.rb +90 -0
  1757. data/lib/fog/joyent/models/compute/flavor.rb +17 -0
  1758. data/lib/fog/joyent/models/compute/flavors.rb +25 -0
  1759. data/lib/fog/joyent/models/compute/image.rb +18 -0
  1760. data/lib/fog/joyent/models/compute/images.rb +25 -0
  1761. data/lib/fog/joyent/models/compute/key.rb +19 -0
  1762. data/lib/fog/joyent/models/compute/keys.rb +34 -0
  1763. data/lib/fog/joyent/models/compute/server.rb +120 -0
  1764. data/lib/fog/joyent/models/compute/servers.rb +36 -0
  1765. data/lib/fog/joyent/models/compute/snapshot.rb +45 -0
  1766. data/lib/fog/joyent/models/compute/snapshots.rb +37 -0
  1767. data/lib/fog/joyent/requests/compute/add_machine_tags.rb +20 -0
  1768. data/lib/fog/joyent/requests/compute/create_key.rb +56 -0
  1769. data/lib/fog/joyent/requests/compute/create_machine.rb +16 -0
  1770. data/lib/fog/joyent/requests/compute/create_machine_snapshot.rb +18 -0
  1771. data/lib/fog/joyent/requests/compute/delete_all_machine_metadata.rb +16 -0
  1772. data/lib/fog/joyent/requests/compute/delete_all_machine_tags.rb +15 -0
  1773. data/lib/fog/joyent/requests/compute/delete_key.rb +29 -0
  1774. data/lib/fog/joyent/requests/compute/delete_machine.rb +15 -0
  1775. data/lib/fog/joyent/requests/compute/delete_machine_metadata.rb +18 -0
  1776. data/lib/fog/joyent/requests/compute/delete_machine_snapshot.rb +21 -0
  1777. data/lib/fog/joyent/requests/compute/delete_machine_tag.rb +15 -0
  1778. data/lib/fog/joyent/requests/compute/get_dataset.rb +28 -0
  1779. data/lib/fog/joyent/requests/compute/get_key.rb +29 -0
  1780. data/lib/fog/joyent/requests/compute/get_machine.rb +29 -0
  1781. data/lib/fog/joyent/requests/compute/get_machine_metadata.rb +25 -0
  1782. data/lib/fog/joyent/requests/compute/get_machine_snapshot.rb +14 -0
  1783. data/lib/fog/joyent/requests/compute/get_machine_tag.rb +19 -0
  1784. data/lib/fog/joyent/requests/compute/get_package.rb +33 -0
  1785. data/lib/fog/joyent/requests/compute/list_datacenters.rb +17 -0
  1786. data/lib/fog/joyent/requests/compute/list_datasets.rb +24 -0
  1787. data/lib/fog/joyent/requests/compute/list_keys.rb +25 -0
  1788. data/lib/fog/joyent/requests/compute/list_machine_snapshots.rb +14 -0
  1789. data/lib/fog/joyent/requests/compute/list_machine_tags.rb +20 -0
  1790. data/lib/fog/joyent/requests/compute/list_machines.rb +25 -0
  1791. data/lib/fog/joyent/requests/compute/list_packages.rb +36 -0
  1792. data/lib/fog/joyent/requests/compute/reboot_machine.rb +15 -0
  1793. data/lib/fog/joyent/requests/compute/resize_machine.rb +13 -0
  1794. data/lib/fog/joyent/requests/compute/start_machine.rb +16 -0
  1795. data/lib/fog/joyent/requests/compute/start_machine_from_snapshot.rb +15 -0
  1796. data/lib/fog/joyent/requests/compute/stop_machine.rb +16 -0
  1797. data/lib/fog/joyent/requests/compute/update_machine_metadata.rb +15 -0
  1798. data/lib/fog/joyent.rb +8 -0
  1799. data/lib/fog/libvirt/compute.rb +136 -0
  1800. data/lib/fog/libvirt/models/compute/README.md +76 -0
  1801. data/lib/fog/libvirt/models/compute/interface.rb +28 -0
  1802. data/lib/fog/libvirt/models/compute/interfaces.rb +24 -0
  1803. data/lib/fog/libvirt/models/compute/network.rb +34 -0
  1804. data/lib/fog/libvirt/models/compute/networks.rb +24 -0
  1805. data/lib/fog/libvirt/models/compute/nic.rb +54 -0
  1806. data/lib/fog/libvirt/models/compute/nics.rb +16 -0
  1807. data/lib/fog/libvirt/models/compute/node.rb +34 -0
  1808. data/lib/fog/libvirt/models/compute/nodes.rb +23 -0
  1809. data/lib/fog/libvirt/models/compute/pool.rb +88 -0
  1810. data/lib/fog/libvirt/models/compute/pools.rb +24 -0
  1811. data/lib/fog/libvirt/models/compute/server.rb +398 -0
  1812. data/lib/fog/libvirt/models/compute/servers.rb +24 -0
  1813. data/lib/fog/libvirt/models/compute/templates/network.xml.erb +6 -0
  1814. data/lib/fog/libvirt/models/compute/templates/pool.xml.erb +6 -0
  1815. data/lib/fog/libvirt/models/compute/templates/server.xml.erb +53 -0
  1816. data/lib/fog/libvirt/models/compute/templates/volume.xml.erb +14 -0
  1817. data/lib/fog/libvirt/models/compute/util/uri.rb +145 -0
  1818. data/lib/fog/libvirt/models/compute/util/util.rb +33 -0
  1819. data/lib/fog/libvirt/models/compute/volume.rb +108 -0
  1820. data/lib/fog/libvirt/models/compute/volumes.rb +24 -0
  1821. data/lib/fog/libvirt/requests/compute/create_domain.rb +17 -0
  1822. data/lib/fog/libvirt/requests/compute/create_volume.rb +17 -0
  1823. data/lib/fog/libvirt/requests/compute/define_domain.rb +17 -0
  1824. data/lib/fog/libvirt/requests/compute/define_pool.rb +17 -0
  1825. data/lib/fog/libvirt/requests/compute/destroy_interface.rb +18 -0
  1826. data/lib/fog/libvirt/requests/compute/destroy_network.rb +17 -0
  1827. data/lib/fog/libvirt/requests/compute/get_node_info.rb +39 -0
  1828. data/lib/fog/libvirt/requests/compute/list_domains.rb +106 -0
  1829. data/lib/fog/libvirt/requests/compute/list_interfaces.rb +59 -0
  1830. data/lib/fog/libvirt/requests/compute/list_networks.rb +58 -0
  1831. data/lib/fog/libvirt/requests/compute/list_pool_volumes.rb +21 -0
  1832. data/lib/fog/libvirt/requests/compute/list_pools.rb +72 -0
  1833. data/lib/fog/libvirt/requests/compute/list_volumes.rb +89 -0
  1834. data/lib/fog/libvirt/requests/compute/mock_files/domain.xml +40 -0
  1835. data/lib/fog/libvirt/requests/compute/pool_action.rb +19 -0
  1836. data/lib/fog/libvirt/requests/compute/update_display.rb +31 -0
  1837. data/lib/fog/libvirt/requests/compute/vm_action.rb +19 -0
  1838. data/lib/fog/libvirt/requests/compute/volume_action.rb +18 -0
  1839. data/lib/fog/libvirt.rb +11 -0
  1840. data/lib/fog/linode/compute.rb +118 -0
  1841. data/lib/fog/linode/dns.rb +93 -0
  1842. data/lib/fog/linode/models/compute/data_center.rb +12 -0
  1843. data/lib/fog/linode/models/compute/data_centers.rb +26 -0
  1844. data/lib/fog/linode/models/compute/disk.rb +62 -0
  1845. data/lib/fog/linode/models/compute/disks.rb +40 -0
  1846. data/lib/fog/linode/models/compute/flavor.rb +23 -0
  1847. data/lib/fog/linode/models/compute/flavors.rb +32 -0
  1848. data/lib/fog/linode/models/compute/image.rb +14 -0
  1849. data/lib/fog/linode/models/compute/images.rb +33 -0
  1850. data/lib/fog/linode/models/compute/ip.rb +30 -0
  1851. data/lib/fog/linode/models/compute/ips.rb +40 -0
  1852. data/lib/fog/linode/models/compute/kernel.rb +12 -0
  1853. data/lib/fog/linode/models/compute/kernels.rb +32 -0
  1854. data/lib/fog/linode/models/compute/server.rb +97 -0
  1855. data/lib/fog/linode/models/compute/servers.rb +32 -0
  1856. data/lib/fog/linode/models/compute/stack_script.rb +13 -0
  1857. data/lib/fog/linode/models/compute/stack_scripts.rb +32 -0
  1858. data/lib/fog/linode/models/dns/record.rb +72 -0
  1859. data/lib/fog/linode/models/dns/records.rb +37 -0
  1860. data/lib/fog/linode/models/dns/zone.rb +84 -0
  1861. data/lib/fog/linode/models/dns/zones.rb +29 -0
  1862. data/lib/fog/linode/requests/compute/avail_datacenters.rb +43 -0
  1863. data/lib/fog/linode/requests/compute/avail_distributions.rb +67 -0
  1864. data/lib/fog/linode/requests/compute/avail_kernels.rb +65 -0
  1865. data/lib/fog/linode/requests/compute/avail_linodeplans.rb +69 -0
  1866. data/lib/fog/linode/requests/compute/avail_stackscripts.rb +63 -0
  1867. data/lib/fog/linode/requests/compute/linode_boot.rb +30 -0
  1868. data/lib/fog/linode/requests/compute/linode_config_create.rb +36 -0
  1869. data/lib/fog/linode/requests/compute/linode_config_list.rb +71 -0
  1870. data/lib/fog/linode/requests/compute/linode_create.rb +46 -0
  1871. data/lib/fog/linode/requests/compute/linode_delete.rb +41 -0
  1872. data/lib/fog/linode/requests/compute/linode_disk_create.rb +37 -0
  1873. data/lib/fog/linode/requests/compute/linode_disk_createfromdistribution.rb +38 -0
  1874. data/lib/fog/linode/requests/compute/linode_disk_createfromstackscript.rb +26 -0
  1875. data/lib/fog/linode/requests/compute/linode_disk_delete.rb +35 -0
  1876. data/lib/fog/linode/requests/compute/linode_disk_list.rb +60 -0
  1877. data/lib/fog/linode/requests/compute/linode_ip_addprivate.rb +17 -0
  1878. data/lib/fog/linode/requests/compute/linode_ip_list.rb +59 -0
  1879. data/lib/fog/linode/requests/compute/linode_list.rb +83 -0
  1880. data/lib/fog/linode/requests/compute/linode_reboot.rb +41 -0
  1881. data/lib/fog/linode/requests/compute/linode_shutdown.rb +30 -0
  1882. data/lib/fog/linode/requests/compute/linode_update.rb +30 -0
  1883. data/lib/fog/linode/requests/compute/stackscript_list.rb +32 -0
  1884. data/lib/fog/linode/requests/dns/domain_create.rb +43 -0
  1885. data/lib/fog/linode/requests/dns/domain_delete.rb +27 -0
  1886. data/lib/fog/linode/requests/dns/domain_list.rb +42 -0
  1887. data/lib/fog/linode/requests/dns/domain_resource_create.rb +44 -0
  1888. data/lib/fog/linode/requests/dns/domain_resource_delete.rb +28 -0
  1889. data/lib/fog/linode/requests/dns/domain_resource_list.rb +43 -0
  1890. data/lib/fog/linode/requests/dns/domain_resource_update.rb +46 -0
  1891. data/lib/fog/linode/requests/dns/domain_update.rb +40 -0
  1892. data/lib/fog/linode.rb +10 -0
  1893. data/lib/fog/local/models/storage/directories.rb +33 -0
  1894. data/lib/fog/local/models/storage/directory.rb +57 -0
  1895. data/lib/fog/local/models/storage/file.rb +131 -0
  1896. data/lib/fog/local/models/storage/files.rb +87 -0
  1897. data/lib/fog/local/storage.rb +103 -0
  1898. data/lib/fog/local.rb +11 -0
  1899. data/lib/fog/network.rb +26 -0
  1900. data/lib/fog/ninefold/compute.rb +148 -0
  1901. data/lib/fog/ninefold/models/compute/address.rb +103 -0
  1902. data/lib/fog/ninefold/models/compute/addresses.rb +31 -0
  1903. data/lib/fog/ninefold/models/compute/flavor.rb +29 -0
  1904. data/lib/fog/ninefold/models/compute/flavors.rb +30 -0
  1905. data/lib/fog/ninefold/models/compute/image.rb +42 -0
  1906. data/lib/fog/ninefold/models/compute/images.rb +30 -0
  1907. data/lib/fog/ninefold/models/compute/ip_forwarding_rule.rb +79 -0
  1908. data/lib/fog/ninefold/models/compute/ip_forwarding_rules.rb +31 -0
  1909. data/lib/fog/ninefold/models/compute/server.rb +185 -0
  1910. data/lib/fog/ninefold/models/compute/servers.rb +31 -0
  1911. data/lib/fog/ninefold/requests/compute/assign_to_load_balancer_rule.rb +13 -0
  1912. data/lib/fog/ninefold/requests/compute/associate_ip_address.rb +14 -0
  1913. data/lib/fog/ninefold/requests/compute/change_service_for_virtual_machine.rb +14 -0
  1914. data/lib/fog/ninefold/requests/compute/create_ip_forwarding_rule.rb +14 -0
  1915. data/lib/fog/ninefold/requests/compute/create_load_balancer_rule.rb +11 -0
  1916. data/lib/fog/ninefold/requests/compute/delete_ip_forwarding_rule.rb +14 -0
  1917. data/lib/fog/ninefold/requests/compute/delete_load_balancer_rule.rb +11 -0
  1918. data/lib/fog/ninefold/requests/compute/deploy_virtual_machine.rb +14 -0
  1919. data/lib/fog/ninefold/requests/compute/destroy_virtual_machine.rb +14 -0
  1920. data/lib/fog/ninefold/requests/compute/disable_static_nat.rb +14 -0
  1921. data/lib/fog/ninefold/requests/compute/disassociate_ip_address.rb +14 -0
  1922. data/lib/fog/ninefold/requests/compute/enable_static_nat.rb +14 -0
  1923. data/lib/fog/ninefold/requests/compute/list_accounts.rb +14 -0
  1924. data/lib/fog/ninefold/requests/compute/list_async_jobs.rb +14 -0
  1925. data/lib/fog/ninefold/requests/compute/list_capabilities.rb +14 -0
  1926. data/lib/fog/ninefold/requests/compute/list_disk_offerings.rb +14 -0
  1927. data/lib/fog/ninefold/requests/compute/list_events.rb +14 -0
  1928. data/lib/fog/ninefold/requests/compute/list_hypervisors.rb +14 -0
  1929. data/lib/fog/ninefold/requests/compute/list_ip_forwarding_rules.rb +14 -0
  1930. data/lib/fog/ninefold/requests/compute/list_load_balancer_rule_instances.rb +15 -0
  1931. data/lib/fog/ninefold/requests/compute/list_load_balancer_rules.rb +14 -0
  1932. data/lib/fog/ninefold/requests/compute/list_network_offerings.rb +14 -0
  1933. data/lib/fog/ninefold/requests/compute/list_networks.rb +14 -0
  1934. data/lib/fog/ninefold/requests/compute/list_public_ip_addresses.rb +14 -0
  1935. data/lib/fog/ninefold/requests/compute/list_resource_limits.rb +14 -0
  1936. data/lib/fog/ninefold/requests/compute/list_service_offerings.rb +14 -0
  1937. data/lib/fog/ninefold/requests/compute/list_templates.rb +14 -0
  1938. data/lib/fog/ninefold/requests/compute/list_virtual_machines.rb +14 -0
  1939. data/lib/fog/ninefold/requests/compute/list_zones.rb +14 -0
  1940. data/lib/fog/ninefold/requests/compute/query_async_job_result.rb +14 -0
  1941. data/lib/fog/ninefold/requests/compute/reboot_virtual_machine.rb +14 -0
  1942. data/lib/fog/ninefold/requests/compute/remove_from_load_balancer_rule.rb +12 -0
  1943. data/lib/fog/ninefold/requests/compute/reset_password_for_virtual_machine.rb +14 -0
  1944. data/lib/fog/ninefold/requests/compute/start_virtual_machine.rb +14 -0
  1945. data/lib/fog/ninefold/requests/compute/stop_virtual_machine.rb +14 -0
  1946. data/lib/fog/ninefold/requests/compute/update_load_balancer_rule.rb +15 -0
  1947. data/lib/fog/ninefold/requests/compute/update_virtual_machine.rb +14 -0
  1948. data/lib/fog/ninefold/storage.rb +56 -0
  1949. data/lib/fog/ninefold.rb +12 -0
  1950. data/lib/fog/openstack/compute.rb +390 -0
  1951. data/lib/fog/openstack/identity.rb +275 -0
  1952. data/lib/fog/openstack/image.rb +211 -0
  1953. data/lib/fog/openstack/models/compute/address.rb +71 -0
  1954. data/lib/fog/openstack/models/compute/addresses.rb +33 -0
  1955. data/lib/fog/openstack/models/compute/flavor.rb +40 -0
  1956. data/lib/fog/openstack/models/compute/flavors.rb +28 -0
  1957. data/lib/fog/openstack/models/compute/host.rb +28 -0
  1958. data/lib/fog/openstack/models/compute/hosts.rb +32 -0
  1959. data/lib/fog/openstack/models/compute/image.rb +57 -0
  1960. data/lib/fog/openstack/models/compute/images.rb +33 -0
  1961. data/lib/fog/openstack/models/compute/key_pair.rb +60 -0
  1962. data/lib/fog/openstack/models/compute/key_pairs.rb +31 -0
  1963. data/lib/fog/openstack/models/compute/metadata.rb +69 -0
  1964. data/lib/fog/openstack/models/compute/metadatum.rb +29 -0
  1965. data/lib/fog/openstack/models/compute/network.rb +13 -0
  1966. data/lib/fog/openstack/models/compute/networks.rb +29 -0
  1967. data/lib/fog/openstack/models/compute/security_group.rb +44 -0
  1968. data/lib/fog/openstack/models/compute/security_groups.rb +27 -0
  1969. data/lib/fog/openstack/models/compute/server.rb +264 -0
  1970. data/lib/fog/openstack/models/compute/servers.rb +44 -0
  1971. data/lib/fog/openstack/models/compute/snapshot.rb +43 -0
  1972. data/lib/fog/openstack/models/compute/snapshots.rb +26 -0
  1973. data/lib/fog/openstack/models/compute/tenant.rb +24 -0
  1974. data/lib/fog/openstack/models/compute/tenants.rb +20 -0
  1975. data/lib/fog/openstack/models/compute/volume.rb +58 -0
  1976. data/lib/fog/openstack/models/compute/volumes.rb +26 -0
  1977. data/lib/fog/openstack/models/identity/role.rb +50 -0
  1978. data/lib/fog/openstack/models/identity/roles.rb +21 -0
  1979. data/lib/fog/openstack/models/identity/tenant.rb +62 -0
  1980. data/lib/fog/openstack/models/identity/tenants.rb +29 -0
  1981. data/lib/fog/openstack/models/identity/user.rb +64 -0
  1982. data/lib/fog/openstack/models/identity/users.rb +33 -0
  1983. data/lib/fog/openstack/models/image/image.rb +90 -0
  1984. data/lib/fog/openstack/models/image/images.rb +60 -0
  1985. data/lib/fog/openstack/models/meta_parent.rb +33 -0
  1986. data/lib/fog/openstack/models/network/network.rb +46 -0
  1987. data/lib/fog/openstack/models/network/networks.rb +34 -0
  1988. data/lib/fog/openstack/models/network/port.rb +52 -0
  1989. data/lib/fog/openstack/models/network/ports.rb +34 -0
  1990. data/lib/fog/openstack/models/network/subnet.rb +55 -0
  1991. data/lib/fog/openstack/models/network/subnets.rb +34 -0
  1992. data/lib/fog/openstack/models/volume/volume.rb +46 -0
  1993. data/lib/fog/openstack/models/volume/volumes.rb +27 -0
  1994. data/lib/fog/openstack/network.rb +234 -0
  1995. data/lib/fog/openstack/requests/compute/add_fixed_ip.rb +29 -0
  1996. data/lib/fog/openstack/requests/compute/allocate_address.rb +42 -0
  1997. data/lib/fog/openstack/requests/compute/associate_address.rb +27 -0
  1998. data/lib/fog/openstack/requests/compute/attach_volume.rb +38 -0
  1999. data/lib/fog/openstack/requests/compute/boot_from_snapshot.rb +41 -0
  2000. data/lib/fog/openstack/requests/compute/change_server_password.rb +24 -0
  2001. data/lib/fog/openstack/requests/compute/confirm_resize_server.rb +24 -0
  2002. data/lib/fog/openstack/requests/compute/create_flavor.rb +82 -0
  2003. data/lib/fog/openstack/requests/compute/create_image.rb +49 -0
  2004. data/lib/fog/openstack/requests/compute/create_key_pair.rb +49 -0
  2005. data/lib/fog/openstack/requests/compute/create_security_group.rb +51 -0
  2006. data/lib/fog/openstack/requests/compute/create_security_group_rule.rb +58 -0
  2007. data/lib/fog/openstack/requests/compute/create_server.rb +84 -0
  2008. data/lib/fog/openstack/requests/compute/create_volume.rb +54 -0
  2009. data/lib/fog/openstack/requests/compute/create_volume_snapshot.rb +47 -0
  2010. data/lib/fog/openstack/requests/compute/delete_flavor.rb +28 -0
  2011. data/lib/fog/openstack/requests/compute/delete_image.rb +40 -0
  2012. data/lib/fog/openstack/requests/compute/delete_key_pair.rb +31 -0
  2013. data/lib/fog/openstack/requests/compute/delete_metadata.rb +28 -0
  2014. data/lib/fog/openstack/requests/compute/delete_security_group.rb +31 -0
  2015. data/lib/fog/openstack/requests/compute/delete_security_group_rule.rb +31 -0
  2016. data/lib/fog/openstack/requests/compute/delete_server.rb +38 -0
  2017. data/lib/fog/openstack/requests/compute/delete_snapshot.rb +26 -0
  2018. data/lib/fog/openstack/requests/compute/delete_volume.rb +26 -0
  2019. data/lib/fog/openstack/requests/compute/detach_volume.rb +26 -0
  2020. data/lib/fog/openstack/requests/compute/disassociate_address.rb +27 -0
  2021. data/lib/fog/openstack/requests/compute/get_address.rb +41 -0
  2022. data/lib/fog/openstack/requests/compute/get_console_output.rb +28 -0
  2023. data/lib/fog/openstack/requests/compute/get_flavor_details.rb +43 -0
  2024. data/lib/fog/openstack/requests/compute/get_host_details.rb +74 -0
  2025. data/lib/fog/openstack/requests/compute/get_image_details.rb +33 -0
  2026. data/lib/fog/openstack/requests/compute/get_metadata.rb +29 -0
  2027. data/lib/fog/openstack/requests/compute/get_quota.rb +31 -0
  2028. data/lib/fog/openstack/requests/compute/get_quota_defaults.rb +31 -0
  2029. data/lib/fog/openstack/requests/compute/get_security_group.rb +49 -0
  2030. data/lib/fog/openstack/requests/compute/get_server_details.rb +32 -0
  2031. data/lib/fog/openstack/requests/compute/get_server_volumes.rb +23 -0
  2032. data/lib/fog/openstack/requests/compute/get_snapshot_details.rb +39 -0
  2033. data/lib/fog/openstack/requests/compute/get_usage.rb +53 -0
  2034. data/lib/fog/openstack/requests/compute/get_vnc_console.rb +40 -0
  2035. data/lib/fog/openstack/requests/compute/get_volume_details.rb +42 -0
  2036. data/lib/fog/openstack/requests/compute/list_address_pools.rb +23 -0
  2037. data/lib/fog/openstack/requests/compute/list_addresses.rb +32 -0
  2038. data/lib/fog/openstack/requests/compute/list_all_addresses.rb +64 -0
  2039. data/lib/fog/openstack/requests/compute/list_flavors.rb +38 -0
  2040. data/lib/fog/openstack/requests/compute/list_flavors_detail.rb +38 -0
  2041. data/lib/fog/openstack/requests/compute/list_hosts.rb +32 -0
  2042. data/lib/fog/openstack/requests/compute/list_images.rb +33 -0
  2043. data/lib/fog/openstack/requests/compute/list_images_detail.rb +39 -0
  2044. data/lib/fog/openstack/requests/compute/list_key_pairs.rb +39 -0
  2045. data/lib/fog/openstack/requests/compute/list_metadata.rb +28 -0
  2046. data/lib/fog/openstack/requests/compute/list_private_addresses.rb +32 -0
  2047. data/lib/fog/openstack/requests/compute/list_public_addresses.rb +32 -0
  2048. data/lib/fog/openstack/requests/compute/list_security_groups.rb +74 -0
  2049. data/lib/fog/openstack/requests/compute/list_servers.rb +37 -0
  2050. data/lib/fog/openstack/requests/compute/list_servers_detail.rb +44 -0
  2051. data/lib/fog/openstack/requests/compute/list_snapshots.rb +32 -0
  2052. data/lib/fog/openstack/requests/compute/list_tenants.rb +43 -0
  2053. data/lib/fog/openstack/requests/compute/list_usages.rb +43 -0
  2054. data/lib/fog/openstack/requests/compute/list_volumes.rb +51 -0
  2055. data/lib/fog/openstack/requests/compute/live_migrate_server.rb +31 -0
  2056. data/lib/fog/openstack/requests/compute/migrate_server.rb +24 -0
  2057. data/lib/fog/openstack/requests/compute/pause_server.rb +24 -0
  2058. data/lib/fog/openstack/requests/compute/reboot_server.rb +24 -0
  2059. data/lib/fog/openstack/requests/compute/rebuild_server.rb +31 -0
  2060. data/lib/fog/openstack/requests/compute/release_address.rb +22 -0
  2061. data/lib/fog/openstack/requests/compute/remove_fixed_ip.rb +29 -0
  2062. data/lib/fog/openstack/requests/compute/rescue_server.rb +24 -0
  2063. data/lib/fog/openstack/requests/compute/resize_server.rb +24 -0
  2064. data/lib/fog/openstack/requests/compute/resume_server.rb +24 -0
  2065. data/lib/fog/openstack/requests/compute/revert_resize_server.rb +30 -0
  2066. data/lib/fog/openstack/requests/compute/server_action.rb +18 -0
  2067. data/lib/fog/openstack/requests/compute/server_actions.rb +27 -0
  2068. data/lib/fog/openstack/requests/compute/server_diagnostics.rb +25 -0
  2069. data/lib/fog/openstack/requests/compute/set_metadata.rb +45 -0
  2070. data/lib/fog/openstack/requests/compute/set_tenant.rb +21 -0
  2071. data/lib/fog/openstack/requests/compute/suspend_server.rb +24 -0
  2072. data/lib/fog/openstack/requests/compute/unpause_server.rb +24 -0
  2073. data/lib/fog/openstack/requests/compute/update_metadata.rb +46 -0
  2074. data/lib/fog/openstack/requests/compute/update_quota.rb +32 -0
  2075. data/lib/fog/openstack/requests/compute/update_server.rb +35 -0
  2076. data/lib/fog/openstack/requests/identity/add_user_to_tenant.rb +29 -0
  2077. data/lib/fog/openstack/requests/identity/check_token.rb +23 -0
  2078. data/lib/fog/openstack/requests/identity/create_role.rb +37 -0
  2079. data/lib/fog/openstack/requests/identity/create_tenant.rb +34 -0
  2080. data/lib/fog/openstack/requests/identity/create_user.rb +47 -0
  2081. data/lib/fog/openstack/requests/identity/create_user_role.rb +26 -0
  2082. data/lib/fog/openstack/requests/identity/delete_role.rb +32 -0
  2083. data/lib/fog/openstack/requests/identity/delete_tenant.rb +31 -0
  2084. data/lib/fog/openstack/requests/identity/delete_user.rb +32 -0
  2085. data/lib/fog/openstack/requests/identity/delete_user_role.rb +26 -0
  2086. data/lib/fog/openstack/requests/identity/get_role.rb +28 -0
  2087. data/lib/fog/openstack/requests/identity/get_tenant.rb +31 -0
  2088. data/lib/fog/openstack/requests/identity/get_tenants_by_id.rb +23 -0
  2089. data/lib/fog/openstack/requests/identity/get_tenants_by_name.rb +23 -0
  2090. data/lib/fog/openstack/requests/identity/get_user_by_id.rb +34 -0
  2091. data/lib/fog/openstack/requests/identity/get_user_by_name.rb +23 -0
  2092. data/lib/fog/openstack/requests/identity/list_endpoints_for_token.rb +23 -0
  2093. data/lib/fog/openstack/requests/identity/list_roles.rb +36 -0
  2094. data/lib/fog/openstack/requests/identity/list_roles_for_user_on_tenant.rb +24 -0
  2095. data/lib/fog/openstack/requests/identity/list_tenants.rb +45 -0
  2096. data/lib/fog/openstack/requests/identity/list_user_global_roles.rb +22 -0
  2097. data/lib/fog/openstack/requests/identity/list_users.rb +25 -0
  2098. data/lib/fog/openstack/requests/identity/remove_user_from_tenant.rb +20 -0
  2099. data/lib/fog/openstack/requests/identity/update_tenant.rb +30 -0
  2100. data/lib/fog/openstack/requests/identity/update_user.rb +36 -0
  2101. data/lib/fog/openstack/requests/identity/validate_token.rb +23 -0
  2102. data/lib/fog/openstack/requests/image/add_member_to_image.rb +23 -0
  2103. data/lib/fog/openstack/requests/image/create_image.rb +77 -0
  2104. data/lib/fog/openstack/requests/image/delete_image.rb +25 -0
  2105. data/lib/fog/openstack/requests/image/get_image.rb +45 -0
  2106. data/lib/fog/openstack/requests/image/get_image_by_id.rb +32 -0
  2107. data/lib/fog/openstack/requests/image/get_image_members.rb +29 -0
  2108. data/lib/fog/openstack/requests/image/get_shared_images.rb +29 -0
  2109. data/lib/fog/openstack/requests/image/list_public_images.rb +32 -0
  2110. data/lib/fog/openstack/requests/image/list_public_images_detailed.rb +31 -0
  2111. data/lib/fog/openstack/requests/image/remove_member_from_image.rb +23 -0
  2112. data/lib/fog/openstack/requests/image/set_tenant.rb +21 -0
  2113. data/lib/fog/openstack/requests/image/update_image.rb +70 -0
  2114. data/lib/fog/openstack/requests/image/update_image_members.rb +37 -0
  2115. data/lib/fog/openstack/requests/network/create_network.rb +44 -0
  2116. data/lib/fog/openstack/requests/network/create_port.rb +52 -0
  2117. data/lib/fog/openstack/requests/network/create_subnet.rb +56 -0
  2118. data/lib/fog/openstack/requests/network/delete_network.rb +30 -0
  2119. data/lib/fog/openstack/requests/network/delete_port.rb +30 -0
  2120. data/lib/fog/openstack/requests/network/delete_subnet.rb +30 -0
  2121. data/lib/fog/openstack/requests/network/get_network.rb +42 -0
  2122. data/lib/fog/openstack/requests/network/get_port.rb +48 -0
  2123. data/lib/fog/openstack/requests/network/get_subnet.rb +49 -0
  2124. data/lib/fog/openstack/requests/network/list_networks.rb +27 -0
  2125. data/lib/fog/openstack/requests/network/list_ports.rb +27 -0
  2126. data/lib/fog/openstack/requests/network/list_subnets.rb +27 -0
  2127. data/lib/fog/openstack/requests/network/set_tenant.rb +21 -0
  2128. data/lib/fog/openstack/requests/network/update_network.rb +41 -0
  2129. data/lib/fog/openstack/requests/network/update_port.rb +44 -0
  2130. data/lib/fog/openstack/requests/network/update_subnet.rb +44 -0
  2131. data/lib/fog/openstack/requests/volume/create_volume.rb +54 -0
  2132. data/lib/fog/openstack/requests/volume/create_volume_snapshot.rb +47 -0
  2133. data/lib/fog/openstack/requests/volume/delete_snapshot.rb +26 -0
  2134. data/lib/fog/openstack/requests/volume/delete_volume.rb +26 -0
  2135. data/lib/fog/openstack/requests/volume/get_snapshot_details.rb +39 -0
  2136. data/lib/fog/openstack/requests/volume/get_volume_details.rb +42 -0
  2137. data/lib/fog/openstack/requests/volume/list_snapshots.rb +32 -0
  2138. data/lib/fog/openstack/requests/volume/list_volumes.rb +55 -0
  2139. data/lib/fog/openstack/requests/volume/set_tenant.rb +21 -0
  2140. data/lib/fog/openstack/volume.rb +214 -0
  2141. data/lib/fog/openstack.rb +180 -0
  2142. data/lib/fog/ovirt/compute.rb +116 -0
  2143. data/lib/fog/ovirt/models/compute/cluster.rb +24 -0
  2144. data/lib/fog/ovirt/models/compute/clusters.rb +23 -0
  2145. data/lib/fog/ovirt/models/compute/interface.rb +22 -0
  2146. data/lib/fog/ovirt/models/compute/interfaces.rb +32 -0
  2147. data/lib/fog/ovirt/models/compute/server.rb +135 -0
  2148. data/lib/fog/ovirt/models/compute/servers.rb +30 -0
  2149. data/lib/fog/ovirt/models/compute/template.rb +60 -0
  2150. data/lib/fog/ovirt/models/compute/templates.rb +23 -0
  2151. data/lib/fog/ovirt/models/compute/volume.rb +35 -0
  2152. data/lib/fog/ovirt/models/compute/volumes.rb +32 -0
  2153. data/lib/fog/ovirt/requests/compute/add_interface.rb +23 -0
  2154. data/lib/fog/ovirt/requests/compute/add_volume.rb +23 -0
  2155. data/lib/fog/ovirt/requests/compute/create_vm.rb +20 -0
  2156. data/lib/fog/ovirt/requests/compute/datacenters.rb +22 -0
  2157. data/lib/fog/ovirt/requests/compute/destroy_interface.rb +25 -0
  2158. data/lib/fog/ovirt/requests/compute/destroy_vm.rb +22 -0
  2159. data/lib/fog/ovirt/requests/compute/destroy_volume.rb +25 -0
  2160. data/lib/fog/ovirt/requests/compute/get_cluster.rb +18 -0
  2161. data/lib/fog/ovirt/requests/compute/get_template.rb +18 -0
  2162. data/lib/fog/ovirt/requests/compute/get_virtual_machine.rb +18 -0
  2163. data/lib/fog/ovirt/requests/compute/list_clusters.rb +20 -0
  2164. data/lib/fog/ovirt/requests/compute/list_networks.rb +17 -0
  2165. data/lib/fog/ovirt/requests/compute/list_template_interfaces.rb +20 -0
  2166. data/lib/fog/ovirt/requests/compute/list_template_volumes.rb +20 -0
  2167. data/lib/fog/ovirt/requests/compute/list_templates.rb +20 -0
  2168. data/lib/fog/ovirt/requests/compute/list_virtual_machines.rb +20 -0
  2169. data/lib/fog/ovirt/requests/compute/list_vm_interfaces.rb +20 -0
  2170. data/lib/fog/ovirt/requests/compute/list_vm_volumes.rb +20 -0
  2171. data/lib/fog/ovirt/requests/compute/mock_files/cluster.xml +20 -0
  2172. data/lib/fog/ovirt/requests/compute/mock_files/clusters.xml +39 -0
  2173. data/lib/fog/ovirt/requests/compute/mock_files/data_centers.xml +17 -0
  2174. data/lib/fog/ovirt/requests/compute/mock_files/nics.xml +10 -0
  2175. data/lib/fog/ovirt/requests/compute/mock_files/storage_domains.xml +36 -0
  2176. data/lib/fog/ovirt/requests/compute/mock_files/template.xml +39 -0
  2177. data/lib/fog/ovirt/requests/compute/mock_files/templates.xml +110 -0
  2178. data/lib/fog/ovirt/requests/compute/mock_files/vm.xml +52 -0
  2179. data/lib/fog/ovirt/requests/compute/mock_files/vms.xml +152 -0
  2180. data/lib/fog/ovirt/requests/compute/mock_files/volumes.xml +40 -0
  2181. data/lib/fog/ovirt/requests/compute/storage_domains.rb +22 -0
  2182. data/lib/fog/ovirt/requests/compute/update_interface.rb +25 -0
  2183. data/lib/fog/ovirt/requests/compute/update_vm.rb +20 -0
  2184. data/lib/fog/ovirt/requests/compute/vm_action.rb +26 -0
  2185. data/lib/fog/ovirt/requests/compute/vm_ticket.rb +21 -0
  2186. data/lib/fog/ovirt.rb +17 -0
  2187. data/lib/fog/providers.rb +33 -0
  2188. data/lib/fog/rackspace/block_storage.rb +114 -0
  2189. data/lib/fog/rackspace/cdn.rb +100 -0
  2190. data/lib/fog/rackspace/compute.rb +262 -0
  2191. data/lib/fog/rackspace/compute_v2.rb +123 -0
  2192. data/lib/fog/rackspace/databases.rb +121 -0
  2193. data/lib/fog/rackspace/dns.rb +139 -0
  2194. data/lib/fog/rackspace/identity.rb +83 -0
  2195. data/lib/fog/rackspace/load_balancers.rb +161 -0
  2196. data/lib/fog/rackspace/models/block_storage/snapshot.rb +46 -0
  2197. data/lib/fog/rackspace/models/block_storage/snapshots.rb +25 -0
  2198. data/lib/fog/rackspace/models/block_storage/volume.rb +58 -0
  2199. data/lib/fog/rackspace/models/block_storage/volume_type.rb +14 -0
  2200. data/lib/fog/rackspace/models/block_storage/volume_types.rb +25 -0
  2201. data/lib/fog/rackspace/models/block_storage/volumes.rb +25 -0
  2202. data/lib/fog/rackspace/models/compute/flavor.rb +46 -0
  2203. data/lib/fog/rackspace/models/compute/flavors.rb +28 -0
  2204. data/lib/fog/rackspace/models/compute/image.rb +48 -0
  2205. data/lib/fog/rackspace/models/compute/images.rb +35 -0
  2206. data/lib/fog/rackspace/models/compute/server.rb +107 -0
  2207. data/lib/fog/rackspace/models/compute/servers.rb +36 -0
  2208. data/lib/fog/rackspace/models/compute_v2/attachment.rb +34 -0
  2209. data/lib/fog/rackspace/models/compute_v2/attachments.rb +25 -0
  2210. data/lib/fog/rackspace/models/compute_v2/flavor.rb +17 -0
  2211. data/lib/fog/rackspace/models/compute_v2/flavors.rb +25 -0
  2212. data/lib/fog/rackspace/models/compute_v2/image.rb +30 -0
  2213. data/lib/fog/rackspace/models/compute_v2/images.rb +25 -0
  2214. data/lib/fog/rackspace/models/compute_v2/server.rb +149 -0
  2215. data/lib/fog/rackspace/models/compute_v2/servers.rb +25 -0
  2216. data/lib/fog/rackspace/models/databases/database.rb +32 -0
  2217. data/lib/fog/rackspace/models/databases/databases.rb +31 -0
  2218. data/lib/fog/rackspace/models/databases/flavor.rb +15 -0
  2219. data/lib/fog/rackspace/models/databases/flavors.rb +25 -0
  2220. data/lib/fog/rackspace/models/databases/instance.rb +104 -0
  2221. data/lib/fog/rackspace/models/databases/instances.rb +25 -0
  2222. data/lib/fog/rackspace/models/databases/user.rb +32 -0
  2223. data/lib/fog/rackspace/models/databases/users.rb +31 -0
  2224. data/lib/fog/rackspace/models/dns/callback.rb +30 -0
  2225. data/lib/fog/rackspace/models/dns/record.rb +82 -0
  2226. data/lib/fog/rackspace/models/dns/records.rb +38 -0
  2227. data/lib/fog/rackspace/models/dns/zone.rb +67 -0
  2228. data/lib/fog/rackspace/models/dns/zones.rb +33 -0
  2229. data/lib/fog/rackspace/models/identity/credential.rb +13 -0
  2230. data/lib/fog/rackspace/models/identity/credentials.rb +32 -0
  2231. data/lib/fog/rackspace/models/identity/role.rb +14 -0
  2232. data/lib/fog/rackspace/models/identity/roles.rb +32 -0
  2233. data/lib/fog/rackspace/models/identity/tenant.rb +15 -0
  2234. data/lib/fog/rackspace/models/identity/tenants.rb +28 -0
  2235. data/lib/fog/rackspace/models/identity/user.rb +53 -0
  2236. data/lib/fog/rackspace/models/identity/users.rb +36 -0
  2237. data/lib/fog/rackspace/models/load_balancers/access_rule.rb +39 -0
  2238. data/lib/fog/rackspace/models/load_balancers/access_rules.rb +29 -0
  2239. data/lib/fog/rackspace/models/load_balancers/load_balancer.rb +250 -0
  2240. data/lib/fog/rackspace/models/load_balancers/load_balancers.rb +27 -0
  2241. data/lib/fog/rackspace/models/load_balancers/node.rb +58 -0
  2242. data/lib/fog/rackspace/models/load_balancers/nodes.rb +29 -0
  2243. data/lib/fog/rackspace/models/load_balancers/virtual_ip.rb +35 -0
  2244. data/lib/fog/rackspace/models/load_balancers/virtual_ips.rb +32 -0
  2245. data/lib/fog/rackspace/models/storage/directories.rb +43 -0
  2246. data/lib/fog/rackspace/models/storage/directory.rb +80 -0
  2247. data/lib/fog/rackspace/models/storage/file.rb +84 -0
  2248. data/lib/fog/rackspace/models/storage/files.rb +94 -0
  2249. data/lib/fog/rackspace/requests/block_storage/create_snapshot.rb +26 -0
  2250. data/lib/fog/rackspace/requests/block_storage/create_volume.rb +27 -0
  2251. data/lib/fog/rackspace/requests/block_storage/delete_snapshot.rb +15 -0
  2252. data/lib/fog/rackspace/requests/block_storage/delete_volume.rb +15 -0
  2253. data/lib/fog/rackspace/requests/block_storage/get_snapshot.rb +15 -0
  2254. data/lib/fog/rackspace/requests/block_storage/get_volume.rb +15 -0
  2255. data/lib/fog/rackspace/requests/block_storage/get_volume_type.rb +15 -0
  2256. data/lib/fog/rackspace/requests/block_storage/list_snapshots.rb +15 -0
  2257. data/lib/fog/rackspace/requests/block_storage/list_volume_types.rb +15 -0
  2258. data/lib/fog/rackspace/requests/block_storage/list_volumes.rb +15 -0
  2259. data/lib/fog/rackspace/requests/cdn/get_containers.rb +31 -0
  2260. data/lib/fog/rackspace/requests/cdn/head_container.rb +33 -0
  2261. data/lib/fog/rackspace/requests/cdn/post_container.rb +30 -0
  2262. data/lib/fog/rackspace/requests/cdn/put_container.rb +30 -0
  2263. data/lib/fog/rackspace/requests/compute/confirm_resized_server.rb +34 -0
  2264. data/lib/fog/rackspace/requests/compute/create_image.rb +60 -0
  2265. data/lib/fog/rackspace/requests/compute/create_server.rb +94 -0
  2266. data/lib/fog/rackspace/requests/compute/delete_image.rb +45 -0
  2267. data/lib/fog/rackspace/requests/compute/delete_server.rb +43 -0
  2268. data/lib/fog/rackspace/requests/compute/get_flavor_details.rb +52 -0
  2269. data/lib/fog/rackspace/requests/compute/get_image_details.rb +27 -0
  2270. data/lib/fog/rackspace/requests/compute/get_server_details.rb +52 -0
  2271. data/lib/fog/rackspace/requests/compute/list_addresses.rb +43 -0
  2272. data/lib/fog/rackspace/requests/compute/list_flavors.rb +45 -0
  2273. data/lib/fog/rackspace/requests/compute/list_flavors_detail.rb +47 -0
  2274. data/lib/fog/rackspace/requests/compute/list_images.rb +40 -0
  2275. data/lib/fog/rackspace/requests/compute/list_images_detail.rb +49 -0
  2276. data/lib/fog/rackspace/requests/compute/list_private_addresses.rb +41 -0
  2277. data/lib/fog/rackspace/requests/compute/list_public_addresses.rb +41 -0
  2278. data/lib/fog/rackspace/requests/compute/list_servers.rb +41 -0
  2279. data/lib/fog/rackspace/requests/compute/list_servers_detail.rb +56 -0
  2280. data/lib/fog/rackspace/requests/compute/reboot_server.rb +30 -0
  2281. data/lib/fog/rackspace/requests/compute/resize_server.rb +39 -0
  2282. data/lib/fog/rackspace/requests/compute/revert_resized_server.rb +35 -0
  2283. data/lib/fog/rackspace/requests/compute/server_action.rb +25 -0
  2284. data/lib/fog/rackspace/requests/compute/update_server.rb +45 -0
  2285. data/lib/fog/rackspace/requests/compute_v2/attach_volume.rb +23 -0
  2286. data/lib/fog/rackspace/requests/compute_v2/change_server_password.rb +22 -0
  2287. data/lib/fog/rackspace/requests/compute_v2/confirm_resize_server.rb +20 -0
  2288. data/lib/fog/rackspace/requests/compute_v2/create_server.rb +28 -0
  2289. data/lib/fog/rackspace/requests/compute_v2/delete_attachment.rb +15 -0
  2290. data/lib/fog/rackspace/requests/compute_v2/delete_server.rb +15 -0
  2291. data/lib/fog/rackspace/requests/compute_v2/get_attachment.rb +15 -0
  2292. data/lib/fog/rackspace/requests/compute_v2/get_flavor.rb +15 -0
  2293. data/lib/fog/rackspace/requests/compute_v2/get_image.rb +15 -0
  2294. data/lib/fog/rackspace/requests/compute_v2/get_server.rb +15 -0
  2295. data/lib/fog/rackspace/requests/compute_v2/list_attachments.rb +15 -0
  2296. data/lib/fog/rackspace/requests/compute_v2/list_flavors.rb +15 -0
  2297. data/lib/fog/rackspace/requests/compute_v2/list_images.rb +15 -0
  2298. data/lib/fog/rackspace/requests/compute_v2/list_servers.rb +15 -0
  2299. data/lib/fog/rackspace/requests/compute_v2/reboot_server.rb +22 -0
  2300. data/lib/fog/rackspace/requests/compute_v2/rebuild_server.rb +22 -0
  2301. data/lib/fog/rackspace/requests/compute_v2/resize_server.rb +22 -0
  2302. data/lib/fog/rackspace/requests/compute_v2/revert_resize_server.rb +20 -0
  2303. data/lib/fog/rackspace/requests/compute_v2/update_server.rb +22 -0
  2304. data/lib/fog/rackspace/requests/databases/check_root_user.rb +15 -0
  2305. data/lib/fog/rackspace/requests/databases/create_database.rb +24 -0
  2306. data/lib/fog/rackspace/requests/databases/create_instance.rb +26 -0
  2307. data/lib/fog/rackspace/requests/databases/create_user.rb +24 -0
  2308. data/lib/fog/rackspace/requests/databases/delete_database.rb +15 -0
  2309. data/lib/fog/rackspace/requests/databases/delete_instance.rb +15 -0
  2310. data/lib/fog/rackspace/requests/databases/delete_user.rb +15 -0
  2311. data/lib/fog/rackspace/requests/databases/enable_root_user.rb +15 -0
  2312. data/lib/fog/rackspace/requests/databases/get_flavor.rb +15 -0
  2313. data/lib/fog/rackspace/requests/databases/get_instance.rb +15 -0
  2314. data/lib/fog/rackspace/requests/databases/list_databases.rb +15 -0
  2315. data/lib/fog/rackspace/requests/databases/list_flavors.rb +15 -0
  2316. data/lib/fog/rackspace/requests/databases/list_instances.rb +15 -0
  2317. data/lib/fog/rackspace/requests/databases/list_users.rb +15 -0
  2318. data/lib/fog/rackspace/requests/databases/resize_instance.rb +22 -0
  2319. data/lib/fog/rackspace/requests/databases/resize_instance_volume.rb +24 -0
  2320. data/lib/fog/rackspace/requests/databases/restart_instance.rb +20 -0
  2321. data/lib/fog/rackspace/requests/dns/add_records.rb +34 -0
  2322. data/lib/fog/rackspace/requests/dns/callback.rb +19 -0
  2323. data/lib/fog/rackspace/requests/dns/create_domains.rb +48 -0
  2324. data/lib/fog/rackspace/requests/dns/list_domain_details.rb +32 -0
  2325. data/lib/fog/rackspace/requests/dns/list_domains.rb +21 -0
  2326. data/lib/fog/rackspace/requests/dns/list_record_details.rb +21 -0
  2327. data/lib/fog/rackspace/requests/dns/list_records.rb +23 -0
  2328. data/lib/fog/rackspace/requests/dns/list_subdomains.rb +23 -0
  2329. data/lib/fog/rackspace/requests/dns/modify_domain.rb +36 -0
  2330. data/lib/fog/rackspace/requests/dns/modify_record.rb +37 -0
  2331. data/lib/fog/rackspace/requests/dns/remove_domain.rb +29 -0
  2332. data/lib/fog/rackspace/requests/dns/remove_domains.rb +27 -0
  2333. data/lib/fog/rackspace/requests/dns/remove_record.rb +21 -0
  2334. data/lib/fog/rackspace/requests/dns/remove_records.rb +20 -0
  2335. data/lib/fog/rackspace/requests/identity/create_token.rb +25 -0
  2336. data/lib/fog/rackspace/requests/identity/create_user.rb +25 -0
  2337. data/lib/fog/rackspace/requests/identity/delete_user.rb +15 -0
  2338. data/lib/fog/rackspace/requests/identity/get_credentials.rb +15 -0
  2339. data/lib/fog/rackspace/requests/identity/get_user_by_id.rb +15 -0
  2340. data/lib/fog/rackspace/requests/identity/get_user_by_name.rb +15 -0
  2341. data/lib/fog/rackspace/requests/identity/list_credentials.rb +22 -0
  2342. data/lib/fog/rackspace/requests/identity/list_tenants.rb +22 -0
  2343. data/lib/fog/rackspace/requests/identity/list_user_roles.rb +22 -0
  2344. data/lib/fog/rackspace/requests/identity/list_users.rb +22 -0
  2345. data/lib/fog/rackspace/requests/identity/update_user.rb +24 -0
  2346. data/lib/fog/rackspace/requests/load_balancers/create_access_rule.rb +24 -0
  2347. data/lib/fog/rackspace/requests/load_balancers/create_load_balancer.rb +29 -0
  2348. data/lib/fog/rackspace/requests/load_balancers/create_node.rb +27 -0
  2349. data/lib/fog/rackspace/requests/load_balancers/create_virtual_ip.rb +20 -0
  2350. data/lib/fog/rackspace/requests/load_balancers/delete_access_rule.rb +15 -0
  2351. data/lib/fog/rackspace/requests/load_balancers/delete_all_access_rules.rb +15 -0
  2352. data/lib/fog/rackspace/requests/load_balancers/delete_load_balancer.rb +15 -0
  2353. data/lib/fog/rackspace/requests/load_balancers/delete_node.rb +15 -0
  2354. data/lib/fog/rackspace/requests/load_balancers/delete_nodes.rb +16 -0
  2355. data/lib/fog/rackspace/requests/load_balancers/delete_virtual_ip.rb +15 -0
  2356. data/lib/fog/rackspace/requests/load_balancers/get_connection_logging.rb +15 -0
  2357. data/lib/fog/rackspace/requests/load_balancers/get_connection_throttling.rb +15 -0
  2358. data/lib/fog/rackspace/requests/load_balancers/get_error_page.rb +15 -0
  2359. data/lib/fog/rackspace/requests/load_balancers/get_load_balancer.rb +15 -0
  2360. data/lib/fog/rackspace/requests/load_balancers/get_load_balancer_usage.rb +21 -0
  2361. data/lib/fog/rackspace/requests/load_balancers/get_monitor.rb +15 -0
  2362. data/lib/fog/rackspace/requests/load_balancers/get_node.rb +15 -0
  2363. data/lib/fog/rackspace/requests/load_balancers/get_session_persistence.rb +15 -0
  2364. data/lib/fog/rackspace/requests/load_balancers/get_ssl_termination.rb +15 -0
  2365. data/lib/fog/rackspace/requests/load_balancers/get_usage.rb +20 -0
  2366. data/lib/fog/rackspace/requests/load_balancers/list_access_rules.rb +15 -0
  2367. data/lib/fog/rackspace/requests/load_balancers/list_algorithms.rb +15 -0
  2368. data/lib/fog/rackspace/requests/load_balancers/list_load_balancers.rb +21 -0
  2369. data/lib/fog/rackspace/requests/load_balancers/list_nodes.rb +15 -0
  2370. data/lib/fog/rackspace/requests/load_balancers/list_protocols.rb +15 -0
  2371. data/lib/fog/rackspace/requests/load_balancers/list_virtual_ips.rb +15 -0
  2372. data/lib/fog/rackspace/requests/load_balancers/remove_connection_throttling.rb +15 -0
  2373. data/lib/fog/rackspace/requests/load_balancers/remove_error_page.rb +15 -0
  2374. data/lib/fog/rackspace/requests/load_balancers/remove_monitor.rb +15 -0
  2375. data/lib/fog/rackspace/requests/load_balancers/remove_session_persistence.rb +15 -0
  2376. data/lib/fog/rackspace/requests/load_balancers/remove_ssl_termination.rb +15 -0
  2377. data/lib/fog/rackspace/requests/load_balancers/set_connection_logging.rb +21 -0
  2378. data/lib/fog/rackspace/requests/load_balancers/set_connection_throttling.rb +22 -0
  2379. data/lib/fog/rackspace/requests/load_balancers/set_error_page.rb +21 -0
  2380. data/lib/fog/rackspace/requests/load_balancers/set_monitor.rb +31 -0
  2381. data/lib/fog/rackspace/requests/load_balancers/set_session_persistence.rb +21 -0
  2382. data/lib/fog/rackspace/requests/load_balancers/set_ssl_termination.rb +31 -0
  2383. data/lib/fog/rackspace/requests/load_balancers/update_load_balancer.rb +24 -0
  2384. data/lib/fog/rackspace/requests/load_balancers/update_node.rb +26 -0
  2385. data/lib/fog/rackspace/requests/storage/copy_object.rb +27 -0
  2386. data/lib/fog/rackspace/requests/storage/delete_container.rb +22 -0
  2387. data/lib/fog/rackspace/requests/storage/delete_object.rb +23 -0
  2388. data/lib/fog/rackspace/requests/storage/get_container.rb +44 -0
  2389. data/lib/fog/rackspace/requests/storage/get_containers.rb +33 -0
  2390. data/lib/fog/rackspace/requests/storage/get_object.rb +30 -0
  2391. data/lib/fog/rackspace/requests/storage/get_object_https_url.rb +51 -0
  2392. data/lib/fog/rackspace/requests/storage/head_container.rb +28 -0
  2393. data/lib/fog/rackspace/requests/storage/head_containers.rb +25 -0
  2394. data/lib/fog/rackspace/requests/storage/head_object.rb +23 -0
  2395. data/lib/fog/rackspace/requests/storage/post_set_meta_temp_url_key.rb +37 -0
  2396. data/lib/fog/rackspace/requests/storage/put_container.rb +22 -0
  2397. data/lib/fog/rackspace/requests/storage/put_object.rb +30 -0
  2398. data/lib/fog/rackspace/requests/storage/put_object_manifest.rb +25 -0
  2399. data/lib/fog/rackspace/storage.rb +162 -0
  2400. data/lib/fog/rackspace.rb +85 -0
  2401. data/lib/fog/serverlove/compute.rb +97 -0
  2402. data/lib/fog/serverlove/models/compute/image.rb +57 -0
  2403. data/lib/fog/serverlove/models/compute/images.rb +26 -0
  2404. data/lib/fog/serverlove/models/compute/server.rb +72 -0
  2405. data/lib/fog/serverlove/models/compute/servers.rb +26 -0
  2406. data/lib/fog/serverlove/requests/compute/create_image.rb +32 -0
  2407. data/lib/fog/serverlove/requests/compute/create_server.rb +34 -0
  2408. data/lib/fog/serverlove/requests/compute/destroy_image.rb +13 -0
  2409. data/lib/fog/serverlove/requests/compute/destroy_server.rb +13 -0
  2410. data/lib/fog/serverlove/requests/compute/get_image.rb +13 -0
  2411. data/lib/fog/serverlove/requests/compute/get_images.rb +13 -0
  2412. data/lib/fog/serverlove/requests/compute/get_server.rb +13 -0
  2413. data/lib/fog/serverlove/requests/compute/get_servers.rb +13 -0
  2414. data/lib/fog/serverlove/requests/compute/load_standard_image.rb +13 -0
  2415. data/lib/fog/serverlove/requests/compute/reset_server.rb +13 -0
  2416. data/lib/fog/serverlove/requests/compute/shutdown_server.rb +13 -0
  2417. data/lib/fog/serverlove/requests/compute/start_server.rb +13 -0
  2418. data/lib/fog/serverlove/requests/compute/stop_server.rb +13 -0
  2419. data/lib/fog/serverlove/requests/compute/update_image.rb +15 -0
  2420. data/lib/fog/serverlove/requests/compute/update_server.rb +15 -0
  2421. data/lib/fog/serverlove/util/compute/password_generator.rb +11 -0
  2422. data/lib/fog/serverlove.rb +10 -0
  2423. data/lib/fog/storage.rb +91 -0
  2424. data/lib/fog/storm_on_demand/compute.rb +136 -0
  2425. data/lib/fog/storm_on_demand/models/compute/balancer.rb +38 -0
  2426. data/lib/fog/storm_on_demand/models/compute/balancers.rb +21 -0
  2427. data/lib/fog/storm_on_demand/models/compute/config.rb +25 -0
  2428. data/lib/fog/storm_on_demand/models/compute/configs.rb +22 -0
  2429. data/lib/fog/storm_on_demand/models/compute/image.rb +20 -0
  2430. data/lib/fog/storm_on_demand/models/compute/images.rb +21 -0
  2431. data/lib/fog/storm_on_demand/models/compute/private_ip.rb +19 -0
  2432. data/lib/fog/storm_on_demand/models/compute/private_ips.rb +31 -0
  2433. data/lib/fog/storm_on_demand/models/compute/server.rb +70 -0
  2434. data/lib/fog/storm_on_demand/models/compute/servers.rb +26 -0
  2435. data/lib/fog/storm_on_demand/models/compute/stat.rb +23 -0
  2436. data/lib/fog/storm_on_demand/models/compute/stats.rb +22 -0
  2437. data/lib/fog/storm_on_demand/models/compute/template.rb +22 -0
  2438. data/lib/fog/storm_on_demand/models/compute/templates.rb +21 -0
  2439. data/lib/fog/storm_on_demand/requests/compute/add_balancer_node.rb +16 -0
  2440. data/lib/fog/storm_on_demand/requests/compute/clone_server.rb +16 -0
  2441. data/lib/fog/storm_on_demand/requests/compute/create_server.rb +16 -0
  2442. data/lib/fog/storm_on_demand/requests/compute/delete_server.rb +16 -0
  2443. data/lib/fog/storm_on_demand/requests/compute/get_server.rb +16 -0
  2444. data/lib/fog/storm_on_demand/requests/compute/get_stats.rb +16 -0
  2445. data/lib/fog/storm_on_demand/requests/compute/list_balancers.rb +16 -0
  2446. data/lib/fog/storm_on_demand/requests/compute/list_configs.rb +16 -0
  2447. data/lib/fog/storm_on_demand/requests/compute/list_images.rb +16 -0
  2448. data/lib/fog/storm_on_demand/requests/compute/list_private_ips.rb +16 -0
  2449. data/lib/fog/storm_on_demand/requests/compute/list_servers.rb +16 -0
  2450. data/lib/fog/storm_on_demand/requests/compute/list_templates.rb +16 -0
  2451. data/lib/fog/storm_on_demand/requests/compute/reboot_server.rb +16 -0
  2452. data/lib/fog/storm_on_demand/requests/compute/remove_balancer_node.rb +16 -0
  2453. data/lib/fog/storm_on_demand/requests/compute/resize_server.rb +16 -0
  2454. data/lib/fog/storm_on_demand.rb +12 -0
  2455. data/lib/fog/terremark/models/shared/address.rb +29 -0
  2456. data/lib/fog/terremark/models/shared/addresses.rb +49 -0
  2457. data/lib/fog/terremark/models/shared/image.rb +22 -0
  2458. data/lib/fog/terremark/models/shared/images.rb +48 -0
  2459. data/lib/fog/terremark/models/shared/internetservice.rb +67 -0
  2460. data/lib/fog/terremark/models/shared/internetservices.rb +42 -0
  2461. data/lib/fog/terremark/models/shared/network.rb +35 -0
  2462. data/lib/fog/terremark/models/shared/networks.rb +52 -0
  2463. data/lib/fog/terremark/models/shared/nodeservice.rb +52 -0
  2464. data/lib/fog/terremark/models/shared/nodeservices.rb +32 -0
  2465. data/lib/fog/terremark/models/shared/server.rb +209 -0
  2466. data/lib/fog/terremark/models/shared/servers.rb +54 -0
  2467. data/lib/fog/terremark/models/shared/task.rb +50 -0
  2468. data/lib/fog/terremark/models/shared/tasks.rb +58 -0
  2469. data/lib/fog/terremark/models/shared/vdc.rb +44 -0
  2470. data/lib/fog/terremark/models/shared/vdcs.rb +52 -0
  2471. data/lib/fog/terremark/parser.rb +19 -0
  2472. data/lib/fog/terremark/parsers/shared/get_catalog.rb +51 -0
  2473. data/lib/fog/terremark/parsers/shared/get_catalog_item.rb +46 -0
  2474. data/lib/fog/terremark/parsers/shared/get_internet_services.rb +60 -0
  2475. data/lib/fog/terremark/parsers/shared/get_keys_list.rb +56 -0
  2476. data/lib/fog/terremark/parsers/shared/get_network_ips.rb +29 -0
  2477. data/lib/fog/terremark/parsers/shared/get_node_services.rb +36 -0
  2478. data/lib/fog/terremark/parsers/shared/get_organization.rb +52 -0
  2479. data/lib/fog/terremark/parsers/shared/get_organizations.rb +32 -0
  2480. data/lib/fog/terremark/parsers/shared/get_public_ips.rb +30 -0
  2481. data/lib/fog/terremark/parsers/shared/get_tasks_list.rb +52 -0
  2482. data/lib/fog/terremark/parsers/shared/get_vapp_template.rb +46 -0
  2483. data/lib/fog/terremark/parsers/shared/get_vdc.rb +123 -0
  2484. data/lib/fog/terremark/parsers/shared/instantiate_vapp_template.rb +41 -0
  2485. data/lib/fog/terremark/parsers/shared/internet_service.rb +65 -0
  2486. data/lib/fog/terremark/parsers/shared/network.rb +51 -0
  2487. data/lib/fog/terremark/parsers/shared/node_service.rb +32 -0
  2488. data/lib/fog/terremark/parsers/shared/public_ip.rb +26 -0
  2489. data/lib/fog/terremark/parsers/shared/task.rb +40 -0
  2490. data/lib/fog/terremark/parsers/shared/vapp.rb +77 -0
  2491. data/lib/fog/terremark/requests/shared/add_internet_service.rb +56 -0
  2492. data/lib/fog/terremark/requests/shared/add_node_service.rb +53 -0
  2493. data/lib/fog/terremark/requests/shared/configure_vapp.rb +61 -0
  2494. data/lib/fog/terremark/requests/shared/create_internet_service.rb +60 -0
  2495. data/lib/fog/terremark/requests/shared/delete_internet_service.rb +23 -0
  2496. data/lib/fog/terremark/requests/shared/delete_node_service.rb +23 -0
  2497. data/lib/fog/terremark/requests/shared/delete_public_ip.rb +23 -0
  2498. data/lib/fog/terremark/requests/shared/delete_vapp.rb +22 -0
  2499. data/lib/fog/terremark/requests/shared/deploy_vapp.rb +35 -0
  2500. data/lib/fog/terremark/requests/shared/get_catalog.rb +32 -0
  2501. data/lib/fog/terremark/requests/shared/get_catalog_item.rb +35 -0
  2502. data/lib/fog/terremark/requests/shared/get_internet_services.rb +36 -0
  2503. data/lib/fog/terremark/requests/shared/get_keys_list.rb +36 -0
  2504. data/lib/fog/terremark/requests/shared/get_network.rb +73 -0
  2505. data/lib/fog/terremark/requests/shared/get_network_ips.rb +32 -0
  2506. data/lib/fog/terremark/requests/shared/get_node_services.rb +31 -0
  2507. data/lib/fog/terremark/requests/shared/get_organization.rb +86 -0
  2508. data/lib/fog/terremark/requests/shared/get_organizations.rb +49 -0
  2509. data/lib/fog/terremark/requests/shared/get_public_ip.rb +33 -0
  2510. data/lib/fog/terremark/requests/shared/get_public_ips.rb +72 -0
  2511. data/lib/fog/terremark/requests/shared/get_task.rb +39 -0
  2512. data/lib/fog/terremark/requests/shared/get_tasks_list.rb +33 -0
  2513. data/lib/fog/terremark/requests/shared/get_vapp.rb +42 -0
  2514. data/lib/fog/terremark/requests/shared/get_vapp_template.rb +35 -0
  2515. data/lib/fog/terremark/requests/shared/get_vdc.rb +125 -0
  2516. data/lib/fog/terremark/requests/shared/instantiate_vapp_template.rb +81 -0
  2517. data/lib/fog/terremark/requests/shared/power_off.rb +35 -0
  2518. data/lib/fog/terremark/requests/shared/power_on.rb +35 -0
  2519. data/lib/fog/terremark/requests/shared/power_reset.rb +35 -0
  2520. data/lib/fog/terremark/requests/shared/power_shutdown.rb +24 -0
  2521. data/lib/fog/terremark/shared.rb +311 -0
  2522. data/lib/fog/terremark/vcloud.rb +135 -0
  2523. data/lib/fog/terremark.rb +11 -0
  2524. data/lib/fog/vcloud/compute.rb +372 -0
  2525. data/lib/fog/vcloud/models/compute/catalog.rb +22 -0
  2526. data/lib/fog/vcloud/models/compute/catalog_item.rb +29 -0
  2527. data/lib/fog/vcloud/models/compute/catalog_items.rb +36 -0
  2528. data/lib/fog/vcloud/models/compute/catalogs.rb +38 -0
  2529. data/lib/fog/vcloud/models/compute/helpers/status.rb +37 -0
  2530. data/lib/fog/vcloud/models/compute/ip.rb +42 -0
  2531. data/lib/fog/vcloud/models/compute/ips.rb +33 -0
  2532. data/lib/fog/vcloud/models/compute/network.rb +23 -0
  2533. data/lib/fog/vcloud/models/compute/networks.rb +48 -0
  2534. data/lib/fog/vcloud/models/compute/organization.rb +43 -0
  2535. data/lib/fog/vcloud/models/compute/organizations.rb +31 -0
  2536. data/lib/fog/vcloud/models/compute/server.rb +305 -0
  2537. data/lib/fog/vcloud/models/compute/servers.rb +52 -0
  2538. data/lib/fog/vcloud/models/compute/task.rb +21 -0
  2539. data/lib/fog/vcloud/models/compute/tasks.rb +30 -0
  2540. data/lib/fog/vcloud/models/compute/vapp.rb +43 -0
  2541. data/lib/fog/vcloud/models/compute/vapps.rb +28 -0
  2542. data/lib/fog/vcloud/models/compute/vdc.rb +41 -0
  2543. data/lib/fog/vcloud/models/compute/vdcs.rb +35 -0
  2544. data/lib/fog/vcloud/requests/compute/clone_vapp.rb +40 -0
  2545. data/lib/fog/vcloud/requests/compute/configure_network.rb +43 -0
  2546. data/lib/fog/vcloud/requests/compute/configure_network_ip.rb +46 -0
  2547. data/lib/fog/vcloud/requests/compute/configure_node.rb +38 -0
  2548. data/lib/fog/vcloud/requests/compute/configure_org_network.rb +141 -0
  2549. data/lib/fog/vcloud/requests/compute/configure_vapp.rb +112 -0
  2550. data/lib/fog/vcloud/requests/compute/configure_vm.rb +109 -0
  2551. data/lib/fog/vcloud/requests/compute/configure_vm_cpus.rb +38 -0
  2552. data/lib/fog/vcloud/requests/compute/configure_vm_disks.rb +100 -0
  2553. data/lib/fog/vcloud/requests/compute/configure_vm_memory.rb +39 -0
  2554. data/lib/fog/vcloud/requests/compute/configure_vm_name_description.rb +30 -0
  2555. data/lib/fog/vcloud/requests/compute/configure_vm_password.rb +39 -0
  2556. data/lib/fog/vcloud/requests/compute/delete_node.rb +10 -0
  2557. data/lib/fog/vcloud/requests/compute/delete_vapp.rb +10 -0
  2558. data/lib/fog/vcloud/requests/compute/get_catalog.rb +10 -0
  2559. data/lib/fog/vcloud/requests/compute/get_catalog_item.rb +10 -0
  2560. data/lib/fog/vcloud/requests/compute/get_customization_options.rb +10 -0
  2561. data/lib/fog/vcloud/requests/compute/get_network.rb +10 -0
  2562. data/lib/fog/vcloud/requests/compute/get_network_extensions.rb +11 -0
  2563. data/lib/fog/vcloud/requests/compute/get_network_ip.rb +15 -0
  2564. data/lib/fog/vcloud/requests/compute/get_network_ips.rb +15 -0
  2565. data/lib/fog/vcloud/requests/compute/get_organization.rb +11 -0
  2566. data/lib/fog/vcloud/requests/compute/get_server.rb +10 -0
  2567. data/lib/fog/vcloud/requests/compute/get_task.rb +11 -0
  2568. data/lib/fog/vcloud/requests/compute/get_task_list.rb +11 -0
  2569. data/lib/fog/vcloud/requests/compute/get_vapp.rb +10 -0
  2570. data/lib/fog/vcloud/requests/compute/get_vapp_template.rb +11 -0
  2571. data/lib/fog/vcloud/requests/compute/get_vdc.rb +10 -0
  2572. data/lib/fog/vcloud/requests/compute/get_vm_disks.rb +16 -0
  2573. data/lib/fog/vcloud/requests/compute/get_vm_memory.rb +16 -0
  2574. data/lib/fog/vcloud/requests/compute/instantiate_vapp_template.rb +83 -0
  2575. data/lib/fog/vcloud/requests/compute/login.rb +27 -0
  2576. data/lib/fog/vcloud/requests/compute/power_off.rb +10 -0
  2577. data/lib/fog/vcloud/requests/compute/power_on.rb +11 -0
  2578. data/lib/fog/vcloud/requests/compute/power_reset.rb +11 -0
  2579. data/lib/fog/vcloud/requests/compute/power_shutdown.rb +11 -0
  2580. data/lib/fog/vcloud/requests/compute/undeploy.rb +31 -0
  2581. data/lib/fog/vcloud.rb +11 -0
  2582. data/lib/fog/virtual_box/compute.rb +53 -0
  2583. data/lib/fog/virtual_box/models/compute/medium.rb +87 -0
  2584. data/lib/fog/virtual_box/models/compute/medium_format.rb +34 -0
  2585. data/lib/fog/virtual_box/models/compute/mediums.rb +32 -0
  2586. data/lib/fog/virtual_box/models/compute/nat_engine.rb +65 -0
  2587. data/lib/fog/virtual_box/models/compute/nat_redirect.rb +91 -0
  2588. data/lib/fog/virtual_box/models/compute/nat_redirects.rb +41 -0
  2589. data/lib/fog/virtual_box/models/compute/network_adapter.rb +82 -0
  2590. data/lib/fog/virtual_box/models/compute/network_adapters.rb +42 -0
  2591. data/lib/fog/virtual_box/models/compute/server.rb +199 -0
  2592. data/lib/fog/virtual_box/models/compute/servers.rb +41 -0
  2593. data/lib/fog/virtual_box/models/compute/storage_controller.rb +83 -0
  2594. data/lib/fog/virtual_box/models/compute/storage_controllers.rb +38 -0
  2595. data/lib/fog/virtual_box.rb +11 -0
  2596. data/lib/fog/vmfusion/compute.rb +29 -0
  2597. data/lib/fog/vmfusion/models/compute/server.rb +258 -0
  2598. data/lib/fog/vmfusion/models/compute/servers.rb +41 -0
  2599. data/lib/fog/vmfusion.rb +11 -0
  2600. data/lib/fog/volume.rb +25 -0
  2601. data/lib/fog/voxel/compute.rb +125 -0
  2602. data/lib/fog/voxel/models/compute/image.rb +15 -0
  2603. data/lib/fog/voxel/models/compute/images.rb +30 -0
  2604. data/lib/fog/voxel/models/compute/server.rb +78 -0
  2605. data/lib/fog/voxel/models/compute/servers.rb +32 -0
  2606. data/lib/fog/voxel/parsers/compute/basic.rb +31 -0
  2607. data/lib/fog/voxel/parsers/compute/devices_list.rb +111 -0
  2608. data/lib/fog/voxel/parsers/compute/images_list.rb +59 -0
  2609. data/lib/fog/voxel/parsers/compute/voxcloud_create.rb +40 -0
  2610. data/lib/fog/voxel/parsers/compute/voxcloud_delete.rb +31 -0
  2611. data/lib/fog/voxel/parsers/compute/voxcloud_status.rb +42 -0
  2612. data/lib/fog/voxel/requests/compute/devices_list.rb +24 -0
  2613. data/lib/fog/voxel/requests/compute/devices_power.rb +22 -0
  2614. data/lib/fog/voxel/requests/compute/images_list.rb +31 -0
  2615. data/lib/fog/voxel/requests/compute/voxcloud_create.rb +22 -0
  2616. data/lib/fog/voxel/requests/compute/voxcloud_delete.rb +20 -0
  2617. data/lib/fog/voxel/requests/compute/voxcloud_status.rb +24 -0
  2618. data/lib/fog/voxel.rb +16 -0
  2619. data/lib/fog/vsphere/compute.rb +184 -0
  2620. data/lib/fog/vsphere/models/compute/server.rb +138 -0
  2621. data/lib/fog/vsphere/models/compute/servers.rb +43 -0
  2622. data/lib/fog/vsphere/requests/compute/current_time.rb +22 -0
  2623. data/lib/fog/vsphere/requests/compute/datacenters.rb +34 -0
  2624. data/lib/fog/vsphere/requests/compute/find_vm_by_ref.rb +41 -0
  2625. data/lib/fog/vsphere/requests/compute/list_virtual_machines.rb +207 -0
  2626. data/lib/fog/vsphere/requests/compute/vm_clone.rb +210 -0
  2627. data/lib/fog/vsphere/requests/compute/vm_config_vnc.rb +47 -0
  2628. data/lib/fog/vsphere/requests/compute/vm_create.rb +97 -0
  2629. data/lib/fog/vsphere/requests/compute/vm_destroy.rb +34 -0
  2630. data/lib/fog/vsphere/requests/compute/vm_migrate.rb +37 -0
  2631. data/lib/fog/vsphere/requests/compute/vm_power_off.rb +41 -0
  2632. data/lib/fog/vsphere/requests/compute/vm_power_on.rb +30 -0
  2633. data/lib/fog/vsphere/requests/compute/vm_reboot.rb +35 -0
  2634. data/lib/fog/vsphere/requests/compute/vm_reconfig_cpus.rb +23 -0
  2635. data/lib/fog/vsphere/requests/compute/vm_reconfig_hardware.rb +25 -0
  2636. data/lib/fog/vsphere/requests/compute/vm_reconfig_memory.rb +23 -0
  2637. data/lib/fog/vsphere.rb +17 -0
  2638. data/lib/fog/xenserver/compute.rb +122 -0
  2639. data/lib/fog/xenserver/models/compute/guest_metrics.rb +28 -0
  2640. data/lib/fog/xenserver/models/compute/host.rb +46 -0
  2641. data/lib/fog/xenserver/models/compute/hosts.rb +29 -0
  2642. data/lib/fog/xenserver/models/compute/network.rb +58 -0
  2643. data/lib/fog/xenserver/models/compute/networks.rb +33 -0
  2644. data/lib/fog/xenserver/models/compute/pbd.rb +33 -0
  2645. data/lib/fog/xenserver/models/compute/pbds.rb +33 -0
  2646. data/lib/fog/xenserver/models/compute/pif.rb +46 -0
  2647. data/lib/fog/xenserver/models/compute/pifs.rb +33 -0
  2648. data/lib/fog/xenserver/models/compute/pool.rb +40 -0
  2649. data/lib/fog/xenserver/models/compute/pools.rb +33 -0
  2650. data/lib/fog/xenserver/models/compute/server.rb +211 -0
  2651. data/lib/fog/xenserver/models/compute/servers.rb +63 -0
  2652. data/lib/fog/xenserver/models/compute/storage_repositories.rb +31 -0
  2653. data/lib/fog/xenserver/models/compute/storage_repository.rb +47 -0
  2654. data/lib/fog/xenserver/models/compute/vbd.rb +90 -0
  2655. data/lib/fog/xenserver/models/compute/vbd_metrics.rb +27 -0
  2656. data/lib/fog/xenserver/models/compute/vbds.rb +33 -0
  2657. data/lib/fog/xenserver/models/compute/vdi.rb +102 -0
  2658. data/lib/fog/xenserver/models/compute/vdis.rb +29 -0
  2659. data/lib/fog/xenserver/models/compute/vif.rb +51 -0
  2660. data/lib/fog/xenserver/models/compute/vifs.rb +29 -0
  2661. data/lib/fog/xenserver/parser.rb +36 -0
  2662. data/lib/fog/xenserver/parsers/get_hosts.rb +19 -0
  2663. data/lib/fog/xenserver/parsers/get_networks.rb +19 -0
  2664. data/lib/fog/xenserver/parsers/get_pools.rb +19 -0
  2665. data/lib/fog/xenserver/parsers/get_records.rb +19 -0
  2666. data/lib/fog/xenserver/parsers/get_storage_repositories.rb +19 -0
  2667. data/lib/fog/xenserver/parsers/get_vbds.rb +19 -0
  2668. data/lib/fog/xenserver/parsers/get_vifs.rb +19 -0
  2669. data/lib/fog/xenserver/parsers/get_vms.rb +20 -0
  2670. data/lib/fog/xenserver/requests/compute/clone_server.rb +31 -0
  2671. data/lib/fog/xenserver/requests/compute/create_server.rb +126 -0
  2672. data/lib/fog/xenserver/requests/compute/create_vbd.rb +40 -0
  2673. data/lib/fog/xenserver/requests/compute/create_vdi.rb +33 -0
  2674. data/lib/fog/xenserver/requests/compute/create_vif.rb +57 -0
  2675. data/lib/fog/xenserver/requests/compute/destroy_server.rb +22 -0
  2676. data/lib/fog/xenserver/requests/compute/destroy_vdi.rb +22 -0
  2677. data/lib/fog/xenserver/requests/compute/destroy_vif.rb +22 -0
  2678. data/lib/fog/xenserver/requests/compute/eject_vbd.rb +22 -0
  2679. data/lib/fog/xenserver/requests/compute/get_record.rb +29 -0
  2680. data/lib/fog/xenserver/requests/compute/get_records.rb +30 -0
  2681. data/lib/fog/xenserver/requests/compute/insert_vbd.rb +22 -0
  2682. data/lib/fog/xenserver/requests/compute/provision_server.rb +21 -0
  2683. data/lib/fog/xenserver/requests/compute/reboot_server.rb +23 -0
  2684. data/lib/fog/xenserver/requests/compute/scan_sr.rb +22 -0
  2685. data/lib/fog/xenserver/requests/compute/set_affinity.rb +25 -0
  2686. data/lib/fog/xenserver/requests/compute/set_attribute.rb +25 -0
  2687. data/lib/fog/xenserver/requests/compute/shutdown_server.rb +23 -0
  2688. data/lib/fog/xenserver/requests/compute/start_server.rb +23 -0
  2689. data/lib/fog/xenserver/requests/compute/start_vm.rb +25 -0
  2690. data/lib/fog/xenserver/requests/compute/unplug_vbd.rb +30 -0
  2691. data/lib/fog/xenserver/utilities.rb +8 -0
  2692. data/lib/fog/xenserver.rb +56 -0
  2693. data/lib/fog/zerigo/dns.rb +120 -0
  2694. data/lib/fog/zerigo/models/dns/record.rb +70 -0
  2695. data/lib/fog/zerigo/models/dns/records.rb +46 -0
  2696. data/lib/fog/zerigo/models/dns/zone.rb +88 -0
  2697. data/lib/fog/zerigo/models/dns/zones.rb +30 -0
  2698. data/lib/fog/zerigo/parsers/dns/count_hosts.rb +24 -0
  2699. data/lib/fog/zerigo/parsers/dns/count_zones.rb +24 -0
  2700. data/lib/fog/zerigo/parsers/dns/create_host.rb +28 -0
  2701. data/lib/fog/zerigo/parsers/dns/create_zone.rb +26 -0
  2702. data/lib/fog/zerigo/parsers/dns/find_hosts.rb +32 -0
  2703. data/lib/fog/zerigo/parsers/dns/get_host.rb +28 -0
  2704. data/lib/fog/zerigo/parsers/dns/get_zone.rb +58 -0
  2705. data/lib/fog/zerigo/parsers/dns/get_zone_stats.rb +26 -0
  2706. data/lib/fog/zerigo/parsers/dns/list_hosts.rb +32 -0
  2707. data/lib/fog/zerigo/parsers/dns/list_zones.rb +30 -0
  2708. data/lib/fog/zerigo/requests/dns/count_hosts.rb +47 -0
  2709. data/lib/fog/zerigo/requests/dns/count_zones.rb +39 -0
  2710. data/lib/fog/zerigo/requests/dns/create_host.rb +128 -0
  2711. data/lib/fog/zerigo/requests/dns/create_zone.rb +132 -0
  2712. data/lib/fog/zerigo/requests/dns/delete_host.rb +43 -0
  2713. data/lib/fog/zerigo/requests/dns/delete_zone.rb +42 -0
  2714. data/lib/fog/zerigo/requests/dns/find_hosts.rb +76 -0
  2715. data/lib/fog/zerigo/requests/dns/get_host.rb +56 -0
  2716. data/lib/fog/zerigo/requests/dns/get_zone.rb +66 -0
  2717. data/lib/fog/zerigo/requests/dns/get_zone_stats.rb +59 -0
  2718. data/lib/fog/zerigo/requests/dns/list_hosts.rb +59 -0
  2719. data/lib/fog/zerigo/requests/dns/list_zones.rb +60 -0
  2720. data/lib/fog/zerigo/requests/dns/update_host.rb +71 -0
  2721. data/lib/fog/zerigo/requests/dns/update_zone.rb +89 -0
  2722. data/lib/fog/zerigo.rb +11 -0
  2723. data/lib/fog.rb +22 -0
  2724. data/tests/atmos/models/storage/file_update_tests.rb +19 -0
  2725. data/tests/atmos/models/storage/nested_directories_tests.rb +23 -0
  2726. data/tests/aws/credentials_tests.rb +57 -0
  2727. data/tests/aws/models/auto_scaling/activities_tests.rb +6 -0
  2728. data/tests/aws/models/auto_scaling/configuration_test.rb +13 -0
  2729. data/tests/aws/models/auto_scaling/configurations_tests.rb +11 -0
  2730. data/tests/aws/models/auto_scaling/helper.rb +0 -0
  2731. data/tests/aws/models/auto_scaling/instances_tests.rb +6 -0
  2732. data/tests/aws/models/beanstalk/application_tests.rb +70 -0
  2733. data/tests/aws/models/beanstalk/applications_tests.rb +7 -0
  2734. data/tests/aws/models/beanstalk/environment_tests.rb +132 -0
  2735. data/tests/aws/models/beanstalk/environments_tests.rb +34 -0
  2736. data/tests/aws/models/beanstalk/template_tests.rb +47 -0
  2737. data/tests/aws/models/beanstalk/templates_tests.rb +62 -0
  2738. data/tests/aws/models/beanstalk/version_tests.rb +66 -0
  2739. data/tests/aws/models/beanstalk/versions_tests.rb +61 -0
  2740. data/tests/aws/models/cdn/distribution_tests.rb +15 -0
  2741. data/tests/aws/models/cdn/distributions_tests.rb +15 -0
  2742. data/tests/aws/models/cdn/invalidation_tests.rb +32 -0
  2743. data/tests/aws/models/cdn/invalidations_tests.rb +15 -0
  2744. data/tests/aws/models/cdn/streaming_distribution_tests.rb +15 -0
  2745. data/tests/aws/models/cdn/streaming_distributions_tests.rb +15 -0
  2746. data/tests/aws/models/cloud_watch/alarm_data_tests.rb +42 -0
  2747. data/tests/aws/models/cloud_watch/alarm_history_tests.rb +22 -0
  2748. data/tests/aws/models/cloud_watch/metric_statistics_tests.rb +51 -0
  2749. data/tests/aws/models/cloud_watch/metrics_tests.rb +17 -0
  2750. data/tests/aws/models/compute/address_tests.rb +24 -0
  2751. data/tests/aws/models/compute/addresses_tests.rb +5 -0
  2752. data/tests/aws/models/compute/dhcp_option_tests.rb +4 -0
  2753. data/tests/aws/models/compute/dhcp_options_tests.rb +4 -0
  2754. data/tests/aws/models/compute/internet_gateway_tests.rb +3 -0
  2755. data/tests/aws/models/compute/internet_gateways_tests.rb +4 -0
  2756. data/tests/aws/models/compute/key_pair_tests.rb +27 -0
  2757. data/tests/aws/models/compute/key_pairs_tests.rb +5 -0
  2758. data/tests/aws/models/compute/network_interfaces_test.rb +12 -0
  2759. data/tests/aws/models/compute/security_group_tests.rb +60 -0
  2760. data/tests/aws/models/compute/security_groups_tests.rb +5 -0
  2761. data/tests/aws/models/compute/server_tests.rb +63 -0
  2762. data/tests/aws/models/compute/snapshot_tests.rb +10 -0
  2763. data/tests/aws/models/compute/snapshots_tests.rb +10 -0
  2764. data/tests/aws/models/compute/subnet_tests.rb +5 -0
  2765. data/tests/aws/models/compute/subnets_tests.rb +6 -0
  2766. data/tests/aws/models/compute/volume_tests.rb +43 -0
  2767. data/tests/aws/models/compute/volumes_tests.rb +5 -0
  2768. data/tests/aws/models/compute/vpc_tests.rb +4 -0
  2769. data/tests/aws/models/compute/vpcs_tests.rb +6 -0
  2770. data/tests/aws/models/dns/record_tests.rb +35 -0
  2771. data/tests/aws/models/dns/records_tests.rb +47 -0
  2772. data/tests/aws/models/dns/zone_tests.rb +4 -0
  2773. data/tests/aws/models/dns/zones_tests.rb +4 -0
  2774. data/tests/aws/models/elasticache/cluster_tests.rb +30 -0
  2775. data/tests/aws/models/elasticache/parameter_groups_tests.rb +17 -0
  2776. data/tests/aws/models/elasticache/security_groups_tests.rb +52 -0
  2777. data/tests/aws/models/elb/model_tests.rb +296 -0
  2778. data/tests/aws/models/glacier/model_tests.rb +47 -0
  2779. data/tests/aws/models/iam/access_keys_tests.rb +53 -0
  2780. data/tests/aws/models/iam/policies_tests.rb +56 -0
  2781. data/tests/aws/models/iam/users_tests.rb +54 -0
  2782. data/tests/aws/models/rds/helper.rb +5 -0
  2783. data/tests/aws/models/rds/parameter_group_tests.rb +24 -0
  2784. data/tests/aws/models/rds/parameter_groups_tests.rb +8 -0
  2785. data/tests/aws/models/rds/security_group_tests.rb +53 -0
  2786. data/tests/aws/models/rds/security_groups_tests.rb +5 -0
  2787. data/tests/aws/models/rds/server_tests.rb +109 -0
  2788. data/tests/aws/models/rds/servers_tests.rb +6 -0
  2789. data/tests/aws/models/rds/snapshot_tests.rb +13 -0
  2790. data/tests/aws/models/rds/snapshots_tests.rb +13 -0
  2791. data/tests/aws/models/rds/tagging_tests.rb +20 -0
  2792. data/tests/aws/models/storage/directory_tests.rb +51 -0
  2793. data/tests/aws/models/storage/file_tests.rb +80 -0
  2794. data/tests/aws/models/storage/files_tests.rb +56 -0
  2795. data/tests/aws/models/storage/url_tests.rb +28 -0
  2796. data/tests/aws/models/storage/version_tests.rb +52 -0
  2797. data/tests/aws/models/storage/versions_tests.rb +56 -0
  2798. data/tests/aws/requests/auto_scaling/auto_scaling_tests.rb +77 -0
  2799. data/tests/aws/requests/auto_scaling/describe_types_tests.rb +102 -0
  2800. data/tests/aws/requests/auto_scaling/helper.rb +230 -0
  2801. data/tests/aws/requests/auto_scaling/model_tests.rb +235 -0
  2802. data/tests/aws/requests/auto_scaling/notification_configuration_tests.rb +123 -0
  2803. data/tests/aws/requests/auto_scaling/tag_tests.rb +62 -0
  2804. data/tests/aws/requests/beanstalk/application_tests.rb +140 -0
  2805. data/tests/aws/requests/beanstalk/solution_stack_tests.rb +22 -0
  2806. data/tests/aws/requests/cdn/cdn_tests.rb +252 -0
  2807. data/tests/aws/requests/cloud_formation/stack_tests.rb +157 -0
  2808. data/tests/aws/requests/cloud_watch/get_metric_statistics_tests.rb +28 -0
  2809. data/tests/aws/requests/cloud_watch/list_metrics_test.rb +64 -0
  2810. data/tests/aws/requests/cloud_watch/put_metric_data_tests.rb +36 -0
  2811. data/tests/aws/requests/compute/address_tests.rb +96 -0
  2812. data/tests/aws/requests/compute/availability_zone_tests.rb +25 -0
  2813. data/tests/aws/requests/compute/dhcp_options_tests.rb +40 -0
  2814. data/tests/aws/requests/compute/helper.rb +16 -0
  2815. data/tests/aws/requests/compute/image_tests.rb +138 -0
  2816. data/tests/aws/requests/compute/instance_tests.rb +280 -0
  2817. data/tests/aws/requests/compute/internet_gateway_tests.rb +44 -0
  2818. data/tests/aws/requests/compute/key_pair_tests.rb +67 -0
  2819. data/tests/aws/requests/compute/network_interface_tests.rb +175 -0
  2820. data/tests/aws/requests/compute/placement_group_tests.rb +48 -0
  2821. data/tests/aws/requests/compute/region_tests.rb +23 -0
  2822. data/tests/aws/requests/compute/security_group_tests.rb +434 -0
  2823. data/tests/aws/requests/compute/snapshot_tests.rb +57 -0
  2824. data/tests/aws/requests/compute/spot_datafeed_subscription_tests.rb +47 -0
  2825. data/tests/aws/requests/compute/spot_instance_tests.rb +54 -0
  2826. data/tests/aws/requests/compute/spot_price_history_tests.rb +24 -0
  2827. data/tests/aws/requests/compute/subnet_tests.rb +36 -0
  2828. data/tests/aws/requests/compute/tag_tests.rb +78 -0
  2829. data/tests/aws/requests/compute/volume_tests.rb +196 -0
  2830. data/tests/aws/requests/compute/vpc_tests.rb +34 -0
  2831. data/tests/aws/requests/dns/dns_tests.rb +283 -0
  2832. data/tests/aws/requests/dns/helper.rb +21 -0
  2833. data/tests/aws/requests/dynamodb/item_tests.rb +137 -0
  2834. data/tests/aws/requests/dynamodb/table_tests.rb +99 -0
  2835. data/tests/aws/requests/elasticache/cache_cluster_tests.rb +137 -0
  2836. data/tests/aws/requests/elasticache/describe_events.rb +17 -0
  2837. data/tests/aws/requests/elasticache/helper.rb +68 -0
  2838. data/tests/aws/requests/elasticache/parameter_group_tests.rb +105 -0
  2839. data/tests/aws/requests/elasticache/security_group_tests.rb +107 -0
  2840. data/tests/aws/requests/elb/helper.rb +92 -0
  2841. data/tests/aws/requests/elb/listener_tests.rb +68 -0
  2842. data/tests/aws/requests/elb/load_balancer_tests.rb +61 -0
  2843. data/tests/aws/requests/elb/policy_tests.rb +54 -0
  2844. data/tests/aws/requests/emr/helper.rb +172 -0
  2845. data/tests/aws/requests/emr/instance_group_tests.rb +106 -0
  2846. data/tests/aws/requests/emr/job_flow_tests.rb +88 -0
  2847. data/tests/aws/requests/glacier/archive_tests.rb +13 -0
  2848. data/tests/aws/requests/glacier/multipart_upload_tests.rb +30 -0
  2849. data/tests/aws/requests/glacier/tree_hash_tests.rb +63 -0
  2850. data/tests/aws/requests/glacier/vault_tests.rb +35 -0
  2851. data/tests/aws/requests/iam/access_key_tests.rb +53 -0
  2852. data/tests/aws/requests/iam/group_policy_tests.rb +42 -0
  2853. data/tests/aws/requests/iam/group_tests.rb +44 -0
  2854. data/tests/aws/requests/iam/helper.rb +104 -0
  2855. data/tests/aws/requests/iam/login_profile_tests.rb +64 -0
  2856. data/tests/aws/requests/iam/role_tests.rb +168 -0
  2857. data/tests/aws/requests/iam/server_certificate_tests.rb +95 -0
  2858. data/tests/aws/requests/iam/user_policy_tests.rb +45 -0
  2859. data/tests/aws/requests/iam/user_tests.rb +76 -0
  2860. data/tests/aws/requests/rds/describe_events.rb +16 -0
  2861. data/tests/aws/requests/rds/helper.rb +236 -0
  2862. data/tests/aws/requests/rds/instance_tests.rb +125 -0
  2863. data/tests/aws/requests/rds/parameter_group_tests.rb +62 -0
  2864. data/tests/aws/requests/rds/parameter_request_tests.rb +35 -0
  2865. data/tests/aws/requests/rds/security_group_tests.rb +101 -0
  2866. data/tests/aws/requests/rds/subnet_groups_test.rb +48 -0
  2867. data/tests/aws/requests/rds/tagging_tests.rb +78 -0
  2868. data/tests/aws/requests/ses/helper.rb +15 -0
  2869. data/tests/aws/requests/ses/verified_email_address_tests.rb +27 -0
  2870. data/tests/aws/requests/simpledb/attributes_tests.rb +86 -0
  2871. data/tests/aws/requests/simpledb/domain_tests.rb +51 -0
  2872. data/tests/aws/requests/simpledb/helper.rb +16 -0
  2873. data/tests/aws/requests/sns/helper.rb +9 -0
  2874. data/tests/aws/requests/sns/subscription_tests.rb +86 -0
  2875. data/tests/aws/requests/sns/topic_tests.rb +50 -0
  2876. data/tests/aws/requests/sqs/helper.rb +15 -0
  2877. data/tests/aws/requests/sqs/message_tests.rb +51 -0
  2878. data/tests/aws/requests/sqs/queue_tests.rb +50 -0
  2879. data/tests/aws/requests/storage/acl_utils_tests.rb +209 -0
  2880. data/tests/aws/requests/storage/bucket_tests.rb +294 -0
  2881. data/tests/aws/requests/storage/multipart_upload_tests.rb +132 -0
  2882. data/tests/aws/requests/storage/object_tests.rb +148 -0
  2883. data/tests/aws/requests/storage/versioning_tests.rb +188 -0
  2884. data/tests/aws/requests/sts/get_federation_token_tests.rb +21 -0
  2885. data/tests/aws/requests/sts/session_token_tests.rb +16 -0
  2886. data/tests/aws/signaturev4_tests.rb +41 -0
  2887. data/tests/aws/signed_params_tests.rb +5 -0
  2888. data/tests/bluebox/requests/compute/block_tests.rb +82 -0
  2889. data/tests/bluebox/requests/compute/helper.rb +22 -0
  2890. data/tests/bluebox/requests/compute/location_tests.rb +32 -0
  2891. data/tests/bluebox/requests/compute/product_tests.rb +34 -0
  2892. data/tests/bluebox/requests/compute/template_tests.rb +37 -0
  2893. data/tests/bluebox/requests/dns/dns_tests.rb +259 -0
  2894. data/tests/brightbox/compute_tests.rb +9 -0
  2895. data/tests/brightbox/requests/compute/account_tests.rb +57 -0
  2896. data/tests/brightbox/requests/compute/api_client_tests.rb +64 -0
  2897. data/tests/brightbox/requests/compute/application_test.rb +63 -0
  2898. data/tests/brightbox/requests/compute/cloud_ip_tests.rb +86 -0
  2899. data/tests/brightbox/requests/compute/helper.rb +680 -0
  2900. data/tests/brightbox/requests/compute/image_tests.rb +60 -0
  2901. data/tests/brightbox/requests/compute/interface_tests.rb +31 -0
  2902. data/tests/brightbox/requests/compute/load_balancer_tests.rb +121 -0
  2903. data/tests/brightbox/requests/compute/server_group_tests.rb +96 -0
  2904. data/tests/brightbox/requests/compute/server_tests.rb +96 -0
  2905. data/tests/brightbox/requests/compute/server_type_tests.rb +34 -0
  2906. data/tests/brightbox/requests/compute/user_tests.rb +36 -0
  2907. data/tests/brightbox/requests/compute/zone_tests.rb +34 -0
  2908. data/tests/clodo/requests/compute/image_tests.rb +36 -0
  2909. data/tests/clodo/requests/compute/server_tests.rb +152 -0
  2910. data/tests/cloudstack/compute/models/security_group_rule_tests.rb +29 -0
  2911. data/tests/cloudstack/compute/models/security_group_tests.rb +16 -0
  2912. data/tests/cloudstack/compute/models/security_groups_tests.rb +19 -0
  2913. data/tests/cloudstack/compute/models/server_tests.rb +18 -0
  2914. data/tests/cloudstack/compute/models/volume_tests.rb +34 -0
  2915. data/tests/cloudstack/compute/models/volumes_tests.rb +17 -0
  2916. data/tests/cloudstack/requests/disk_offering_tests.rb +29 -0
  2917. data/tests/cloudstack/requests/os_type_tests.rb +38 -0
  2918. data/tests/cloudstack/requests/security_group_tests.rb +29 -0
  2919. data/tests/cloudstack/requests/service_offering_tests.rb +38 -0
  2920. data/tests/cloudstack/requests/snapshot_tests.rb +32 -0
  2921. data/tests/cloudstack/requests/ssh_key_pair_tests.rb +23 -0
  2922. data/tests/cloudstack/requests/template_tests.rb +53 -0
  2923. data/tests/cloudstack/requests/virtual_machine_tests.rb +71 -0
  2924. data/tests/cloudstack/requests/volume_tests.rb +48 -0
  2925. data/tests/cloudstack/requests/zone_tests.rb +33 -0
  2926. data/tests/cloudstack/signed_params_tests.rb +12 -0
  2927. data/tests/compute/helper.rb +102 -0
  2928. data/tests/compute/models/flavors_tests.rb +11 -0
  2929. data/tests/compute/models/server_tests.rb +20 -0
  2930. data/tests/compute/models/servers_tests.rb +10 -0
  2931. data/tests/core/attribute_tests.rb +83 -0
  2932. data/tests/core/credential_tests.rb +66 -0
  2933. data/tests/core/current_machine_tests.rb +32 -0
  2934. data/tests/core/mocking_tests.rb +60 -0
  2935. data/tests/core/parser_tests.rb +67 -0
  2936. data/tests/core/timeout_tests.rb +10 -0
  2937. data/tests/dns/helper.rb +52 -0
  2938. data/tests/dns/models/record_tests.rb +30 -0
  2939. data/tests/dns/models/records_tests.rb +30 -0
  2940. data/tests/dns/models/zone_tests.rb +18 -0
  2941. data/tests/dns/models/zones_tests.rb +18 -0
  2942. data/tests/dnsimple/requests/dns/dns_tests.rb +118 -0
  2943. data/tests/dnsmadeeasy/requests/dns/dns_tests.rb +138 -0
  2944. data/tests/dynect/requests/dns/dns_tests.rb +232 -0
  2945. data/tests/glesys/requests/compute/helper.rb +266 -0
  2946. data/tests/glesys/requests/compute/ip_tests.rb +67 -0
  2947. data/tests/glesys/requests/compute/server_tests.rb +125 -0
  2948. data/tests/glesys/requests/compute/template_tests.rb +12 -0
  2949. data/tests/go_grid/requests/compute/image_tests.rb +0 -0
  2950. data/tests/google/requests/storage/bucket_tests.rb +77 -0
  2951. data/tests/google/requests/storage/object_tests.rb +81 -0
  2952. data/tests/helper.rb +38 -0
  2953. data/tests/helpers/collection_helper.rb +59 -0
  2954. data/tests/helpers/compute/flavors_helper.rb +34 -0
  2955. data/tests/helpers/compute/server_helper.rb +26 -0
  2956. data/tests/helpers/compute/servers_helper.rb +11 -0
  2957. data/tests/helpers/formats_helper.rb +86 -0
  2958. data/tests/helpers/formats_helper_tests.rb +60 -0
  2959. data/tests/helpers/mock_helper.rb +89 -0
  2960. data/tests/helpers/model_helper.rb +35 -0
  2961. data/tests/helpers/responds_to_helper.rb +13 -0
  2962. data/tests/helpers/succeeds_helper.rb +11 -0
  2963. data/tests/hp/models/compute/address_tests.rb +18 -0
  2964. data/tests/hp/models/compute/addresses_tests.rb +5 -0
  2965. data/tests/hp/models/compute/key_pair_tests.rb +27 -0
  2966. data/tests/hp/models/compute/key_pairs_tests.rb +5 -0
  2967. data/tests/hp/models/compute/security_group_tests.rb +36 -0
  2968. data/tests/hp/models/compute/security_groups_tests.rb +5 -0
  2969. data/tests/hp/requests/cdn/container_tests.rb +56 -0
  2970. data/tests/hp/requests/compute/address_tests.rb +73 -0
  2971. data/tests/hp/requests/compute/flavor_tests.rb +45 -0
  2972. data/tests/hp/requests/compute/image_tests.rb +79 -0
  2973. data/tests/hp/requests/compute/key_pair_tests.rb +65 -0
  2974. data/tests/hp/requests/compute/security_group_rule_tests.rb +54 -0
  2975. data/tests/hp/requests/compute/security_group_tests.rb +64 -0
  2976. data/tests/hp/requests/compute/server_address_tests.rb +45 -0
  2977. data/tests/hp/requests/compute/server_tests.rb +127 -0
  2978. data/tests/hp/requests/storage/container_tests.rb +78 -0
  2979. data/tests/hp/requests/storage/object_tests.rb +81 -0
  2980. data/tests/ibm/models/compute/image_tests.rb +25 -0
  2981. data/tests/ibm/models/compute/key_tests.rb +23 -0
  2982. data/tests/ibm/models/compute/keys_tests.rb +35 -0
  2983. data/tests/ibm/models/compute/locations_tests.rb +18 -0
  2984. data/tests/ibm/models/compute/server_tests.rb +88 -0
  2985. data/tests/ibm/models/compute/servers_tests.rb +37 -0
  2986. data/tests/ibm/models/storage/volume_tests.rb +60 -0
  2987. data/tests/ibm/requests/compute/address_tests.rb +44 -0
  2988. data/tests/ibm/requests/compute/image_tests.rb +110 -0
  2989. data/tests/ibm/requests/compute/instance_tests.rb +102 -0
  2990. data/tests/ibm/requests/compute/key_tests.rb +50 -0
  2991. data/tests/ibm/requests/compute/location_tests.rb +28 -0
  2992. data/tests/ibm/requests/compute/vlan_tests.rb +21 -0
  2993. data/tests/ibm/requests/storage/volume_tests.rb +100 -0
  2994. data/tests/joyent/requests/compute/datasets_tests.rb +58 -0
  2995. data/tests/joyent/requests/compute/keys_tests.rb +47 -0
  2996. data/tests/joyent/requests/compute/machines_tests.rb +67 -0
  2997. data/tests/joyent/requests/compute/packages_tests.rb +68 -0
  2998. data/tests/libvirt/compute_tests.rb +17 -0
  2999. data/tests/libvirt/models/compute/interface_tests.rb +27 -0
  3000. data/tests/libvirt/models/compute/interfaces_tests.rb +14 -0
  3001. data/tests/libvirt/models/compute/network_tests.rb +27 -0
  3002. data/tests/libvirt/models/compute/networks_tests.rb +13 -0
  3003. data/tests/libvirt/models/compute/nic_tests.rb +31 -0
  3004. data/tests/libvirt/models/compute/nics_tests.rb +10 -0
  3005. data/tests/libvirt/models/compute/pool_tests.rb +27 -0
  3006. data/tests/libvirt/models/compute/pools_tests.rb +13 -0
  3007. data/tests/libvirt/models/compute/server_tests.rb +58 -0
  3008. data/tests/libvirt/models/compute/servers_tests.rb +14 -0
  3009. data/tests/libvirt/models/compute/volume_tests.rb +30 -0
  3010. data/tests/libvirt/models/compute/volumes_tests.rb +14 -0
  3011. data/tests/libvirt/requests/compute/create_domain_tests.rb +21 -0
  3012. data/tests/libvirt/requests/compute/define_domain_tests.rb +11 -0
  3013. data/tests/libvirt/requests/compute/update_display.rb +13 -0
  3014. data/tests/linode/requests/compute/datacenter_tests.rb +19 -0
  3015. data/tests/linode/requests/compute/distribution_tests.rb +32 -0
  3016. data/tests/linode/requests/compute/helper.rb +16 -0
  3017. data/tests/linode/requests/compute/kernel_tests.rb +27 -0
  3018. data/tests/linode/requests/compute/linode_tests.rb +143 -0
  3019. data/tests/linode/requests/compute/linodeplans_tests.rb +40 -0
  3020. data/tests/linode/requests/compute/stackscripts_tests.rb +36 -0
  3021. data/tests/linode/requests/dns/dns_tests.rb +250 -0
  3022. data/tests/local/models/directory_tests.rb +16 -0
  3023. data/tests/local/models/file_tests.rb +43 -0
  3024. data/tests/local/storage_tests.rb +40 -0
  3025. data/tests/lorem.txt +1 -0
  3026. data/tests/ninefold/models/storage/file_update_tests.rb +19 -0
  3027. data/tests/ninefold/models/storage/nested_directories_tests.rb +23 -0
  3028. data/tests/ninefold/requests/compute/address_tests.rb +42 -0
  3029. data/tests/ninefold/requests/compute/async_job_tests.rb +33 -0
  3030. data/tests/ninefold/requests/compute/helper.rb +370 -0
  3031. data/tests/ninefold/requests/compute/list_tests.rb +56 -0
  3032. data/tests/ninefold/requests/compute/load_balancer_tests.rb +66 -0
  3033. data/tests/ninefold/requests/compute/nat_tests.rb +92 -0
  3034. data/tests/ninefold/requests/compute/network_tests.rb +21 -0
  3035. data/tests/ninefold/requests/compute/template_tests.rb +21 -0
  3036. data/tests/ninefold/requests/compute/virtual_machine_tests.rb +69 -0
  3037. data/tests/openstack/models/identity/role_tests.rb +27 -0
  3038. data/tests/openstack/models/identity/roles_tests.rb +19 -0
  3039. data/tests/openstack/models/identity/tenant_tests.rb +24 -0
  3040. data/tests/openstack/models/identity/tenants_tests.rb +26 -0
  3041. data/tests/openstack/models/identity/user_tests.rb +46 -0
  3042. data/tests/openstack/models/identity/users_tests.rb +33 -0
  3043. data/tests/openstack/models/image/image_tests.rb +36 -0
  3044. data/tests/openstack/models/image/images_tests.rb +14 -0
  3045. data/tests/openstack/models/network/network_tests.rb +24 -0
  3046. data/tests/openstack/models/network/networks_tests.rb +21 -0
  3047. data/tests/openstack/models/network/port_tests.rb +28 -0
  3048. data/tests/openstack/models/network/ports_tests.rb +25 -0
  3049. data/tests/openstack/models/network/subnet_tests.rb +30 -0
  3050. data/tests/openstack/models/network/subnets_tests.rb +27 -0
  3051. data/tests/openstack/requests/compute/address_tests.rb +49 -0
  3052. data/tests/openstack/requests/compute/flavor_tests.rb +48 -0
  3053. data/tests/openstack/requests/compute/helper.rb +17 -0
  3054. data/tests/openstack/requests/compute/image_tests.rb +58 -0
  3055. data/tests/openstack/requests/compute/keypair_tests.rb +30 -0
  3056. data/tests/openstack/requests/compute/quota_tests.rb +46 -0
  3057. data/tests/openstack/requests/compute/security_group_tests.rb +51 -0
  3058. data/tests/openstack/requests/compute/server_tests.rb +144 -0
  3059. data/tests/openstack/requests/compute/tenant_tests.rb +19 -0
  3060. data/tests/openstack/requests/compute/volume_tests.rb +38 -0
  3061. data/tests/openstack/requests/identity/role_tests.rb +41 -0
  3062. data/tests/openstack/requests/identity/tenant_tests.rb +54 -0
  3063. data/tests/openstack/requests/identity/user_tests.rb +29 -0
  3064. data/tests/openstack/requests/image/image_tests.rb +119 -0
  3065. data/tests/openstack/requests/network/network_tests.rb +56 -0
  3066. data/tests/openstack/requests/network/port_tests.rb +63 -0
  3067. data/tests/openstack/requests/network/subnet_tests.rb +66 -0
  3068. data/tests/ovirt/compute_tests.rb +24 -0
  3069. data/tests/ovirt/models/compute/cluster_tests.rb +31 -0
  3070. data/tests/ovirt/models/compute/clusters_tests.rb +9 -0
  3071. data/tests/ovirt/models/compute/interface_tests.rb +27 -0
  3072. data/tests/ovirt/models/compute/interfaces_tests.rb +9 -0
  3073. data/tests/ovirt/models/compute/server_tests.rb +51 -0
  3074. data/tests/ovirt/models/compute/servers_tests.rb +14 -0
  3075. data/tests/ovirt/models/compute/template_tests.rb +28 -0
  3076. data/tests/ovirt/models/compute/templates_tests.rb +9 -0
  3077. data/tests/ovirt/requests/compute/create_vm_tests.rb +26 -0
  3078. data/tests/ovirt/requests/compute/destroy_vm_tests.rb +18 -0
  3079. data/tests/ovirt/requests/compute/list_datacenters_tests.rb +13 -0
  3080. data/tests/ovirt/requests/compute/list_storage_domains_tests.rb +13 -0
  3081. data/tests/ovirt/requests/compute/update_vm_tests.rb +18 -0
  3082. data/tests/rackspace/databases_tests.rb +26 -0
  3083. data/tests/rackspace/helper.rb +24 -0
  3084. data/tests/rackspace/load_balancer_tests.rb +21 -0
  3085. data/tests/rackspace/models/block_storage/snapshot_tests.rb +20 -0
  3086. data/tests/rackspace/models/block_storage/snapshots_tests.rb +20 -0
  3087. data/tests/rackspace/models/block_storage/volume_tests.rb +27 -0
  3088. data/tests/rackspace/models/block_storage/volume_types_tests.rb +20 -0
  3089. data/tests/rackspace/models/block_storage/volumes_tests.rb +11 -0
  3090. data/tests/rackspace/models/compute_v2/flavors_tests.rb +20 -0
  3091. data/tests/rackspace/models/compute_v2/images_tests.rb +22 -0
  3092. data/tests/rackspace/models/compute_v2/server_tests.rb +62 -0
  3093. data/tests/rackspace/models/compute_v2/servers_tests.rb +14 -0
  3094. data/tests/rackspace/models/databases/database_tests.rb +17 -0
  3095. data/tests/rackspace/models/databases/databases_tests.rb +17 -0
  3096. data/tests/rackspace/models/databases/flavors_tests.rb +20 -0
  3097. data/tests/rackspace/models/databases/instance_tests.rb +43 -0
  3098. data/tests/rackspace/models/databases/instances_tests.rb +14 -0
  3099. data/tests/rackspace/models/databases/user_tests.rb +21 -0
  3100. data/tests/rackspace/models/databases/users_tests.rb +21 -0
  3101. data/tests/rackspace/models/dns/zone_tests.rb +14 -0
  3102. data/tests/rackspace/models/identity/credentials_tests.rb +16 -0
  3103. data/tests/rackspace/models/identity/roles_tests.rb +16 -0
  3104. data/tests/rackspace/models/identity/tenants_tests.rb +21 -0
  3105. data/tests/rackspace/models/identity/user_tests.rb +17 -0
  3106. data/tests/rackspace/models/identity/users_tests.rb +17 -0
  3107. data/tests/rackspace/models/load_balancers/access_list_tests.rb +12 -0
  3108. data/tests/rackspace/models/load_balancers/access_lists_tests.rb +12 -0
  3109. data/tests/rackspace/models/load_balancers/load_balancer_tests.rb +173 -0
  3110. data/tests/rackspace/models/load_balancers/load_balancers_tests.rb +19 -0
  3111. data/tests/rackspace/models/load_balancers/node_tests.rb +19 -0
  3112. data/tests/rackspace/models/load_balancers/nodes_tests.rb +12 -0
  3113. data/tests/rackspace/models/load_balancers/virtual_ip_tests.rb +16 -0
  3114. data/tests/rackspace/models/load_balancers/virtual_ips_tests.rb +12 -0
  3115. data/tests/rackspace/requests/block_storage/snapshot_tests.rb +81 -0
  3116. data/tests/rackspace/requests/block_storage/volume_tests.rb +61 -0
  3117. data/tests/rackspace/requests/block_storage/volume_type_tests.rb +31 -0
  3118. data/tests/rackspace/requests/compute/address_tests.rb +40 -0
  3119. data/tests/rackspace/requests/compute/flavor_tests.rb +38 -0
  3120. data/tests/rackspace/requests/compute/helper.rb +16 -0
  3121. data/tests/rackspace/requests/compute/image_tests.rb +68 -0
  3122. data/tests/rackspace/requests/compute/resize_tests.rb +33 -0
  3123. data/tests/rackspace/requests/compute/server_tests.rb +92 -0
  3124. data/tests/rackspace/requests/compute_v2/attachment_tests.rb +68 -0
  3125. data/tests/rackspace/requests/compute_v2/flavor_tests.rb +43 -0
  3126. data/tests/rackspace/requests/compute_v2/image_tests.rb +47 -0
  3127. data/tests/rackspace/requests/compute_v2/server_tests.rb +147 -0
  3128. data/tests/rackspace/requests/databases/database_tests.rb +36 -0
  3129. data/tests/rackspace/requests/databases/flavor_tests.rb +16 -0
  3130. data/tests/rackspace/requests/databases/helper.rb +84 -0
  3131. data/tests/rackspace/requests/databases/instance_tests.rb +77 -0
  3132. data/tests/rackspace/requests/databases/user_tests.rb +37 -0
  3133. data/tests/rackspace/requests/dns/dns_tests.rb +125 -0
  3134. data/tests/rackspace/requests/dns/helper.rb +140 -0
  3135. data/tests/rackspace/requests/dns/records_tests.rb +83 -0
  3136. data/tests/rackspace/requests/identity/tenants_tests.rb +21 -0
  3137. data/tests/rackspace/requests/identity/token_tests.rb +63 -0
  3138. data/tests/rackspace/requests/identity/user_tests.rb +107 -0
  3139. data/tests/rackspace/requests/load_balancers/access_list_tests.rb +56 -0
  3140. data/tests/rackspace/requests/load_balancers/algorithm_tests.rb +19 -0
  3141. data/tests/rackspace/requests/load_balancers/connection_logging_tests.rb +25 -0
  3142. data/tests/rackspace/requests/load_balancers/connection_throttling_tests.rb +37 -0
  3143. data/tests/rackspace/requests/load_balancers/error_page_tests.rb +31 -0
  3144. data/tests/rackspace/requests/load_balancers/helper.rb +216 -0
  3145. data/tests/rackspace/requests/load_balancers/load_balancer_tests.rb +75 -0
  3146. data/tests/rackspace/requests/load_balancers/load_balancer_usage_tests.rb +19 -0
  3147. data/tests/rackspace/requests/load_balancers/monitor_tests.rb +46 -0
  3148. data/tests/rackspace/requests/load_balancers/node_tests.rb +86 -0
  3149. data/tests/rackspace/requests/load_balancers/protocol_tests.rb +21 -0
  3150. data/tests/rackspace/requests/load_balancers/session_persistence_tests.rb +33 -0
  3151. data/tests/rackspace/requests/load_balancers/ssl_termination_tests.rb +38 -0
  3152. data/tests/rackspace/requests/load_balancers/usage_tests.rb +17 -0
  3153. data/tests/rackspace/requests/load_balancers/virtual_ip_tests.rb +40 -0
  3154. data/tests/rackspace/requests/storage/account_tests.rb +17 -0
  3155. data/tests/rackspace/requests/storage/container_tests.rb +64 -0
  3156. data/tests/rackspace/requests/storage/large_object_tests.rb +47 -0
  3157. data/tests/rackspace/requests/storage/object_tests.rb +117 -0
  3158. data/tests/rackspace/url_encoding_tests.rb +3 -0
  3159. data/tests/serverlove/requests/compute/image_tests.rb +57 -0
  3160. data/tests/serverlove/requests/compute/server_tests.rb +85 -0
  3161. data/tests/serverlove/util/compute/password_generator_tests.rb +19 -0
  3162. data/tests/storage/helper.rb +22 -0
  3163. data/tests/storage/models/directories_tests.rb +17 -0
  3164. data/tests/storage/models/directory_test.rb +29 -0
  3165. data/tests/storage/models/file_tests.rb +41 -0
  3166. data/tests/storage/models/files_tests.rb +26 -0
  3167. data/tests/storm_on_demand/requests/compute/server_tests.rb +64 -0
  3168. data/tests/vcloud/data/api_+_admin_+_network_+_2 +110 -0
  3169. data/tests/vcloud/data/api_+_network_+_1 +44 -0
  3170. data/tests/vcloud/data/api_+_org_+_ +5 -0
  3171. data/tests/vcloud/data/api_+_org_+_1 +17 -0
  3172. data/tests/vcloud/data/api_+_sessions +8 -0
  3173. data/tests/vcloud/data/api_+_v1.0_+_admin_+_network_+_2 +110 -0
  3174. data/tests/vcloud/data/api_+_v1.0_+_login +5 -0
  3175. data/tests/vcloud/data/api_+_v1.0_+_network_+_1 +44 -0
  3176. data/tests/vcloud/data/api_+_v1.0_+_network_+_2 +31 -0
  3177. data/tests/vcloud/data/api_+_v1.0_+_org_+_1 +17 -0
  3178. data/tests/vcloud/data/api_+_v1.0_+_vApp_+_vapp-1 +369 -0
  3179. data/tests/vcloud/data/api_+_v1.0_+_vApp_+_vm-1 +139 -0
  3180. data/tests/vcloud/data/api_+_v1.0_+_vApp_+_vm-2 +155 -0
  3181. data/tests/vcloud/data/api_+_v1.0_+_vdc_+_1 +61 -0
  3182. data/tests/vcloud/data/api_+_vApp_+_vapp-1 +369 -0
  3183. data/tests/vcloud/data/api_+_vApp_+_vm-2 +155 -0
  3184. data/tests/vcloud/data/api_+_vdc_+_1 +61 -0
  3185. data/tests/vcloud/models/compute/conn_helper.rb +20 -0
  3186. data/tests/vcloud/models/compute/helper.rb +25 -0
  3187. data/tests/vcloud/models/compute/network_tests.rb +67 -0
  3188. data/tests/vcloud/models/compute/networks_tests.rb +61 -0
  3189. data/tests/vcloud/models/compute/organization_tests.rb +20 -0
  3190. data/tests/vcloud/models/compute/organizations_tests.rb +16 -0
  3191. data/tests/vcloud/models/compute/server_tests.rb +142 -0
  3192. data/tests/vcloud/models/compute/servers_tests.rb +23 -0
  3193. data/tests/vcloud/models/compute/vapp_tests.rb +32 -0
  3194. data/tests/vcloud/models/compute/vapps_tests.rb +19 -0
  3195. data/tests/vcloud/models/compute/vdc_tests.rb +48 -0
  3196. data/tests/vcloud/models/compute/vdcs_tests.rb +24 -0
  3197. data/tests/vcloud/requests/compute/disk_configure_tests.rb +114 -0
  3198. data/tests/voxel/requests/compute/image_tests.rb +52 -0
  3199. data/tests/voxel/requests/compute/server_tests.rb +123 -0
  3200. data/tests/vsphere/compute_tests.rb +55 -0
  3201. data/tests/vsphere/models/compute/server_tests.rb +45 -0
  3202. data/tests/vsphere/models/compute/servers_tests.rb +15 -0
  3203. data/tests/vsphere/requests/compute/current_time_tests.rb +12 -0
  3204. data/tests/vsphere/requests/compute/find_vm_by_ref_tests.rb +26 -0
  3205. data/tests/vsphere/requests/compute/list_virtual_machines_tests.rb +46 -0
  3206. data/tests/vsphere/requests/compute/vm_clone_tests.rb +32 -0
  3207. data/tests/vsphere/requests/compute/vm_config_vnc_tests.rb +19 -0
  3208. data/tests/vsphere/requests/compute/vm_create_tests.rb +20 -0
  3209. data/tests/vsphere/requests/compute/vm_destroy_tests.rb +17 -0
  3210. data/tests/vsphere/requests/compute/vm_migrate_tests.rb +16 -0
  3211. data/tests/vsphere/requests/compute/vm_power_off_tests.rb +26 -0
  3212. data/tests/vsphere/requests/compute/vm_power_on_tests.rb +17 -0
  3213. data/tests/vsphere/requests/compute/vm_reboot_tests.rb +26 -0
  3214. data/tests/vsphere/requests/compute/vm_reconfig_cpus_tests.rb +19 -0
  3215. data/tests/vsphere/requests/compute/vm_reconfig_hardware_tests.rb +19 -0
  3216. data/tests/vsphere/requests/compute/vm_reconfig_memory_tests.rb +19 -0
  3217. data/tests/watchr.rb +22 -0
  3218. data/tests/xenserver/README +21 -0
  3219. data/tests/xenserver/compute_tests.rb +52 -0
  3220. data/tests/xenserver/helper.rb +36 -0
  3221. data/tests/xenserver/models/compute/host_tests.rb +68 -0
  3222. data/tests/xenserver/models/compute/hosts_tests.rb +22 -0
  3223. data/tests/xenserver/models/compute/network_tests.rb +67 -0
  3224. data/tests/xenserver/models/compute/networks_tests.rb +22 -0
  3225. data/tests/xenserver/models/compute/pbd_tests.rb +44 -0
  3226. data/tests/xenserver/models/compute/pbds_tests.rb +22 -0
  3227. data/tests/xenserver/models/compute/pif_tests.rb +58 -0
  3228. data/tests/xenserver/models/compute/pifs_tests.rb +22 -0
  3229. data/tests/xenserver/models/compute/pool_tests.rb +50 -0
  3230. data/tests/xenserver/models/compute/pools_tests.rb +30 -0
  3231. data/tests/xenserver/models/compute/server_tests.rb +167 -0
  3232. data/tests/xenserver/models/compute/servers_tests.rb +88 -0
  3233. data/tests/xenserver/models/compute/storage_repositories_tests.rb +30 -0
  3234. data/tests/xenserver/models/compute/storage_repository_tests.rb +63 -0
  3235. data/tests/xenserver/models/compute/vbd_tests.rb +115 -0
  3236. data/tests/xenserver/models/compute/vbds_tests.rb +22 -0
  3237. data/tests/xenserver/models/compute/vif_tests.rb +53 -0
  3238. data/tests/xenserver/models/compute/vifs_tests.rb +22 -0
  3239. data/tests/xenserver/requests/compute/clone_server_tests.rb +32 -0
  3240. data/tests/xenserver/requests/compute/create_server_tests.rb +129 -0
  3241. data/tests/xenserver/requests/compute/create_vdi_tests.rb +80 -0
  3242. data/tests/xenserver/requests/compute/create_vif_tests.rb +88 -0
  3243. data/tests/xenserver/requests/compute/destroy_vdi_tests.rb +25 -0
  3244. data/tests/xenserver/requests/compute/get_record_tests.rb +15 -0
  3245. data/tests/xenserver/requests/compute/set_attribute_tests.rb +66 -0
  3246. data/tests/xenserver/xenserver_tests.rb +34 -0
  3247. data/tests/zerigo/requests/dns/dns_tests.rb +373 -0
  3248. metadata +4043 -0
data/changelog.txt ADDED
@@ -0,0 +1,3573 @@
1
+ 1.7.0 11/04/2012 aa853488c9d84d849f52cf348787030fbb963163
2
+ =========================================================
3
+
4
+ Stats! { 'collaborators' => 41, 'downloads' => 1216554, 'forks' => 599, 'open_issues' => 80, 'watchers' => 2206 }
5
+
6
+ MVP! Nick Osborn
7
+
8
+ [AWS::Mock|create_image]
9
+ automatic registration of ebs image upon image_create. thanks Chielo Zimmerman
10
+
11
+ [AWS|Glacier]
12
+ Fix description header not being passed through Fog.escape. thanks Frederick Cheung
13
+
14
+ [Brightbox]
15
+ Change code to return Single user. thanks Hemant Kumar
16
+ Adds ApiClient Model. thanks Hemant Kumar
17
+ Add identifier to get_account method. thanks Hemant Kumar
18
+ Reuses connection for image selection. thanks Paul Thornthwaite
19
+ Fixes cloud IP options default. thanks Paul Thornthwaite
20
+ Deprecates overloaded requests. thanks Paul Thornthwaite
21
+ Standardises update_firewall_rule. thanks Paul Thornthwaite
22
+ Deprecates old account update request. thanks Paul Thornthwaite
23
+ Use correct request to update account. thanks Paul Thornthwaite
24
+ Brightbox tests should select the smallest official image. thanks Steve Smith
25
+ Allows authentication as user. thanks Steve Smith
26
+ Allow users to lists all accounts associated with the current credentials. thanks Steve Smith
27
+ add support for User Applications. thanks Steve Smith
28
+
29
+ [HP|Storage]
30
+ remove debug output. thanks geemus
31
+
32
+ [Ninefold|Storage]
33
+ Use Atmos in Ninefold storage. thanks Timur Alperovich
34
+
35
+ [aws|auto_scaling]
36
+ update display_*_types. thanks Nick Osborn
37
+ Fix documentation URL. thanks Nick Osborn
38
+ support termination policies. thanks Nick Osborn
39
+ correct DefaultCooldown in mocks. thanks Nick Osborn
40
+ documentation tinkering. thanks Nick Osborn
41
+ support ForceDelete for delete_auto_scaling_group. thanks Nick Osborn
42
+ better tag handling. thanks Nick Osborn
43
+ DRY out ARNs in mocks. thanks Nick Osborn
44
+ document Tags option to create_auto_scaling_group. thanks Nick Osborn
45
+ fix AutoScalingGroupName in mock. thanks Nick Osborn
46
+ expose delete_notification_configuration request. thanks Nick Osborn
47
+ improve describe_*_types test. thanks Nick Osborn
48
+ improve notification configurations. thanks Nick Osborn
49
+ s/data/self.data/ in mocks. thanks Nick Osborn
50
+ mark describe_*_types requests as idempotent. thanks Nick Osborn
51
+ tags support. thanks Nick Osborn
52
+ expose termination policies in group model. thanks Nick Osborn
53
+
54
+ [aws|autoscaling]
55
+ fix casting availability_zones to array in create_auto_scaling_group mock. thanks geemus
56
+ mark problematic auto_scaling mocked tests as pending see also #1183. thanks geemus
57
+
58
+ [aws|cdn]
59
+ cover AWS CDN with some non-exhaustive tests. thanks Brice Figureau
60
+ Implements AWS CDN get_invalidation request. thanks Brice Figureau
61
+ fix incorrect get_invalidation result. thanks Brice Figureau
62
+ add aws cdn tests for streaming distributions. thanks Brice Figureau
63
+ fix cdn documentation. thanks Brice Figureau
64
+ AWS CDN models. thanks Brice Figureau
65
+ add request mock support for AWS Cloudfront. thanks Brice Figureau
66
+ fix up failing mocked tests around invalidations. thanks geemus
67
+
68
+ [aws|cloud_watch]
69
+ Add instrumentation support. thanks Michael Hale
70
+
71
+ [aws|ec2]
72
+ describe_availability_zones parser handles nested <item> tags. thanks Aaron Suggs
73
+
74
+ [aws|rds]
75
+ add region and owner_id as RDS connection attributes. thanks Benton Roberts
76
+ add request definitions for RDS tagging and increment RDS API version. thanks Benton Roberts
77
+ add tests for RDS tagging requests. thanks Benton Roberts
78
+ add tagging methods to RDS server model. thanks Benton Roberts
79
+ add tagging tests for RDS server model. thanks Benton Roberts
80
+ store mocked RDS instance tags in connection object. thanks Benton Roberts
81
+ FIX non-1.8-compliant syntax bug. thanks Benton Roberts
82
+
83
+ [misc]
84
+ modified create function to include options. changed "diskConfig" to "OS-DCF:diskConfig" to allow disk configuration to be properly set. thanks Alex Dunn
85
+ Removed options attribute and used the already existing disk_config attribute instead. Passed in options hash to create_server method with disk_config attribute unless nil. thanks Alex Dunn
86
+ Replace nil return value with private IP, implementation as in public_ip_address method. thanks Andrew Taylor
87
+ Change the metadata method to support amazon tags such as x-amz-website-redirect-location. thanks Arthur Gunawan
88
+ Fix issue #1245 - mock register_image fails with block device mapping. thanks Brice Figureau
89
+ Added ninefold load balancers. thanks Carl Woodward
90
+ Added other commands for load balancers. thanks Carl Woodward
91
+ Fix create load balancer test. thanks Carl Woodward
92
+ Add assign list to load balancer rules and update load balancer rule for Ninefold. thanks Carl Woodward
93
+ Add remove from load balancer test. thanks Carl Woodward
94
+ Move ssh private_key, public_key, username to Server model to reduce duplication. thanks Carlos Sanchez
95
+ Joyent server creation should not wait for server to be ready. thanks Carlos Sanchez
96
+ Added ParameterValue to engine_defaults_parser. thanks Curtis Stewart
97
+ Added outputs 'Description' field to DescribeStacks parser. thanks Curtis Stewart
98
+ Make region available to mock. thanks Edward Muller
99
+ Added OpenStack::Server#created and #updated. thanks Eric Hodel
100
+ Use :default from tests/.fog for test credentials. thanks Eric Hodel
101
+ Only run mocked tests by default. thanks Eric Hodel
102
+ Tested handling of Openstack server created and updated times. thanks Eric Hodel
103
+ create image now supports block device mapping. thanks Eric Stonfer
104
+ create image extended to allow for EBS volume handling. thanks Eric Stonfer
105
+ fix indexed_param usage. thanks Eric Stonfer
106
+ forgot to commit some changes. thanks Eric Stonfer
107
+ when querying servers by icenter group, servers will return nil. fixed this. thanks Eugene Howe
108
+ fixed bad request names. thanks Eugene Howe
109
+ correct the options checking in BlueBox create_block. thanks Josh Kalderimis
110
+ changed list nova servers request to get details. thanks Julio Feijo
111
+ Correct the handling of the power_on option. thanks Karan Misra
112
+ Added support for scheduler_hints in OpenStack. thanks Mariusz Pietrzyk
113
+ add force option to auto scaling group destroy method. thanks Michael Hale
114
+ use hash args. thanks Michael Hale
115
+ [AWS|cloud_watch]: fix list_metrics NextMarker should be NextToken. thanks Michael Hale
116
+ Fix to resolve "objectid is required for this operation" error message when calling public_url. thanks Michael Harrison
117
+ Fix to resolve "objectid is required for this operation" error message when calling public_url. thanks Michael Harrison
118
+ Return nil on public_url if the file isn't present on the cloud storage. thanks Michael Harrison
119
+ Added file existence check before file deletion attempt. thanks Michael Harrison
120
+ Rolled back deletion guard as some may be using the exception raised in their code. thanks Michael Harrison
121
+ Changed Atmos::FIle.public_url so an exception is thrown if the file doesn't exist on the cloud storage. thanks Michael Harrison
122
+ Changed Atmos::FIle.public_url so returns nil if the file doesn't exist on the cloud storage. This brings the method in line with other storage implementations such as AWS and Rackspace. thanks Michael Harrison
123
+ Changed Atmos::FIle.public_url so checks for existence of the file on storage on every call to the method minimising the potential for a 404 error. thanks Michael Harrison
124
+ added documentation. thanks Nick Huanuca
125
+ ammend dest_folder disclaimer. thanks Nick Huanuca
126
+ fixed vm listing problem. thanks Ohad Levy
127
+ Allows tests to run against FOG_RC setting. thanks Paul Thornthwaite
128
+ Beginning implementation of RDS subnet groups. thanks Rusty Geldmacher
129
+ Changes RDS subnet attribute name from subnets to subnet_ids. thanks Rusty Geldmacher
130
+ allow port to be included in queue_url. thanks Sairam
131
+ Fixed typos in elasticache and rds describe_events. Added better documentation of describe_events. thanks Sean Hart
132
+ Added test for describe_events.rb. It is very simple, and I'm not familiar with Shindo, so may need some assistance expanding. thanks Sean Hart
133
+ Added parsing for Marker. AWS limits response to 100 lines and gives you a marker to get the next batch with. thanks Sean Hart
134
+ Added missing header. thanks Stephen von Takach
135
+ Bumped mocked maximum value for provisioned iops. thanks Thom Mahoney
136
+ Ignore existing directory when creating on local storage. thanks Thomas Wright
137
+ Add config instructions to README. thanks Thomas Wright
138
+ Fix reference to config file. thanks Thomas Wright
139
+ expect public_key option instead of ssh_key on block create. thanks Trevor Bramble
140
+ Added usagePrice the hourly cost for a reserved instance. thanks Ulf Mansson
141
+ Added RDS describe_events. thanks Your Name
142
+ Created describe events for RDS. thanks Your Name
143
+ Update lib/fog/vsphere/requests/compute/vm_clone.rb. thanks endzyme
144
+ Update lib/fog/vsphere/requests/compute/vm_clone.rb. thanks endzyme
145
+ Update lib/fog/vsphere/requests/compute/vm_clone.rb. thanks endzyme
146
+
147
+ [ninefold|compute]
148
+ update load balancer tests to pass hash parameters for backwards compatability. thanks geemus
149
+ mark before/after blocks as pending in mocked mode also. thanks geemus
150
+
151
+ [openstack]
152
+ Authentication Mocks. thanks Nelvin Driz
153
+ Fix Failing Shindo Tests. thanks Nelvin Driz
154
+ Ensure String Username for Authentication. thanks Nelvin Driz
155
+ Changed volumes attributes of mocks from camelcase to snakecase. thanks Philip Mark M. Deazeta
156
+ Updated mocks for quota, image, tenant and volumes. thanks Philip Mark M. Deazeta
157
+ Fixed mocks for failing shindo tests. thanks Philip Mark M. Deazeta
158
+ Updated 'image update' mocks. thanks Philip Mark M. Deazeta
159
+
160
+ [openstack|compute]
161
+ Added auth_token_expiration. thanks Alfonso Juan Dillera
162
+ Fixed security groups typos. thanks Alfonso Juan Dillera
163
+ Fix Server Mocks and `find_by_id` method. thanks Nelvin Driz
164
+
165
+ [openstack|identity]
166
+ Update for failing mock test. thanks Alvin Garcia
167
+ Update Identity Mocking Process. thanks Nelvin Driz
168
+ Update Fog Mocks on Authentication, User and Roles. thanks Nelvin Driz
169
+
170
+ [openstack|image]
171
+ Added update_members function. thanks Alvin Garcia
172
+ Added updateable attributes. thanks Alvin Garcia
173
+ Added optional attributes to set on create image. thanks Alvin Garcia
174
+ Fixed update image and list public images mocks. thanks Alvin Garcia
175
+ Fix Hash Access on Mock of Create Image. thanks Nelvin Driz
176
+
177
+ [openstack|network]
178
+ Add support for OpenStack Quantum. thanks Ferran Rodenas
179
+ Add filters to networks, ports and subnets. thanks Ferran Rodenas
180
+
181
+ [rackspace|identity]
182
+ user should be alphanumeric. thanks geemus
183
+
184
+
185
+ 1.6.0 09/15/2012 4bd909557fd595a656ebd86a3d7c5849bd923fe1
186
+ =========================================================
187
+
188
+ Stats! { 'collaborators' => 40, 'downloads' => 1015900, 'forks' => 539, 'open_issues' => 55, 'watchers' => 2119 }
189
+
190
+ [AWS]
191
+ Implement signature v4. thanks Frederick Cheung
192
+ Create the time directly in tests, avoids using a method not present in 1.8.7. thanks Frederick Cheung
193
+ avoid spurious test failure when tag test returns before images test. thanks Frederick Cheung
194
+ Adding missing :glacier case for AWS.collections. thanks Frederick Cheung
195
+
196
+ [AWS|AutoScaling]
197
+ Typo in delete_autoscaling_group mock: Autoscaling->AutoScaling. thanks Frederick Cheung
198
+ fix group#instances. thanks Frederick Cheung
199
+ Fix describe_auto_scaling_groups parser added spurious nil groups. thanks Frederick Cheung
200
+ Fix delete_auto_scaling_group.rb mock not raising the same error as real code. thanks Frederick Cheung
201
+
202
+ [AWS|Compute]
203
+ Add the ablity to pass :version and use newer AWS API. thanks Zuhaib M Siddique
204
+
205
+ [AWS|Glacier]
206
+ Bare glacier service. thanks Frederick Cheung
207
+ single part uploads. thanks Frederick Cheung
208
+ multipart uploads. thanks Frederick Cheung
209
+ Jobs requests. thanks Frederick Cheung
210
+ vaults model. thanks Frederick Cheung
211
+ Use bytesize rather than length. thanks Frederick Cheung
212
+ models for archives. thanks Frederick Cheung
213
+ jobs model. thanks Frederick Cheung
214
+ Add notification configuration to model. thanks Frederick Cheung
215
+ mark tests as pending. thanks Frederick Cheung
216
+ byteslice is only available in 1.9.3 - add fallback for 1.9.2. thanks Frederick Cheung
217
+ fix 1.9.2 fallback. thanks Frederick Cheung
218
+ make 1.8.7 friendly. thanks Frederick Cheung
219
+ Fix job type constant. thanks Frederick Cheung
220
+ fix setting description on multipart upload. thanks Frederick Cheung
221
+ fix name of header used for description. thanks Frederick Cheung
222
+ Allow filtering of jobs collection. thanks Frederick Cheung
223
+ Don't try to deserialize json when body is empty. thanks Frederick Cheung
224
+
225
+ [AWS|RDS]
226
+ expose the SnapshotType attribute & allow filtering by it. thanks Frederick Cheung
227
+
228
+ [AWS|Signaturev4]
229
+ allow symbols to be used as header/query keys. thanks Frederick Cheung
230
+
231
+ [AWS|Storage]
232
+ mark upload_part as idempotent so it will be retried automatically. thanks Frederick Cheung
233
+
234
+ [Brightbox]
235
+ Fix output format for brightbox cloud ip. thanks Hemant Kumar
236
+
237
+ [Brightbox|CloudIp]
238
+ Remove duplicate constant definition for port translators. thanks Hemant Kumar
239
+
240
+ [Cloudstack]
241
+ 1.8.7 compat: on 1.8.7 '123'[0] returns the byte value of '0' and not '1'. thanks Frederick Cheung
242
+
243
+ [Core]
244
+ fix format_helper assuming p returns nil. thanks Frederick Cheung
245
+
246
+ [HP]
247
+ delete_if returns the array, not what was deleted. thanks Frederick Cheung
248
+
249
+ [OpenStack]
250
+ fixes wrong method name. thanks Ohad Levy
251
+
252
+ [Openstack]
253
+ Fix mock returning a hash instead of an array. thanks Frederick Cheung
254
+
255
+ [Openstack|Compute]
256
+ Security Groups are not assigned correctly to servers. thanks Ohad Levy
257
+
258
+ [aws|auto_scaling]
259
+ Add instrumentation support. thanks Michael Hale
260
+
261
+ [aws|compute]
262
+ fix typo in deprecation warning. thanks Aaron Suggs
263
+ Nicer interface for security group authorizations. thanks Aaron Suggs
264
+ Add instrumentation support. thanks Dan Peterson
265
+ Support creating and describing volumes with provisioned IOPS. thanks Dan Peterson
266
+ Get instance requests tests working. thanks Dan Peterson
267
+ Support for EBS-optimized instances. thanks Dan Peterson
268
+ Pass empty groupIds when mocking. thanks Dan Peterson
269
+ DescribeInstanceStatus code within eventsSet goes on the item. thanks Dan Peterson
270
+ fixes for spot request waiting see also #841. thanks geemus
271
+ remove brittle instance tests which rely on tests running fast p.s. these fail on travis-ci. thanks geemus
272
+ fix mock filters for internet gateways/subnets/vpcs. thanks geemus
273
+
274
+ [aws|elb]
275
+ Add instrumentation support. thanks Dan Peterson
276
+ fixes for mock tests. thanks geemus
277
+
278
+ [aws|iam]
279
+ Add instrumentation support. thanks Dan Peterson
280
+
281
+ [aws|rds]
282
+ Correct server#read_replica_identifiers when mocking. thanks Aaron Suggs
283
+ Mocking better supports reboot state. thanks Aaron Suggs
284
+ Mocking better supports modifying state. thanks Aaron Suggs
285
+ Fix server tests. thanks Aaron Suggs
286
+ Mocking support for read replicas. thanks Aaron Suggs
287
+ Mock support for setting AZ and MultiAZ. thanks Aaron Suggs
288
+
289
+ [brightbox]
290
+ Use first available image for server tests. thanks Steve Smith
291
+
292
+ [brightbox|ServerGroup]
293
+ ServerGroups can have a nil name. thanks Steve Smith
294
+
295
+ [brightbox|compute]
296
+ Merged outstanding work from Brightbox's fork. thanks Paul Thornthwaite
297
+ Implemented reboot using available API commands. thanks Paul Thornthwaite
298
+ Updates to Test helper for select image. thanks Paul Thornthwaite
299
+ Helper to get default image from API. thanks Paul Thornthwaite
300
+
301
+ [cloudstack|compute]
302
+ remove erroneous comma in merge command. thanks geemus
303
+
304
+ [compute|Ecloud]
305
+ Ecloud should not show up as a valid provider when not providing credentials. thanks Eugene Howe
306
+
307
+ [dynect|dns]
308
+ Only JSON decode when Content-Type says so. Fixes job handling. thanks Dan Peterson
309
+ Job polling should use original expected statuses. thanks Dan Peterson
310
+
311
+ [google/storage]
312
+ Fix docs for new GCS urls. thanks Nat Welch
313
+
314
+ [google|storage]
315
+ update expected format to remove StorageClass. thanks geemus
316
+ also update mocks to omit storageclass. thanks geemus
317
+
318
+ [hp|storage]
319
+ Use response_block param, as excon has deprecated implicit blocks. thanks Ferran Rodenas
320
+
321
+ [misc]
322
+ When using mock mode, Range header is now not ignored in get_object(). thanks Ahmed Al Hafoudh
323
+ Documentation error for delete_object. thanks Alex Tambellini
324
+ Add barebones configuration for Travis CI. thanks Alexander Wenzowski
325
+ add Travis CI build status image. thanks Alexander Wenzowski
326
+ notify #ruby-fog on freenode instead of emailing. thanks Alexander Wenzowski
327
+ remove repository_url from notification template Interpolation of %{repository_url} is currently broken on Travis CI. thanks Alexander Wenzowski
328
+ CloudStack: added registerTemplate request. thanks Aliaksei Kliuchnikau
329
+ CloudStack: listTemplates, registerTemplate requests return hypervisor in the response. thanks Aliaksei Kliuchnikau
330
+ Enable AWS spot requests in a VPC by specifying subnet_id. thanks Ben Turley
331
+ Fix for RDS VPC subnet groups. thanks Ben Turley
332
+ parse ASCII code * in wildcard domain. Fixes #1093. thanks Blake Gentry
333
+ automatically figure out the elb hosted_zone_id if possible. thanks Blake Gentry
334
+ Add source for getting instance mac address. thanks Carl Caum
335
+ Only add VNC password and listen port if present. thanks Carl Caum
336
+ Revert 530122d. thanks Carl Caum
337
+ Abillity to List Images and List SSH Keys. thanks Chirag Jog
338
+ Add support to create, delete internet services. thanks Chirag Jog
339
+ Accept vCPUS and Memory as parameters while creating servers. thanks Chirag Jog
340
+ Minor Fixes: Remove unncessary prints. Use override_path instead of replace class variable path. thanks Chirag Jog
341
+ Fix support to add internet service to the existing Public Ip. thanks Chirag Jog
342
+ Support to configure vapp and add multiple internet services. thanks Chirag Jog
343
+ Remove uneccessary puts. thanks Chirag Jog
344
+ Add support to build/re-build/clobber gem/package/docs. thanks Chirag Jog
345
+ Fix minor issue. thanks Chirag Jog
346
+ Re-work based on Geemus's review. Manage InternetService and NodeService as separate entities Reload server status properly. thanks Chirag Jog
347
+ Revert Rakefile changes. thanks Chirag Jog
348
+ 1.Ability to fetch/list Orgs, Vdcs, Vapps, Servers. 2.Support to customize CPUs and Password. thanks Chirag Jog
349
+ Add ability to configure a vApp with an Org-wide network and associated firewall, NAT rules(limited support). thanks Chirag Jog
350
+ 1.Fix Catalog Listing for vCD 1.5 2.Construct Valid XML to memory configuration 3.Fix Undeploy vCD 1.5. thanks Chirag Jog
351
+ Added m1.medium instance type for AWS flavors. thanks Curtis Stewart
352
+ - Updated "@host" variable to "noc.newservers.com" which is the current host for API calls - Added two calls: add_server_by_configuration.rb and list_configurations.rb -- These calls should be used instead of add_server and list_plans, although we still support them. - General comments were updated. thanks Diego Desani
353
+ Add gsub to replace URL-encoded characters in the public_url method. thanks Eric Chernuka
354
+ fix reboot guest in vsphere to reboot rather than shutdown guest. thanks Eric Stonfer
355
+ added file upload and ip add capabilities. thanks Eugene Howe
356
+ added error handling for edge cases where there are no networks or ips. thanks Eugene Howe
357
+ [AWS|Glacier} basic vault operations. thanks Frederick Cheung
358
+ fix mock not returning the right data. thanks Frederick Cheung
359
+ set Content-MD5. thanks Frederick Cheung
360
+ Add fqdn to server attributes. thanks Hemant Kumar
361
+ Brightbox : Include licence_name in Image. thanks Hemant Kumar
362
+ Brightbox: Change licence_name type to Fog::Nullable::String. thanks Hemant Kumar
363
+ Add support for port translators. thanks Hemant Kumar
364
+ Rackspace Storage: new request, get_object_https_url. thanks James Healy
365
+ Rackspace Storage: new request, post_set_meta_temp_url_key. thanks James Healy
366
+ Rackspace Storage: a backslash shouldn't be escaped when signing URLS. thanks James Healy
367
+ add a basic spec for Rackspace::Storage#get_object_https_url. thanks James Healy
368
+ add basic spec for Rackspace::Storage##post_set_meta_temp_url_key. thanks James Healy
369
+ Rackspace Storage: fix expiring URLs that contain a hyphen. thanks James Healy
370
+ Add Serverlove directory. thanks James Rose
371
+ Basic Serverlove implementation. thanks James Rose
372
+ Wrong directory. thanks James Rose
373
+ Typo. thanks James Rose
374
+ Proper request arguments. thanks James Rose
375
+ Typo. thanks James Rose
376
+ Still wrong. thanks James Rose
377
+ Works. thanks James Rose
378
+ We want JSON. thanks James Rose
379
+ Typo. thanks James Rose
380
+ add high io flavor to aws flavors. thanks Josh Lane
381
+ Move Dynect endpoint from api2 to api-v4. thanks Marc Seeger
382
+ don't let the Paulistas be left out of the party. thanks Martin Englund
383
+ use 10.04 instead of 12.04. thanks Martin Englund
384
+ Google changed their URL scheme for Cloud Storage. thanks Nat Welch
385
+ Also change GCS url in dir and file models. thanks Nat Welch
386
+ Update lib/fog/hp/models/compute/image.rb. thanks Neill Turner
387
+ Update lib/fog/hp/models/compute/server.rb. thanks Neill Turner
388
+ Update lib/fog/aws/requests/compute/describe_instance_status.rb. thanks Oleg
389
+ Added new Server#fqdn attribute to test helper. thanks Paul Thornthwaite
390
+ Rewrite tests to use 1.8 compatible Hash syntax. thanks Paul Thornthwaite
391
+ Add missing providers to the all_providers list for testing. thanks Paul Thornthwaite
392
+ Use string not symbols for Storage tests to work with Shindo tagging. thanks Paul Thornthwaite
393
+ Retagged tests with strings to be skipped by Shindo. thanks Paul Thornthwaite
394
+ Tagged AWS URL test so correctly ignored by Shindo. thanks Paul Thornthwaite
395
+ Reduce maintenance of tests by using a dynamic list of providers. thanks Paul Thornthwaite
396
+ add support for multiple regions in Opentack. thanks Pedro Perez
397
+ Fixed the link to GitHub issues. thanks Postmodern
398
+ Change iprange --> ec2_secg in Mock. thanks Rob Lockstone
399
+ Added support for RDS VPC subnet groups. Bumped RDS API version to 2012-01-15. thanks Rusty Geldmacher
400
+ Added DBSubnetGroupName to test format for RDS instances. thanks Rusty Geldmacher
401
+ Adding server love disk model. thanks Sean Handley
402
+ Changed disk model based on responses from real API requests. thanks Sean Handley
403
+ Set up drive objects (not disks). thanks Sean Handley
404
+ If you use info, you get all the info. thanks Sean Handley
405
+ Alias the encryption cipher. thanks Sean Handley
406
+ Sometimes the response body is empty. thanks Sean Handley
407
+ Destroying drives is easy. thanks Sean Handley
408
+ Allowed setting of params as k/v pairs. thanks Sean Handley
409
+ Added create/update functionality. thanks Sean Handley
410
+ Made create/save conform to the Fog API. thanks Sean Handley
411
+ Returning self is totes better than bools. thanks Sean Handley
412
+ Fog calls drives "images", rename for consistency. thanks Sean Handley
413
+ Beginnings of shin do request tests. thanks Sean Handley
414
+ Need these to run the server love tests. thanks Sean Handley
415
+ Beginnings of tests for image operations. thanks Sean Handley
416
+ Adding mock for easier testing. thanks Sean Handley
417
+ Added get_image function. thanks Sean Handley
418
+ Added meaningful test for updating images. thanks Sean Handley
419
+ Typo!. thanks Sean Handley
420
+ Fix conflict. thanks Sean Handley
421
+ This shouldn't be here. thanks Sean Handley
422
+ Can't run shindo tests with old references. thanks Sean Handley
423
+ Added loading of standard image. thanks Sean Handley
424
+ Shindo tests pass. thanks Sean Handley
425
+ Test that we can view servers. thanks Sean Handley
426
+ Whitespace adjustments. thanks Sean Handley
427
+ CRUDs + tests for servers. thanks Sean Handley
428
+ Added server power cycle actions + basic tests. thanks Sean Handley
429
+ Add new request methods to server object. thanks Sean Handley
430
+ Use get_server, not get_image. thanks Sean Handley
431
+ Need a mock server id. thanks Sean Handley
432
+ This was plain wrong - works now!. thanks Sean Handley
433
+ Don't start servers by default. thanks Sean Handley
434
+ Contrary to the documentation, this actually returns a 200 status rather than a 204. thanks Sean Handley
435
+ Allow setting of memory and disk drives. thanks Sean Handley
436
+ Allow DHCP assignment by default. thanks Sean Handley
437
+ Key 'vnc:ip' was invalid. thanks Sean Handley
438
+ Update allowed attributes and defaults. thanks Sean Handley
439
+ Increase test drive size to accommodate a real image. thanks Sean Handley
440
+ Without setting SMP the web UI won't load :-/. thanks Sean Handley
441
+ Reduce from 80GB to 20GB - big enough, save space. thanks Sean Handley
442
+ Standard images need to be unzipped. thanks Sean Handley
443
+ Need to wait for imaging to complete. thanks Sean Handley
444
+ Add a pseudorandom password generator for VNC. thanks Sean Handley
445
+ Auto generate VNC password randomly. thanks Sean Handley
446
+ Used the amazon published endpoints for sqs as defined at http://docs.amazonwebservices.com/general/latest/gr/rande.html#sqs_region. thanks Stuart Eccles
447
+ Better mocks for invalid Provisioned IOPS values. thanks Thom Mahoney
448
+ Add generic support for EMC Atmos. thanks Timur Alperovich
449
+ Submit password/ssh_key/username through POST body. thanks Trevor Bramble
450
+ Update public_url to handle new header casings from Rackspace. thanks Zachary Danger Campbell
451
+ CloudStack: images.get always returns nil - fixed. thanks alex
452
+ add changelog for 1.5.0. thanks geemus
453
+ fixes for cloudstack mock tests see #1090. thanks geemus
454
+ fix mocked elb tests by including InstanceProtocol closes #1090. thanks geemus
455
+ expand travis config, build more rubies, use non-threaded runner. thanks geemus
456
+ just run mri for now on travis. thanks geemus
457
+ remove empty failure block from model_helper. thanks geemus
458
+ allow 1.8.7 to fail and not report for now (until I can work out why it fails when 1.9.x works. thanks geemus
459
+ return to expecting 1.8.7 to pass. thanks geemus
460
+ fix deprecated requires in Rakefile. thanks geemus
461
+ Made steps to get update/create working. Work in progress. thanks seanhandley
462
+ Update lib/fog/aws/models/compute/security_group.rb. thanks vkhatri
463
+
464
+ [rackspace|blockstorage]
465
+ Add volume tests. thanks Brad Gignac
466
+ Add volume type tests. thanks Brad Gignac
467
+ Add snapshot tests. thanks Brad Gignac
468
+ Add relationship between volumes and snapshots. thanks Brad Gignac
469
+ Add block storage provider. thanks Julio Feijo
470
+ Add volume types to block storage. thanks Julio Feijo
471
+ Add snapshots to block storage. thanks Julio Feijo
472
+
473
+ [rackspace|compute]
474
+ Add service for Cloud Servers v2.0. thanks Brad Gignac
475
+ Add flavors and images. thanks Brad Gignac
476
+ Add servers model and collection. thanks Brad Gignac
477
+ Set password attribute on V2 servers. thanks Brad Gignac
478
+ Don't intern nil strings. thanks Brad Gignac
479
+ Add method for listing attachments. thanks Brad Gignac
480
+ Add tests for volume attachments. thanks Brad Gignac
481
+ Improve attachment test reliability. thanks Brad Gignac
482
+ Add attachments model and collection. thanks Julio Feijo
483
+
484
+ [rackspace|storage]
485
+ Override path when generating sha1 to make tests past. thanks Brian Hartsock
486
+
487
+ [serverlove|compute]
488
+ fix serverlove tests for 1.8.7 compatibility. thanks Frederick Cheung
489
+ fix serverlove tests for 1.8.7 compatibility. thanks geemus
490
+
491
+
492
+ 1.5.0 07/28/2012 2e57e2029abbb618411c20f8974e64d8d3fd31fe
493
+ =========================================================
494
+
495
+ Stats! { 'collaborators' => 36, 'downloads' => 870008, 'forks' => 500, 'open_issues' => 44, 'watchers' => 2074 }
496
+
497
+ [AWS|Autoscaling]
498
+ fix group#instances returning all autoscaled instances in the account. thanks Frederick Cheung
499
+
500
+ [Libvirt]
501
+ fixed incorrect mock method signature. thanks Ohad Levy
502
+ ensure Fog volumes do not raise on LVM based volumes. thanks Ohad Levy
503
+
504
+ [aws|compute]
505
+ Address#destroy handles VPC addresses, improve address allocate/release mocking for VPC. thanks Dan Peterson
506
+
507
+ [aws|elasticache]
508
+ Fix bug in cache cluster test. thanks Benton Roberts
509
+ Remove erroneous whitespace trimming. thanks Benton Roberts
510
+ Add Elasticache service-level mocking support. thanks Benton Roberts
511
+ Add mocking for cache cluster requests. thanks Benton Roberts
512
+ Change modify_cache_cluster test to work in mocking mode. thanks Benton Roberts
513
+ Enable mocking for elasticache cluster tests. thanks Benton Roberts
514
+ Mock raises NotFound Exception when AWS does. thanks Benton Roberts
515
+
516
+ [aws|storage]
517
+ Default to false for persistent connections. thanks Kenny Johnston
518
+
519
+ [cloudstack|security_group]
520
+ fix rule revoke mock. thanks Josh Lane
521
+
522
+ [cloudstack|security_groups]
523
+ add groups and rules. thanks Josh Lane & Jason Hansen
524
+
525
+ [cloudstack|server]
526
+ assign security group. thanks Josh Lane & Jason Hansen
527
+
528
+ [dynect|dns]
529
+ No more recursion when polling jobs. Raise an error if the body indicates failure. thanks Dan Peterson
530
+
531
+ [fix-ephemeral-naming]
532
+ Typo in ephemeral naming. thanks Josh Pasqualetto
533
+
534
+ [joyent|compute]
535
+ fix dataset format in tests. thanks geemus
536
+
537
+ [local|storage]
538
+ mark tests pending in mock mode. thanks geemus
539
+
540
+ [misc]
541
+ fix changelog task for github API v3. thanks Aaron Suggs
542
+ update changelog for release 1.4.0. thanks Aaron Suggs
543
+ changelog: backdate to release data. thanks Aaron Suggs
544
+ Local storage support for #public_url. thanks Adam Tanner
545
+ Bugfix in Fog::DNS::AWS::Records.all!. thanks Alexander Kolesen
546
+ Fix for stopping all the servers instead of just specified servers. thanks Avrohom Katz
547
+ private ip address should start with a 10. thanks Avrohom Katz
548
+ Use proper signature when testing with aws mock. thanks Bohuslav Kabrda
549
+ The user must be destroyed even in mock mode, otherwise completely unrelated tests fail (e.g. tests/aws/models/iam/users_tests.rb). thanks Bohuslav Kabrda
550
+ The condition here should be the same as for destroying, so that we test iff the instance gets destroyed. thanks Bohuslav Kabrda
551
+ The assignment correctly returns nil, just the test has to react to it. thanks Bohuslav Kabrda
552
+ The assignment correctly returns false, just the test has to react to it. thanks Bohuslav Kabrda
553
+ Include this to make refresh_credentials_if_expired method work properly with Mock. thanks Bohuslav Kabrda
554
+ Fix the number where credentials expire - if too high, other tests will fail. thanks Bohuslav Kabrda
555
+ Fix openstack tests. thanks Bohuslav Kabrda
556
+ Fix more openstack mock tests failures. thanks Bohuslav Kabrda
557
+ Add the mock urls to fix some more openstack tests. thanks Bohuslav Kabrda
558
+ Fix minor typos and incorrect types in openstack volume tests. thanks Bohuslav Kabrda
559
+ More typos in openstack server tests. thanks Bohuslav Kabrda
560
+ Rework the quota mock testing to work and be more comfortable. thanks Bohuslav Kabrda
561
+ Must use values, so that connection.list_roles gets corrent argument. thanks Bohuslav Kabrda
562
+ Deleting returns nothing, so do not expect role. thanks Bohuslav Kabrda
563
+ Properly check whether role is present. thanks Bohuslav Kabrda
564
+ Return the properly updated image. thanks Bohuslav Kabrda
565
+ Add the 'new_image' public images, so that find_by_id can find it. thanks Bohuslav Kabrda
566
+ The pending block fails the outer one => make sure we return proper result. thanks Bohuslav Kabrda
567
+ Use proper parameters when testing deploying cloudstact VMs. thanks Bohuslav Kabrda
568
+ This was implemented right previously, shouldn't have changed it. thanks Bohuslav Kabrda
569
+ Correct solution for subnet failing tests - use a collection in self.data. thanks Bohuslav Kabrda
570
+ Do the same thing for vpcs as previously done for subnets. thanks Bohuslav Kabrda
571
+ ...and the same for dhcp_options. thanks Bohuslav Kabrda
572
+ And the same for internet gateways. thanks Bohuslav Kabrda
573
+ Fixes the failure for hp storage. thanks Bohuslav Kabrda
574
+ [rackspace|databases| Add service tests. thanks Brad Gignac
575
+ fix for RDS mocking to avoid state flipping between "modifying" and "available". thanks Brian Nelson
576
+ Fix typo listing datacenters. thanks Carlos Sanchez
577
+ Stop vSphere vms before destroying, or destroy will fail. thanks Carlos Sanchez
578
+ Add a failure for #1014. :v:. thanks Dylan Egan
579
+ Only dup @attributes if it's not nil. thanks Edward Muller
580
+ each based pagination for Fog::AWS::IAM#users. thanks Edward Muller
581
+ fixes elb test in mocking mode. thanks Eric Stonfer
582
+ fix running subnet tests in mocking mode. thanks Eric Stonfer
583
+ fix subnet tests in mocking mode. thanks Eric Stonfer
584
+ fog bombs out on ruby 1.8.x because it cannot find Mutex. thanks Eric Stonfer
585
+ fix not pulling InstanceProtocol from the xml. thanks Frederick Cheung
586
+ Add Sao Paulo server to Amazon RDS known regions. thanks Irio Irineu Musskopf Junior
587
+ Add Sao Paulo server to Amazon SQS known regions. thanks Irio Irineu Musskopf Junior
588
+ Fix bug in local storage #copy_object. thanks Jade Tucker
589
+ Add and get SSL certificates to Rackspace Soft LB. thanks Justin Barry
590
+ Default to being less pessimistic about excon. thanks Kevin Moore
591
+ Fix ssh key behavior when passing specified private keys to ssh/scp. thanks Marc Seeger
592
+ Should not modify passed in "params" variable since block might run several times due to authentication failure producing erroneous path. thanks Max Stepanov
593
+ As discussed in #991, this converts the readme from SimpleMarkup to Markdown. thanks Mike Fiedler
594
+ added PeopleAdmin to list of users. thanks Mike Manewitz
595
+ Fixing typo bug in rackspace load balancer set_ssl_termination request. thanks Paul
596
+ add us-east-1e to mock. thanks Shai Rosenfeld
597
+ Pass up all the options that have been assigned. thanks Trotter Cashion
598
+ Pass options on to AutoScalingGroup. thanks Trotter Cashion
599
+ Add better ScalingPolicy support. thanks Trotter Cashion
600
+ Add more AWS Alarm functionality. thanks Trotter Cashion
601
+ Add delete mocks. thanks Trotter Cashion
602
+ Properly array-ify keys for create_auto_scaling_group. thanks Trotter Cashion
603
+ Add tags to autoscaling groups. thanks Trotter Cashion
604
+ Enable tests when mocking. thanks Trotter Cashion
605
+ Recognize ninefold_api_url option for pre-production testing. thanks Warren Bain
606
+ remove specs (likely from a bad merge). thanks geemus
607
+ update tests/helper to have bare_metal_cloud instead of new_servers. thanks geemus
608
+ Mock for filter ec2 instances by group name. thanks phillc
609
+
610
+ [openstack]
611
+ Fix Authentication for OpenStack v1.1 Authentication. thanks Nelvin Driz
612
+
613
+ [openstack|compute]
614
+ Add filters to list servers details. thanks Ferran Rodenas
615
+ Added adminPass attribute in create_server. thanks Philip Mark M. Deazeta
616
+ fix method signature for mock list_servers_detail. thanks geemus
617
+
618
+ [openstack|image]
619
+ Stream OpenStack image. thanks Vadim Spivak
620
+
621
+ [rackspace|databases]
622
+ Add read-only support for Rackspace Cloud Databases. thanks Brad Gignac
623
+ Add write support for Rackspace Cloud Databases. thanks Brad Gignac
624
+ Register Rackspace Cloud Databases service with Fog. thanks Brad Gignac
625
+ Remove "list/details" API calls in favor of "list" calls. thanks Brad Gignac
626
+ Add model tests. thanks Brad Gignac
627
+ Finish request tests. thanks Brad Gignac
628
+ Remove old comments. thanks Brad Gignac
629
+ Handle breaking API changes. thanks Brad Gignac
630
+ Initial pass at request tests. thanks Brian Hartsock
631
+
632
+ [rackspace|identity]
633
+ Add Rackspace identity service. thanks Brad Gignac
634
+ Add requests and request tests. thanks Brad Gignac
635
+ Add user model and collection with tests. thanks Brad Gignac
636
+ Handle non-array responses from list calls. thanks Brad Gignac
637
+ Better checking around hash/array responses. thanks Brad Gignac
638
+ Handle NotAuthorized respones from the identity API in the user model. thanks Brian Hartsock
639
+ use a valid username in tests. thanks geemus
640
+
641
+ [rackspace|lb]
642
+ fixed broken tests because of API format changes. thanks Brian Hartsock
643
+ ssl termination fixes. thanks Brian Hartsock
644
+ moved to Fog::JSON.encode instead of MultiJson.encode. thanks Brian Hartsock
645
+
646
+
647
+ 1.4.0 06/24/2012 24e0be755e251159f07d5d82beb1e8ef57c962d9
648
+ =========================================================
649
+
650
+ Stats! { 'collaborators' => 35, 'downloads' => 800348, 'forks' => 477, 'open_issues' => 43, 'watchers' => 2080 }
651
+
652
+ MVP! Nelvin Driz
653
+
654
+ [AWS]
655
+ make beanstalk, cdn, cloudformation, cloudwatch, elasticache, elb, storage, rds, ses, sns, route53 temporary credential friendly. thanks Frederick Cheung
656
+
657
+ [AWS|Auto Scale]
658
+ Add support for put_notification_configuration and change AWS API to use 01-01-2011 Spec. thanks Zuhaib M Siddique
659
+
660
+ [AWS|Autoscale]
661
+ Fixing Parameters notes for autoscale create launch configuration for InstanceMonitoring. Credit goes to boto, https://github.com/boto/boto/blob/develop/boto/ec2/autoscale/__init__.py , for having it correct. thanks Zuhaib M Siddique
662
+ Fixing Parameters notes for autoscale create launch configuration for InstanceMonitoring. Credit goes to boto, https://github.com/boto/boto/blob/develop/boto/ec2/autoscale/__init__.py , for having it correct. thanks Zuhaib M Siddique
663
+
664
+ [Openstack|Compute]
665
+ Usage Requests. thanks Hunter Nield
666
+ Migration and Console output. thanks Hunter Nield
667
+ server methods for console and migration. thanks Hunter Nield
668
+ Minor address cleanup. thanks Hunter Nield
669
+
670
+ [aws|address]
671
+ fixes release_address for VPC EIPs * amazon requires allocation_id only for vpc eips, and public_ip otherwise. thanks Albert Choi
672
+
673
+ [aws|beanstalk]
674
+ Added missing :beanstalk case. thanks George Scott
675
+ Added #load_balancer method. thanks George Scott
676
+ Serialize keys for SourceConfiguration. thanks George Scott
677
+ Added modify method for template. thanks George Scott
678
+ Support different AWS regions. thanks George Scott
679
+ Added swap_cnames method. thanks George Scott
680
+
681
+ [aws|compute]
682
+ add networkInterfaceSet context to EC2 instance parser. thanks Benton Roberts
683
+
684
+ [aws|dns]
685
+ Allow both Ruby and AWS style names for alias. thanks George Scott
686
+ Support for latency/weighted resource sets. thanks George Scott
687
+ Fixed #all iteration. thanks George Scott
688
+ Reimplemented #get. thanks George Scott
689
+ Added #all! method to Records. thanks George Scott
690
+
691
+ [aws|dynamodb]
692
+ correct batch_put_item to batch_write_item for consistency with API. thanks geemus
693
+
694
+ [aws|elb]
695
+ Failing test for load_balancers marker support. thanks Dan Peterson
696
+ Deprecate describe_load_balancers with just an array of names. thanks Dan Peterson
697
+ Marker support for describe_load_balancers. thanks Dan Peterson
698
+ Fix use of describe_load_balancers in tests. thanks Dan Peterson
699
+ load_balancers.get(nil) returns nil instead of the first of all load balancers. thanks Dan Peterson
700
+
701
+ [aws|iam]
702
+ Add test for AWS[:iam].get_user. thanks Benton Roberts
703
+ add test for AWS[:iam].get_user_policy. thanks Benton Roberts
704
+ FIX - make arguments AWS::IAM.get_user conform to expected standard for this module. thanks Benton Roberts
705
+ Fix Users model to comply with updated request parameter set. thanks Benton Roberts
706
+ mark role tests as pending in mock mode. thanks geemus
707
+
708
+ [aws|storage]
709
+ fix flipped logic on valid acl check closes #889. thanks geemus
710
+ fix method signature for setup_credentials. thanks geemus
711
+
712
+ [aws|storage|]
713
+ Make get_object_http_url use correct S3 host in returned URL. thanks Michiel Sikkes
714
+ Make get_object_http_url use correct S3 host in returned URL. thanks Michiel Sikkes
715
+
716
+ [brightbox|compute]
717
+ Updated image reference where unfortunately hardcoded. thanks Paul Thornthwaite
718
+ Remove resize request since not available. thanks Paul Thornthwaite
719
+ Update format tests for new attributes on Cloud IPs. thanks Paul Thornthwaite
720
+ Update format tests for "fqdn" attribute. thanks Paul Thornthwaite
721
+ Update format tests for updates to Image. thanks Paul Thornthwaite
722
+
723
+ [cloudstack]
724
+ prevent mock test failure when cloudstack credentials are not defined. thanks geemus
725
+ add to list of providers so it can be skipped when lacking credentials. thanks geemus
726
+
727
+ [cloudstack|compute]
728
+ zones,flavors,images,address. thanks Jason Hansen & Josh Lane
729
+ support async jobs. thanks Jason Hansen & Josh Lane
730
+ server abstraction and mocks. thanks Josh Lane & Jason Hansen
731
+ volumes support. thanks Josh Lane & Jason Hansen
732
+
733
+ [compute]
734
+ volume tests. thanks Josh Lane & Jason Hansen
735
+
736
+ [compute|aws]
737
+ Apply tags to volume at creation. thanks Dan Carley
738
+ Respect extra register_image options when mocking. thanks Dan Peterson
739
+ extend polling interval for spot_requests bootstrap. thanks geemus
740
+ cleanup internet_gateway mocks and remove debug output. thanks geemus
741
+
742
+ [compute|openstack]
743
+ update server attributes for shared compute tests. thanks geemus
744
+ cleanup for list security groups request/mock. thanks geemus
745
+
746
+ [docs]
747
+ fix link to EngineYard logo (broken in /storage, /compute, etc.). thanks Len
748
+
749
+ [ecloud|compute]
750
+ Adding multiple disks at once was not working properly. thanks Eugene Howe
751
+ fix optional params for validate_data closes #969. thanks geemus
752
+
753
+ [glesys|compute]
754
+ update server/status format to include cpu hash and warnings. thanks Anton Lindström
755
+ add reboot and compute test params. thanks Anton Lindström
756
+
757
+ [hp|compute]
758
+ fix tests to properly set default base image. thanks geemus
759
+
760
+ [ibm|compute]
761
+ Typo in parameter name, should be storageID. thanks Decklin Foster
762
+
763
+ [joyent|compute]
764
+ Fixes issue where params are not properly passed to #keys_create from #create_key. thanks Kevin Chan
765
+ Added #list_datacenters. thanks Kevin Chan
766
+ Support for DSA keys for auth. thanks Kevin Chan
767
+
768
+ [libVirt]
769
+ added tests. thanks Amos Benari
770
+
771
+ [libvirt]
772
+ refactored libvirt entire code. thanks Ohad Levy
773
+ expose node hostname. thanks Ohad Levy
774
+ added display attributes and allowed to change display of a running server. thanks Ohad Levy
775
+ volumes dev names must be uniq. thanks Ohad Levy
776
+ makes libvirt code more debian friendly. thanks Ohad Levy
777
+ - ensure no nil pools are returned. thanks Ohad Levy
778
+ Fix SSH keyfile being pulled from wrong param. thanks brookemckim
779
+ skip tests if ruby-libvirt is unavailable. thanks geemus
780
+ correct error message when skipping tests. thanks geemus
781
+
782
+ [misc]
783
+ Add support for internal ELBs in VPC. thanks Aaron Bell
784
+ cleaning up model. thanks Aaron Bell
785
+ fix parser to show scheme, add test for internal ELB creation. thanks Aaron Bell
786
+ fixing test. thanks Aaron Bell
787
+ add scheme to elb helper. thanks Aaron Bell
788
+ adds batch_put_item functionality to AWS dynamodb + test. thanks Alex Gaudio
789
+ Fixed non-persistent connections handling to AWS. thanks Alexander Kolesen
790
+ Fixed handling options[:persistent] in some cases. thanks Alexander Kolesen
791
+ added mock implementation. thanks Amos Benari
792
+ removed unneeded dependency,. thanks Amos Benari
793
+ new rbovirt version. thanks Amos Benari
794
+ use constant for GB. thanks Amos Benari
795
+ Adding network interface information and security group ids. thanks Artem Veremey
796
+ Adding network interface information and security group ids to the model. thanks Artem Veremey
797
+ Store the region for S3. thanks Ben Butler-Cole
798
+ add create_hosted_zone and get_hosted_zone request mocks. thanks Bulat Shakirzyanov
799
+ add list_hosted_zones request mock. thanks Bulat Shakirzyanov
800
+ add change_resource_record_set request mock. thanks Bulat Shakirzyanov
801
+ fix response codes and formatting. thanks Bulat Shakirzyanov
802
+ fix typos. thanks Bulat Shakirzyanov
803
+ fix identifiers. thanks Bulat Shakirzyanov
804
+ use hard-coded sample value to eliminate randomness. thanks Bulat Shakirzyanov
805
+ fix typos. thanks Bulat Shakirzyanov
806
+ fix zone id in create_hosted_zone response. thanks Bulat Shakirzyanov
807
+ fix attribute name. thanks Bulat Shakirzyanov
808
+ add authorize and revoke port range for security group. thanks Bulat Shakirzyanov
809
+ Fix typo. thanks Christopher Meiklejohn
810
+ Specify image_ref rather than trying to instantiate object. thanks Christopher Meiklejohn
811
+ Fog::Compute::AWS::Address#server -> assigned Server. thanks Dr Nic Williams
812
+ fix auto-discovery for HP Cloud by fog bin. thanks Dr Nic Williams
813
+ whitespace. :bomb: :v:. thanks Dylan Egan
814
+ Default to false for persistent connections. You can't pass in false. This now behaves like other connections in fog. :v:. thanks Dylan Egan
815
+ Idempotent Dynect calls. :v:. thanks Dylan Egan
816
+ Fix up describe_volume_status to work with THE ARRAYZ. :v:. thanks Dylan Egan
817
+ Fog::AWS.indexed_reuqest_param. thanks Edward Muller
818
+ include the nextToken in the body. thanks Edward Muller
819
+ complete Request param support. thanks Edward Muller
820
+ refactor to use Fog::AWS.indexed_request_param. thanks Edward Muller
821
+ the old parser was not working properly. thanks Edward Muller
822
+ All directories.create on us-east-1. thanks Edward Muller
823
+ us-west-2 default ami. thanks Edward Muller
824
+ some small fixups. thanks Edward Muller
825
+ make the aws region accessible. thanks Edward Muller
826
+ Fog::Compute::Server#private_key=. thanks Edward Muller
827
+ Fog::Compute::Server#sshable?. thanks Edward Muller
828
+ ssh/run optionally takes a block. thanks Edward Muller
829
+ Cleanup after talking to @dpiddy. thanks Edward Muller
830
+ return '' not nil. thanks Edward Muller
831
+ Revert "Add debug option to Fog::Compute::Server#ssh". thanks Edward Muller
832
+ Mock stop_instances. thanks Edward Muller
833
+ Mock aws compute start_instances. thanks Edward Muller
834
+ Don't duplicate effort. thanks Edward Muller
835
+ Add ssh_port to Fog::Compute::Server. thanks Edward Muller
836
+ Generalize NoLeak Inspector for Fog::Service. thanks Edward Muller
837
+ Don't leak HP cdn & storage. thanks Edward Muller
838
+ Make aws compute server retry SSH on EHOSTUNREACH. thanks Eric Boehs
839
+ Copied auth token reauthentication from rackspace|compute. thanks Eric Hankins
840
+ https://github.com/fog/fog/issues/810 - Add ENI support by maf23. thanks Eric Stonfer
841
+ minor fix to ENI tests. thanks Eric Stonfer
842
+ VPC ELBs, Tests, and the introduction of the InternetGateway object. thanks Eric Stonfer
843
+ clean up conflict. thanks Eric Stonfer
844
+ this adds the dhcp_options object and associated operations. thanks Eric Stonfer
845
+ merge upstream. thanks Eric Stonfer
846
+ forgot to commit dhcp_options tests. thanks Eric Stonfer
847
+ fix describe_volume_status parser. thanks Eric Stonfer
848
+ add some more explanation to the server creation process. thanks Eric Stonfer
849
+ testing. thanks Eugene Howe
850
+ added requests and models for compute_pools. thanks Eugene Howe
851
+ changed to urn:tmrk:eCloudExtensions-2.8. thanks Eugene Howe
852
+ require compute pool to be specified on vapp creation. thanks Eugene Howe
853
+ set default value for computePool on vapp creation. thanks Eugene Howe
854
+ Made computePool an optional parameter, specs now pass without issue. thanks Eugene Howe
855
+ Removed non-functioning Mock classes. thanks Eugene Howe
856
+ fixed method name. thanks Eugene Howe
857
+ start an instance with an IAM profile and access the credentials. thanks Frederick Cheung
858
+ add new iam requests to support iam roles. thanks Frederick Cheung
859
+ request tests for the new iam role requests. thanks Frederick Cheung
860
+ test credential fetching. thanks Frederick Cheung
861
+ use excon rather than net/http. thanks Frederick Cheung
862
+ remove stray multijson require. thanks Frederick Cheung
863
+ fix errant use of net/http. thanks Frederick Cheung
864
+ Add debug option to Fog::Compute::Server#ssh. thanks Gabriel Horner
865
+ Correct docs for change_resource_record_sets. thanks Gavin Sandie
866
+ add cc2.8xlarge AWS flavor. thanks Ian Downes
867
+ Fix user-data attribute name. thanks Igor Bolotin
868
+ Refactor AWS Directory. thanks James Herdman
869
+ Remove unused variable. thanks James Herdman
870
+ Fix indentation warning. thanks James Herdman
871
+ Remove unnecessary full path usage with require. thanks James Herdman
872
+ Remove unused variable. thanks James Herdman
873
+ Remove unused accessor. thanks James Herdman
874
+ Silence warning regarding splat operator. thanks James Herdman
875
+ Remove unused variable. thanks James Herdman
876
+ Remove unused variable. thanks James Herdman
877
+ Silence warnings about potentially private attribute. thanks James Herdman
878
+ Remove unused variable. thanks James Herdman
879
+ Silence warning about potentially private attribute. thanks James Herdman
880
+ Remove unused variable. thanks James Herdman
881
+ Remove unused variable. thanks James Herdman
882
+ Remove unused variable. thanks James Herdman
883
+ Remove unused variable. thanks James Herdman
884
+ Remove unused variable. thanks James Herdman
885
+ Remove unused variable. thanks James Herdman
886
+ Remove unused variable. thanks James Herdman
887
+ Remove unused variable. thanks James Herdman
888
+ Remove unused variable. thanks James Herdman
889
+ Remove unused variable. thanks James Herdman
890
+ Remove unused variable. thanks James Herdman
891
+ Remove unused variable. thanks James Herdman
892
+ Remove unused variable. thanks James Herdman
893
+ Remove duplicate require. thanks James Herdman
894
+ Remove unused variable. thanks James Herdman
895
+ Remove unused variable. thanks James Herdman
896
+ Remove unused variable. thanks James Herdman
897
+ Remove absolute path when requiring. thanks James Herdman
898
+ Remove unused variable. thanks James Herdman
899
+ Remove duplicate Mock class definition. thanks James Herdman
900
+ implement Fog::SSH::Mock#run. thanks Jason Hansen & Josh Lane
901
+ add a method to IPAddr instead of breaking a useful one. thanks Jesse Newland
902
+ Adjusts regex to fix issues with S3 paths that include periods. thanks John Feminella
903
+ fix response-cache-control type for AWS signed urls. thanks John Nishinaga
904
+ remove FOG_PROVIDER env override. thanks Josh Lane
905
+ more robust resource pool discovery. thanks Justin Clayton
906
+ Removed duplicate property :ips on server. thanks Kevin Chan
907
+ Fixes invalid call to #resize, should be #resize_machine. thanks Kevin Chan
908
+ Fixed #875: Loosen multi_json version. thanks Kevin Menard
909
+ Bad string replace. thanks Kevin Menard
910
+ Actually call the new MultiJSON 1.3.2 API methods. thanks Kevin Menard
911
+ Rename dd_belatedpng.js to dd_belatedpng.min.js. thanks Laurent Bigonville
912
+ Add non-minified javascript files used in docs/ (#939). thanks Laurent Bigonville
913
+ Catch Errno::ETIMEDOUT timeout error when connecting to a freshly created EC2 machine. thanks Marc Seeger
914
+ fix get, all, and all!. thanks Michael Keirnan
915
+ Make `.irbrc` service agnostic. thanks Nelvin Driz
916
+ Nested Credentials with Array gets flattened; restrict flatten to 1L. thanks Nelvin Driz
917
+ Allow for stringified options keys. thanks Nikita Pomyashchiy
918
+ add supports for defining/extracting libvit boot order. thanks Ohad Levy
919
+ libvirt volume sizes are in GB, ensuring both requests and setters are in GB. thanks Ohad Levy
920
+ adds deprecation on vnc_port. thanks Ohad Levy
921
+ monitoring-state is enabled or disabled, if enabled returns true. thanks Ozgur Akan
922
+ reserved instances hourly cost was returning empty. thanks Ozgur Akan
923
+ Modify url regexp to handle periods in bucket names. thanks Parker Selbert
924
+ Tag generated model tests with string not symbol. thanks Paul Thornthwaite
925
+ added missing server attributes for openstack compute model. thanks Pedro Perez
926
+ openstack: extended list_servers and list_server_detail to allow all_tenants param. thanks Pedro Perez
927
+ depend on excon >= 0.13.0. thanks Prashant Nadarajan
928
+ use pessimistic gem version constraint for excon (~>0.14.0). thanks Prashant Nadarajan
929
+ aim users model and nested model policy. thanks Rodrigo Estebanez
930
+ IAM access_key model implemented. thanks Rodrigo Estebanez
931
+ get_user Mock implemented. Basic shindo user_tests added. thanks Rodrigo Estebanez
932
+ Refactor aim modeling for nested models (policies and access keys). thanks Rodrigo Estebanez
933
+ shindo tests for IAM models: users, policies and access_keys. Mock implementation for get_user_policy. thanks Rodrigo Estebanez
934
+ @users -> @user. Clean up the @user after the policies and access_keys test. thanks Rodrigo Estebanez
935
+ Fix encoding issue: https://github.com/fog/fog/pull/189. thanks Rodrigo Estebanez
936
+ aim users model and nested model policy. thanks Rodrigo Estebanez
937
+ IAM access_key model implemented. thanks Rodrigo Estebanez
938
+ get_user Mock implemented. Basic shindo user_tests added. thanks Rodrigo Estebanez
939
+ Refactor aim modeling for nested models (policies and access keys). thanks Rodrigo Estebanez
940
+ shindo tests for IAM models: users, policies and access_keys. Mock implementation for get_user_policy. thanks Rodrigo Estebanez
941
+ @users -> @user. Clean up the @user after the policies and access_keys test. thanks Rodrigo Estebanez
942
+ Fix encoding issue: https://github.com/fog/fog/pull/189. thanks Rodrigo Estebanez
943
+ For some reason, there was a missing comma in the mock class. thanks Rodrigo Estebanez
944
+ Fix get_user_policy. The actual AWS data has to be in a ['Policy'] hash section. thanks Rodrigo Estebanez
945
+ add IAM mocking for get_group method. thanks Rodrigo Estebanez
946
+ add IAM mocking for get_group method. thanks Rodrigo Estebanez
947
+ Add new HP providers for Object Storage, Compute and CDN services. thanks Rupak Ganguly
948
+ Be sure to reload when checking for a started spot instance, also add private/public key options into spot_requests, then set those on the server when loaded. thanks Ryan Stout
949
+ Use spot request's public_key when setting up keypair. thanks Ryan Stout
950
+ ensure apiKey and command are included in parameter sorting. thanks Sean Caffery
951
+ * [xenserver|compute] initial release. thanks Sergio Rubio
952
+ * Added VIF model and collection tests * added network and server wrappers to VIF model. thanks Sergio Rubio
953
+ * Added VIF collection Shindo tests. thanks Sergio Rubio
954
+ * Added PIFs collection Shindo tests. thanks Sergio Rubio
955
+ * Added VBD Shindo tests * added server wrapper to VBD model. thanks Sergio Rubio
956
+ * Added Network collection Shindo tests * Fixed PBD and PIF tests descriptions. thanks Sergio Rubio
957
+ * Added Pool and StorageRepository models and collections Shindo tests * Added missing attributes to Pool and StorageRepository models. thanks Sergio Rubio
958
+ * Define missing InvalidLogin exception * Add login tests. thanks Sergio Rubio
959
+ * Added custom_templates and templates methods to Host model. thanks Sergio Rubio
960
+ * Added more tests and extended existing ones * Added missing exceptions NotFound and RequestFailed * connection.request now raises exception if request failed * refactored most get_* request into get_record and get_records * Compute.default_template more robust * Base parser now replaces OpaqueRef:NULL with nil * create_server request fixes. thanks Sergio Rubio
961
+ * Added some more tests * Lots of fixes and some refactoring. thanks Sergio Rubio
962
+ * Fix Servers.templates method. thanks Sergio Rubio
963
+ * Added clone_server request. thanks Sergio Rubio
964
+ * Added create_vif tests * Server.save now properly creates additional VIFs when required * Added create_vif_custome request to create VIFs with custom params. thanks Sergio Rubio
965
+ * Added Vif.destroy and destroy_vif request * add :auto_start parameter to Server.save. thanks Sergio Rubio
966
+ * Added create_vdi request * Added missing VDI methods and attributes. thanks Sergio Rubio
967
+ * Added missing VBD operations. thanks Sergio Rubio
968
+ * Added set_attribute request and tests * Added missing PV_bootloaer attribute to Server * Added Server.set_attribute method and tests. thanks Sergio Rubio
969
+ * Added create_vbd and provision_server requests * Do not provision server when :auto_start is false * Add Server.provisio method * Add VBD.save method. thanks Sergio Rubio
970
+ * renamed some tests * Added missing VDI attributes and methods * added create/destroy request tests * Added valid_ref? test helper * Fixes in get_record_tests. thanks Sergio Rubio
971
+ * Added missing attributes to Server model * Added create_server_raw request and tests * Added VIF.save action * more tests. thanks Sergio Rubio
972
+ * Fix: do not try to retrive guest_metrics when guest_metrics ref is nil * ruby 1.8.7 compatibility fixes * Sane defaults for create_server_raw request. thanks Sergio Rubio
973
+ * Added new scan_sr request * Added StorageRepository.scan method * set_attribute request is now generic and can be used by any model * Added VDI.set_attribute method. thanks Sergio Rubio
974
+ * [xenserver|compute] set_attribute request now accepts var args - added new tests. thanks Sergio Rubio
975
+ updating gitignore for eclipse settings. thanks Spencer Dillard
976
+ first pass at updates for VPC. thanks Spencer Dillard
977
+ updating for SSL ciphers and protocols. thanks Spencer Dillard
978
+ updating to master. thanks Spencer Dillard
979
+ regularize examples showing use of AWS access keys. thanks Stephen Bannasch
980
+ Use MultiJSON #dump and #load rather than #encode and #decode. thanks Steve Smith
981
+ Add support for ports in AWS storage URLs. thanks Tim Carey-Smith
982
+ Mock implementations for SCP upload and download. thanks Tom Mornini
983
+ add Linode Mock classes to request primitives. thanks Wes Morgan
984
+ make Mock#linode_disk_delete return the response object. thanks Wes Morgan
985
+ make Mock#linode_disk_list return the response object. thanks Wes Morgan
986
+ use kernel_id for mocked kernel, not stackscript_id. thanks Wes Morgan
987
+ Adds new method delete_notification_configuration which allows you notifications created by put_notification_configuration. thanks Zuhaib Siddique
988
+ Fix for stacks that have capabilities. Without this the parser misinterprets stacks with capabilities set. thanks atlantacs
989
+ volume(s) are not considered to be universally available. thanks geemus
990
+ catch passing an invalid openstack_tenant. thanks mattray
991
+ addresses['internet'] (like on TryStack.org) supported and public and private_ip_address now work. thanks mattray
992
+ don't assume 'internet' for addresses. thanks mattray
993
+ Added offering type for reserved instances response. thanks questionnet
994
+
995
+ [oVirt]
996
+ added volumes to server and template. thanks Amos Benari
997
+ added volume size in GB accessor. thanks Amos Benari
998
+ fixed create_vm and get_virtual_machine requests mock implementation. thanks Amos Benari
999
+
1000
+ [openstack]
1001
+ Fix create snapshot. thanks Ferran Rodenas
1002
+ Match both OS API 1.1 and v2 since they are the same. thanks Josh Kearney
1003
+ Update Reinitialization Process of Existing Auth Token. thanks Nelvin Driz
1004
+ Add Export of Credentials. thanks Nelvin Driz
1005
+ Wrong instance variables accessed for #credentials. thanks Nelvin Driz
1006
+ Update Authentication through X-Auth-Token. thanks Nelvin Driz
1007
+ Update mocks for login and identity request #get_user_by_id. thanks Nelvin Driz
1008
+ Fix authentication without specifying tenant name. thanks Nelvin Driz
1009
+ Make current_user and current_token accessible to services. thanks Nelvin Driz
1010
+ Fix Authentication as well as Fog::JSON call bugs. thanks Nelvin Driz
1011
+ Raise error when no tenant is found for the user logging in. thanks Nelvin Driz
1012
+ Ensure password sent is of type string. thanks Nelvin Driz
1013
+ Modify authentication process. thanks Philip Mark Deazeta
1014
+
1015
+ [openstack|compute]
1016
+ Add requests and tests for security groups. thanks Alfonso Juan Dillera
1017
+ Add requests, models and tests for keypairs. thanks Alfonso Juan Dillera
1018
+ Add requests, models and tests for address management. thanks Alfonso Juan Dillera
1019
+ Add requests, models and tests for address management. thanks Alfonso Juan Dillera
1020
+ Add flavor CRUD. thanks Alfonso Juan Dillera
1021
+ Add auth_token. thanks Alfonso Juan Dillera
1022
+ Added request for boot_from_snapshot. thanks Alfonso Juan Dillera
1023
+ Added id attribute to the keypair. thanks Alfonso Juan Dillera
1024
+ Update fetching of addresses and added fetching for address pools. thanks Alvin Garcia
1025
+ Fixed creating image of a server. thanks Alvin Garcia
1026
+ Added requests for quota. thanks Alvin Garcia
1027
+ Initial extension support for addresses. thanks Hunter Nield
1028
+ Initial extension support for key pairs. thanks Hunter Nield
1029
+ Initial extension support for security groups. thanks Hunter Nield
1030
+ Added Address models. thanks Hunter Nield
1031
+ Added key pair models. thanks Hunter Nield
1032
+ added security group models. thanks Hunter Nield
1033
+ Updates to server model. thanks Hunter Nield
1034
+ Added list/get support for /os-hosts. thanks Hunter Nield
1035
+ Add Tenants and Fix Authentication Implementation. thanks Nelvin Driz
1036
+ Fix Requests on Compute. thanks Nelvin Driz
1037
+ General Cleanup and Update. thanks Nelvin Driz
1038
+ Fix Compute Identity Endpoint Credential Export. thanks Nelvin Driz
1039
+ Add Identity Enpoint to Recognized Init Parameters. thanks Nelvin Driz
1040
+ Update requests and response of server actions. thanks Nelvin Driz
1041
+ Fix Bug on Key Pair Mock. thanks Nelvin Driz
1042
+ Update Mocks for Volumes. thanks Nelvin Driz
1043
+ Update Mocks for Security Groups and Volumes. thanks Nelvin Driz
1044
+ Add Instance Name to Fog. thanks Nelvin Driz
1045
+ Update Image Mocks. thanks Nelvin Driz
1046
+ Update List Security Groups to list those assigned to a server. thanks Nelvin Driz
1047
+ Assert Timezone to UTC and fix format for OS on `get_usage`. thanks Nelvin Driz
1048
+ Added get_usage function, mocks, tests. thanks Philip Mark Deazeta
1049
+ Added get server volumes request. thanks Philip Mark M. Deazeta
1050
+ Added key_pair and security_groups options int create server requrest. thanks Philip Mark M. Deazeta
1051
+ added key_name and security_groups in boot from snapshot request. thanks Philip Mark M. Deazeta
1052
+ authenticate_v2 fixes. thanks Sergio Rubio
1053
+
1054
+ [openstack|identity]
1055
+ Added current user id. thanks Alfonso Juan Dillera
1056
+ Updated current user id for identity. thanks Alfonso Juan Dillera
1057
+ Keystone Roles. thanks Alvin Garcia
1058
+ Keystone Roles and Users. thanks Alvin Garcia
1059
+ Update users collections and model. thanks Alvin Garcia
1060
+ Update users model initialization and save. thanks Alvin Garcia
1061
+ Fixed users fetching. thanks Alvin Garcia
1062
+ Rough implementation of the Keystone API (untested). thanks Hunter Nield
1063
+ Correction in Roles#all method. thanks Mark Maglana
1064
+ Express the "add user role" intent more clearly. thanks Mark Maglana
1065
+ Fix Authentication Implementation. thanks Nelvin Driz
1066
+ Update Tenants. thanks Nelvin Driz
1067
+ Update Tenants (Complete CRUD). thanks Nelvin Driz
1068
+ Fix Identity Authentication Conditions on Endpoint Detection. thanks Nelvin Driz
1069
+ Add User List and Delete User Mocks. thanks Nelvin Driz
1070
+ Update Fog to Accomodate Tenant Deletion Workaround Workflow. thanks Nelvin Driz
1071
+ Fix status code expectation. thanks Nelvin Driz
1072
+ Added function to add user to a tenant. thanks Philip Mark Deazeta
1073
+ Added function to add user to a tenant. thanks Philip Mark Deazeta
1074
+ fixes for mocks. thanks geemus
1075
+
1076
+ [openstack|image]
1077
+ Added set_tenant. thanks Alvin Garcia
1078
+ Added copy_from attribute. thanks Alvin Garcia
1079
+ Update Image Service Authentication Options. thanks Nelvin Driz
1080
+ Added image service, model and request. thanks Philip Mark Deazeta
1081
+ Added test for models and request. thanks Philip Mark Deazeta
1082
+ Added image module, model and request. thanks Philip Mark Deazeta
1083
+ Image Model Updates. thanks Philip Mark Deazeta
1084
+ Refactor Dynamic Methods on Image Model. thanks Philip Mark Deazeta
1085
+
1086
+ [openstack|volume]
1087
+ Volume Endpoints Support. thanks Marjun Pagalan
1088
+ Volume Snapshot CRUD. thanks Marjun Pagalan
1089
+ Volume attach/detach to Server. thanks Marjun Pagalan
1090
+ Added volume service requests. thanks Philip Mark M. Deazeta
1091
+ fix on module name. thanks Philip Mark M. Deazeta
1092
+ Added volume model. thanks Philip Mark M. Deazeta
1093
+
1094
+ [ovirt]
1095
+ fixed list storage domain test. thanks Amos Benari
1096
+
1097
+ [rackspace|compute]
1098
+ fix rackspace server compare. thanks Josh Lane & Jason Hansen
1099
+ default images. thanks Josh Lane & Jason Hansen
1100
+ Images#all returns data. thanks Josh Lane & Jason Hansen
1101
+ fixes for mock images. thanks geemus
1102
+
1103
+ [rackspace|lb]
1104
+ added support for algorithm on create. thanks Brian Hartsock
1105
+ fixed broken tests due to API contract changes. thanks Brian Hartsock
1106
+
1107
+ [rackspace|loadbalancers]
1108
+ fixed broken tests. thanks Brian Hartsock
1109
+
1110
+ [rackspace|storage|file]
1111
+ copy method now use the options hash and apply content type. thanks Matthias Gröbner
1112
+
1113
+ [rackspace|storage|files]
1114
+ fix iteration. thanks Matthias Gröbner
1115
+
1116
+ [slicehost]
1117
+ remove (now deprecated) slicehost support. thanks geemus
1118
+
1119
+ [storage|aws]
1120
+ fix location stuff to allow creating new buckets properly. thanks geemus
1121
+
1122
+ [vcloud]
1123
+ Remove some un-needed debug information. thanks Lincoln Stoll
1124
+
1125
+ [vpc-fixes]
1126
+ AWS security group model + VPC. thanks Sean Porter
1127
+
1128
+ [vsphere]
1129
+ force poweroff of instance of vmware tools are not installed. thanks Ohad Levy
1130
+ adds memory and cpu server attributes. thanks Ohad Levy
1131
+ adds support to get and set vnc console. thanks Ohad Levy
1132
+
1133
+ [xenserver]
1134
+ Added missing Server.tags attribute. thanks Sergio Rubio
1135
+ fix tags to skip tests without credentials. thanks geemus
1136
+
1137
+
1138
+ 1.3.1 03/27/2012 f0f692456956fe2e414ef8205d0268259901644a
1139
+ =========================================================
1140
+
1141
+ Stats! { 'collaborators' => 32, 'downloads' => 527366, 'forks' => 392, 'open_issues' => 27, 'watchers' => 1901 }
1142
+
1143
+ MVP! George Scott
1144
+
1145
+ [aws|dns]
1146
+ Preserves change_id. Support for checking sync status via reload. thanks George Scott
1147
+ Changed #insync? to #ready?. thanks George Scott
1148
+
1149
+ [ibm]
1150
+ avoid using constants (Rails loads files multiple times, issue #807). thanks Decklin Foster
1151
+ Make usage of #state rather than #status consistent. thanks Decklin Foster
1152
+
1153
+ [ibm|compute]
1154
+ Add clone/destroy methods and tests to Image. thanks Decklin Foster
1155
+ Add request test for list_vlans and fix mock. thanks Decklin Foster
1156
+
1157
+ [ibm|storage]
1158
+ Restore storage_area, platform_version, clone_status Volume attributes. thanks Decklin Foster
1159
+
1160
+ [misc]
1161
+ Allow custom headers in Storage#put_object_url. thanks Jacob Mattingley
1162
+ Use https_url instead of deprecated url for put_object_url. thanks Jacob Mattingley
1163
+ Adding Vlan class to IBM SmartCloud. thanks Joe Kinsella
1164
+ bump excon dep to get jruby openssl fixes. thanks geemus
1165
+
1166
+ [storage]
1167
+ properly update content-type at save time for file models. thanks geemus
1168
+
1169
+
1170
+ 1.3.0 03/21/2012 f78afe98242a60ae4dbbfcd8c5ab67ba71c6d773
1171
+ =========================================================
1172
+
1173
+ Stats! { 'collaborators' => 32, 'downloads' => 513974, 'forks' => 387, 'open_issues' => 24, 'watchers' => 1893 }
1174
+
1175
+ MVP! Decklin Foster
1176
+
1177
+ [aws|cloud_watch]
1178
+ GitHub Edit! s/prodide/provide/ :v:. thanks Dylan Egan
1179
+
1180
+ [aws|simpledb]
1181
+ fix region/host for us-east-1. thanks geemus
1182
+
1183
+ [ibm]
1184
+ Added Mocking and Tests. thanks Carl Hicks
1185
+ Moar convenience methods for servers. thanks Carl Hicks
1186
+ Update model for Volume. thanks Carl Hicks
1187
+ Added request tests for addresses. thanks Carl Hicks
1188
+ Initial IBM SmartCloud support. thanks Decklin Foster
1189
+ Add Location model and requests. thanks Decklin Foster
1190
+ Rename collection requests get->list so we have get_foo and list_foos. thanks Decklin Foster
1191
+ Don't need json_body, so we can simplify requests; remove unused params. thanks Decklin Foster
1192
+ Pass optional params to requests with hashes. thanks Decklin Foster
1193
+ Add a InstanceType model, returned as part of Images. thanks Decklin Foster
1194
+ Rename model test files into compute, storage dirs. thanks Decklin Foster
1195
+ Remove trailing whitespace. thanks Decklin Foster
1196
+ Update tests to match model arguments (attribs hash) and lower-level request methods. thanks Decklin Foster
1197
+ Update mocks to reflect moving volume models from from compute to storage. thanks Decklin Foster
1198
+ Add some missing mocks, fix list_instances. thanks Decklin Foster
1199
+ Raise NotFound in mock instead of returning a 404. thanks Decklin Foster
1200
+ Fix form_encode to stringify args (e.g. booleans) to URI.escape. thanks Decklin Foster
1201
+ Typos in state names and status vs. state. thanks Decklin Foster
1202
+ Fix key model for passing public_key, add setting/testing whether key is default. thanks Decklin Foster
1203
+ Setting default key returns success, not key name. thanks Decklin Foster
1204
+ Typo, assignment instead of equality, made some tests incorrectly pass. thanks Decklin Foster
1205
+ Flesh out modify_instance and modify_key for different modes. thanks Decklin Foster
1206
+ Restarting should return success, changing expiration should only return time. thanks Decklin Foster
1207
+ Delete instance mock should return success. thanks Decklin Foster
1208
+ Remove IBM from flavors tests. thanks Decklin Foster
1209
+ Make names used in tests unique using current time. thanks Decklin Foster
1210
+ Add vlan_id attrib so that it can be used in creating an instance. thanks Decklin Foster
1211
+ Return nil for public_hostname if primary_ip unset (e.g. state is Failed). thanks Decklin Foster
1212
+ Change default location and image ID. thanks Decklin Foster
1213
+ Rename ibm_user_id -> ibm_username. thanks Decklin Foster
1214
+ Create temporary keys in tests that need to create instances. thanks Decklin Foster
1215
+ servers are not sorted, don't assume we can just take the last. thanks Decklin Foster
1216
+ create_image should do a PUT, not a POST, and needs 'state' param. thanks Decklin Foster
1217
+ Correct spelling of test volume format ('RAW') and fix parameter typo. thanks Decklin Foster
1218
+ Rename data -> body. thanks Decklin Foster
1219
+ Don't reboot or immediately expire, interferes with other tests. thanks Decklin Foster
1220
+ Use Raleigh location for tests. thanks Decklin Foster
1221
+ Nullable formats for attributes that may not be returned. thanks Decklin Foster
1222
+ Set expire a few seconds in the future since it takes a while to process. thanks Decklin Foster
1223
+ Return nil if instance_id is nil. thanks Decklin Foster
1224
+ Can't access Fog::Compute::IBM::Location class from here, just check if ID returned. thanks Decklin Foster
1225
+ servers.length will include already existing servers. thanks Decklin Foster
1226
+ Add state and ready? method to Image. thanks Decklin Foster
1227
+ Change public key format. thanks Decklin Foster
1228
+ vlan is part of primaryIP. thanks Decklin Foster
1229
+ Rename root_only -> is_mini_ephemeral. thanks Decklin Foster
1230
+ Description is mandatory. thanks Decklin Foster
1231
+ Wait for instance to be ready before deleting it or creating image. thanks Decklin Foster
1232
+ Add state/ready? methods for Address. thanks Decklin Foster
1233
+ Expiration time should be epoch in ms. thanks Decklin Foster
1234
+ launched_at convenience method. thanks Decklin Foster
1235
+ Don't set server to nil. thanks Decklin Foster
1236
+ Set a longer timeout on all wait_for calls. thanks Decklin Foster
1237
+ Generated key needs different name, supplied key only returns success. thanks Decklin Foster
1238
+ Invalid instance creation will return a 412 and thus raise PreconditionFailed. thanks Decklin Foster
1239
+ Don't calculate expiration time until ready to make the request. thanks Decklin Foster
1240
+ Fix volume formats and mocks. thanks Decklin Foster
1241
+ Wait for volume to be ready before deleting. thanks Decklin Foster
1242
+ Mark volume attach/detach pending, won't create instance. thanks Decklin Foster
1243
+ Return pending if provisioning times out in the real tests. thanks Decklin Foster
1244
+ adding documentation. thanks Wyatt Walter
1245
+ add bin helpers for storage. thanks geemus
1246
+
1247
+ [misc]
1248
+ ovirt added support for 'set vm ticket'. This api call is needed for openning a console to the server. thanks Amos Benari
1249
+ wrangled security tests into working. thanks Eric Stonfer
1250
+ Changes to the security group handling: * CreateSecurityGroup now includes the group id in the reply, this patch makes the code store this * The patch also changes the delete call to use the group id if present (since you must use the id when deleting VPC groups). thanks MaF
1251
+ Changes to the security group handling: * CreateSecurityGroup now includes the group id in the reply, this patch makes the code store this * The patch also changes the delete call to use the group id if present (since you must use the id when deleting VPC groups) * Fix teh security group mock and test code to handle this new behavior. thanks MaF
1252
+ Removed merge commit. thanks MaF
1253
+
1254
+ [release]
1255
+ add Kevin Menard to future MVP exclusion list. thanks geemus
1256
+
1257
+ [storage|aws]
1258
+ fix hardcoded host in get_object_http(s)_url methods. thanks geemus
1259
+
1260
+
1261
+ 1.2.0 03/19/2012 70e0f48fa446dbf233ae31c4f055eb26ea2dadd1
1262
+ =========================================================
1263
+
1264
+ Stats! { 'collaborators' => 30, 'downloads' => 508132, 'forks' => 384, 'open_issues' => 23, 'watchers' => 1874 }
1265
+
1266
+ MVP! Kevin Menard
1267
+
1268
+ [AWS]
1269
+ Compute: The security group parser was not parsing groupid properly. thanks Christopher Oliver
1270
+
1271
+ [AWS|DynamoDB]
1272
+ table requests. thanks geemus
1273
+ cleanup/fixes for tables. thanks geemus
1274
+ item requests. thanks geemus
1275
+ update item should not be idempotent when an action is specified. thanks geemus
1276
+ fix for UpdateItem idempotency. thanks geemus
1277
+ first pass at query/scan requests. thanks geemus
1278
+ ConsumedCapacityUnits should be a Float. thanks geemus
1279
+ add missing pending for mocked tests. thanks geemus
1280
+
1281
+ [AWS|ELB]
1282
+ Added support for InstanceProtocol to listeners. thanks James Stremick
1283
+ Updating listener and LB tests to include InstancePort checks. thanks James Stremick
1284
+
1285
+ [AWS|Storage]
1286
+ versioning related fixes copy_object mocks. thanks geemus
1287
+ fix for put_bucket_website mock. thanks geemus
1288
+ remove redundant mock setup in tests #731. thanks geemus
1289
+
1290
+ [AWS|storage]
1291
+ fix for versioned copy_object. thanks geemus
1292
+
1293
+ [Brightbox]
1294
+ Updates to format tests. thanks Paul Thornthwaite
1295
+ Updated Server output format. thanks Paul Thornthwaite
1296
+ Updated format test to use correct link name. thanks Paul Thornthwaite
1297
+ Updated Image format for min_ram attribute. thanks Paul Thornthwaite
1298
+ Updated LoadBalancer format to include listeners in listing. thanks Paul Thornthwaite
1299
+ Updated format for nested firewall policies. thanks Paul Thornthwaite
1300
+ Merge in various spec corrections. thanks Paul Thornthwaite
1301
+ Update format test to not fail on new attributes in JSON. thanks Paul Thornthwaite
1302
+ Load balancer listener timeouts are now reported. thanks Paul Thornthwaite
1303
+ Correct server snapshot test. thanks Paul Thornthwaite
1304
+
1305
+ [Compute|OpenStack]
1306
+ match auth response to stable/diablo branch of keystone. thanks Todd Willey
1307
+
1308
+ [Rackspace|Storage]
1309
+ set put_object to idempotent. thanks geemus
1310
+
1311
+ [aws]
1312
+ add sts helper. thanks geemus
1313
+
1314
+ [aws|compute]
1315
+ Fixed failing instance tests. thanks Christopher Oliver
1316
+ Update API version and support new DescribeInstanceStatus format. thanks Dan Peterson
1317
+ Fix allocate_address mocking. thanks Dan Peterson
1318
+ Mock detach_volume should raise proper error if volume is not attached. thanks Dan Peterson
1319
+ added group id to security group parser and model. thanks bdorry
1320
+ added security group get by id method. thanks bdorry
1321
+
1322
+ [aws|dns]
1323
+ Record identity is 'Name'. thanks Aaron Suggs
1324
+ Add Record#modify method. thanks Aaron Suggs
1325
+ Add model tests. thanks Aaron Suggs
1326
+ add test for Record#modify. thanks Aaron Suggs
1327
+ Parse IsTruncated as boolean in list_resource_record_set. thanks Aaron Suggs
1328
+ Add support for aliasing records to Elastic Load Balancers (API 2011-05-05). thanks James Miller
1329
+
1330
+ [aws|elb]
1331
+ start working on policies. :v:. thanks Dylan Egan
1332
+ create policies, describe policies, fix old mocking and yup. :v:. thanks Dylan Egan
1333
+ PolicyNotFound. :v:. thanks Dylan Egan
1334
+ remove test debugging. :v:. thanks Dylan Egan
1335
+ actually raise a PolicyNotFound. :v:. thanks Dylan Egan
1336
+ InstanceProtocol support. :v:. thanks Dylan Egan
1337
+
1338
+ [aws|fog]
1339
+ crapiness and hacks. :v:. thanks Dylan Egan
1340
+
1341
+ [aws|iam]
1342
+ Mock upload_server_certificate errors if private key is not RSA. thanks Dan Peterson
1343
+ P. :v:. thanks Dylan Egan
1344
+
1345
+ [aws|rds]
1346
+ Mock DB snapshot requests. thanks Aaron Suggs
1347
+ Enabled model tests that pass when mocking. thanks Aaron Suggs
1348
+
1349
+ [aws|storage]
1350
+ Simple multipart uploads; supports files > 5GB. thanks Aaron Suggs
1351
+ Automatically abort multipart uploads on exceptions. thanks Aaron Suggs
1352
+ Add mock for Fog::Storage::AWS#put_bucket_website. thanks Garret Alfert
1353
+ Handle S3 object deletions in the face of versioning. thanks Kevin Menard
1354
+ Return the object version in the request header and set an attribute value in the model. thanks Kevin Menard
1355
+ Allow options to be passed to the destroy method, facilitating passing of versionId. thanks Kevin Menard
1356
+ Added ability to control bucket versioning from Directory model. thanks Kevin Menard
1357
+ Added the ability to fetch a list of versions from a file. thanks Kevin Menard
1358
+ Allow passing of options to fetching versions. thanks Kevin Menard
1359
+ Added the pagination offset params to the get_object_bucket_versions parser. thanks Kevin Menard
1360
+ Added the MfaDelete value to the get_bucket_versioning parser. thanks Kevin Menard
1361
+ Fix put bucket website test, request returns not found when the bucket does not exist. thanks Peter Weldon
1362
+ Add bucket lifecycle / object expiration requests. thanks Peter Weldon
1363
+ make head_object idempotent. thanks geemus
1364
+ direct https urls to subdomains even with dots this may result in ssl warnings, but that seems better than the alternative (redirects) see #611. thanks geemus
1365
+
1366
+ [aws|storage|test]
1367
+ use a random directory key; prevent collision. thanks Aaron Suggs
1368
+ Mark multipart upload test as pending. thanks Aaron Suggs
1369
+ Added mock support for setting and retrieving versioning on a bucket. thanks Kevin Menard
1370
+ Added in versioning support for S3 objects, sans deletion markers. thanks Kevin Menard
1371
+ Track if the version is the latest or not. thanks Kevin Menard
1372
+ Basic handling of version-id-marker. thanks Kevin Menard
1373
+ Added the ability to get_object by versionId. thanks Kevin Menard
1374
+ Added S3 versioning support for delete_object. thanks Kevin Menard
1375
+ Deal with suspended buckets properly. thanks Kevin Menard
1376
+ Added request tests for put_bucket_versioning and get_bucket_versioning. thanks Kevin Menard
1377
+ Added tests for get_bucket_object_versions. thanks Kevin Menard
1378
+ Added request test for get_object with versioning. thanks Kevin Menard
1379
+ Added request tests for delete_object with versioning. thanks Kevin Menard
1380
+ Added failing request test for delete_object with versioning. thanks Kevin Menard
1381
+ Added in some file and directory model tests. thanks Kevin Menard
1382
+ Added model tests for versioning Directory and File models. thanks Kevin Menard
1383
+ Added tests for the Version model. thanks Kevin Menard
1384
+ Added versioning test for Files collection. thanks Kevin Menard
1385
+ Added versioning tests for Versions collection. thanks Kevin Menard
1386
+ Added versioning test for Files#head. thanks Kevin Menard
1387
+ Removed a commented-out test. thanks Kevin Menard
1388
+ Make sure tests pass with both mocking enabled and disabled. thanks Kevin Menard
1389
+ Fixed a regression with mocked get_bucket requests, due to a change in the mock data ordering. thanks Kevin Menard
1390
+ Fixed handling of options in mocked get_bucket_object_versions. thanks Kevin Menard
1391
+ Replaced random ETag implementation with MD5, per S3 docs. thanks Kevin Menard
1392
+
1393
+ [aws|sts]
1394
+ make get_*_token requests idempotent. thanks geemus
1395
+
1396
+ [beanstalk]
1397
+ avoid one remaining error with mocked tests. thanks geemus
1398
+
1399
+ [cloudstack]
1400
+ Fix warning in ruby 1.8.7. thanks Aaron Suggs
1401
+ added additional networking support and volume management commands. thanks Brian Dorry
1402
+ added unit tests. thanks Brian Dorry
1403
+ skip ssl verification. thanks geemus
1404
+
1405
+ [cloudstack|compute]
1406
+ merged in upstream. thanks bdorry
1407
+ added ssh key support, snapshot policy support. thanks bdorry
1408
+ added update resource count action. thanks bdorry
1409
+
1410
+ [compute|aws]
1411
+ fix for describe_images parser that accidently split records. thanks geemus
1412
+ fix error in describe_security_groups parser closes #678. thanks geemus
1413
+
1414
+ [compute|cloudstack]
1415
+ added basic cloudstack list support. thanks bdorry
1416
+ added user management support. thanks bdorry
1417
+ added domain management support. thanks bdorry
1418
+ added domain management support, added documentation links to existing cloudstack requests. thanks bdorry
1419
+
1420
+ [core]
1421
+ no need to expand the already exanded __LIB_DIR__. thanks geemus
1422
+ update connection to use new excon response_block format. thanks geemus
1423
+
1424
+ [docs]
1425
+ Update GitHub repository references from geemus/fog to fog/fog. thanks Benjamin Manns
1426
+
1427
+ [dynect|dns]
1428
+ Pass zone.records.all options through to get_node_list. thanks Dan Peterson
1429
+
1430
+ [glesys|compute]
1431
+ fix for changes in api. thanks Anton Lindström
1432
+
1433
+ [joyent|compute]
1434
+ rename _test files to _tests for shindo. thanks geemus
1435
+ make password required. thanks geemus
1436
+ fix format of joyent to match real output and remove mock-only test. thanks geemus
1437
+
1438
+ [local|storage]
1439
+ Fix Local::File deletion for Ruby 1.8. thanks Benjamin Manns
1440
+ Add copy_object method to Local::Storage. thanks Benjamin Manns
1441
+ Add copy method to Local::File. thanks Benjamin Manns
1442
+
1443
+ [misc]
1444
+ whitespace. thanks Aaron Suggs
1445
+ fix typo in comment. thanks Aaron Suggs
1446
+ whitespace cleanup. thanks Aaron Suggs
1447
+ Refactor to support ruby 1.8.7. thanks Aaron Suggs
1448
+ Whoops, don't need to require digest/md5. thanks Aaron Suggs
1449
+ whitespace. thanks Aaron Suggs
1450
+ Adds Supprt for oVirt (http://ovirt.org). thanks Amos Benari
1451
+ oVirt: Added tests to work on both real and mock. thanks Amos Benari
1452
+ Removing duplicates from reservation's groupSet. thanks Artem
1453
+ Remove coverage Rake task. thanks Benjamin Manns
1454
+ Remove a step that referenced a private config file. thanks Bob Briski
1455
+ updated cloudstack tests for user level permissions, added ssh key, disk offering, service offering, os type, security group tests. thanks Brian Dorry
1456
+ Adding update_firewall_rule request. thanks Caius Durling
1457
+ Correct an error with long keys where Base64.encode64 would add "\n" at 60 chars. thanks Chris Hasenpflug
1458
+ Use gsub for Ruby 1.8.7 compatibility. thanks Chris Hasenpflug
1459
+ Correct copy & paste error. thanks Chris Hasenpflug
1460
+ implement #scp_download method to allow downloads in addition to uploads via scp. alias #scp method as #scp_upload. thanks Christoph Schiessl
1461
+ tests for scp_download. thanks Christoph Schiessl
1462
+ Removed various 'puts' statements... thanks Christopher Oliver
1463
+ fix for free choice of region. thanks Daniel Schweighoefer
1464
+ save the region in a instance variable. thanks Daniel Schweighoefer
1465
+ rounding out API coverage in 'Virtual Machine section. thanks David Nalley
1466
+ mock #create_user and #create_access_keys". thanks Edward Muller
1467
+ fix typo. thanks Edward Muller
1468
+ Enable Shindo tests for the mocked methods. thanks Edward Muller
1469
+ Refactor mock data structure. thanks Edward Muller
1470
+ mock #put_user_policy. thanks Edward Muller
1471
+ Mock out #list_users. thanks Edward Muller
1472
+ Mock #delete_user_policy. thanks Edward Muller
1473
+ Move this is Mock.key_id and don't default the path. thanks Edward Muller
1474
+ Add group mock data. thanks Edward Muller
1475
+ Use #has_key? instead of #keys.include?. thanks Edward Muller
1476
+ rework these to use #tap instead. Cleaner IMNSHO. thanks Edward Muller
1477
+ Additional mocks. thanks Edward Muller
1478
+ missing raise. thanks Edward Muller
1479
+ DescribeVolumeStatus. thanks Edward Muller
1480
+ Add code to support the creation and modification of security groups existing in a VPC. thanks Eric Stonfer
1481
+ modified security group tests to accomodate the new security group data model. Also allowed permissions to be nil in the security tests for groups with no ACLs. thanks Eric Stonfer
1482
+ Change default for vpc_id from '' to nil. thanks Eric Stonfer
1483
+ fixed a conditional that was assigining = rather than evaluating == in vsphere clone routine. This resulted in cloning from folders always failing. thanks Eric Stonfer
1484
+ Add the ability to create linked clones in vsphere. thanks Eric Stonfer
1485
+ whitespace fix. thanks Eric Stonfer
1486
+ whitespace fix. thanks Eric Stonfer
1487
+ add a linked clone test scenario, set the vm_clone test to wait, and clean up old servers after the VM clone test. thanks Eric Stonfer
1488
+ linked clone tests. thanks Eric Stonfer
1489
+ This patch allows the ability to create 'blank' vms in vsphere. thanks Eric Stonfer
1490
+ fix list_virtual_machines when using :folder. thanks Eric Stonfer
1491
+ add vm reconfiguration functions for memory cpu / generic spec. thanks Eric Stonfer
1492
+ add subnet and vpc info to instance gets. thanks Eric Stonfer
1493
+ fixed a typo in vm_power_on_tests.rb. thanks Eric Stonfer
1494
+ make eips useable in a VPC. thanks Eric Stonfer
1495
+ associate EIPs in a vpc. thanks Eric Stonfer
1496
+ update autoscaling groups to allow the use of recurrence, start and end times. thanks Eric Stonfer
1497
+ realized that @activity was actually not used. thanks Eric Stonfer
1498
+ fixed some whitespace issues in auto_scaling tests. Fixed auto_scaling tests formats. thanks Eric Stonfer
1499
+ add host based vmotion. thanks Eric Stonfer
1500
+ basic VPC creation. thanks Eric Stonfer
1501
+ [aws]Add in subnets. thanks Eric Stonfer
1502
+ enable_metrics_collection requires a granularity argument (1Minute is the only legal value). thanks Frederick Cheung
1503
+ New file additions for AWS Elastic Beanstalk support. thanks George Scott
1504
+ Added beanstalk service to AWS Provider. thanks George Scott
1505
+ Unit tests for beanstalk. thanks George Scott
1506
+ Now sets pending when mocking for all beanstalk model tests. thanks George Scott
1507
+ environment now uses name as identity. thanks George Scott
1508
+ Added additional convenience methods to application. thanks George Scott
1509
+ remove rubygems require from core.rb. thanks Hemant Kumar
1510
+ Reset the alias_target hash for good measure. thanks James Miller
1511
+ Add a test for ALIAS records. thanks James Miller
1512
+ Cleanups and crazy long sleep to ensure ALIAS zone is found. thanks James Miller
1513
+ Fix linked clone mocked test unhandled exception. thanks Jeff McCune
1514
+ (maint) Whitespace and format only clean up. thanks Jeff McCune
1515
+ added support for server-side encryption on s3. thanks John Parker
1516
+ Switch from NewServers to BareMetalCloud for #773. thanks John Wang
1517
+ Add deprecation warning. thanks John Wang
1518
+ Fixed bug in SQS :receive_message mock. thanks Joshua Krall
1519
+ Fixed a typo in the warning. thanks Kashif Rasul
1520
+ One more typo fix. thanks Kashif Rasul
1521
+ GH-690 Joyent Cloud Provider. thanks Kevin Chan
1522
+ Credentials: cloudapi_* -> joyent_* for consistency. thanks Kevin Chan
1523
+ Revert "[joyent|compute] make password required" This reverts commit 6e93321e29e69cc863aa9d78cdcf1c83203a2fa7. thanks Kevin Chan
1524
+ Fixes dataset tests. thanks Kevin Chan
1525
+ - Fixes tests to run in both mock and non-mock mode - Clean ups and fixes. thanks Kevin Chan
1526
+ Cleanups + Fixes #get_machine test breaking when there are no machines. thanks Kevin Chan
1527
+ cleanups + refactorings + better error reporting per joyent cloudapi spec. thanks Kevin Chan
1528
+ Fixed #673: Zerigo DNS - update_host fails with some options. thanks Kevin Menard
1529
+ Fixed a filename. thanks Kevin Menard
1530
+ implement respond_to? corresponding to method_missing for VirtualBox and libvirt. thanks Konstantin Haase
1531
+ Swap aws_access_key_id and aws_secret_access_key positions in hash to match typical usage convention. thanks Kyle Drake
1532
+ When Exists boolean is not specified, this request is not idempotent. thanks Lance Carlson
1533
+ Scan sort of acts like a GET request, which are idempotent. thanks Lance Carlson
1534
+ Only do a 'head' on the file that we've copied - no need to go download it now, that would defeat the purpose. thanks Lars Pind
1535
+ Improved support for SecurityGroup IDs. thanks MaF
1536
+ We must create the VPC before we can create a security group in it. thanks MaF
1537
+ Changed verify_permission_options in mocked version of authorize_security_group_ingress to accept any ipProtocol for vpc groups. Also changed the security group test to use protocol 42 when testing vpc security_groups. thanks MaF
1538
+ Check if exception has a #response method before calling it, otherwise call #message. thanks Manuel Meurer
1539
+ Fix sync_clock method, only rescue Excon::Errors::HTTPStatusError that are known to have a #response method, let all other exceptions bubble up. thanks Manuel Meurer
1540
+ Updated excon to version ~>0.10.0. Closes #781. thanks Marc Seeger
1541
+ include fission gem. thanks Michael Brodhead & Shai Rosenfeld
1542
+ Move fission from reg dependency to dev dependency per comments on pull request #736. thanks Michael Brodhead & Shai Rosenfeld
1543
+ adding required gem to run the tests. thanks Ohad Levy
1544
+ first cut of cleaning up libvirt server class. thanks Ohad Levy
1545
+ minor cleanups. thanks Ohad Levy
1546
+ fixes libvirt wrong state check. thanks Ohad Levy
1547
+ libvirt - avoids exception if a uuid is not found. thanks Ohad Levy
1548
+ libvirt: servers return nil, not an empty array... thanks Ohad Levy
1549
+ Added basic tests to Ovirt compute provider. thanks Ohad Levy
1550
+ Added check if Fog.mock! should be used in AWS tests. thanks Paul Thornthwaite
1551
+ Nix hardcoded regions: DynamoDB. thanks Pavel Repin
1552
+ Nix hardcoded regions: Autoscaling. thanks Pavel Repin
1553
+ Nix hardcoded regions: CloudFormation. thanks Pavel Repin
1554
+ Nix hardcoded regions: CloudWatch. thanks Pavel Repin
1555
+ Nix hardcoded regions: EC2. thanks Pavel Repin
1556
+ Nix hardcoded regions: ElastiCache. thanks Pavel Repin
1557
+ Nix hardcoded regions: ELB. thanks Pavel Repin
1558
+ Nix hardcoded regions: EMR. thanks Pavel Repin
1559
+ Nix hardcoded regions: RDS. thanks Pavel Repin
1560
+ Nix hardcoded regions: SES. thanks Pavel Repin
1561
+ Nix hardcoded regions: SimpleDB. thanks Pavel Repin
1562
+ Nix hardcoded regions: SNS. thanks Pavel Repin
1563
+ Nix hardcoded regions: SQS (us-east-1 is special). thanks Pavel Repin
1564
+ Nix hardcoded regions: S3 (us-east-1 is special). thanks Pavel Repin
1565
+ Fixing typo "retreive" -> "retrieve". thanks Pedro Nascimento
1566
+ Add the ":idempotent => true" property to create_tags to fix an issue when launching many instance from cluster_chef. thanks Peter C. Norton
1567
+ Ran M-x align-regexp on the hashrockets. thanks Peter C. Norton
1568
+ Passing half of rds/instance_tests.rb shindo tests. thanks Rodrigo Estebanez
1569
+ making shindo tests for security groups in rds. thanks Rodrigo Estebanez
1570
+ Better rds/security_group_test. Mocking rds security_groups. thanks Rodrigo Estebanez
1571
+ Support for rds parameter groups mocking. thanks Rodrigo Estebanez
1572
+ [aws][auto_scaling] Bug fixed: configurations.get(launch-configuration) always shows the first element. thanks Rodrigo Estebanez
1573
+ it doesn't throw an error when the launch configuration doesnt exist. thanks Rodrigo Estebanez
1574
+ [aws][auto_scaling]. Support delete_launch_configuration mocking. thanks Rodrigo Estebanez
1575
+ Added PrivateIpAddress to the list of valid parameters for instance creation. thanks Rusty Geldmacher
1576
+ Add Ecloud version 2.8 as supported. thanks Shai Rosenfeld
1577
+ support alias records in the route53 models. thanks Thom May
1578
+ Remove unused comment / commented code. thanks Todd Willey
1579
+ Fix intial public_url when saving using rackspace_cdn_ssl = true. thanks Zachary Danger Campbell
1580
+ added virtual machine support and security group support. thanks bdorry
1581
+ merged in 0.11.0 release. thanks bdorry
1582
+ merged 1.0.0. thanks bdorry
1583
+ remove latest MVP from future possibilities. thanks geemus
1584
+ examples should use providers.values. thanks geemus
1585
+ fix Fog::Nullable::Boolean to include true/false. thanks geemus
1586
+ update fog.io copyright year. thanks geemus
1587
+ use path style access for https public_urls that include . to avoid certificate issues closes #743. thanks geemus
1588
+ fix AWS get_object_http(s)_url methods to properly use subdomain vs path urls as appropriate closes #611. thanks geemus
1589
+ loosen multi-json dependency closes #757. thanks geemus
1590
+ remove examples as they are not that helpful or well supported. thanks geemus
1591
+ bump excon dep closes #799. thanks geemus
1592
+ bump excon dep. thanks geemus
1593
+ strip ARNs - AWS is sensitive to leading and trailing whitespace/cr/lf. thanks hedgehog
1594
+ allow for bundler+rbenv best practice. thanks hedgehog
1595
+ Rackspace create_image request - pass all options. thanks kbockmanrs
1596
+ Add Blue Box location support. thanks leehuffman
1597
+ Update location UUID. thanks leehuffman
1598
+ Add passing tests. thanks leehuffman
1599
+ Fix location_id typo. thanks leehuffman
1600
+ Add Blue Box location support. thanks leehuffman
1601
+ Update location UUID. thanks leehuffman
1602
+ Add passing tests. thanks leehuffman
1603
+ Fix location_id typo. thanks leehuffman
1604
+
1605
+ [ninefold|storage]
1606
+ Add copy method to Ninefold::File. thanks Benjamin Manns
1607
+
1608
+ [oVirt]
1609
+ Fixed syntax error in ovirt parser. thanks Amos Benari
1610
+ added option to block on start. Start action will block instead of fail. It can be useful in case of start after stop or create. thanks Amos Benari
1611
+ added support for update vm on ovirt. thanks Amos Benari
1612
+ Added VM and Template network-interfaces crud. thanks Amos Benari
1613
+
1614
+ [ovirt|compute]
1615
+ #instance_variables returns Symbols in 1.9.2+. thanks Dan Peterson
1616
+
1617
+ [rackspace/compute]
1618
+ Add 30GB (30720) compute size. thanks Phil Kates
1619
+
1620
+ [rackspace|storage]
1621
+ Add copy_object request. thanks Benjamin Manns
1622
+ Add copy method to Rackspace::File. thanks Benjamin Manns
1623
+
1624
+ [slicehost]
1625
+ add deprecation warnings. thanks geemus
1626
+
1627
+ [storage]
1628
+ fixes for deprecated implicit block usage to excon requests. thanks geemus
1629
+ update get_object requests to use excon response_blocks. thanks geemus
1630
+
1631
+ [storage|test]
1632
+ Run storage tests on a file in a subdirectory. thanks Benjamin Manns
1633
+
1634
+ [storage|tests]
1635
+ Add copy method to storage tests. thanks Benjamin Manns
1636
+ Check that the copied file body matches the original file. thanks Benjamin Manns
1637
+
1638
+ [vcloud]
1639
+ mark mock tests pending. thanks geemus
1640
+
1641
+ [vcloud|compute]
1642
+ rather mock Fog::Vcloud::Connection as this is the right place to mock things. thanks Peter Meier
1643
+ improve models + additional tests. thanks Peter Meier
1644
+ add API version 1.5 compability. thanks Peter Meier
1645
+
1646
+ [vmfusion|compute]
1647
+ Sync fission v0.4.0 plus more. thanks Cody Herriges
1648
+
1649
+ [voxel]
1650
+ update ssl_verify_peer = false setting. thanks geemus
1651
+
1652
+ [vsphere]
1653
+ add to test skip list when lacking credentials. thanks geemus
1654
+
1655
+ [zerigo|dns]
1656
+ Fixed an issue with updating a record since the response body is an empty string, not nil. thanks Kevin Menard
1657
+ Fixed the parser. TTL and priority values can be nil and should not be coerced into integers in that case. thanks Kevin Menard
1658
+
1659
+
1660
+ 1.1.2 12/18/2011 c1873e37e76af83e9de3f3308f3baa0664dd8dc2
1661
+ =========================================================
1662
+
1663
+ Stats! { 'collaborators' => 20, 'downloads' => 351821, 'forks' => 332, 'open_issues' => 21, 'watchers' => 1731 }
1664
+
1665
+ MVP! Stepan G. Fedorov
1666
+
1667
+ [Brightbox]
1668
+ Fix zone_id/flavour_id getter/setter for Server. thanks Hemant Kumar
1669
+ Add zone/server_type attribute for Server. thanks Hemant Kumar
1670
+ Add username to Image. thanks Hemant Kumar
1671
+ Add request for remove_firewall_policy. thanks Hemant Kumar
1672
+ Add model method for remove. thanks Hemant Kumar
1673
+ Change logic of fetching zone and flavour_id. thanks Hemant Kumar
1674
+ Remove name as mandatory parameter for creating server group. thanks Hemant Kumar
1675
+ Add created_at attribute for server_group,policy and firewall rule. thanks Hemant Kumar
1676
+ Updated Image format tests for username. thanks Paul Thornthwaite
1677
+ Updated ServerGroup format for created_at time. thanks Paul Thornthwaite
1678
+
1679
+ [aws|autoscaling]
1680
+ allow sa-east-1 region in mocks. thanks Nick Osborn
1681
+
1682
+ [aws|compute]
1683
+ fix security_group format for mock tests. thanks geemus
1684
+
1685
+ [aws|dns]
1686
+ fix capitilization for records#all options. thanks geemus
1687
+
1688
+ [aws|elb]
1689
+ update SSL certificates on listeners. :christmas_tree:. thanks Dylan Egan
1690
+
1691
+ [aws|storage]
1692
+ Support ACL on copy_object. :v:. thanks Dylan Egan
1693
+
1694
+ [brightbox]
1695
+ Adding *_server actions to ServerGroup model. thanks Caius Durling
1696
+ Pass along server_groups when creating a server. thanks Caius Durling
1697
+ Make update_cloud_ip request work. thanks Caius Durling
1698
+ Firewall models. thanks Paul Thornthwaite
1699
+ Added missing requirement and request arg. thanks Paul Thornthwaite
1700
+ Corrected deprecated argument. thanks Paul Thornthwaite
1701
+ Dynamically select testing image. thanks Paul Thornthwaite
1702
+ Helper to get a test server ready. thanks Paul Thornthwaite
1703
+ Revised tests structure. thanks Paul Thornthwaite
1704
+ Test and fix for API client secret reset. thanks Paul Thornthwaite
1705
+ Test update of reverse DNS for CIP. thanks Paul Thornthwaite
1706
+ Updated default Ubuntu image. thanks Paul Thornthwaite
1707
+ Make Cloud IP model's map nicer to use. thanks Paul Thornthwaite
1708
+ Correctly get Server's IP addresses as strings. thanks Paul Thornthwaite
1709
+ ServerGroup association to Servers. thanks Paul Thornthwaite
1710
+ Replace duplicate remove with move test. thanks Paul Thornthwaite
1711
+ Load balancer request tests expanded. thanks Paul Thornthwaite
1712
+ Request test for snapshotting a server. thanks Paul Thornthwaite
1713
+ fix mock tests. thanks geemus
1714
+
1715
+ [clodo]
1716
+ : Added missing field. thanks NomadRain
1717
+ Some cleanup before pool request. thanks NomadRain
1718
+ add fake credentials for mock tests. thanks geemus
1719
+
1720
+ [clodo|compute]
1721
+ Bug fixes. thanks NomadRain
1722
+ I don't know what is ignore_awful_caching, so i removed it. thanks Stepan G Fedorov
1723
+ server.ssh with password. Not only with key. thanks Stepan G Fedorov
1724
+ Fix Mocks. thanks Stepan G Fedorov
1725
+ Enable get_image_details. thanks Stepan G Fedorov
1726
+ Actualize Mocks. thanks Stepan G. Fedorov
1727
+ Enable :get_image_details. thanks Stepan G. Fedorov
1728
+ Add tests. thanks Stepan G. Fedorov
1729
+ Remove ddosprotect field from Mock. thanks Stepan G. Fedorov
1730
+ Add ip-address management. thanks Stepan G. Fedorov
1731
+ Rename moveip to move_ip_address. thanks Stepan G. Fedorov
1732
+ Enable ip-management. thanks Stepan G. Fedorov
1733
+ Fix delete_server mock. thanks Stepan G. Fedorov
1734
+ Fix move_ip_address behaviour. thanks Stepan G. Fedorov
1735
+ Add ip-address management. thanks Stepan G. Fedorov
1736
+ Rename moveip to move_ip_address. thanks Stepan G. Fedorov
1737
+ Enable ip-management. thanks Stepan G. Fedorov
1738
+ Fix delete_server mock. thanks Stepan G. Fedorov
1739
+ Fix move_ip_address behaviour. thanks Stepan G. Fedorov
1740
+ Added missing field (server.type). thanks Обоев Рулон ибн Хаттаб
1741
+
1742
+ [core]
1743
+ Cast Fog.wait_for interval to float. thanks Aaron Suggs
1744
+ fix exceptions from nil credential value. thanks Blake Gentry
1745
+ `@credential` should always be a symbol. thanks Hunter Haugen
1746
+
1747
+ [docs]
1748
+ note in title that multiple keys is an EC2 thing. thanks geemus
1749
+
1750
+ [glesys|compute]
1751
+ fixed tests due to changes in the api. thanks Anton Lindström
1752
+ fix test formats and whitespaces. thanks Anton Lindström
1753
+
1754
+ [misc]
1755
+ parse SQS timestamps as milliseconds. thanks Andrew Bruce
1756
+ Allow use of sa-east-1 in the ec2 mock as well. thanks Andy Delcambre
1757
+ Enabled tests for setting S3 ACL by id and uri on buckets and objects when mocking. thanks Arvid Andersson
1758
+ Added acl_to_hash helper method to Fog::Storage::AWS. thanks Arvid Andersson
1759
+ Ensuring that get_object_acl and get_bucket_acl mock methods returns a hash representation of the ACL. thanks Arvid Andersson
1760
+ Created Rackspace LB models folder. thanks Brian Hartsock
1761
+ This patch adds the ability to specify security groups by security group id, rather than group name. This is a required feature to use security groups within a VPC. thanks Eric Stonfer
1762
+ indentation change. thanks Eric Stonfer
1763
+ Add the ability to return the security group ID when requesting a SecurityGroupData object. thanks Eric Stonfer
1764
+ fix tests to accomodate the new SecurityGroupId. thanks Eric Stonfer
1765
+ Revert "fix tests to accomodate the new SecurityGroupId". thanks Eric Stonfer
1766
+ fix tests to accomodate the addition of security_group_id. thanks Eric Stonfer
1767
+ indentation fix. thanks Eric Stonfer
1768
+ indentation fix. thanks Eric Stonfer
1769
+ [Brightbox]Add remove_firewall_policy to computer.rb. thanks Hemant Kumar
1770
+ [Brightbox]Protocol is no longer required parameter for firewall. thanks Hemant Kumar
1771
+ Add implementation of DescribeInstanceStatus. thanks JD Huntington & Jason Hansen
1772
+ fixed type-o in rdoc on Fog::DNS:DNSMadeEasy. thanks John Dyer
1773
+ add query options to Fog::Storage::AWS#get_object_https_url. thanks Mateusz Juraszek
1774
+ add options hash to Fog::Storage::AWS::File#url and Fog::Storage::AWS::Files#get_https_url which use get_object_https_url method. thanks Mateusz Juraszek
1775
+ add query param to get_object_http_url for consistency. thanks Mateusz Juraszek
1776
+ Fix regression in Rakefile introduced in 70e7ea13. thanks Michael Brodhead
1777
+ add são paulo/brasil region. thanks Raphael Costa
1778
+ mock create_db_instance. thanks Rodrigo Estebanez
1779
+ mocking describe_db_instance. Fix hash structure in create_db_instance. thanks Rodrigo Estebanez
1780
+ mocking delete_db_instance. thanks Rodrigo Estebanez
1781
+ mocking wait_for through describe_db_instances. thanks Rodrigo Estebanez
1782
+ mocking modify_db_instance and reboot_db_instance. thanks Rodrigo Estebanez
1783
+ raise exception instead of excon response. thanks Rodrigo Estebanez
1784
+ Fixing bug: It always showed the first instance when using get. thanks Rodrigo Estebanez
1785
+ Fixes for issues 616 and 617. thanks Sergio Rubio
1786
+ * remove unnecessary debugging. thanks Sergio Rubio
1787
+ * Add missing recognized :libvirt_ip_command. thanks Sergio Rubio
1788
+ * Add server_name environment variable to ip_command. thanks Sergio Rubio
1789
+ * implement :destroy_volumes in Server.destroy (libvirt provider). thanks Sergio Rubio
1790
+ Add documentation for using multiple ssh keys on AWS. thanks Sven Pfleiderer
1791
+ Update bootstrap description. thanks Sven Pfleiderer
1792
+ Escape underscore charakters. thanks Sven Pfleiderer
1793
+ implement STS support. thanks Thom May
1794
+ Allow use of session tokens in AWS Compute. thanks Thom May
1795
+ handle session tokens for SQS and SimpleDB. thanks Thom May
1796
+ Split [AWS|STS] tests into separate files per #609. thanks Thom May
1797
+ Bug fix, metric_statistic#save would always fail. thanks bmiller
1798
+ bump excon dep. thanks geemus
1799
+ bump excon dep. thanks geemus
1800
+ Fixing Rackspace's lack of integer-as-string support as per https://github.com/fog/fog/pull/657#issuecomment-3145337. thanks jimworm
1801
+ add current set of elasticache endpoints. thanks lostboy
1802
+ added sa-east-1 region. thanks thattommyhall
1803
+ Add clodo support. thanks Обоев Рулон ибн Хаттаб
1804
+ Enable clodo support. thanks Обоев Рулон ибн Хаттаб
1805
+
1806
+ [rackspace|dns]
1807
+ error state callbacks now return an error. thanks Brian Hartsock
1808
+ fixed broken test. thanks Brian Hartsock
1809
+ should recognize rackspace_dns_endpoint argument. thanks geemus
1810
+ record should pass priority. thanks geemus
1811
+ mark tests for models pending in mocked mode. thanks geemus
1812
+
1813
+ [rackspace|lb]
1814
+ Fixed bug #644 with HTTP health monitors. thanks Brian Hartsock
1815
+ fix for #650 - Connection logging now loads appropriately. thanks Brian Hartsock
1816
+ added error page requests. thanks Brian Hartsock
1817
+ Added error pages to the model. thanks Brian Hartsock
1818
+ Added list parameter for nodeddress. thanks Brian Hartsock
1819
+ fixed broken test; cleaned up some tests. thanks Brian Hartsock
1820
+
1821
+ [rackspace|load balancers]
1822
+ fixed broken tests. thanks Brian Hartsock
1823
+
1824
+ [rackspace|loadbalancers]
1825
+ Fixed bug in deleting multiple nodes. thanks Brian Hartsock
1826
+
1827
+ [slicehost|compute]
1828
+ update image id in tests. thanks geemus
1829
+
1830
+ [storm_on_demand]
1831
+ fixes for formats in tests. thanks geemus
1832
+
1833
+ [tests | clodo]
1834
+ Added ip-management tests. thanks Stepan G. Fedorov
1835
+ Added ip-management tests. thanks Stepan G. Fedorov
1836
+
1837
+ [tests | clodo ]
1838
+ ddosprotect field must not exist. thanks Stepan G. Fedorov
1839
+
1840
+ [tests | clodo | compute]
1841
+ Add most tests. thanks Stepan G Fedorov
1842
+ Add image tests. thanks Stepan G Fedorov
1843
+
1844
+ [tests | clodo | compute ]
1845
+ create_server - First try. thanks Stepan G Fedorov
1846
+
1847
+ [vcloud]
1848
+ mark tests pending in mocked mode. thanks geemus
1849
+
1850
+ [vcloud|compute]
1851
+ introduce organizations. thanks Peter Meier
1852
+ make networks working also in organizations. thanks Peter Meier
1853
+ remove server from organizations as they are within vApps of vDC. thanks Peter Meier
1854
+ add catalogs to an organization. thanks Peter Meier
1855
+ a vdc does not have a tasklist. thanks Peter Meier
1856
+ introduce vapps. thanks Peter Meier
1857
+ More work on getting server in a useable shape. thanks Peter Meier
1858
+ fix network to the minimum. thanks Peter Meier
1859
+ a vapp might not have any childrens attached. thanks Peter Meier
1860
+ improve models add tests. thanks Peter Meier
1861
+ improve disk info access. thanks Peter Meier
1862
+ improve network. thanks Peter Meier
1863
+ introduce link on a network to parent network. thanks Peter Meier
1864
+ fix an issue if this is not parsed as an array. thanks Peter Meier
1865
+ stopgap fix for test data files. thanks geemus
1866
+ properly namespace vcloud test to prevent breaking others. thanks geemus
1867
+
1868
+ [vsphere]
1869
+ (#10644) Add servers filter to improve clone performance. thanks Jeff McCune
1870
+ fix whitespace issue in yaml for mocks. thanks geemus
1871
+
1872
+
1873
+ 1.1.1 11/11/2011 a468aa9a3445aae4f496b1a51e26572b8379c3da
1874
+ =========================================================
1875
+
1876
+ Stats! { 'collaborators' => 19, 'downloads' => 300403, 'forks' => 300, 'open_issues' => 14, 'watchers' => 1667 }
1877
+
1878
+ [core]
1879
+ loosen net-ssh dependency to avoid chef conflict. thanks geemus
1880
+
1881
+ [misc]
1882
+ 1.1.0 changelog. thanks geemus
1883
+
1884
+
1885
+ 1.1.0 11/11/2011 b706c7ed66c2e760fdd6222e38c68768575483b2
1886
+ =========================================================
1887
+
1888
+ Stats! { 'collaborators' => 19, 'downloads' => 300383, 'forks' => 300, 'open_issues' => 16, 'watchers' => 1667 }
1889
+
1890
+ MVP! Michael Zeng
1891
+
1892
+ [Compute|Libvirt]
1893
+ Take into account a query string can be empty, different on some rubies it gives nil, on some empty string. thanks Patrick Debois
1894
+
1895
+ [OpenStack|compute]
1896
+ fix v2.0 auth endpoints. thanks Todd Willey
1897
+ default metadata to empy hash. thanks Todd Willey
1898
+ add zone awareness. thanks Todd Willey
1899
+
1900
+ [aws]
1901
+ add us-west-2 region. thanks geemus
1902
+
1903
+ [aws|cloud_watch]
1904
+ mark tests pending when mocked. thanks geemus
1905
+
1906
+ [aws|cloudwatch]
1907
+ Add support for put-metric-alarm call. thanks Jens Braeuer
1908
+ Remove duplicate RequestId from response. thanks Jens Braeuer
1909
+ Add mocked implementation of put_metric_alarm. thanks Jens Braeuer
1910
+ Fix whitespace. thanks Jens Braeuer
1911
+ Fix merge error. thanks Jens Braeuer
1912
+ Add mocked version of put_metric_alarm. thanks Jens Braeuer
1913
+
1914
+ [aws|compute]
1915
+ Mock modify_image_attribute add/remove users. thanks Dan Peterson
1916
+ Allow mock tagging to work across accounts. thanks Dan Peterson
1917
+ Fix new instance eventual consistency for the non-filtered case. thanks Dan Peterson
1918
+ Update security group operations. thanks Dan Peterson
1919
+ Test for more invalid security group request input when mocking. thanks Dan Peterson
1920
+ Fix a bug in delete_tags, but come up against a bug in AWS where tags aren't deleted if the resource still exists. thanks Dylan Egan
1921
+ tags are reset when reloading. #570. thanks Dylan Egan
1922
+ fixed sopt_instance_request reply parsing when the original request contained a device mapping. thanks MaF
1923
+ wait_for reload then add server tags. thanks geemus
1924
+ spot request fixes. thanks geemus
1925
+ tweaks for spot request bootstrap. thanks geemus
1926
+ save tags for spot_requests#bootstrap. thanks geemus
1927
+ update ami for windows. thanks geemus
1928
+
1929
+ [aws|elb]
1930
+ Missed a change as part of #545. thanks Dan Peterson
1931
+ use a set union to register new instances. thanks Dylan Egan
1932
+ return only the instance IDs on describe. Use only available availability zones. :v:. thanks Dylan Egan
1933
+ attribute aliases for CanonicalHostedZoneName(ID). :v:. thanks Dylan Egan
1934
+ eventually consistent, like me getting a haircut. :v:. thanks Dylan Egan
1935
+
1936
+ [aws|emr]
1937
+ mark tests pending when mocked. thanks geemus
1938
+
1939
+ [aws|iam]
1940
+ slight cleanup and test with a certificate chain. :cake:. thanks Dylan Egan
1941
+
1942
+ [aws|mock]
1943
+ Dig into mock data instead of instantiating new service objects. thanks Dan Peterson
1944
+
1945
+ [aws|storage]
1946
+ ensure path isn't empty when specifying endpoint. thanks geemus
1947
+
1948
+ [brightbox]
1949
+ Fixed incorrect call to reset_ftp_password. thanks Paul Thornthwaite
1950
+
1951
+ [brightbox|compute]
1952
+ format fixes for tests. thanks geemus
1953
+
1954
+ [core]
1955
+ treat boolean values as a boolean. thanks Peter Meier
1956
+ fix attribute squashing with : in key. thanks Peter Meier
1957
+ all services should recognize :connection_options. thanks geemus
1958
+ separate loggers for deprecations/warnings. thanks geemus
1959
+ avoid duplicates in Fog.providers. thanks geemus
1960
+ more useful structure for Fog.providers. thanks geemus
1961
+ add newlines to logger messages. thanks geemus
1962
+ update stats raketask to point to org. thanks geemus
1963
+ toss out nil-value keys when checking required credentials. thanks geemus
1964
+
1965
+ [dns]
1966
+ Made model tests use uniq domain names. thanks Brian Hartsock
1967
+
1968
+ [dnsmadeeasy|dns]
1969
+ Fix Fog::DNS::DNSMadeEasy::Record#save to handle updating a record correctly. thanks Peter Weldon
1970
+
1971
+ [docs]
1972
+ update links to point to http://github.com/fog/fog. thanks geemus
1973
+
1974
+ [dynect|dns]
1975
+ Automatically poll jobs if we get them. Closes #575. thanks Dan Peterson
1976
+
1977
+ [misc]
1978
+ Change response parameter. thanks Alan Ivey
1979
+ Missing HEAD method. thanks Andrew Newman
1980
+ Missing HEAD method. thanks Andrew Newman
1981
+ Putting version back. thanks Andrew Newman
1982
+ Reformatting and making consistent with other classes. thanks Andrew Newman
1983
+ Missed renam to head_namespace. thanks Andrew Newman
1984
+ Reverting version and date in gemspec. thanks Andrew Newman
1985
+ Formatting. thanks Andrew Newman
1986
+ Removed puts of element name. thanks Arvid Andersson
1987
+ Changes to allow EMR control through fog. thanks Bob Briski
1988
+ Added EMR functions for AWS. thanks Bob Briski
1989
+ Adding tests. thanks Bob Briski
1990
+ merge EMR changes with upstream repo. thanks Bob Briski
1991
+ (#10055) Search vmFolder inventory vs children. thanks Carl Caum
1992
+ Adding a path attribute to the vm_mob_ref hash. thanks Carl Caum
1993
+ Cleanup Attributes#merge_attributes. thanks Hemant Kumar
1994
+ Update S3 doc example to show current API. thanks Jason Roelofs
1995
+ Restructure main website's navigation. thanks Jason Roelofs
1996
+ Add CloudFormation UpdateStack call. thanks Jason Roelofs
1997
+ Minor whitespace change. thanks Jens Braeuer
1998
+ Trailing whitespace cleanup. thanks Jens Braeuer
1999
+ Whitespace cleanup. thanks Jens Braeuer
2000
+ Fix merge error. thanks Jens Braeuer
2001
+ Removed statement about @geemus being only member of collaborators list since it's not true anymore. thanks John Wang
2002
+ Fixes Fog::AWS::Storage#put_(bucket|object)_acl. thanks Jonas Pfenniger
2003
+ Randomize bucket names in tests. thanks Jonas Pfenniger
2004
+ Fix AWS S3 bucket and object tests. thanks Jonas Pfenniger
2005
+ (#10570) Use nil in-place of missing attributes. thanks Kelsey Hightower
2006
+ (#10570) Update `Fog::Compute::Vsphere` tests. thanks Kelsey Hightower
2007
+ We use 'Key' for all S3 objects now. thanks Kevin Menard
2008
+ Implemented mocks for Zerigo. thanks Kevin Menard
2009
+ Updated docs to use newer arg, rather than the old deprecated one. thanks Kevin Menard
2010
+ Added the ability to search Zerigo records for a particular zone. thanks Kevin Menard
2011
+ Return the only element of the array, not the array itself. thanks Kevin Menard
2012
+ Fixed an issue whereby saving an existing record in Zerigo would nil out its value. thanks Kevin Menard
2013
+ added DeleteAlarms, DescribeAlarms and PutMetricAlarms. thanks Michael Zeng
2014
+ re-adding files. thanks Michael Zeng
2015
+ adding describe_alarm_history. thanks Michael Zeng
2016
+ adding diable/enable alarm actions. thanks Michael Zeng
2017
+ added DescribeAlarmHistory request and parser. thanks Michael Zeng
2018
+ fixing describe_alarms and describe_alarms_for_metric requests. thanks Michael Zeng
2019
+ cleaned up requesters and parsers. thanks Michael Zeng
2020
+ added SetAlarmState. thanks Michael Zeng
2021
+ included more response elements, request parameters should now be complete. Included model and collection classes. thanks Michael Zeng
2022
+ bug fixes. thanks Michael Zeng
2023
+ fixed models and added tests. thanks Michael Zeng
2024
+ no need to add rake dep. thanks Michael Zeng
2025
+ revert gempspec date change. thanks Michael Zeng
2026
+ reverting cloud_watch.rb. thanks Michael Zeng
2027
+ reverting cloud_watch.rb. thanks Michael Zeng
2028
+ reverting cloud_watch.rb. thanks Michael Zeng
2029
+ reverting cloud_watch.rb. thanks Michael Zeng
2030
+ reverting cloud_watch.rb. thanks Michael Zeng
2031
+ added newline to the end of file. thanks Michael Zeng
2032
+ removed all tabs. thanks Michael Zeng
2033
+ added alarm_data_tests. thanks Michael Zeng
2034
+ spacing change. thanks Michael Zeng
2035
+ AWS#hash_to_acl - add support for EmailAddress and URI grantee types. thanks Nathan Sutton
2036
+ Test and improve Fog::Storage::AWS.hash_to_acl. thanks Nathan Sutton
2037
+ Adding a method to unmock Fog. Addresses issue #594. thanks Nathan Sutton
2038
+ Adding documentation for Fog.unmock! and Fog::Mock.reset. thanks Nathan Sutton
2039
+ added linode ssh support. thanks Nicholas Ricketts
2040
+ added linode ssh support with proper public ip address. thanks Nicholas Ricketts
2041
+ cleaned up code to use att_XX methods. thanks Nicholas Ricketts
2042
+ clean up public_ip_address code for linode. thanks Nicholas Ricketts
2043
+ Seems like rackspace might have changed this. thanks Nik Wakelin
2044
+ Sends power parameter in GoGrid's grid_server_power request. thanks Pablo Baños López
2045
+ Slicehost uses record-type and zone-id for their API, which messes with Fog internals, so changing these to record_type and zone_id in the parser. thanks Patrick McKenzie
2046
+ Did this do anything?. thanks Patrick McKenzie
2047
+ Revert "Slicehost uses record-type and zone-id for their API, which messes with Fog internals, so changing these to record_type and zone_id in the parser.". thanks Patrick McKenzie
2048
+ Not having the best of days with git. Revert the reversion of the commit that I really do want to make. thanks Patrick McKenzie
2049
+ Slicehost uses record-type and zone-id for their API, which messes with Fog internals, so changing these to record_type and zone_id in the parser. thanks Patrick McKenzie
2050
+ Do not touch .gitignore. thanks Patrick McKenzie
2051
+ Fixing Slicehost DNS so that a) tests pass b) token names map to what Fog expects -- record_type not record-type, value not data, etc c) creation of new DNS records possible. thanks Patrick McKenzie
2052
+ 1) Fix so that getting a single record actually works. 2) zone.records currently returns all records in account, not just records for that zone. Add failing test (temporarily, assumes test account has existing zones for this to actually fail) + fix. 3) Add in data alias for record.value, just in case someone needs it, as Slicehost calls this data. thanks Patrick McKenzie
2053
+ Allow updates of DNS records. Updates on zones not supported yet. thanks Patrick McKenzie
2054
+ Fixing parsing of zone.records.get(id) so that it parses a single record properly rather than attempting to parse a list of records improperly. Fixing tests to match this (expected) behavior rather than work-around the broken way. thanks Patrick McKenzie
2055
+ Getting it so zone.records works as expected (loads all records, for that zone only). thanks Patrick McKenzie
2056
+ simplification. thanks Peter Meier
2057
+ Optimize vSphere convert_vm_mob_ref_to_attr_hash. thanks Rich Lane
2058
+ Compact the way options are mapped to request. thanks Todd Willey
2059
+ Allow setting userdata as plain ascii or b64. thanks Todd Willey
2060
+ bump excon dep. thanks geemus
2061
+ [rackspace][dns] fixes for job request format. thanks geemus
2062
+ bump net-ssh dependency. thanks geemus
2063
+ tshirt offer should be implicit, rather than explicit. thanks geemus
2064
+ add region option to aws sns service recognizes method. thanks lostboy
2065
+ add capabilities support to cloudformation createstack request. thanks lostboy
2066
+
2067
+ [ninefold|storage]
2068
+ omit signature in stringtosign. thanks geemus
2069
+ check objectid for existence. thanks geemus
2070
+ allow overwriting files for consistency. thanks geemus
2071
+
2072
+ [rackspace|dns]
2073
+ Fixed request tests that need unique domain name. thanks Brian Hartsock
2074
+ Adapted to changes in callback mechanism. thanks Brian Hartsock
2075
+
2076
+ [rackspace|load_balancers]
2077
+ made lb endpoint configurable. thanks Brian Hartsock
2078
+
2079
+ [release]
2080
+ omit Patrick Debois from future MVP status. thanks geemus
2081
+
2082
+ [vsphere|compute]
2083
+ test fixes. thanks geemus
2084
+
2085
+
2086
+ 1.0.0 09/29/2011 a81be08ef2473af91f16f4926e5b3dfa962a34ae
2087
+ =========================================================
2088
+
2089
+ Stats! { 'collaborators' => 16, 'downloads' => 245745, 'forks' => 260, 'open_issues' => 13, 'watchers' => 1521 }
2090
+
2091
+ MVP! Patrick Debois
2092
+
2093
+ [Libvirt]
2094
+ if transport is empty, ssh can't be enabled. thanks Patrick Debois
2095
+ Enable to pass an libvirt_ip_command for looking up the mac -> ip_address . Using eval to allow for passing of mac address in ip_command. thanks Patrick Debois
2096
+ corrected typo for appending string output to IO.popen. thanks Patrick Debois
2097
+ initialize the ip_address as an empty string. thanks Patrick Debois
2098
+ more specific error if the ip_command results in string that has no ip-address format. thanks Patrick Debois
2099
+ Remove the newlines after running the local ip_command. thanks Patrick Debois
2100
+ rename xml_desc to xml as an attribute and hide all non_dynamic attributes from fog console. thanks Patrick Debois
2101
+ added blocked state and corrected crashed to shutoff state. thanks Patrick Debois
2102
+ renamed 'raw' connection to raw in the Fog Connection. thanks Patrick Debois
2103
+
2104
+ [Libvirt|Compute]
2105
+ renamed all disk_ params for server creation to volume_ to make it consistent with the object type volume. thanks Patrick Debois
2106
+
2107
+ [aws]
2108
+ remove base64 require (duplicates require in fog/core). thanks geemus
2109
+
2110
+ [aws/sqs]
2111
+ Adding SQS mocking support. thanks Istvan Hoka
2112
+
2113
+ [aws|acs]
2114
+ Create ACS security_group model and collection. thanks Aaron Suggs
2115
+ Improve security group tests. thanks Aaron Suggs
2116
+ Adds ACS#delete_cache_security_group. thanks Benton Roberts
2117
+ Added security group methods. thanks Benton Roberts
2118
+ Update CacheSecurityGroup API to public beta 2011-07-15. thanks Benton Roberts
2119
+
2120
+ [aws|cloudwatch]
2121
+ Fix whitespace. thanks Jens Braeuer
2122
+
2123
+ [aws|compute]
2124
+ add snapshot method to volume model. thanks Andrei Serdeliuc
2125
+ Correct path. thanks Dylan Egan
2126
+ raise an ArgumentError if image_id is nil, otherwise an ugly InternalError is returned from AWS. thanks Dylan Egan
2127
+ wait for ready before testing tags. thanks geemus
2128
+ fixes for mocks tests. thanks geemus
2129
+ fix formatting for mock security groups. thanks geemus
2130
+
2131
+ [aws|dns]
2132
+ fix parser path. thanks geemus
2133
+
2134
+ [aws|elasticache]
2135
+ refactor acs->elasticache. thanks Benton Roberts
2136
+ refactor for whitespace / readability. thanks Benton Roberts
2137
+ fix typo in Elasticache Security Group tests. thanks Benton Roberts
2138
+ rename test file for shindo. thanks Benton Roberts
2139
+ create and describe cache clusters. thanks Benton Roberts
2140
+ delete cache clusters. thanks Benton Roberts
2141
+ add Cache Cluster model and collection. thanks Benton Roberts
2142
+ Fix bug in AWS::Elasticache::Cluster.get. thanks Benton Roberts
2143
+ randomize cache cluster IDs in testing. thanks Benton Roberts
2144
+ return nil on CacheClusterNotFound. thanks Benton Roberts
2145
+ use Formatador for testing output. thanks Benton Roberts
2146
+ move ClusterNotFound rescue code into Elasticache service definition. thanks Benton Roberts
2147
+ change method profile for create_cache_cluster, delete_cache_cluster, and describe_cache_clusters. thanks Benton Roberts
2148
+ change parameters for describe_cache_security_groups to ruby-friendly values. thanks Benton Roberts
2149
+ remove port attribute from cluster model. thanks Benton Roberts
2150
+ fix Elasticahce::Cluster.security_groups attribute. thanks Benton Roberts
2151
+ implement modify_cache_cluster request. thanks Benton Roberts
2152
+ cluster port number cannot be modified. thanks Benton Roberts
2153
+ add cache node info to describe_cache_clusters. thanks Benton Roberts
2154
+ add InvalidInstace error class. thanks Benton Roberts
2155
+ remove optional parameters from Elasticache::Cluster. thanks Benton Roberts
2156
+ show cluster node details by default in model. thanks Benton Roberts
2157
+ add test for removing a cache node. thanks Benton Roberts
2158
+ add pending_values to modified nodes. thanks Benton Roberts
2159
+ implement RebootCacheCluster. thanks Benton Roberts
2160
+ implement DescribeEvents. thanks Benton Roberts
2161
+ implement basic parameter group requests. thanks Benton Roberts
2162
+ implement describe_engine_default_parameters request. thanks Benton Roberts
2163
+ implement Elasticache::ParameterGroup model and collection. thanks Benton Roberts
2164
+ implement modify_cache_parameter_group request. thanks Benton Roberts
2165
+ implement reset_cache_parameter_group request. thanks Benton Roberts
2166
+ implement describe_cache_groups request. thanks Benton Roberts
2167
+ test fix: change DESCRIBE_SECURITY_GROUPS helper format. thanks Benton Roberts
2168
+ delete outdated test file. thanks Benton Roberts
2169
+
2170
+ [aws|elb]
2171
+ Raise a custom exception for Throttling. thanks Dylan Egan
2172
+ wait_for server to be ready? before register. thanks geemus
2173
+
2174
+ [aws|iam]
2175
+ implement correct path behaviour in mocking. thanks Dylan Egan
2176
+
2177
+ [aws|simpledb]
2178
+ fix tests to use proper accessor. thanks geemus
2179
+
2180
+ [aws|storage]
2181
+ fix acl mocking. thanks geemus
2182
+
2183
+ [bluebox|compute]
2184
+ Fixed instance state. thanks Lee Huffman
2185
+ Create and destroy images. thanks Lee Huffman
2186
+ Fix for setting hostname on server save. thanks Lee Huffman
2187
+ Expect correct status code for template create. thanks Lee Huffman
2188
+
2189
+ [cdn|aws]
2190
+ move aws cdn to its own shared area (namespacing should probably be corrected). thanks geemus
2191
+
2192
+ [cdn|rackspace]
2193
+ move rackspace cdn to its own shared area (namespacing should probably be corrected). thanks geemus
2194
+
2195
+ [compute]
2196
+ fix service calls I missed in recent rearrange. thanks geemus
2197
+
2198
+ [compute|aws]
2199
+ - Change modify_instance_attribute name to match EC2 API method, and actually make it do something. thanks Caleb Tennis
2200
+ Include ids of things we're modifying in requests. thanks Dan Peterson
2201
+ Fix create_volume mock when creating from a snapshot. thanks Dan Peterson
2202
+ Make get_bucket_location mock return LocationConstraint as API doc describes. thanks Dan Peterson
2203
+ Fix associate_address mock to detach/revert previous addresses properly. thanks Dan Peterson
2204
+ Don't warn in mock describe_snapshots if RestorableBy is 'self'. thanks Dan Peterson
2205
+ When mocking, instances don't show up right away. thanks Dan Peterson
2206
+ Suffix with _tests.rb. thanks Dylan Egan
2207
+ IpPermissionsEgress is returned from AWS. thanks Dylan Egan
2208
+ Simple test to verify revoke_group_and_owner behaviour. thanks Dylan Egan
2209
+ Apparently passing a nil value works against live AWS. Only use SourceSecurityGroupOwnerId in mocks if supplied. thanks Dylan Egan
2210
+ Since this is really proving the use of nil, let's just not pretend there's a value for owner_id. thanks Dylan Egan
2211
+ sometimes the platform string is returned. thanks Dylan Egan
2212
+ enable tests for mocked tags. thanks Dylan Egan
2213
+ Fix NameError. thanks Jens Braeuer
2214
+ Fix bug in tag mocking preventing servers from being updated with new tags. thanks Matt Griffin
2215
+ Add mocking for describe_tags. thanks Matt Griffin
2216
+ move aws compute to its own shared area (namespacing should probably be corrected). thanks geemus
2217
+
2218
+ [compute|bluebox]
2219
+ move bluebox compute to its own shared area (namespacing should probably be corrected). thanks geemus
2220
+
2221
+ [compute|brightbox]
2222
+ Allow persistent option to be passed to Brightbox::Compute. thanks Caius Durling
2223
+ Updated test for new behaviour. thanks Paul Thornthwaite
2224
+ Picking up more attributes from Account. thanks Paul Thornthwaite
2225
+ No need to hardcode a server type. thanks Paul Thornthwaite
2226
+ Updated and reordered model attributes. thanks Paul Thornthwaite
2227
+ Updates to tests. thanks Paul Thornthwaite
2228
+ Added resave warning to a few Brightbox models. thanks Paul Thornthwaite
2229
+ Requests for server group management. thanks Paul Thornthwaite
2230
+ Merge in test updates and server groups. thanks Paul Thornthwaite
2231
+ Corrected require missed in update. thanks Paul Thornthwaite
2232
+ Reset times to the correct type so not string attributes. thanks Paul Thornthwaite
2233
+ Updated Format test to remove gone fields. thanks Paul Thornthwaite
2234
+ Fixed typo in connection options. thanks Paul Thornthwaite
2235
+ Added missing requests. thanks Paul Thornthwaite
2236
+ Added requests for firewall management. thanks Paul Thornthwaite
2237
+ Added ServerGroup model and collections. thanks Paul Thornthwaite
2238
+ Passing options to server group update. thanks Paul Thornthwaite
2239
+ Fixed server_groups.get. thanks Paul Thornthwaite
2240
+ move brightbox compute to its own shared area (namespacing should probably be corrected). thanks geemus
2241
+
2242
+ [compute|ecloud]
2243
+ move ecloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
2244
+
2245
+ [compute|glesys]
2246
+ added glesys as provider. thanks Anton Lindstrom
2247
+ added tests. thanks Anton Lindström
2248
+ fixed logical error for default values. thanks Anton Lindström
2249
+ fixed an invalid character. thanks Anton Lindström
2250
+ consistency/cleanup. thanks geemus
2251
+ fix format for start vs stop. thanks geemus
2252
+ rearrange to match current naming conventions. thanks geemus
2253
+
2254
+ [compute|go_grid]
2255
+ move go_grid compute to its own shared area (namespacing should probably be corrected). thanks geemus
2256
+
2257
+ [compute|libvirt]
2258
+ merge jedi4ever/libvirt. thanks geemus
2259
+ move libvirt compute to its own shared area (namespacing should probably be corrected). thanks geemus
2260
+
2261
+ [compute|linode]
2262
+ move linode compute to its own shared area (namespacing should probably be corrected). thanks geemus
2263
+
2264
+ [compute|bare_metal_cloud]
2265
+ move bare_metal_cloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
2266
+
2267
+ [compute|ninefold]
2268
+ move ninefold compute to its own shared area (namespacing should probably be corrected). thanks geemus
2269
+
2270
+ [compute|rackspace]
2271
+ move rackspace compute to its own shared area (namespacing should probably be corrected). thanks geemus
2272
+
2273
+ [compute|slicehost]
2274
+ move slicehost compute to its own shared area (namespacing should probably be corrected). thanks geemus
2275
+
2276
+ [compute|storm_on_demand]
2277
+ move storm_on_demand compute to its own shared area (namespacing should probably be corrected). thanks geemus
2278
+
2279
+ [compute|vcloud]
2280
+ move vcloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
2281
+
2282
+ [compute|virtual_box]
2283
+ move virtual_box compute to its own shared area (namespacing should probably be corrected). thanks geemus
2284
+
2285
+ [compute|voxel]
2286
+ move voxel compute to its own shared area (namespacing should probably be corrected). thanks geemus
2287
+
2288
+ [core]
2289
+ Allow FOG_CREDENTIAL env variable for config. thanks Aaron Suggs
2290
+ add collection#destroy(identity). thanks geemus
2291
+ move openssl to more central location. thanks geemus
2292
+ first steps toward seperately requirable bits. thanks geemus
2293
+ move providers to lib/fog/. thanks geemus
2294
+ work toward separate requires. thanks geemus
2295
+ prototype logger. thanks geemus
2296
+ add get/set methods for logger channels. thanks geemus
2297
+ use logger throughout for warnings. thanks geemus
2298
+ coerce service credentials. thanks geemus
2299
+ delete nil valued keys from config. thanks geemus
2300
+ pass connection_options through service init. thanks geemus
2301
+ don't rely on bin stuff for service init in tests. thanks geemus
2302
+ dedup services listings. thanks geemus
2303
+ more convenient accessors. thanks geemus
2304
+ fixing more paths after rearrange. thanks geemus
2305
+ add credentials setter. thanks geemus
2306
+ make sure credentials tests properly reset after completion. thanks geemus
2307
+ bump excon dep. thanks geemus
2308
+ properly fix credentials tests. thanks geemus
2309
+ skip vmfusion in rake nuke. thanks geemus
2310
+ bump excon. thanks geemus
2311
+ kill dns stuff in nuke as well. thanks geemus
2312
+
2313
+ [dns]
2314
+ update dns constructor to match recent file moves. thanks geemus
2315
+
2316
+ [dns|aws]
2317
+ move aws dns to its own shared area (namespacing should probably be corrected). thanks geemus
2318
+
2319
+ [dns|bluebox]
2320
+ move bluebox dns to its own shared area (namespacing should probably be corrected). thanks geemus
2321
+
2322
+ [dns|dnsimple]
2323
+ move dnsimple dns to its own shared area (namespacing should probably be corrected). thanks geemus
2324
+
2325
+ [dns|dnsmadeeasy]
2326
+ move dnsmadeeasy dns to its own shared area (namespacing should probably be corrected). thanks geemus
2327
+
2328
+ [dns|dynect]
2329
+ move dynect dns to its own shared area (namespacing should probably be corrected). thanks geemus
2330
+
2331
+ [dns|linode]
2332
+ move linode dns to its own shared area (namespacing should probably be corrected). thanks geemus
2333
+
2334
+ [dns|rackspace]
2335
+ initial commit. thanks Brian Hartsock
2336
+ list_domains request. thanks Brian Hartsock
2337
+ added attributes to list_domains; refactored rackspace errors to be shared with load balancers. thanks Brian Hartsock
2338
+ move rackspace dns to its own shared area (namespacing should probably be corrected). thanks geemus
2339
+
2340
+ [dns|slicehost]
2341
+ move slicehost dns to its own shared area (namespacing should probably be corrected). thanks geemus
2342
+
2343
+ [dns|zerigo]
2344
+ move zerigo dns to its own shared area (namespacing should probably be corrected). thanks geemus
2345
+
2346
+ [doc]
2347
+ Added blogpost about libvirt into fog to the press page. thanks Patrick Debois
2348
+ corrected the link to the actual blogpost instead of the github markdown page :). thanks Patrick Debois
2349
+
2350
+ [docs]
2351
+ add note about ec2 default username. thanks geemus
2352
+
2353
+ [dynect|dns]
2354
+ use a string for now. #362 is open for accepting symbols in mocks. thanks Dylan Egan
2355
+ return the zone name. thanks Dylan Egan
2356
+ accidentally hardcoded the record type in the mocked data. thanks Dylan Egan
2357
+ support ANY record results. thanks Dylan Egan
2358
+ Don't use address as different records have different arguments, just send rdata. Remove value. Add CNAME test. thanks Dylan Egan
2359
+ find, not first. thanks Dylan Egan
2360
+ always ensure it's an integer. thanks Dylan Egan
2361
+ retry if auth_token was previously set and error message includes possible login expiration. thanks Dylan Egan
2362
+ support reauth for inactivity logout too. thanks Dylan Egan
2363
+
2364
+ [glesys|compute]
2365
+ fixes to play nice with mock tests. thanks geemus
2366
+ skip flavor tests. thanks geemus
2367
+
2368
+ [gleysys]
2369
+ fixes for mocked test setup. thanks geemus
2370
+
2371
+ [libvirt]
2372
+ Added option libvirt_ip_command to the credentials error page. thanks Patrick Debois
2373
+ Corrected template variable from interface_nat_network to network_nat_network. thanks Patrick Debois
2374
+
2375
+ [linode|compute]
2376
+ update format for plans. thanks geemus
2377
+
2378
+ [load balancer|rackspace]
2379
+ fixed some minor bugs i noticed in the tests. thanks Brian Hartsock
2380
+
2381
+ [misc]
2382
+ Fixed a couple of errors in the examples. thanks Bobby Wilson
2383
+ Implement fog support for the Openstack Compute API v1.1. Includes support for legacy v1.0 style auth and v2.0 keystone auth. thanks Dan Prince
2384
+ Add create_image to server model. thanks Dan Prince
2385
+ Add support for non-strict validations, and nullable arrays/hashes. thanks Dan Prince
2386
+ Additions and updates to the OpenStack API tests. thanks Dan Prince
2387
+ Beginning of Dynect::DNS mocking support. thanks Dylan Egan
2388
+ get_record, single. thanks Dylan Egan
2389
+ Tidy up a bit. thanks Dylan Egan
2390
+ Support freeze and thaw. thanks Dylan Egan
2391
+ sleep for 3 seconds when running against Dynect because otherwise there is an operation still in progress. thanks Dylan Egan
2392
+ raise a NotFound if not found. thanks Dylan Egan
2393
+ Fog::DNS::Dynect, not Fog::Dynect::DNS. thanks Dylan Egan
2394
+ InstanceId should have index according to AWS Docs. thanks E.J. Finneran
2395
+ fix indenting to get markdown to recognise the code block properly. thanks Glenn Tweedie
2396
+ Better URL escaping for Rackspace Cloud Files. thanks H. Wade Minter
2397
+ Tweak to escape the Cloud Files filename before passing to public_url. thanks H. Wade Minter
2398
+ Put escaping logic into the collection get_url call. thanks H. Wade Minter
2399
+ (#9241) Add skeleton VMware vSphere platform support. thanks Jeff McCune
2400
+ (#9241) Add SSL verification. thanks Jeff McCune
2401
+ (#9241) Add current_time request. thanks Jeff McCune
2402
+ (#9241) Add model for Fog::Compute[:vsphere].servers. thanks Jeff McCune
2403
+ (#9241) Add test skeleton framework. thanks Jeff McCune
2404
+ (#9241) Add ability to find VMs by UUID. thanks Jeff McCune
2405
+ (#9421) Add start, stop, reboot server model methods. thanks Jeff McCune
2406
+ (#9241) Add destroy API request and model action. thanks Jeff McCune
2407
+ (#9241) Add find_template_by_instance_uuid request. thanks Jeff McCune
2408
+ (#9241) Add vm_clone API request. thanks Jeff McCune
2409
+ (#9241) Don't fail when trying to model a cloning VM. thanks Jeff McCune
2410
+ (#9241) Make the reload action of the server models work. thanks Jeff McCune
2411
+ (#9124) Add ability to reload the model of a cloning VM. thanks Jeff McCune
2412
+ Refactor requests to return simple hashes and add unit tests. thanks Jeff McCune
2413
+ Add vsphere_server connection attribute. thanks Jeff McCune
2414
+ Fix vm clone problem when a Guid instance is passed as the instance_uuid. thanks Jeff McCune
2415
+ Fix documentation. The resulting hash has no entry "PutScalingPolicyResponse", but a "...Result". thanks Jens Braeuer
2416
+ Pass hostname to create_block request if provided. thanks Lee Huffman
2417
+ Added Fog::CurrentMachine#ip_address. thanks Pan Thomakos
2418
+ First cut at libvirt integration. Lots of features missing, but it proves the point. thanks Patrick Debois
2419
+ - Added URI helper to parse libvirt URL's - exposed Libvirt original connection in Compute object - exposed URI in Compute object - added libvirt-ruby gem to the developer Gemspec. thanks Patrick Debois
2420
+ - Get all pools now by name or by uuid - Create pool by providing xml - Destroy pool. thanks Patrick Debois
2421
+ Added ability to create/destroy volumes You can search for volumes by path,key,name And list all volumes from a pool. thanks Patrick Debois
2422
+ Allow creation of persistent or non persistent volumes. thanks Patrick Debois
2423
+ Again major breakthrough. thanks Patrick Debois
2424
+ Coming along nicely. thanks Patrick Debois
2425
+ - ERB has a problem with a variable called type, it expands it on ruby 1.8 to .class - If the key or the volume is not found, maybe because the pool has not yet been started, the volumes should return nil. thanks Patrick Debois
2426
+ Changed the monitoring command for IP addresses arpwatch.dat is not the correct place, it should be via syslog, or seperate file. thanks Patrick Debois
2427
+ fixing whitespace. thanks Patrick Debois
2428
+ removed trailing spaces. thanks Patrick Debois
2429
+ indenting the files. thanks Patrick Debois
2430
+ check ip-address that returned from the search in the logfile. thanks Patrick Debois
2431
+ Added a way to locally retrieve the ipaddress through the ip_command More checks on correctness of ipaddress And checks on ssh failures. thanks Patrick Debois
2432
+ renamed ipaddress to ip_address made the .id available and an alias to uuid for server. thanks Patrick Debois
2433
+ Added description on the libvirt environment can be initialized and the requirements for ssh and ipaddress to work. thanks Patrick Debois
2434
+ Added a global libvirt provider option ip_command to specify the ip_command Also more robust handling of connection error when the libvirt connection fails. thanks Patrick Debois
2435
+ Remove the idea of template_options, now you specify the param directly in the create command. Unit and Size are now calculated. thanks Patrick Debois
2436
+ Removed the template_options param. thanks Patrick Debois
2437
+ Fixed disk_format_type vs disk_type_format difference and changed disk_format_type in the template as well. thanks Patrick Debois
2438
+ added openauth support thanks to @rubiojr. thanks Patrick Debois
2439
+ changed return code of state to string instead of symbols to be consistent with aws provider. thanks Patrick Debois
2440
+ - Added concept of nodes (host of domains = node) - Renamed the shuttingdown to shutting-down mode - fixed the Gem warning on using Gem.find_by_name instead of Gem::Specification. thanks Patrick Debois
2441
+ Added a way to filter the active and the defined servers(domains) using - servers.all(:active => false, :defined=> true). thanks Patrick Debois
2442
+ Fixed empty filter issue, nil filter. thanks Patrick Debois
2443
+ * Fixed an error with memory_size 256 that should be 256*1024 as the default is K nor M * Changed the ip_command to check the ipaddress to include changes not * only new IPaddresses. thanks Patrick Debois
2444
+ Added libvirt options to credentials error. thanks Patrick Debois
2445
+ Made libvirt username param consistent with other providers libvirt_user -> libvirt_username. thanks Patrick Debois
2446
+ [Libvirt] Provided better solution for ip_command : use shell variable instead of ruby string for mac-address. thanks Patrick Debois
2447
+ vmfusion provider , requires the fission gem (pull request pending). thanks Patrick Debois
2448
+ fixed missing disk-> volume conversion. thanks Patrick Debois
2449
+ another log entry style resused old ethernet. thanks Patrick Debois
2450
+ Fix warning about whitespace before parentheses in dns.rb. thanks Rick Bradley
2451
+ Added support fo canned ACLs in put_object_acl. thanks dblock
2452
+ Updated put_bucket_acl to support canned ACLs. thanks dblock
2453
+ Marking as pending. thanks dblock
2454
+ Refactored specs, mocks, etc. thanks dblock
2455
+ Revert "[core] make sure credentials tests properly reset after completion". thanks geemus
2456
+ Update gemspec description to mention popular services that are supported. thanks watsonian
2457
+
2458
+ [ninefold|compute]
2459
+ fixes for list formats. thanks geemus
2460
+ fix for network formats. thanks geemus
2461
+ add default (ubuntu) image for servers. thanks geemus
2462
+
2463
+ [rackspace|dns]
2464
+ all important domains requests. thanks Brian Hartsock
2465
+ zone models. thanks Brian Hartsock
2466
+ records requests. thanks Brian Hartsock
2467
+ record models. thanks Brian Hartsock
2468
+ minor docs update. thanks Brian Hartsock
2469
+ add mock initializer. thanks geemus
2470
+ consistency fixes and tests and mark pending in mocked. thanks geemus
2471
+ fix mock init to play nice with tests. thanks geemus
2472
+ fixes for updates to beta. thanks geemus
2473
+
2474
+ [rackspace|load_balancers]
2475
+ fix path for tests. thanks geemus
2476
+ fixes for tests. thanks geemus
2477
+
2478
+ [rackspace|storage]
2479
+ fix broken model paths. thanks geemus
2480
+
2481
+ [release]
2482
+ update MVP skip list. thanks geemus
2483
+ add collaborator count to changelog stats. thanks geemus
2484
+
2485
+ [storage]
2486
+ Fixed what appeared to be broken test (I only verified with Rackspace provider). thanks Brian Hartsock
2487
+
2488
+ [storage|aws]
2489
+ Add options to File#copy method. thanks Aaron Suggs
2490
+ move aws storage back with other aws stuff (namespacing should probably be recorrected as well). thanks geemus
2491
+
2492
+ [storage|google]
2493
+ move google storage to shared google stuff (namespacing should probably be corrected). thanks geemus
2494
+
2495
+ [storage|local]
2496
+ move local storage to its own shared area (namespacing should probably be corrected). thanks geemus
2497
+
2498
+ [storage|ninefold]
2499
+ move ninefold storage to its own shared area (namespacing should probably be corrected). thanks geemus
2500
+ use Fog::HMAC. thanks geemus
2501
+
2502
+ [storage|rackspace]
2503
+ Fixed NotFound namespace. thanks Grégory Karékinian
2504
+ move rackspace storage to its own shared area (namespacing should probably be corrected). thanks geemus
2505
+
2506
+ [tests]
2507
+ rearrange to match new lib structure. thanks geemus
2508
+ mark not implemented mocks as pending. thanks geemus
2509
+ more helpful formats helper errors. thanks geemus
2510
+
2511
+ [vmfusion|compute]
2512
+ fixed destroy function. thanks Patrick Debois
2513
+ reworked structure as will be released in 0.4.0a. thanks Patrick Debois
2514
+
2515
+ [vsphere|compute]
2516
+ mark test requiring guid pending, as require can not be found. thanks geemus
2517
+ remove unnecessary mocha require. thanks geemus
2518
+
2519
+
2520
+ 0.11.0 08/18/2011 73bcee507a4732e071c58d85793b7f307eb377dc
2521
+ ==========================================================
2522
+
2523
+ Stats! { 'downloads' => 202791, 'forks' => 237, 'open_issues' => 20, 'watchers' => 1427 }
2524
+
2525
+ MVP! Brian Hartsock
2526
+
2527
+ [aws|cdn]
2528
+ Added commands for streaming distribution lists. thanks Christopher Oliver
2529
+
2530
+ [aws|compute]
2531
+ describe security groups parser was not taking into account ipPermissionsEgress and therefore returning unexpected results when the account had VPC groups. thanks Christopher Oliver
2532
+ Added missing 'platform' attribute to server model and describe instances request. thanks Christopher Oliver
2533
+
2534
+ [aws|iam]
2535
+ fix 'Path' handling for get_group response. thanks Nick Osborn
2536
+ add missing update_server_certificate request. thanks Nick Osborn
2537
+
2538
+ [aws|rds]
2539
+ Allow string or symbol hash keys. thanks Aaron Suggs
2540
+
2541
+ [aws|s3]
2542
+ Added basic tests for get_bucket, fixed a bug in get_bucket with delimiter option, tests succeed for both mocked and real situation. thanks Erik Terpstra
2543
+ policy should be base64 encoded and not contain new lines. thanks Fujimura Daisuke
2544
+ Require 'multi_json' was lucked. thanks Fujimura Daisuke
2545
+
2546
+ [compute]
2547
+ add server base class to contain shared stuff (scp/ssh). thanks geemus
2548
+
2549
+ [compute|aws]
2550
+ Whitespace removal. thanks Dylan Egan
2551
+ Allow image mocks to support state (except failed). thanks Dylan Egan
2552
+ fix pluralization of modify_image_attribute. thanks geemus
2553
+ update modify image/snapshot attribute to match latest API. thanks geemus
2554
+ add modify_image_attribute. thanks geemus
2555
+ add support for saving assigned tags at server creation time. thanks geemus
2556
+ add docs for new options on run_instances. thanks geemus
2557
+ guard tag creation against empty tag set. thanks geemus
2558
+ fixes for bootstrap and placing attributes json. thanks geemus
2559
+ identity not needed for setup. thanks geemus
2560
+ fix for running nice with mocked test run. thanks geemus
2561
+
2562
+ [compute|brightbox]
2563
+ Updated test for new expected response from server. thanks Paul Thornthwaite
2564
+ Updated Account format test to allow valid_credit_card flag. thanks Paul Thornthwaite
2565
+ Added IPv6 address to format now it is exposed to API. thanks Paul Thornthwaite
2566
+ DRY up request method. thanks Paul Thornthwaite
2567
+ Corrected attribute name. thanks Paul Thornthwaite
2568
+
2569
+ [compute|voxel]
2570
+ position in format is string, not integer. thanks geemus
2571
+
2572
+ [dns]
2573
+ dry generate_unique_domain to tests helper. thanks geemus
2574
+
2575
+ [dns|dynect]
2576
+ cleanup of initial implementation. thanks geemus
2577
+ fixes to play nice with mocked test runs. thanks geemus
2578
+
2579
+ [dns|zerigo]
2580
+ add host/port/scheme to recognizes. thanks geemus
2581
+
2582
+ [docs]
2583
+ add task to build/publish supported services matrix. thanks geemus
2584
+ alphasort doc tasks. thanks geemus
2585
+
2586
+ [misc]
2587
+ if creating an s3 directory (bucket), one needs to pass in :location as well as have the aws connection set to the correct region... thanks Adam Greene
2588
+ - Write files as binary (otherwise UTF8 - ASCII errors can occur) - Check if File exists before trying to delete it (paperclip sometimes deletes files twice) - Check if Directory exists before trying to "cd" into it. thanks Andre Meij
2589
+ Fix issue 464, add howto for European Rackspace cloud. thanks Andre Meij
2590
+ Initial support for adding/deleting a load balancer (requests only). thanks Brian Hartsock
2591
+ Complete lifecycle for a load balancer. thanks Brian Hartsock
2592
+ Improved error handling. thanks Brian Hartsock
2593
+ Model and collection for load balancers. thanks Brian Hartsock
2594
+ Fixed issues with loading all LB params. thanks Brian Hartsock
2595
+ Requests for nodes. thanks Brian Hartsock
2596
+ Rackspace Load Balancers: model classes for nodes. thanks Brian Hartsock
2597
+ Rackspace Load Balancers: requests for virtual ips. thanks Brian Hartsock
2598
+ Added virtual IP models. thanks Brian Hartsock
2599
+ Rackspace LB: Made some updates from the pull request. thanks Brian Hartsock
2600
+ Rackspace LB: protocols, algorithms, and connection logging. thanks Brian Hartsock
2601
+ Added access list requests. thanks Brian Hartsock
2602
+ Rackspace LB: Added session persistence requests. thanks Brian Hartsock
2603
+ Rackspace LB: Connection throttling requests. thanks Brian Hartsock
2604
+ Rackspace LB: Fixed issues with connection logging model. thanks Brian Hartsock
2605
+ Rackspace LB: Health Monitor requests. thanks Brian Hartsock
2606
+ Rackspace LB: account usage request. thanks Brian Hartsock
2607
+ Rackspace LB: Load Balancer Usage requests. thanks Brian Hartsock
2608
+ Rackspace LB: Added model capabilities for a lot of additional actions. thanks Brian Hartsock
2609
+ Rackspace LB: models for access lists. thanks Brian Hartsock
2610
+ Rackspace LB: account usage call. thanks Brian Hartsock
2611
+ Rackspace LB: Refactoring and cleanup. thanks Brian Hartsock
2612
+ register_image mocking support. thanks Dylan Egan
2613
+ Remove GENTOO_AMI. thanks Dylan Egan
2614
+ Store it under the ID, not the name. thanks Dylan Egan
2615
+ Allow tag filtering for images. thanks Dylan Egan
2616
+ Set imageOwnerAlias to self. Not 100% on this, but it will allow you to search for images with 'owner-alias' => 'self'. thanks Dylan Egan
2617
+ Back to using Owner. A couple of tests for it too. thanks Dylan Egan
2618
+ Added support for delimiter option in Fog::Storage::AWS::Mock object. thanks Erik Terpstra
2619
+ Link to EBS snapshots blog post. thanks Gavin Sandie
2620
+ Add force stop functionality to AWS Instance. thanks John Ferlito
2621
+ * Changed LoadError to Fog::Error::LoadError when missing configuration * When running from command line, rescue the exception, and print the help message. thanks Mark A. Miller
2622
+ * Fix VirtualBox in compute case statement. thanks Mark A. Miller
2623
+ Update to the latest VirtualBox gem while we're at it for good measure. thanks Mark A. Miller
2624
+ add dynect DNS provider with session request implemented. thanks Michael Hale
2625
+ add dynect provider and cleanup extra requires. thanks Michael Hale
2626
+ enable mocking for dynect. thanks Michael Hale
2627
+ parse session request and fix mock for tests. thanks Michael Hale
2628
+ whoops forgot to add these files. thanks Michael Hale
2629
+ temporary rake task for convenient testing. thanks Michael Hale
2630
+ include /REST in all requests. thanks Michael Hale
2631
+ change API-Token to Auth-Token. thanks Michael Hale
2632
+ add zone request. thanks Michael Hale
2633
+ fix API-Token in mock session request. thanks Michael Hale
2634
+ always run both mock and non-mock tests. thanks Michael Hale
2635
+ parse the list of zones returned. thanks Michael Hale
2636
+ require builder in dynect. thanks Michael Hale
2637
+ WIP: add stub model classes. thanks Michael Hale
2638
+ tests passing. thanks Michael Hale
2639
+ rename zone request to zones. thanks Michael Hale
2640
+ add zone request to show information for a single zone. thanks Michael Hale
2641
+ hook up zones model. thanks Michael Hale
2642
+ hook up zones.get. thanks Michael Hale
2643
+ dynect: add a bunch of stuff: node_list, list_any_records, handle 307 job redirect,. thanks Michael Hale
2644
+ dynect: nicer filter api for records. thanks Michael Hale
2645
+ Escape source object name when copying. thanks Pratik Naik
2646
+ provide #providers for shared services. thanks geemus
2647
+
2648
+ [rackspace|load balancers]
2649
+ fixed broken tests. thanks Brian Hartsock
2650
+
2651
+ [rackspace|load_balancers]
2652
+ fixes to play nice with mock test runs. thanks geemus
2653
+ fix typo in tests. thanks geemus
2654
+
2655
+ [rackspace|loadbalancers]
2656
+ cleanup. thanks geemus
2657
+
2658
+ [release]
2659
+ add newest MVP to changelog task MVP omit list. thanks geemus
2660
+ add stats to changelog. thanks geemus
2661
+ remove un-needed rebuild of gem. thanks geemus
2662
+
2663
+ [storage]
2664
+ fix deprecated get_url usage. thanks geemus
2665
+
2666
+ [storage|aws]
2667
+ simplify region accessor. thanks geemus
2668
+
2669
+ [storage|ninefold]
2670
+ remove debug output. thanks geemus
2671
+
2672
+ [tests]
2673
+ non-destructively generate id for get('fake') == nil tests. thanks geemus
2674
+
2675
+
2676
+ 0.10.0 07/25/2011 9ca8cffc000c417a792235438c12855a277fe1ce
2677
+ ==========================================================
2678
+
2679
+ MVPs! Christopher Oliver, Dylan Egan and Henry Addison
2680
+
2681
+ [AWS Autoscaling]
2682
+ Fixed typo in put scaling policy request. thanks Christopher Oliver
2683
+ Fixed error in describe policies parser. thanks Christopher Oliver
2684
+ Got describe policies returning correctly. thanks Christopher Oliver
2685
+ Removed unnecessary options merge in Delete Policy request. thanks Christopher Oliver
2686
+
2687
+ [AWS IAM]
2688
+ Added Alias related functionality to IAM. Also added get_group_policy. thanks Christopher Oliver
2689
+ Added missing request file for list account aliases. thanks Christopher Oliver
2690
+
2691
+ [AWS RDS]
2692
+ Added describe db engine versions and describe db reserved instances. Changed the signed params version to 2011-04-01 from 2010-07-28. thanks Christopher Oliver
2693
+ Added LicenseModel to the db_parser. thanks Christopher Oliver
2694
+
2695
+ [AWS|ELB]
2696
+ fix bug that was causing availability zones to not parse properly on get/reload. thanks Blake Gentry
2697
+ default values for Listeners. thanks Blake Gentry
2698
+ offload Listener defaults to the Listener model. thanks Blake Gentry
2699
+
2700
+ [AWS|SNS]
2701
+ flesh out basics. thanks geemus
2702
+
2703
+ [AWS|SQS]
2704
+ flesh out basics. thanks geemus
2705
+
2706
+ [aws|auto_scaling]
2707
+ implement 2010-08-01 API. thanks Nick Osborn
2708
+
2709
+ [aws|autoscaling]
2710
+ metrics#get should return nil when not found. thanks geemus
2711
+ mark unimplemented/unsupported tests as pending. thanks geemus
2712
+
2713
+ [aws|cloudwatch]
2714
+ mark overly specific test as pending. thanks geemus
2715
+
2716
+ [aws|compute]
2717
+ improve model and tests. thanks Nick Osborn
2718
+
2719
+ [aws|elb]
2720
+ add test to verify that ListenerDescriptions work when creating an ELB. thanks Blake Gentry
2721
+ make describe_load_balancers parse SSLCertificateId. Verify with test. thanks Blake Gentry
2722
+ Raise proper IAM error for CertificateNotFound when creating an ELB or creating Listeners. thanks Blake Gentry
2723
+ move ELB error handling related to certs to the ELB service instead of duplicating at the request level. thanks Blake Gentry
2724
+ use slurp when raising errors to properly capture exception details. thanks Blake Gentry
2725
+ Add set_load_balancer_listener_ssl_certificate. thanks James Miller
2726
+ fix listener defaults to use merge_attributes and therefore aliases. thanks geemus
2727
+
2728
+ [aws|iam]
2729
+ add error handling for common failures resulting from upload_server_certificate. thanks Blake Gentry
2730
+ fix superclass mismatch. thanks Blake Gentry
2731
+ add get_server_certificate request. thanks Blake Gentry
2732
+ raise correct ValidationError when an empty cert or key is used. thanks Blake Gentry
2733
+ Simplify error handling code for errors with custom classes. thanks Blake Gentry
2734
+ raise EntityAlreadyExists when creating a duplicate cert name. thanks Blake Gentry
2735
+ tests and mocks to support many types of key/cert issues. thanks Blake Gentry
2736
+ add proper error messages. thanks Blake Gentry
2737
+ fix expected error result from login_profile_tests. thanks geemus
2738
+
2739
+ [aws|rds]
2740
+ add LicenseModel to format. thanks geemus
2741
+
2742
+ [aws|simpledb]
2743
+ provide for using ConsistentRead on get_attributes and select. thanks geemus
2744
+ fix get_attributes mock deprecation. thanks geemus
2745
+
2746
+ [compute]
2747
+ fix stormondemand namespace mismatch. thanks geemus
2748
+
2749
+ [compute|aws]
2750
+ cluster compute placement group implementation. thanks geemus
2751
+ add request level support for spot instances. thanks geemus
2752
+ fix describe_instances parser to get group ids correctly. thanks geemus
2753
+ fix compute accessor in tests. thanks geemus
2754
+
2755
+ [compute|bluebox]
2756
+ fixes for ip accessor usage. thanks geemus
2757
+
2758
+ [compute|brightbox]
2759
+ Fixed typo in deprecation warning. thanks Paul Thornthwaite
2760
+ Fixed deprecated use of Brightbox[:compute] to new Compute[:brightbox]. thanks Paul Thornthwaite
2761
+ New preference exposed in API added to format test. thanks Paul Thornthwaite
2762
+
2763
+ [compute|ninefold]
2764
+ add default serviceofferingid (flavor). thanks geemus
2765
+ fix zone format. thanks geemus
2766
+ small consistency fixes for server. thanks geemus
2767
+
2768
+ [compute|rackspace]
2769
+ fix for token expiry/reauth. thanks geemus
2770
+
2771
+ [compute|virtualbox]
2772
+ backwards compatibility for gem availability check. thanks geemus
2773
+
2774
+ [compute|voxel]
2775
+ fix server format. thanks geemus
2776
+
2777
+ [core]
2778
+ avoid ArgumentError with Ruby 1.8.5 on CentOS. thanks Nick Osborn
2779
+ fix to_date_header to use self.utc instead of self.class.now.utc. thanks geemus
2780
+ avoid ||= in timeout lookup. thanks geemus
2781
+
2782
+ [docs]
2783
+ update index to use non-deprecated service accessor. thanks geemus
2784
+
2785
+ [misc]
2786
+ Fix ::AWS[] syntax that's only valid in Fog tests when bin/aws.rb is loaded. thanks Blake Gentry
2787
+ Typos. thanks Blake Gentry
2788
+ Require json needed for both Real and Mock implementation of Rackspace; SSH commands in Mock just print to command line. thanks Brian Hartsock
2789
+ Revert "Require json needed for both Real and Mock implementation of Rackspace; SSH commands in Mock just print to command line". thanks Brian Hartsock
2790
+ require json for rackspace compute mock. thanks Brian Hartsock
2791
+ Fixed #444 - Unable to squash kvp with false values. thanks Brian Hartsock
2792
+ Fix make OpenStack swift working properly. thanks Chmouel Boudjnah
2793
+ Move the timeout to Mock and stop hardcoding. thanks Christopher Meiklejohn
2794
+ Fix failures in the simpledb testing due to attribute array option deprecation. thanks Christopher Meiklejohn
2795
+ Guard against item_name not being a valid key. thanks Christopher Meiklejohn
2796
+ Switch to the has_key? syntax for cleanliness. thanks Christopher Meiklejohn
2797
+ Move timeout up to Fog from Fog::Mock. thanks Christopher Meiklejohn
2798
+ Fix deprecation messages. thanks Claudio Poli
2799
+ Make Rails' respond_with play nice with to_json. thanks Claudio Poli
2800
+ Use multi_json gem. thanks Claudio Poli
2801
+ Public API for force_detach on Fog::Compute::AWS::Volume. thanks Dylan Egan
2802
+ Should actually use the attachment_aliases hash. thanks Dylan Egan
2803
+ server method for Fog::Compute::AWS::Volume to easily get the server instance. thanks Dylan Egan
2804
+ requires_one, allows you to require at least one of the specified attributes. thanks Dylan Egan
2805
+ Remove pending on iam/server_certificate_tests. Start the mocking. thanks Dylan Egan
2806
+ list_server_certificates and delete_server_certificates. thanks Dylan Egan
2807
+ Yes, yes it is better. thanks Dylan Egan
2808
+ Start ELB mocks. Support create_load_balancer and describe_load_balancers. thanks Dylan Egan
2809
+ configure_health_check and create_app_cookie_stickiness_policy. thanks Dylan Egan
2810
+ create_lb_cookie_stickiness_policy and delete_load_balancer_policy. thanks Dylan Egan
2811
+ create_load_balancer_listeneners and set_load_balancer_policies_of_listener. thanks Dylan Egan
2812
+ delete_load_balancer_listeners and delete_load_balancer (with two more tests). thanks Dylan Egan
2813
+ deregister_instances_from_load_balancer, describe_instance_health, disable_availability_for_load_balancer, enable_availability_zones_for_load_balancer, register_instances_with_load_balancer and updates to others to get ELB model_tests working. thanks Dylan Egan
2814
+ Remove requirement of basic parsers. thanks Dylan Egan
2815
+ Move things around a bit. Separate ELB test file per concerns. thanks Dylan Egan
2816
+ SSL for ELB mocking. thanks Dylan Egan
2817
+ Tested against AWS. Needed this. Apparently SSLCertificateId == Arn. thanks Dylan Egan
2818
+ Use available availability_zones. thanks Dylan Egan
2819
+ Wait for volume to be ready again. thanks Dylan Egan
2820
+ AWS instance tests 100% against real. thanks Dylan Egan
2821
+ Make stuff pending if you're mocking. Need to fix spot_price_history_tests, see comment. thanks Dylan Egan
2822
+ Let's just sleep forever. thanks Dylan Egan
2823
+ Reinstate ipAddress and privateIpAddress as they're provided for non-terminated instances. thanks Dylan Egan
2824
+ Reinstate ramdiskId. thanks Dylan Egan
2825
+ Revert "Reinstate ramdiskId." - fuckit! Seems like AWS doesn't return ramdiskId for. thanks Dylan Egan
2826
+ Clean up timeout and add tests. thanks Dylan Egan
2827
+ Quick fix, ith != i. thanks Dylan Egan
2828
+ Begin work on mocking reserved instances. Provide describe_reserved_instances_offerings for mocking and real. REAL TALK. thanks Dylan Egan
2829
+ reserved_instances mocking. I think, it's hard to test against a real AWS account since it costs money. thanks Dylan Egan
2830
+ Default to 1. thanks Dylan Egan
2831
+ add spot instance request models. thanks Edward Middleton
2832
+ fixed spot_requests. thanks Edward Middleton
2833
+ spot instance fixes. thanks Edward Middleton
2834
+ cloud_watch toplevel. thanks Frederick Cheung
2835
+ add get/put/list metrics. thanks Frederick Cheung
2836
+ Corrected a couple of syntax errors in the put and get metric cloudwatch requests. thanks Henry Addison
2837
+ Fixed the parser for list metrics cloudwatch request. thanks Henry Addison
2838
+ Added first test of successful list metrics. thanks Henry Addison
2839
+ simplified a bit the long case statement in end element in list_metrics parser. thanks Henry Addison
2840
+ added a few more cloudwatch request metric tests. thanks Henry Addison
2841
+ added metrics collection and model for cloudwatch with all and get methods. thanks Henry Addison
2842
+ split out and got passing get metric statistics request tests. thanks Henry Addison
2843
+ Added metric statistics model and collection. thanks Henry Addison
2844
+ removed old test file. thanks Henry Addison
2845
+ removed empty test for for metric model (nothing to test at the moment). thanks Henry Addison
2846
+ removed unnecessary attributes from metrics collection (naughty copy and pasting). thanks Henry Addison
2847
+ got put_metric_data request working and tested. thanks Henry Addison
2848
+ added model and collection methods and tests to allow putting of metric data. thanks Henry Addison
2849
+ renamed argument for all method in cloud watch metric_statistics from filters to conditions as filters has a meaning in fog. thanks Henry Addison
2850
+ added a conditions method to all metrics method to help filter all metrics. thanks Henry Addison
2851
+ Added some defaults for StartTime, EndTime and Period to model for MetricStatistics. thanks Henry Addison
2852
+ Begin SQS support. thanks Jon Crosby
2853
+ Continued SQS support. thanks Jon Crosby
2854
+ Add SQS get_queue_attributes. thanks Jon Crosby
2855
+ Fix rubygems warning. thanks Jonas Pfenniger
2856
+ Patch for AWS S3 Metadata problem. thanks Kenji Kabashima
2857
+ Changed number of cores reported for rackspace flavors in order to match current rackspace documentation. thanks Steven Danna
2858
+ Checking path for nil. thanks Timothy Klim
2859
+ Fixed escaping in Fog::AWS.escape. thanks croaker
2860
+ Changed the encoding of the space character. thanks croaker
2861
+ rebuild gemfile during release to include updated changelog. thanks geemus
2862
+ bump excon dep. thanks geemus
2863
+ loosen dependencies to avoid conflicts. thanks geemus
2864
+ bump formatador dep. thanks geemus
2865
+ to_json calls to use MultiJson. thanks geemus
2866
+ make collection class_eval more consistent. thanks geemus
2867
+ update gem deps to latest/greatest. thanks geemus
2868
+ Return nil if HOME is non-absolute. Fixes #397. thanks jc00ke
2869
+ Fix a bunch of paths. thanks phiggins
2870
+ Start of SNS. thanks phiggins
2871
+ Working ListUsers for SNS. thanks phiggins
2872
+ Remove copied-and-pasted documentation. thanks phiggins
2873
+ Add SNS's get_topic_attributes command. thanks phiggins
2874
+ SNS ListSubscriptions. thanks phiggins
2875
+ SNS ListSubscriptionsByTopic. thanks phiggins
2876
+ SNS CreateTopic and DeleteTopic. thanks phiggins
2877
+ SNS Publish. thanks phiggins
2878
+ SNS AddPermission. thanks phiggins
2879
+ SNS RemovePermission. thanks phiggins
2880
+ SNS SetTopicAttributes. thanks phiggins
2881
+ SNS Subscribe. thanks phiggins
2882
+ SNS ConfirmSubscription and Unsubscribe. thanks phiggins
2883
+ Add sns to fog bin. thanks phiggins
2884
+ Start SNS tests. thanks phiggins
2885
+
2886
+ [ninefold|storage]
2887
+ Framework + request method for Ninefold storage. thanks Lincoln Stoll
2888
+ Directories Functionality. thanks Lincoln Stoll
2889
+ Nested directories. thanks Lincoln Stoll
2890
+ File operations. thanks Lincoln Stoll
2891
+ Update an existing file. thanks Lincoln Stoll
2892
+ set content type correctly. thanks Lincoln Stoll
2893
+
2894
+ [release]
2895
+ add mvps and fix fog.io uploader. thanks geemus
2896
+ remove problematic pbcopy from changelog rake task. thanks geemus
2897
+ make changelog build separate from release. thanks geemus
2898
+
2899
+ [storage]
2900
+ provide http/https options for signed urls. thanks geemus
2901
+
2902
+ [storage|aws]
2903
+ properly format modified headers in get_object. thanks geemus
2904
+ fix escaping for file#public_url. thanks geemus
2905
+
2906
+ [storage|google]
2907
+ fix get_object_https_url namespace copy/paste error. thanks geemus
2908
+
2909
+ [storage|ninefold]
2910
+ fix file#destroy and test cleanup. thanks geemus
2911
+
2912
+ [storage|rackspace]
2913
+ add large object support via put_object_manifest. thanks geemus
2914
+ cleanup formatting/style. thanks geemus
2915
+
2916
+ [tests]
2917
+ make unimplemented mock tests pending. thanks geemus
2918
+ fix collection helper to play nice with numeric ids. thanks geemus
2919
+ replace letters with letters and numbers with numbers in collection#get failure test. thanks geemus
2920
+
2921
+ [vcloud|compute]
2922
+ create server now takes :catalog_items_uri as an option. thanks Kunal Parikh
2923
+ now referencing catalog_item_uri from options. thanks Kunal Parikh
2924
+ saving server attributes (uncommented code). thanks Kunal Parikh
2925
+ Revert "saving server attributes (uncommented code)". thanks Kunal Parikh
2926
+ duplicate ecloud code for vcloud, remove obvious terremark specific code. thanks Lincoln Stoll
2927
+ update catalog models for 1.0. thanks Lincoln Stoll
2928
+ make auth work. thanks Lincoln Stoll
2929
+ filter non-server items from server list. thanks Lincoln Stoll
2930
+ update for 1.0 functionality, server operations working. thanks Lincoln Stoll
2931
+ use correct power status ID for 'off'. thanks Lincoln Stoll
2932
+ allow specifying a default VDC uri as 'vcloud_default_vdc'. thanks Lincoln Stoll
2933
+ Add description field to server model. thanks Lincoln Stoll
2934
+ Correct friendly status power off check. thanks Lincoln Stoll
2935
+ correct hardware attribute reading. thanks Lincoln Stoll
2936
+ no longer possible to specify memory & cpu on vapp creation. thanks Lincoln Stoll
2937
+ remove outdated/invalid mocking & specs. thanks Lincoln Stoll
2938
+ fix deleting servers. thanks Lincoln Stoll
2939
+ server creation outside of VDC. thanks Lincoln Stoll
2940
+ undeploy request. thanks Lincoln Stoll
2941
+ memory reconfiguration. thanks Lincoln Stoll
2942
+ make status/ready handling more reliable. thanks Lincoln Stoll
2943
+ server tests. thanks Lincoln Stoll
2944
+ only require template name for tests. thanks Lincoln Stoll
2945
+ add and remove disks. thanks Lincoln Stoll
2946
+ ruby 1.8 compatibility. thanks Lincoln Stoll
2947
+ fix error messages in test helper. thanks Lincoln Stoll
2948
+ Fix setting of description. thanks Lincoln Stoll
2949
+ method to find catalog item by name across all catalogs. thanks Lincoln Stoll
2950
+ correct provider lookup. thanks Lincoln Stoll
2951
+
2952
+
2953
+ 0.9.0 06/24/2011 32960d165a65f12d41785f924e6b6b6d8442516a
2954
+ =========================================================
2955
+
2956
+ MVPs! Lincoln Stoll and Luqman Amjad
2957
+
2958
+ [aws]
2959
+ use AWS.escape instead of CGI.escape. thanks geemus
2960
+
2961
+ [aws|compute]
2962
+ Use #public_ip_address instead of deprecated #ip_address in Server#setup. thanks Martin Emde
2963
+ mock: make address detach others before associating. thanks geemus
2964
+
2965
+ [aws|elb]
2966
+ Fix failing created_at test caused by Ruby 1.9 changes to Range#include?. Use simpler test that doesn't care about the exact created_at time. thanks Blake Gentry
2967
+ Update ELB API to version 2011-04-05. thanks Blake Gentry
2968
+ Fix typo in usage documentation and add 'ap-northeast-1' to regions list. thanks Blake Gentry
2969
+ Rearrange DescribeLoadBalancersResult contents to alphabetical order to match the official AWS docs and make it easier to update the list. thanks Blake Gentry
2970
+ Add new attributes for 2011-04-05 API. thanks Blake Gentry
2971
+
2972
+ [aws|rds]
2973
+ Add parameter group tests. thanks Aaron Suggs
2974
+ Add server model & collection tests. thanks Aaron Suggs
2975
+ Add security_groups collection and model tests. thanks Aaron Suggs
2976
+ Server#destroy argument is optional. thanks Aaron Suggs
2977
+ Refactor RDS model & collection tests. thanks Aaron Suggs
2978
+
2979
+ [aws|simpledb]
2980
+ recognize :region option in SimpleDB.new(). thanks Nick Osborn
2981
+
2982
+ [aws|storage]
2983
+ Add get/put bucket policy support. thanks Michael Linderman
2984
+ Add options argument to delete_object to set headers. thanks Michael Linderman
2985
+ Add delete bucket policy. thanks Michael Linderman
2986
+ discern between no file and no directory for files.get. thanks geemus
2987
+ fix error type for non-directories in files.get. thanks geemus
2988
+
2989
+ [brightbox|compute]
2990
+ Added missing Image#compatibility_mode attribute. thanks Paul Thornthwaite
2991
+ Fixed Format of Account representation. thanks Paul Thornthwaite
2992
+ Fixed Format of nested CloudIP's server attribute. thanks Paul Thornthwaite
2993
+ New account limits exposed in API, updating format test. thanks Paul Thornthwaite
2994
+ ApiClient revoked time exposed in API. Updated format test. thanks Paul Thornthwaite
2995
+
2996
+ [cdn]
2997
+ refactor provider/service namespacing. thanks geemus
2998
+ fix top level class/module mismatch. thanks geemus
2999
+
3000
+ [compute]
3001
+ first pass at examples. thanks geemus
3002
+ refactor provider/service namespacing. thanks geemus
3003
+ fixes/skips to get examples working. thanks geemus
3004
+
3005
+ [compute|aws]
3006
+ fix helpers to use Fog::AWS. thanks geemus
3007
+ simplify describe_instances parser. thanks geemus
3008
+ fix deprecated compute service accessor usage. thanks geemus
3009
+ improve consistency of waiting for ssh to be ready. thanks geemus
3010
+ remove debug output from last commit. thanks geemus
3011
+
3012
+ [compute|bluebox]
3013
+ fix format and template id in tests. thanks geemus
3014
+
3015
+ [compute|brightbox]
3016
+ Fixed missed lookup in broken tests caused by namespace rename. thanks Paul Thornthwaite
3017
+
3018
+ [compute|ecloud]
3019
+ fix namespace leftovers. thanks geemus
3020
+
3021
+ [compute|ninefold]
3022
+ test cleanup. thanks geemus
3023
+
3024
+ [compute|rackspace]
3025
+ fix nil check for auth token. thanks geemus
3026
+
3027
+ [compute|stormondemand]
3028
+ fix namespace issue. thanks geemus
3029
+
3030
+ [compute|voxel]
3031
+ fix flavor tests to properly skip voxel. thanks geemus
3032
+ fix namespace issue. thanks geemus
3033
+
3034
+ [core]
3035
+ add namespaced errors for better messaging. thanks geemus
3036
+ making collection.new error more idiomatic. thanks geemus
3037
+ fix mock reset to work with new namespaces. thanks geemus
3038
+
3039
+ [dns]
3040
+ rename ip to value for record. thanks geemus
3041
+ refactor provider/service namespacing. thanks geemus
3042
+
3043
+ [dns|dnsmadeeasy]
3044
+ skip model/collection tests for now (timing issue). thanks geemus
3045
+
3046
+ [dns|examples]
3047
+ fix deprecated record#ip= usage. thanks geemus
3048
+
3049
+ [dns|zerigo]
3050
+ fixes for namespacing. thanks geemus
3051
+ namespace related fixes. thanks geemus
3052
+
3053
+ [docs]
3054
+ main index redirects to /latest. thanks geemus
3055
+ fix rdoc link on index. thanks geemus
3056
+ update to match refactorings. thanks geemus
3057
+
3058
+ [examples]
3059
+ fix descriptions. thanks geemus
3060
+
3061
+ [linode|compute]
3062
+ mark format test for stackscripts pending due to inconsistency of string/float for a value. thanks geemus
3063
+
3064
+ [misc]
3065
+ add braces for new into the documents. thanks Chris Mague
3066
+ use correct variable name in test description. thanks Dr Nic Williams
3067
+ Not sure if I'm missing something here, but rake did not work. thanks Dylan Egan
3068
+ You only need either the size or the snapshot_id. thanks Dylan Egan
3069
+ Provide mocked console output if server has been up for over the delay time. thanks Dylan Egan
3070
+ LIES!. thanks Dylan Egan
3071
+ Add support for specifying a CDN CNAME when getting a Rackspace Cloud Files directory. thanks H. Wade Minter
3072
+ add missing comma. thanks Joseph Anthony Pasquale Holsten
3073
+ skip rackspace get_object test when mocking. thanks Joseph Anthony Pasquale Holsten
3074
+ give a more useful error if someone tries to say connection.directories.create('dir'). thanks Joseph Anthony Pasquale Holsten
3075
+ Added my blog post. thanks Larry Wright
3076
+ Add recursive argument to server scp methods. Set to false by default. thanks Luke Robins
3077
+ Add an options hash to scp. Set to {} by default. thanks Luke Robins
3078
+ Added new DNS provider => DNS Made Easy. thanks Luqman Amjad
3079
+ Removed sandbox url for DNS Made Easy. thanks Luqman Amjad
3080
+ Added missing method "delete all domains". thanks Luqman Amjad
3081
+ (DNSMadeEasy) added support for updating records via PUT. thanks Luqman Amjad
3082
+ Added missing reference to delete_all_domains. thanks Luqman Amjad
3083
+ Rescue 404 when fetching zone. thanks Luqman Amjad
3084
+ Added new blog posting about fog and Carrierwave. thanks Mike Gehard
3085
+ Edited docs/about/press.markdown via GitHub. thanks Mike Gehard
3086
+ Typo fix. thanks Oge Nnadi
3087
+ Fixed Fog::AWS::SimpleDB#delete_attributes. thanks Pan Thomakos
3088
+ add Net::SCP options parameter to Fog::SCP proxy. thanks Phil Cohen
3089
+ use a hash not nil for default scp_options. thanks Phil Cohen
3090
+ rackspace auth url only prepend protocol as needed. thanks Todd Willey
3091
+ Allow auth tokens to be shared among connections to rackspace api. thanks Todd Willey
3092
+ OpenStack responds 200 when creating servers. thanks Todd Willey
3093
+ added 0.8.2 changelog contents. thanks geemus
3094
+ separate fog.io and rdoc tasks. thanks geemus
3095
+ remove provider attribute from shared services. thanks geemus
3096
+ [storage][aws] fix leftover namespace mismatch. thanks geemus
3097
+ [storage][google] fix leftover namespace mismatch. thanks geemus
3098
+ Edited lib/fog/storage/rackspace.rb via GitHub. thanks kbockmanrs
3099
+
3100
+ [ninefold|compute]
3101
+ Boilerplate for ninefold. thanks Lincoln Stoll
3102
+ Ninefold List Functionality. thanks Lincoln Stoll
3103
+ VM Operations + dependencies. thanks Lincoln Stoll
3104
+ Fix data formats for virtual machines. thanks Lincoln Stoll
3105
+ IP Address requests. thanks Lincoln Stoll
3106
+ Refactor out job waiting functionality, test correct data. thanks Lincoln Stoll
3107
+ NAT functionality. thanks Lincoln Stoll
3108
+ Core model functionality. thanks Lincoln Stoll
3109
+ Public IPs and Rules. thanks Lincoln Stoll
3110
+ use lowest network ID as default, correct assignment. thanks Lincoln Stoll
3111
+ No mocks, simplify code. thanks Lincoln Stoll
3112
+ Save operations not supported. thanks Lincoln Stoll
3113
+
3114
+ [rake]
3115
+ add examples back into default rake task. thanks geemus
3116
+
3117
+ [release]
3118
+ update changelog during release process. thanks geemus
3119
+
3120
+ [storage]
3121
+ refactor provider/service namespacing. thanks geemus
3122
+
3123
+ [storage|aws]
3124
+ more robust query handling for signed url. thanks geemus
3125
+ make url a bit more robust. thanks geemus
3126
+ fix url to check for query. thanks geemus
3127
+ fix whitespace errors. thanks geemus
3128
+ more precise mocked get_object. thanks geemus
3129
+
3130
+ [storage|rackspace]
3131
+ fix files#get_url. thanks geemus
3132
+
3133
+ [tests]
3134
+ add dnsmadeeasy and ninefold to mock credentials. thanks geemus
3135
+ nuke rake task for test related cleanup. thanks geemus
3136
+ make collection gsub to find nils a bit more resilient/unique. thanks geemus
3137
+ trying again to make collection gsub to get nils more resilient/unique. thanks geemus
3138
+
3139
+
3140
+ 0.8.2 05/26/2011 9e6ebb6f7316273eb489f8cb60eb1642e6df357b
3141
+ =========================================================
3142
+
3143
+ MVP! nightshade427
3144
+
3145
+ [aws|compute]
3146
+ better region/zone handling for mocks. thanks geemus
3147
+ indentation fix for last commit. thanks geemus
3148
+ add class level reset for Fog::AWS::Compute::Mock. thanks geemus
3149
+ make mock delay comparison >= so that delay 0 will work properly. thanks geemus
3150
+ respect security zone choice in mocked run_instances closes #314. thanks geemus
3151
+ respect key_name in mocked run_instances. thanks geemus
3152
+ fix instance format in tests. thanks geemus
3153
+
3154
+ [brightbox|compute]
3155
+ fix format for account in tests. thanks geemus
3156
+
3157
+ [compute]
3158
+ Test server reloading. thanks Aaron Suggs
3159
+ consistency in #state call and mock test fixes. thanks geemus
3160
+
3161
+ [compute|aws]
3162
+ Fix server tests. thanks Aaron Suggs
3163
+ Mock get_password_data request. thanks Aaron Suggs
3164
+ Fix default region when mocking. thanks Aaron Suggs
3165
+ Better key_pair tests. thanks Aaron Suggs
3166
+ Make volumes format more flexible. thanks Aaron Suggs
3167
+
3168
+ [core]
3169
+ Fixed credential tests. thanks Aaron Suggs
3170
+ Fix responds_to test helper. thanks Aaron Suggs
3171
+ omit Release commits from changelog. thanks geemus
3172
+ put changelog in clipboard to finish release. thanks geemus
3173
+ more consistent redirector for fog.io. thanks geemus
3174
+ create Fog.available_providers for bin rather than overriding Fog.providers. thanks geemus
3175
+
3176
+ [dnsimple|dns]
3177
+ add dnsimple_url param to facilitate using https://test.dnsimple.com closes #323. thanks geemus
3178
+
3179
+ [docs]
3180
+ first pass at compute doc. thanks geemus
3181
+ update version in header/layout. thanks geemus
3182
+ also build/deploy rdocs. thanks geemus
3183
+ make fog.io/latest/foo link to newest versioned docs. thanks geemus
3184
+
3185
+ [ecloud]
3186
+ mark bin specs pending unless credentials provided closes #325. thanks geemus
3187
+
3188
+ [local|storage]
3189
+ fixes for pending mocked tests. thanks geemus
3190
+
3191
+ [misc]
3192
+ Flatten list of security groups. thanks Dan Peterson
3193
+ Added an example of the head method. thanks Larry Wright
3194
+ Clarified my example. thanks Larry Wright
3195
+ Add a link to fog's Rubydocs. thanks Mathias Meyer
3196
+ :size should be a number in GB, not an instance size (e.g. t1.micro). thanks Michael Conigliaro
3197
+ tests. thanks Nicholas Ricketts
3198
+ added rdoc comments. thanks Nicholas Ricketts
3199
+ Add Amazon API reference link to requests' documentation. thanks Peter Weldon
3200
+ Add reset method to mock classes. thanks anomalousthought
3201
+ Add a reset method to Fog::Mock that resets all providers/services. thanks anomalousthought
3202
+ Add reset method to other providers in addition to Compute providers. thanks anomalousthought
3203
+ Add a reset method to Fog::Mock that resets all providers/services in addition to Compute providers. thanks anomalousthought
3204
+ Public key results are cached, avoid a bug by using that cache. thanks bigfleet
3205
+ 0.8.1 changelog. thanks geemus
3206
+ messy first pass at parallelization of testing. thanks geemus
3207
+ fix deprecated rdoc rake tasks. thanks geemus
3208
+ add mvp suggestion to changelog task. thanks geemus
3209
+ started linode models. thanks nightshade427
3210
+ added images models. thanks nightshade427
3211
+ added kernel modes. thanks nightshade427
3212
+ added datacenters models. thanks nightshade427
3213
+ server provisioning completed. thanks nightshade427
3214
+ server creation and deletion working. thanks nightshade427
3215
+ generalize code. thanks nightshade427
3216
+ creating via stackscripts with callbacks working. thanks nightshade427
3217
+ added shutdown, reboot, boot. thanks nightshade427
3218
+ made config private. thanks nightshade427
3219
+ tests passing. thanks nightshade427
3220
+ revert tests to proper error codes, waiting on fix from linode to support correct error codes. thanks nightshade427
3221
+ code cleanup, tests passing. thanks nightshade427
3222
+ more passing tests. thanks nightshade427
3223
+ more test passing. thanks nightshade427
3224
+ more test passing. thanks nightshade427
3225
+ more test passing. thanks nightshade427
3226
+ more test passing. thanks nightshade427
3227
+ more test passing. thanks nightshade427
3228
+
3229
+ [mock]
3230
+ fix Fog::Mock.reset. thanks Dan Peterson
3231
+ error sooner for completely unimplemented services. thanks geemus
3232
+ cleanup and reset related fixes. thanks geemus
3233
+
3234
+ [rackspace|compute]
3235
+ make mocks respect Fog::Mock.delay. thanks geemus
3236
+
3237
+ [storage]
3238
+ fix/consolidate content-length for utf8. thanks geemus
3239
+
3240
+ [tests]
3241
+ add additional fake credentials for mocked tests. thanks geemus
3242
+
3243
+ [voxel|compute]
3244
+ fix format for servers in tests. thanks geemus
3245
+
3246
+
3247
+ 0.8.1 05/13/2011 3a452347a396f0ad1fea7f5475fb3c349b10f527
3248
+ =========================================================
3249
+
3250
+ [aws|compute]
3251
+ less confusing explanation comment. thanks geemus
3252
+
3253
+ [compute|aws]
3254
+ Fix describe_instances filtering. thanks ktheory
3255
+ Add get_password_data request. thanks ktheory
3256
+
3257
+ [core]
3258
+ Add test for Fog::Parsers::Base. thanks ktheory
3259
+ handle busted ENV['HOME']. thanks pfalcone closes #301. thanks geemus
3260
+ update fog.io in release task. thanks geemus
3261
+ add hash to changelog. thanks geemus
3262
+ work toward automating changelog. thanks geemus
3263
+
3264
+ 0.8.0 05/12/2011 27bf76d1f881bec0f900cd11d5c2a10dce4856ca
3265
+ =========================================================
3266
+
3267
+ MVP! ktheory
3268
+
3269
+ [aws|cloudformation] tests sleep to avoid throttling error :(
3270
+
3271
+ [aws|elb]
3272
+ Add tests for create, describe, and delete. thanks ktheory
3273
+ Fix Policies in describe_load_balancers parser. thanks ktheory
3274
+ Stub out missing requests. thanks ktheory
3275
+ Add configure_health_check request. thanks ktheory
3276
+ Add support for creating and deleting listeners. thanks ktheory
3277
+ Add requests for creating cookie policies. thanks ktheory
3278
+ Add request ELB#delete_load_balancer_policy. thanks ktheory
3279
+ Add request ELB#set_load_balancer_policies_of_listener. thanks ktheory
3280
+ Create a model and collection for load_balancers. thanks ktheory
3281
+ Create Policies collection and model. thanks ktheory
3282
+ Create Listeners collection and model. thanks ktheory
3283
+ Remove redundant NotFound error class. thanks ktheory
3284
+ reorg model files for consistency
3285
+
3286
+ [aws|iam]
3287
+ Added server certificate tests. thanks ktheory
3288
+ Parse server certificate UploadDate. thanks ktheory
3289
+ Add list_server_certificates request. thanks ktheory
3290
+ fix test description for update_login_profile
3291
+
3292
+ [aws|rds]
3293
+ Fix exception for missing DB security groups. thanks ktheory
3294
+ Remove redundant NotFound class. thanks ktheory
3295
+ Improve instance tests. thanks ktheory
3296
+ reorg model files for consistency
3297
+ change status waits for more consistent testing
3298
+
3299
+ [aws|ses]
3300
+ fix format of Destinations in send_raw_email and correct doc. thanks jhawthorne
3301
+ Make specifying Destinations for send_raw_email work and match amazon docs. thanks jhawthorne
3302
+ fix indent in doc. thanks jhawthorne
3303
+
3304
+ [aws|simpledb]
3305
+ correction for item and attribute counters in encode_batch_attributes. thanks joshounapoli
3306
+ Fix a problem with the encoding of the tilde character. AWS needs tilde to be unescaped, or else the signature fails. CGI.escape escapes tilde; don't use it. thanks joshounapoli
3307
+ Correction to the regular expression for unreserved characters. thanks joshounapoli
3308
+ Test encode_batch_attributes with two attributes in one item to demonstrate an error in encode_batch_attributes. An unmocked test run will show a "400 Bad Request" response from SimpleDB. thanks joshounapoli
3309
+
3310
+ [compute]
3311
+ default to Ubuntu 10.04 LTS 64bit for image id
3312
+ [aws]
3313
+ Fix server tests. thanks ktheory
3314
+ Fixes trailing whitespace in attributes. thanks ktheory
3315
+ Fix & improve some tests. thanks ktheory
3316
+ Use default AMI in tests. thanks ktheory
3317
+ Add failing tests for keypair parsing. thanks ktheory
3318
+ Add different availability zones for each region to the mock. thanks smerritt
3319
+ Update docs for Compute::Real#initialize to include ap-* regions. thanks smerritt
3320
+ change default flavor to t1.micro (so it will be 64-bit)
3321
+ use old style, more consistent call to get single instance
3322
+ fix console output format in tests
3323
+ [bluebox]
3324
+ Adding lb_applications, lb_services, lb_backends attributes to the model. thanks cparades
3325
+ Adding in a few more tests for LB's. thanks cparades
3326
+ Rolling back change. thanks cparades
3327
+ Added in some data for testing. thanks cparades
3328
+ Fixed typo in Bluebox test. thanks tokengeek
3329
+ don't use a lb_application I don't own in tests
3330
+ [brightbox]
3331
+ Updated Image identifiers to match latest available Ubuntu Lucid 10.04 LTS 64bit image. thanks tokengeek
3332
+ [ecloud]
3333
+ 1.9.2 compat, String#[] doesn't return nil as we expected. thanks dpiddy
3334
+ [stormondemand]
3335
+ Implement Stormondemand API. thanks seeingidog
3336
+ cleanup
3337
+ fixes for tests
3338
+ [voxel]
3339
+ Prevent voxel tests running if missing credentials. thanks tokengeek
3340
+ minor fixes for voxel tests
3341
+
3342
+ [core]
3343
+ Parser does not concatenates all the strings when parsing. thanks geraud
3344
+ Drop default_executable line from gemspec. thanks mattsa
3345
+ Fix small logic error in Model#wait_for. thanks pvande
3346
+ Make Model#reload more resilient against errors. thanks pvande
3347
+ Simplify dup-ing of @attributes for models. thanks smerritt
3348
+ Make Model#dup copy the attributes too. thanks smerritt
3349
+ Fix typo in spec output. thanks smerritt
3350
+ tighten excon dependency. Closes #250
3351
+ cleanup gemspec. closes #251
3352
+ Fixes error messaging when credentials missing
3353
+ update parser to better handle whitespace
3354
+
3355
+ [docs]
3356
+ Add link to multipart upload and threads article. thanks gsandie
3357
+ restructure toward same organization as rest of repo
3358
+ simplify redirector to just point at directory instead of specifically index.html
3359
+ generalize version subbing in href to catch src too
3360
+ style cleanup for cdn/dns/storage
3361
+ storage shouldn't be all caps
3362
+ link to fog.io more prominently
3363
+ fix new links to properly include version
3364
+ replace getting started link
3365
+ add link to learn_fog
3366
+ remove confusion by linking to fog.io instead of wiki
3367
+ reworking getting started guide
3368
+ add requires
3369
+
3370
+ [dns|aws] fix error handling for getting unknown keys
3371
+
3372
+ [storage]
3373
+ auto-paginate for #each closes #268
3374
+ [aws]
3375
+ Add #each_file method to directory model. thanks smerritt
3376
+ Add documentation for #each_file method. thanks smerritt
3377
+ Emit warning from Files#each. thanks smerritt
3378
+ Make Files#each iterate all files, not just the first page. thanks smerritt
3379
+ Fix docs to say files.each, not each_file. thanks smerritt
3380
+ Issue #283: S3 get_object request doesn't really support the Range header. thanks yalon
3381
+ fix format for multipart upload tests
3382
+ [google]
3383
+ fix format in bucket_tests
3384
+ [rackspace]
3385
+ mark get_object with block test pending when mocked
3386
+
3387
+ 0.7.2 04/05/2011
3388
+ ================
3389
+
3390
+ [aws|cloudformation]
3391
+ enabling region parameter for AWS cloud formation requests. thanks flessa
3392
+
3393
+ [compute]
3394
+ [aws]
3395
+ remove CGI escape from create_security_group. thanks coliver
3396
+ replace remaining specs with shindo tests
3397
+ update #keypairs reference to #key_pairs. thanks pvande
3398
+ Emulate volume unavailability when mocking. thanks mtodd
3399
+ Raise error on non-existent snapshot for create_volume. thanks mtodd
3400
+ Add tag to resource data when creating a mock tag. thanks betamatt
3401
+ Add tag filtering to mocks for snapshots, volumes, instances. thanks betamatt
3402
+ Add delete_tags mock. thanks betamatt
3403
+ Support tag-key, tag-value, tag:key filters. thanks betamatt
3404
+ Correct name of dns-filter filter. thanks betamatt
3405
+ allow key pair to write into properly chmodded files. thanks gerred
3406
+ Making key pair names a little less potentially brittle. thanks gerred
3407
+ [rackspace]
3408
+ fix public_ip_address accessors
3409
+
3410
+ [core]
3411
+ updated base parser to not eagerly strip return data. thanks bdorry
3412
+ don't escape ssh commands. thanks pvande
3413
+ Deal with missing FOG_RC/HOME env vars better. thanks outerim
3414
+ fix push parser block passed to excon > 0.6.0
3415
+
3416
+ [docs]
3417
+ move fog.io stuff into docs directory
3418
+ pull in and format data from README, wiki, blog posts
3419
+
3420
+ [storage|rackspace]
3421
+ head_object should use HEAD. thanks nate
3422
+ Support for serving Rackspace CDN objects via SSL. thanks minter
3423
+ Use URI.escape instead of CGI.escape. thanks minter
3424
+
3425
+ 0.7.1 03/21/2011
3426
+ ================
3427
+
3428
+ [aws|storage] normalize headers. thanks pweldon
3429
+
3430
+ [mock] fix reset_data to not be called in Mock#initialize
3431
+
3432
+ [rackspace] add support for using servicenet. thanks minter
3433
+
3434
+ [storage] provide for non file/string files. thanks pweldon
3435
+
3436
+ 0.7.0 03/14/2011
3437
+ ================
3438
+
3439
+ [aws] added ap-northeast-1 (tokyo) region options
3440
+
3441
+ [aws|cloudformation] add basic support. thanks crazed
3442
+
3443
+ [aws|elb] add support for configuring https
3444
+
3445
+ [aws|iam]
3446
+ add support for server certificates. thanks bensie
3447
+ add support for login profiles. thanks fcheung
3448
+
3449
+ [aws|rds]
3450
+ support basic rds operations. thanks fcheung
3451
+ add support for restoring servers and security groups. thanks ktheory
3452
+
3453
+ [cdn|rackspace] use post_container to update
3454
+
3455
+ [compute]
3456
+ [aws]
3457
+ fix tag.destroy. thanks eabbott
3458
+ allow deleting all tags (instead of just specific ones)
3459
+ fix revoke_security_group method signature
3460
+ FLAVORS is now a constant
3461
+ allow for modifying server monitoring. thanks gilles
3462
+ [brightbox] thanks tokengeek
3463
+ Added listener management (add/remove) requests for Load Balancers
3464
+ Added new Server console activation request
3465
+ Added activate_console method to Brightbox servers
3466
+ Set Server#private_ip_address to be the first interface
3467
+ [rackspace] 'official' workaround for awful caching
3468
+ [virtualbox] rough proof of concept/initial implementation
3469
+
3470
+ [core]
3471
+ fix behavior of slice on collections. thanks eabbott
3472
+ fix reset_data to be instance method on mock connection (and work)
3473
+ [credentials]
3474
+ handle undefined ENV['HOME']
3475
+ Allow string keys in credentials file [issue 179]. thanks ryanlower
3476
+
3477
+ [dns|dnsimple] fix misc bugs in models. thanks ijonas
3478
+
3479
+ [storage]
3480
+ use shared parse_data across providers
3481
+ [rackspace]
3482
+ pass through explicit content-type
3483
+ fix bug preventing file uploads to be streamed
3484
+
3485
+ 0.6.0 02/28/2011
3486
+ ================
3487
+
3488
+ [aws|compute] fix method signature for security group requests. Thanks crazed
3489
+
3490
+ [aws|iam]
3491
+ fleshing out support. Thanks bdorry and coliver
3492
+ fix get_group parser to set Arn on group/member as appropriate
3493
+
3494
+ [bluebox|dns] added support. Thanks ggoodale
3495
+
3496
+ [compute]
3497
+ add basic scp support. Thanks crazed
3498
+ consolidate ip accessors
3499
+
3500
+ [core]
3501
+ added changelog, covering 0.5+
3502
+ reset credentials when changing key or path. Thanks ctennis
3503
+
3504
+ [dnsimple|dns] added support. Thanks dje
3505
+
3506
+ [ecloud|compute] cleaned up and reworked as basis for future ecloud work
3507
+
3508
+ [aws|storage] add static website configuration methods
3509
+
3510
+ [local|storage] rewrite using nested directories (NOTE: not backwards compatible)
3511
+
3512
+ [rackspace|storage] disable cdn when deleting container
3513
+
3514
+ [voxel|compute] added support. Thanks splaspood
3515
+
3516
+ remove long standing deprecations
3517
+
3518
+
3519
+ 0.5.3 02/15/11
3520
+ ==============
3521
+
3522
+ [terremark|ecloud] (thanks freeformz)
3523
+ initial support for Disabled monitor types
3524
+ InternetService#disable_monitor and #enable_ping_monitor
3525
+ spec fixes and tests for the new monitor functions
3526
+ fix logic error which prevented turning off persistent connections
3527
+ fix _dump for collections/models
3528
+ require json for to_json of collection/model
3529
+ add some missing parens to fix warnings
3530
+
3531
+
3532
+ 0.5.2 02/11/11
3533
+ ==============
3534
+
3535
+ [aws|compute] fix delete AWS tags to use proper method. Thanks ody
3536
+ [aws|storage]
3537
+ add sort for multi part upload fields. Thanks gavin
3538
+ better RRS docs. Thanks bensie
3539
+ Temporary redirect should not execute the block. Thanks vivienschillis
3540
+ [tests] fix mock_helper load path to allow test runs in 1.9.2. Thanks aeden
3541
+ [compute] disable password auth for current user, rather than always root
3542
+ [aws&google|storage] properly handle custom headers in mocks
3543
+ [aws&google|storage] make signature public method
3544
+ [aws&google] finish fixing headers in mocks
3545
+ [core] cleanup providers/services setup
3546
+ [README] add contributing section, recommendations for blue shirts, move providers to fog.io, cleanup resources
3547
+ implicitly add not_implemented mocks
3548
+
3549
+
3550
+ 0.5.1 01/31/11
3551
+ ==============
3552
+
3553
+ Bug fixes.
3554
+ [aws|iam] add signing certificate and list groups for user. thanks crazed
3555
+ [gogrid|compute] added support for password api calls. thanks lum
3556
+ [fog|time] add date header formatting that is non-localized
3557
+
3558
+
3559
+ 0.5.0 01/27/11
3560
+ ==============
3561
+
3562
+ [aws|compute] describe reserved instances offerings
3563
+ [aws|dns] Fix variable typo create_hosted_zone. Thanks mitchellh
3564
+ [aws|ses] basic support. Thanks adelcambre
3565
+ [aws|storage] Escape the path for signatures. Thanks croaker
3566
+ [aws&google|storage] mock fixes
3567
+ [local|storage] support file#content_type
3568
+ [ssh] use an agent if available instead of requiring explicit keys. thanks davidx and tomstuart
3569
+ [gogrid|compute] fix several issues. Thanks cardmagic
3570
+ [rackspace|compute] get new auth token when one expires
3571
+ [rackspace|storage] remove nil query params in requests
3572
+ [terremark|ecloud] getting started on ecloud specific implementation
3573
+