fog-sgonyea 1.8.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3292) 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 +154 -0
  7. data/Rakefile +158 -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 +3726 -0
  13. data/docs/_config.yml +39 -0
  14. data/docs/_layouts/default.html +111 -0
  15. data/docs/about/contributing.markdown +229 -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 +93 -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/js/libs/dd_belatedpng.js +289 -0
  30. data/docs/public/js/libs/dd_belatedpng.min.js +13 -0
  31. data/docs/public/js/libs/jquery-1.4.2.js +6240 -0
  32. data/docs/public/js/libs/jquery-1.4.2.min.js +154 -0
  33. data/docs/public/js/libs/modernizr-1.6.js +892 -0
  34. data/docs/public/js/libs/modernizr-1.6.min.js +30 -0
  35. data/docs/public/js/mylibs/.gitignore +3 -0
  36. data/docs/public/js/plugins.js +34 -0
  37. data/docs/public/js/profiling/config.js +59 -0
  38. data/docs/public/js/profiling/yahoo-profiling.css +7 -0
  39. data/docs/public/js/profiling/yahoo-profiling.js +1028 -0
  40. data/docs/public/js/profiling/yahoo-profiling.min.js +39 -0
  41. data/docs/public/js/script.js +26 -0
  42. data/docs/public/robots.txt +5 -0
  43. data/docs/storage/index.markdown +204 -0
  44. data/fog.gemspec +71 -0
  45. data/lib/fog.rb +17 -0
  46. data/lib/fog/atmos.rb +11 -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/aws.rb +305 -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 +408 -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 +142 -0
  67. data/lib/fog/aws/elasticache.rb +192 -0
  68. data/lib/fog/aws/elb.rb +229 -0
  69. data/lib/fog/aws/elb/policy_types.rb +466 -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 +226 -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 +52 -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 +254 -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 +130 -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 +112 -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/delete_multiple_objects.rb +50 -0
  455. data/lib/fog/aws/parsers/storage/get_bucket.rb +62 -0
  456. data/lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb +32 -0
  457. data/lib/fog/aws/parsers/storage/get_bucket_location.rb +20 -0
  458. data/lib/fog/aws/parsers/storage/get_bucket_logging.rb +40 -0
  459. data/lib/fog/aws/parsers/storage/get_bucket_object_versions.rb +88 -0
  460. data/lib/fog/aws/parsers/storage/get_bucket_versioning.rb +24 -0
  461. data/lib/fog/aws/parsers/storage/get_bucket_website.rb +26 -0
  462. data/lib/fog/aws/parsers/storage/get_request_payment.rb +20 -0
  463. data/lib/fog/aws/parsers/storage/get_service.rb +32 -0
  464. data/lib/fog/aws/parsers/storage/initiate_multipart_upload.rb +24 -0
  465. data/lib/fog/aws/parsers/storage/list_multipart_uploads.rb +56 -0
  466. data/lib/fog/aws/parsers/storage/list_parts.rb +40 -0
  467. data/lib/fog/aws/parsers/sts/get_session_token.rb +31 -0
  468. data/lib/fog/aws/rds.rb +231 -0
  469. data/lib/fog/aws/requests/auto_scaling/create_auto_scaling_group.rb +137 -0
  470. data/lib/fog/aws/requests/auto_scaling/create_launch_configuration.rb +112 -0
  471. data/lib/fog/aws/requests/auto_scaling/create_or_update_tags.rb +63 -0
  472. data/lib/fog/aws/requests/auto_scaling/delete_auto_scaling_group.rb +60 -0
  473. data/lib/fog/aws/requests/auto_scaling/delete_launch_configuration.rb +57 -0
  474. data/lib/fog/aws/requests/auto_scaling/delete_notification_configuration.rb +63 -0
  475. data/lib/fog/aws/requests/auto_scaling/delete_policy.rb +56 -0
  476. data/lib/fog/aws/requests/auto_scaling/delete_scheduled_action.rb +48 -0
  477. data/lib/fog/aws/requests/auto_scaling/delete_tags.rb +63 -0
  478. data/lib/fog/aws/requests/auto_scaling/describe_adjustment_types.rb +53 -0
  479. data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_groups.rb +132 -0
  480. data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_instances.rb +95 -0
  481. data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_notification_types.rb +55 -0
  482. data/lib/fog/aws/requests/auto_scaling/describe_launch_configurations.rb +117 -0
  483. data/lib/fog/aws/requests/auto_scaling/describe_metric_collection_types.rb +61 -0
  484. data/lib/fog/aws/requests/auto_scaling/describe_notification_configurations.rb +79 -0
  485. data/lib/fog/aws/requests/auto_scaling/describe_policies.rb +97 -0
  486. data/lib/fog/aws/requests/auto_scaling/describe_scaling_activities.rb +88 -0
  487. data/lib/fog/aws/requests/auto_scaling/describe_scaling_process_types.rb +55 -0
  488. data/lib/fog/aws/requests/auto_scaling/describe_scheduled_actions.rb +88 -0
  489. data/lib/fog/aws/requests/auto_scaling/describe_tags.rb +74 -0
  490. data/lib/fog/aws/requests/auto_scaling/describe_termination_policy_types.rb +53 -0
  491. data/lib/fog/aws/requests/auto_scaling/disable_metrics_collection.rb +56 -0
  492. data/lib/fog/aws/requests/auto_scaling/enable_metrics_collection.rb +66 -0
  493. data/lib/fog/aws/requests/auto_scaling/execute_policy.rb +50 -0
  494. data/lib/fog/aws/requests/auto_scaling/put_notification_configuration.rb +70 -0
  495. data/lib/fog/aws/requests/auto_scaling/put_scaling_policy.rb +85 -0
  496. data/lib/fog/aws/requests/auto_scaling/put_scheduled_update_group_action.rb +70 -0
  497. data/lib/fog/aws/requests/auto_scaling/resume_processes.rb +59 -0
  498. data/lib/fog/aws/requests/auto_scaling/set_desired_capacity.rb +87 -0
  499. data/lib/fog/aws/requests/auto_scaling/set_instance_health.rb +55 -0
  500. data/lib/fog/aws/requests/auto_scaling/suspend_processes.rb +62 -0
  501. data/lib/fog/aws/requests/auto_scaling/terminate_instance_in_auto_scaling_group.rb +65 -0
  502. data/lib/fog/aws/requests/auto_scaling/update_auto_scaling_group.rb +91 -0
  503. data/lib/fog/aws/requests/beanstalk/check_dns_availability.rb +27 -0
  504. data/lib/fog/aws/requests/beanstalk/create_application.rb +29 -0
  505. data/lib/fog/aws/requests/beanstalk/create_application_version.rb +41 -0
  506. data/lib/fog/aws/requests/beanstalk/create_configuration_template.rb +47 -0
  507. data/lib/fog/aws/requests/beanstalk/create_environment.rb +50 -0
  508. data/lib/fog/aws/requests/beanstalk/create_storage_location.rb +27 -0
  509. data/lib/fog/aws/requests/beanstalk/delete_application.rb +29 -0
  510. data/lib/fog/aws/requests/beanstalk/delete_application_version.rb +36 -0
  511. data/lib/fog/aws/requests/beanstalk/delete_configuration_template.rb +34 -0
  512. data/lib/fog/aws/requests/beanstalk/delete_environment_configuration.rb +34 -0
  513. data/lib/fog/aws/requests/beanstalk/describe_application_versions.rb +34 -0
  514. data/lib/fog/aws/requests/beanstalk/describe_applications.rb +30 -0
  515. data/lib/fog/aws/requests/beanstalk/describe_configuration_options.rb +40 -0
  516. data/lib/fog/aws/requests/beanstalk/describe_configuration_settings.rb +31 -0
  517. data/lib/fog/aws/requests/beanstalk/describe_environment_resources.rb +29 -0
  518. data/lib/fog/aws/requests/beanstalk/describe_environments.rb +40 -0
  519. data/lib/fog/aws/requests/beanstalk/describe_events.rb +29 -0
  520. data/lib/fog/aws/requests/beanstalk/list_available_solution_stacks.rb +27 -0
  521. data/lib/fog/aws/requests/beanstalk/rebuild_environment.rb +30 -0
  522. data/lib/fog/aws/requests/beanstalk/request_environment_info.rb +29 -0
  523. data/lib/fog/aws/requests/beanstalk/restart_app_server.rb +29 -0
  524. data/lib/fog/aws/requests/beanstalk/retrieve_environment_info.rb +29 -0
  525. data/lib/fog/aws/requests/beanstalk/swap_environment_cnames.rb +29 -0
  526. data/lib/fog/aws/requests/beanstalk/terminate_environment.rb +31 -0
  527. data/lib/fog/aws/requests/beanstalk/update_application.rb +30 -0
  528. data/lib/fog/aws/requests/beanstalk/update_application_version.rb +30 -0
  529. data/lib/fog/aws/requests/beanstalk/update_configuration_template.rb +36 -0
  530. data/lib/fog/aws/requests/beanstalk/update_environment.rb +42 -0
  531. data/lib/fog/aws/requests/beanstalk/validate_configuration_settings.rb +33 -0
  532. data/lib/fog/aws/requests/cdn/delete_distribution.rb +59 -0
  533. data/lib/fog/aws/requests/cdn/delete_streaming_distribution.rb +58 -0
  534. data/lib/fog/aws/requests/cdn/get_distribution.rb +85 -0
  535. data/lib/fog/aws/requests/cdn/get_distribution_list.rb +88 -0
  536. data/lib/fog/aws/requests/cdn/get_invalidation.rb +60 -0
  537. data/lib/fog/aws/requests/cdn/get_invalidation_list.rb +83 -0
  538. data/lib/fog/aws/requests/cdn/get_streaming_distribution.rb +76 -0
  539. data/lib/fog/aws/requests/cdn/get_streaming_distribution_list.rb +89 -0
  540. data/lib/fog/aws/requests/cdn/post_distribution.rb +135 -0
  541. data/lib/fog/aws/requests/cdn/post_invalidation.rb +84 -0
  542. data/lib/fog/aws/requests/cdn/post_streaming_distribution.rb +122 -0
  543. data/lib/fog/aws/requests/cdn/put_distribution_config.rb +122 -0
  544. data/lib/fog/aws/requests/cdn/put_streaming_distribution_config.rb +111 -0
  545. data/lib/fog/aws/requests/cloud_formation/create_stack.rb +77 -0
  546. data/lib/fog/aws/requests/cloud_formation/delete_stack.rb +30 -0
  547. data/lib/fog/aws/requests/cloud_formation/describe_stack_events.rb +44 -0
  548. data/lib/fog/aws/requests/cloud_formation/describe_stack_resources.rb +43 -0
  549. data/lib/fog/aws/requests/cloud_formation/describe_stacks.rb +42 -0
  550. data/lib/fog/aws/requests/cloud_formation/get_template.rb +32 -0
  551. data/lib/fog/aws/requests/cloud_formation/update_stack.rb +62 -0
  552. data/lib/fog/aws/requests/cloud_formation/validate_template.rb +34 -0
  553. data/lib/fog/aws/requests/cloud_watch/delete_alarms.rb +48 -0
  554. data/lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb +33 -0
  555. data/lib/fog/aws/requests/cloud_watch/describe_alarms.rb +56 -0
  556. data/lib/fog/aws/requests/cloud_watch/describe_alarms_for_metric.rb +39 -0
  557. data/lib/fog/aws/requests/cloud_watch/disable_alarm_actions.rb +30 -0
  558. data/lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb +30 -0
  559. data/lib/fog/aws/requests/cloud_watch/get_metric_statistics.rb +48 -0
  560. data/lib/fog/aws/requests/cloud_watch/list_metrics.rb +65 -0
  561. data/lib/fog/aws/requests/cloud_watch/put_metric_alarm.rb +93 -0
  562. data/lib/fog/aws/requests/cloud_watch/put_metric_data.rb +73 -0
  563. data/lib/fog/aws/requests/cloud_watch/set_alarm_state.rb +31 -0
  564. data/lib/fog/aws/requests/compute/allocate_address.rb +59 -0
  565. data/lib/fog/aws/requests/compute/associate_address.rb +94 -0
  566. data/lib/fog/aws/requests/compute/associate_dhcp_options.rb +57 -0
  567. data/lib/fog/aws/requests/compute/attach_internet_gateway.rb +56 -0
  568. data/lib/fog/aws/requests/compute/attach_network_interface.rb +57 -0
  569. data/lib/fog/aws/requests/compute/attach_volume.rb +87 -0
  570. data/lib/fog/aws/requests/compute/authorize_security_group_ingress.rb +213 -0
  571. data/lib/fog/aws/requests/compute/cancel_spot_instance_requests.rb +34 -0
  572. data/lib/fog/aws/requests/compute/create_dhcp_options.rb +76 -0
  573. data/lib/fog/aws/requests/compute/create_image.rb +92 -0
  574. data/lib/fog/aws/requests/compute/create_internet_gateway.rb +52 -0
  575. data/lib/fog/aws/requests/compute/create_key_pair.rb +56 -0
  576. data/lib/fog/aws/requests/compute/create_network_interface.rb +118 -0
  577. data/lib/fog/aws/requests/compute/create_placement_group.rb +34 -0
  578. data/lib/fog/aws/requests/compute/create_security_group.rb +64 -0
  579. data/lib/fog/aws/requests/compute/create_snapshot.rb +72 -0
  580. data/lib/fog/aws/requests/compute/create_spot_datafeed_subscription.rb +41 -0
  581. data/lib/fog/aws/requests/compute/create_subnet.rb +80 -0
  582. data/lib/fog/aws/requests/compute/create_tags.rb +87 -0
  583. data/lib/fog/aws/requests/compute/create_volume.rb +125 -0
  584. data/lib/fog/aws/requests/compute/create_vpc.rb +72 -0
  585. data/lib/fog/aws/requests/compute/delete_dhcp_options.rb +51 -0
  586. data/lib/fog/aws/requests/compute/delete_internet_gateway.rb +49 -0
  587. data/lib/fog/aws/requests/compute/delete_key_pair.rb +47 -0
  588. data/lib/fog/aws/requests/compute/delete_network_interface.rb +52 -0
  589. data/lib/fog/aws/requests/compute/delete_placement_group.rb +32 -0
  590. data/lib/fog/aws/requests/compute/delete_security_group.rb +92 -0
  591. data/lib/fog/aws/requests/compute/delete_snapshot.rb +50 -0
  592. data/lib/fog/aws/requests/compute/delete_spot_datafeed_subscription.rb +28 -0
  593. data/lib/fog/aws/requests/compute/delete_subnet.rb +50 -0
  594. data/lib/fog/aws/requests/compute/delete_tags.rb +86 -0
  595. data/lib/fog/aws/requests/compute/delete_volume.rb +56 -0
  596. data/lib/fog/aws/requests/compute/delete_vpc.rb +53 -0
  597. data/lib/fog/aws/requests/compute/deregister_image.rb +53 -0
  598. data/lib/fog/aws/requests/compute/describe_addresses.rb +66 -0
  599. data/lib/fog/aws/requests/compute/describe_availability_zones.rb +98 -0
  600. data/lib/fog/aws/requests/compute/describe_dhcp_options.rb +55 -0
  601. data/lib/fog/aws/requests/compute/describe_images.rb +130 -0
  602. data/lib/fog/aws/requests/compute/describe_instance_status.rb +48 -0
  603. data/lib/fog/aws/requests/compute/describe_instances.rb +229 -0
  604. data/lib/fog/aws/requests/compute/describe_internet_gateways.rb +60 -0
  605. data/lib/fog/aws/requests/compute/describe_key_pairs.rb +68 -0
  606. data/lib/fog/aws/requests/compute/describe_network_interface_attribute.rb +67 -0
  607. data/lib/fog/aws/requests/compute/describe_network_interfaces.rb +85 -0
  608. data/lib/fog/aws/requests/compute/describe_placement_groups.rb +35 -0
  609. data/lib/fog/aws/requests/compute/describe_regions.rb +68 -0
  610. data/lib/fog/aws/requests/compute/describe_reserved_instances.rb +60 -0
  611. data/lib/fog/aws/requests/compute/describe_reserved_instances_offerings.rb +67 -0
  612. data/lib/fog/aws/requests/compute/describe_security_groups.rb +101 -0
  613. data/lib/fog/aws/requests/compute/describe_snapshots.rb +122 -0
  614. data/lib/fog/aws/requests/compute/describe_spot_datafeed_subscription.rb +35 -0
  615. data/lib/fog/aws/requests/compute/describe_spot_instance_requests.rb +48 -0
  616. data/lib/fog/aws/requests/compute/describe_spot_price_history.rb +37 -0
  617. data/lib/fog/aws/requests/compute/describe_subnets.rb +64 -0
  618. data/lib/fog/aws/requests/compute/describe_tags.rb +107 -0
  619. data/lib/fog/aws/requests/compute/describe_volume_status.rb +45 -0
  620. data/lib/fog/aws/requests/compute/describe_volumes.rb +120 -0
  621. data/lib/fog/aws/requests/compute/describe_vpcs.rb +61 -0
  622. data/lib/fog/aws/requests/compute/detach_internet_gateway.rb +56 -0
  623. data/lib/fog/aws/requests/compute/detach_network_interface.rb +49 -0
  624. data/lib/fog/aws/requests/compute/detach_volume.rb +65 -0
  625. data/lib/fog/aws/requests/compute/disassociate_address.rb +58 -0
  626. data/lib/fog/aws/requests/compute/get_console_output.rb +54 -0
  627. data/lib/fog/aws/requests/compute/get_password_data.rb +56 -0
  628. data/lib/fog/aws/requests/compute/import_key_pair.rb +56 -0
  629. data/lib/fog/aws/requests/compute/modify_image_attribute.rb +74 -0
  630. data/lib/fog/aws/requests/compute/modify_instance_attribute.rb +44 -0
  631. data/lib/fog/aws/requests/compute/modify_network_interface_attribute.rb +90 -0
  632. data/lib/fog/aws/requests/compute/modify_snapshot_attribute.rb +37 -0
  633. data/lib/fog/aws/requests/compute/modify_volume_attribute.rb +51 -0
  634. data/lib/fog/aws/requests/compute/monitor_instances.rb +54 -0
  635. data/lib/fog/aws/requests/compute/purchase_reserved_instances_offering.rb +63 -0
  636. data/lib/fog/aws/requests/compute/reboot_instances.rb +54 -0
  637. data/lib/fog/aws/requests/compute/register_image.rb +133 -0
  638. data/lib/fog/aws/requests/compute/release_address.rb +63 -0
  639. data/lib/fog/aws/requests/compute/request_spot_instances.rb +89 -0
  640. data/lib/fog/aws/requests/compute/reset_network_interface_attribute.rb +56 -0
  641. data/lib/fog/aws/requests/compute/revoke_security_group_ingress.rb +102 -0
  642. data/lib/fog/aws/requests/compute/run_instances.rb +186 -0
  643. data/lib/fog/aws/requests/compute/start_instances.rb +60 -0
  644. data/lib/fog/aws/requests/compute/stop_instances.rb +61 -0
  645. data/lib/fog/aws/requests/compute/terminate_instances.rb +96 -0
  646. data/lib/fog/aws/requests/compute/unmonitor_instances.rb +55 -0
  647. data/lib/fog/aws/requests/dns/change_resource_record_sets.rb +211 -0
  648. data/lib/fog/aws/requests/dns/create_hosted_zone.rb +104 -0
  649. data/lib/fog/aws/requests/dns/delete_hosted_zone.rb +39 -0
  650. data/lib/fog/aws/requests/dns/get_change.rb +38 -0
  651. data/lib/fog/aws/requests/dns/get_hosted_zone.rb +65 -0
  652. data/lib/fog/aws/requests/dns/list_hosted_zones.rb +99 -0
  653. data/lib/fog/aws/requests/dns/list_resource_record_sets.rb +65 -0
  654. data/lib/fog/aws/requests/dynamodb/batch_get_item.rb +43 -0
  655. data/lib/fog/aws/requests/dynamodb/batch_write_item.rb +35 -0
  656. data/lib/fog/aws/requests/dynamodb/create_table.rb +55 -0
  657. data/lib/fog/aws/requests/dynamodb/delete_item.rb +45 -0
  658. data/lib/fog/aws/requests/dynamodb/delete_table.rb +42 -0
  659. data/lib/fog/aws/requests/dynamodb/describe_table.rb +44 -0
  660. data/lib/fog/aws/requests/dynamodb/get_item.rb +43 -0
  661. data/lib/fog/aws/requests/dynamodb/list_tables.rb +29 -0
  662. data/lib/fog/aws/requests/dynamodb/put_item.rb +41 -0
  663. data/lib/fog/aws/requests/dynamodb/query.rb +44 -0
  664. data/lib/fog/aws/requests/dynamodb/scan.rb +45 -0
  665. data/lib/fog/aws/requests/dynamodb/update_item.rb +49 -0
  666. data/lib/fog/aws/requests/dynamodb/update_table.rb +46 -0
  667. data/lib/fog/aws/requests/elasticache/authorize_cache_security_group_ingress.rb +36 -0
  668. data/lib/fog/aws/requests/elasticache/create_cache_cluster.rb +86 -0
  669. data/lib/fog/aws/requests/elasticache/create_cache_parameter_group.rb +37 -0
  670. data/lib/fog/aws/requests/elasticache/create_cache_security_group.rb +33 -0
  671. data/lib/fog/aws/requests/elasticache/delete_cache_cluster.rb +41 -0
  672. data/lib/fog/aws/requests/elasticache/delete_cache_parameter_group.rb +31 -0
  673. data/lib/fog/aws/requests/elasticache/delete_cache_security_group.rb +31 -0
  674. data/lib/fog/aws/requests/elasticache/describe_cache_clusters.rb +54 -0
  675. data/lib/fog/aws/requests/elasticache/describe_cache_parameter_groups.rb +34 -0
  676. data/lib/fog/aws/requests/elasticache/describe_cache_parameters.rb +36 -0
  677. data/lib/fog/aws/requests/elasticache/describe_cache_security_groups.rb +34 -0
  678. data/lib/fog/aws/requests/elasticache/describe_engine_default_parameters.rb +35 -0
  679. data/lib/fog/aws/requests/elasticache/describe_events.rb +49 -0
  680. data/lib/fog/aws/requests/elasticache/modify_cache_cluster.rb +102 -0
  681. data/lib/fog/aws/requests/elasticache/modify_cache_parameter_group.rb +45 -0
  682. data/lib/fog/aws/requests/elasticache/reboot_cache_cluster.rb +52 -0
  683. data/lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb +46 -0
  684. data/lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb +37 -0
  685. data/lib/fog/aws/requests/elb/apply_security_groups_to_load_balancer.rb +61 -0
  686. data/lib/fog/aws/requests/elb/attach_load_balancer_to_subnets.rb +61 -0
  687. data/lib/fog/aws/requests/elb/configure_health_check.rb +65 -0
  688. data/lib/fog/aws/requests/elb/create_app_cookie_stickiness_policy.rb +56 -0
  689. data/lib/fog/aws/requests/elb/create_lb_cookie_stickiness_policy.rb +58 -0
  690. data/lib/fog/aws/requests/elb/create_load_balancer.rb +119 -0
  691. data/lib/fog/aws/requests/elb/create_load_balancer_listeners.rb +88 -0
  692. data/lib/fog/aws/requests/elb/create_load_balancer_policy.rb +79 -0
  693. data/lib/fog/aws/requests/elb/delete_load_balancer.rb +51 -0
  694. data/lib/fog/aws/requests/elb/delete_load_balancer_listeners.rb +50 -0
  695. data/lib/fog/aws/requests/elb/delete_load_balancer_policy.rb +54 -0
  696. data/lib/fog/aws/requests/elb/deregister_instances_from_load_balancer.rb +63 -0
  697. data/lib/fog/aws/requests/elb/describe_instance_health.rb +72 -0
  698. data/lib/fog/aws/requests/elb/describe_load_balancer_policies.rb +71 -0
  699. data/lib/fog/aws/requests/elb/describe_load_balancer_policy_types.rb +68 -0
  700. data/lib/fog/aws/requests/elb/describe_load_balancers.rb +119 -0
  701. data/lib/fog/aws/requests/elb/detach_load_balancer_from_subnets.rb +61 -0
  702. data/lib/fog/aws/requests/elb/disable_availability_zones_for_load_balancer.rb +59 -0
  703. data/lib/fog/aws/requests/elb/enable_availability_zones_for_load_balancer.rb +61 -0
  704. data/lib/fog/aws/requests/elb/register_instances_with_load_balancer.rb +64 -0
  705. data/lib/fog/aws/requests/elb/set_load_balancer_listener_ssl_certificate.rb +67 -0
  706. data/lib/fog/aws/requests/elb/set_load_balancer_policies_of_listener.rb +80 -0
  707. data/lib/fog/aws/requests/emr/add_instance_groups.rb +46 -0
  708. data/lib/fog/aws/requests/emr/add_job_flow_steps.rb +49 -0
  709. data/lib/fog/aws/requests/emr/describe_job_flows.rb +108 -0
  710. data/lib/fog/aws/requests/emr/modify_instance_groups.rb +40 -0
  711. data/lib/fog/aws/requests/emr/run_job_flow.rb +108 -0
  712. data/lib/fog/aws/requests/emr/set_termination_protection.rb +39 -0
  713. data/lib/fog/aws/requests/emr/terminate_job_flows.rb +37 -0
  714. data/lib/fog/aws/requests/glacier/abort_multipart_upload.rb +35 -0
  715. data/lib/fog/aws/requests/glacier/complete_multipart_upload.rb +42 -0
  716. data/lib/fog/aws/requests/glacier/create_archive.rb +43 -0
  717. data/lib/fog/aws/requests/glacier/create_vault.rb +34 -0
  718. data/lib/fog/aws/requests/glacier/delete_archive.rb +35 -0
  719. data/lib/fog/aws/requests/glacier/delete_vault.rb +34 -0
  720. data/lib/fog/aws/requests/glacier/delete_vault_notification_configuration.rb +33 -0
  721. data/lib/fog/aws/requests/glacier/describe_job.rb +35 -0
  722. data/lib/fog/aws/requests/glacier/describe_vault.rb +34 -0
  723. data/lib/fog/aws/requests/glacier/get_job_output.rb +41 -0
  724. data/lib/fog/aws/requests/glacier/get_vault_notification_configuration.rb +34 -0
  725. data/lib/fog/aws/requests/glacier/initiate_job.rb +41 -0
  726. data/lib/fog/aws/requests/glacier/initiate_multipart_upload.rb +38 -0
  727. data/lib/fog/aws/requests/glacier/list_jobs.rb +39 -0
  728. data/lib/fog/aws/requests/glacier/list_multipart_uploads.rb +37 -0
  729. data/lib/fog/aws/requests/glacier/list_parts.rb +37 -0
  730. data/lib/fog/aws/requests/glacier/list_vaults.rb +36 -0
  731. data/lib/fog/aws/requests/glacier/set_vault_notification_configuration.rb +37 -0
  732. data/lib/fog/aws/requests/glacier/upload_part.rb +46 -0
  733. data/lib/fog/aws/requests/iam/add_role_to_instance_profile.rb +35 -0
  734. data/lib/fog/aws/requests/iam/add_user_to_group.rb +58 -0
  735. data/lib/fog/aws/requests/iam/create_access_key.rb +61 -0
  736. data/lib/fog/aws/requests/iam/create_account_alias.rb +19 -0
  737. data/lib/fog/aws/requests/iam/create_group.rb +60 -0
  738. data/lib/fog/aws/requests/iam/create_instance_profile.rb +46 -0
  739. data/lib/fog/aws/requests/iam/create_login_profile.rb +36 -0
  740. data/lib/fog/aws/requests/iam/create_role.rb +56 -0
  741. data/lib/fog/aws/requests/iam/create_user.rb +60 -0
  742. data/lib/fog/aws/requests/iam/delete_access_key.rb +51 -0
  743. data/lib/fog/aws/requests/iam/delete_account_alias.rb +19 -0
  744. data/lib/fog/aws/requests/iam/delete_group.rb +51 -0
  745. data/lib/fog/aws/requests/iam/delete_group_policy.rb +34 -0
  746. data/lib/fog/aws/requests/iam/delete_instance_profile.rb +32 -0
  747. data/lib/fog/aws/requests/iam/delete_login_profile.rb +31 -0
  748. data/lib/fog/aws/requests/iam/delete_role.rb +32 -0
  749. data/lib/fog/aws/requests/iam/delete_role_policy.rb +35 -0
  750. data/lib/fog/aws/requests/iam/delete_server_certificate.rb +46 -0
  751. data/lib/fog/aws/requests/iam/delete_signing_certificate.rb +33 -0
  752. data/lib/fog/aws/requests/iam/delete_user.rb +49 -0
  753. data/lib/fog/aws/requests/iam/delete_user_policy.rb +50 -0
  754. data/lib/fog/aws/requests/iam/get_group.rb +62 -0
  755. data/lib/fog/aws/requests/iam/get_group_policy.rb +36 -0
  756. data/lib/fog/aws/requests/iam/get_instance_profile.rb +42 -0
  757. data/lib/fog/aws/requests/iam/get_login_profile.rb +35 -0
  758. data/lib/fog/aws/requests/iam/get_role.rb +38 -0
  759. data/lib/fog/aws/requests/iam/get_role_policy.rb +36 -0
  760. data/lib/fog/aws/requests/iam/get_server_certificate.rb +48 -0
  761. data/lib/fog/aws/requests/iam/get_user.rb +56 -0
  762. data/lib/fog/aws/requests/iam/get_user_policy.rb +53 -0
  763. data/lib/fog/aws/requests/iam/list_access_keys.rb +61 -0
  764. data/lib/fog/aws/requests/iam/list_account_aliases.rb +18 -0
  765. data/lib/fog/aws/requests/iam/list_group_policies.rb +39 -0
  766. data/lib/fog/aws/requests/iam/list_groups.rb +60 -0
  767. data/lib/fog/aws/requests/iam/list_groups_for_user.rb +67 -0
  768. data/lib/fog/aws/requests/iam/list_instance_profiles.rb +50 -0
  769. data/lib/fog/aws/requests/iam/list_instance_profiles_for_role.rb +51 -0
  770. data/lib/fog/aws/requests/iam/list_role_policies.rb +39 -0
  771. data/lib/fog/aws/requests/iam/list_roles.rb +43 -0
  772. data/lib/fog/aws/requests/iam/list_server_certificates.rb +56 -0
  773. data/lib/fog/aws/requests/iam/list_signing_certificates.rb +38 -0
  774. data/lib/fog/aws/requests/iam/list_user_policies.rb +57 -0
  775. data/lib/fog/aws/requests/iam/list_users.rb +59 -0
  776. data/lib/fog/aws/requests/iam/put_group_policy.rb +36 -0
  777. data/lib/fog/aws/requests/iam/put_role_policy.rb +36 -0
  778. data/lib/fog/aws/requests/iam/put_user_policy.rb +54 -0
  779. data/lib/fog/aws/requests/iam/remove_role_from_instance_profile.rb +36 -0
  780. data/lib/fog/aws/requests/iam/remove_user_from_group.rb +53 -0
  781. data/lib/fog/aws/requests/iam/update_access_key.rb +36 -0
  782. data/lib/fog/aws/requests/iam/update_group.rb +39 -0
  783. data/lib/fog/aws/requests/iam/update_login_profile.rb +33 -0
  784. data/lib/fog/aws/requests/iam/update_server_certificate.rb +37 -0
  785. data/lib/fog/aws/requests/iam/update_signing_certificate.rb +32 -0
  786. data/lib/fog/aws/requests/iam/update_user.rb +39 -0
  787. data/lib/fog/aws/requests/iam/upload_server_certificate.rb +97 -0
  788. data/lib/fog/aws/requests/iam/upload_signing_certificate.rb +38 -0
  789. data/lib/fog/aws/requests/rds/add_tags_to_resource.rb +46 -0
  790. data/lib/fog/aws/requests/rds/authorize_db_security_group_ingress.rb +72 -0
  791. data/lib/fog/aws/requests/rds/create_db_instance.rb +126 -0
  792. data/lib/fog/aws/requests/rds/create_db_instance_read_replica.rb +82 -0
  793. data/lib/fog/aws/requests/rds/create_db_parameter_group.rb +59 -0
  794. data/lib/fog/aws/requests/rds/create_db_security_group.rb +55 -0
  795. data/lib/fog/aws/requests/rds/create_db_snapshot.rb +72 -0
  796. data/lib/fog/aws/requests/rds/create_db_subnet_group.rb +58 -0
  797. data/lib/fog/aws/requests/rds/delete_db_instance.rb +55 -0
  798. data/lib/fog/aws/requests/rds/delete_db_parameter_group.rb +46 -0
  799. data/lib/fog/aws/requests/rds/delete_db_security_group.rb +46 -0
  800. data/lib/fog/aws/requests/rds/delete_db_snapshot.rb +47 -0
  801. data/lib/fog/aws/requests/rds/describe_db_engine_versions.rb +34 -0
  802. data/lib/fog/aws/requests/rds/describe_db_instances.rb +95 -0
  803. data/lib/fog/aws/requests/rds/describe_db_parameter_groups.rb +63 -0
  804. data/lib/fog/aws/requests/rds/describe_db_parameters.rb +45 -0
  805. data/lib/fog/aws/requests/rds/describe_db_reserved_instances.rb +42 -0
  806. data/lib/fog/aws/requests/rds/describe_db_security_groups.rb +85 -0
  807. data/lib/fog/aws/requests/rds/describe_db_snapshots.rb +71 -0
  808. data/lib/fog/aws/requests/rds/describe_db_subnet_groups.rb +63 -0
  809. data/lib/fog/aws/requests/rds/describe_events.rb +52 -0
  810. data/lib/fog/aws/requests/rds/list_tags_for_resource.rb +44 -0
  811. data/lib/fog/aws/requests/rds/modify_db_instance.rb +80 -0
  812. data/lib/fog/aws/requests/rds/modify_db_parameter_group.rb +55 -0
  813. data/lib/fog/aws/requests/rds/reboot_db_instance.rb +51 -0
  814. data/lib/fog/aws/requests/rds/remove_tags_from_resource.rb +44 -0
  815. data/lib/fog/aws/requests/rds/restore_db_instance_from_db_snapshot.rb +34 -0
  816. data/lib/fog/aws/requests/rds/restore_db_instance_to_point_in_time.rb +35 -0
  817. data/lib/fog/aws/requests/rds/revoke_db_security_group_ingress.rb +70 -0
  818. data/lib/fog/aws/requests/ses/delete_verified_email_address.rb +28 -0
  819. data/lib/fog/aws/requests/ses/get_send_quota.rb +31 -0
  820. data/lib/fog/aws/requests/ses/get_send_statistics.rb +34 -0
  821. data/lib/fog/aws/requests/ses/list_verified_email_addresses.rb +28 -0
  822. data/lib/fog/aws/requests/ses/send_email.rb +73 -0
  823. data/lib/fog/aws/requests/ses/send_raw_email.rb +41 -0
  824. data/lib/fog/aws/requests/ses/verify_email_address.rb +28 -0
  825. data/lib/fog/aws/requests/simpledb/batch_put_attributes.rb +64 -0
  826. data/lib/fog/aws/requests/simpledb/create_domain.rb +44 -0
  827. data/lib/fog/aws/requests/simpledb/delete_attributes.rb +73 -0
  828. data/lib/fog/aws/requests/simpledb/delete_domain.rb +45 -0
  829. data/lib/fog/aws/requests/simpledb/domain_metadata.rb +76 -0
  830. data/lib/fog/aws/requests/simpledb/get_attributes.rb +84 -0
  831. data/lib/fog/aws/requests/simpledb/list_domains.rb +59 -0
  832. data/lib/fog/aws/requests/simpledb/put_attributes.rb +78 -0
  833. data/lib/fog/aws/requests/simpledb/select.rb +43 -0
  834. data/lib/fog/aws/requests/sns/add_permission.rb +26 -0
  835. data/lib/fog/aws/requests/sns/confirm_subscription.rb +33 -0
  836. data/lib/fog/aws/requests/sns/create_topic.rb +29 -0
  837. data/lib/fog/aws/requests/sns/delete_topic.rb +29 -0
  838. data/lib/fog/aws/requests/sns/get_topic_attributes.rb +29 -0
  839. data/lib/fog/aws/requests/sns/list_subscriptions.rb +29 -0
  840. data/lib/fog/aws/requests/sns/list_subscriptions_by_topic.rb +31 -0
  841. data/lib/fog/aws/requests/sns/list_topics.rb +29 -0
  842. data/lib/fog/aws/requests/sns/publish.rb +34 -0
  843. data/lib/fog/aws/requests/sns/remove_permission.rb +26 -0
  844. data/lib/fog/aws/requests/sns/set_topic_attributes.rb +33 -0
  845. data/lib/fog/aws/requests/sns/subscribe.rb +33 -0
  846. data/lib/fog/aws/requests/sns/unsubscribe.rb +29 -0
  847. data/lib/fog/aws/requests/sqs/change_message_visibility.rb +63 -0
  848. data/lib/fog/aws/requests/sqs/create_queue.rb +65 -0
  849. data/lib/fog/aws/requests/sqs/delete_message.rb +60 -0
  850. data/lib/fog/aws/requests/sqs/delete_queue.rb +52 -0
  851. data/lib/fog/aws/requests/sqs/get_queue_attributes.rb +52 -0
  852. data/lib/fog/aws/requests/sqs/list_queues.rb +42 -0
  853. data/lib/fog/aws/requests/sqs/receive_message.rb +87 -0
  854. data/lib/fog/aws/requests/sqs/send_message.rb +69 -0
  855. data/lib/fog/aws/requests/sqs/set_queue_attributes.rb +51 -0
  856. data/lib/fog/aws/requests/storage/abort_multipart_upload.rb +30 -0
  857. data/lib/fog/aws/requests/storage/acl_utils.rb +62 -0
  858. data/lib/fog/aws/requests/storage/complete_multipart_upload.rb +52 -0
  859. data/lib/fog/aws/requests/storage/copy_object.rb +82 -0
  860. data/lib/fog/aws/requests/storage/delete_bucket.rb +50 -0
  861. data/lib/fog/aws/requests/storage/delete_bucket_lifecycle.rb +30 -0
  862. data/lib/fog/aws/requests/storage/delete_bucket_policy.rb +32 -0
  863. data/lib/fog/aws/requests/storage/delete_bucket_website.rb +32 -0
  864. data/lib/fog/aws/requests/storage/delete_multiple_objects.rb +172 -0
  865. data/lib/fog/aws/requests/storage/delete_object.rb +121 -0
  866. data/lib/fog/aws/requests/storage/get_bucket.rb +115 -0
  867. data/lib/fog/aws/requests/storage/get_bucket_acl.rb +72 -0
  868. data/lib/fog/aws/requests/storage/get_bucket_lifecycle.rb +41 -0
  869. data/lib/fog/aws/requests/storage/get_bucket_location.rb +61 -0
  870. data/lib/fog/aws/requests/storage/get_bucket_logging.rb +50 -0
  871. data/lib/fog/aws/requests/storage/get_bucket_object_versions.rb +168 -0
  872. data/lib/fog/aws/requests/storage/get_bucket_policy.rb +37 -0
  873. data/lib/fog/aws/requests/storage/get_bucket_versioning.rb +72 -0
  874. data/lib/fog/aws/requests/storage/get_bucket_website.rb +42 -0
  875. data/lib/fog/aws/requests/storage/get_object.rb +191 -0
  876. data/lib/fog/aws/requests/storage/get_object_acl.rb +83 -0
  877. data/lib/fog/aws/requests/storage/get_object_http_url.rb +58 -0
  878. data/lib/fog/aws/requests/storage/get_object_https_url.rb +40 -0
  879. data/lib/fog/aws/requests/storage/get_object_torrent.rb +50 -0
  880. data/lib/fog/aws/requests/storage/get_object_url.rb +58 -0
  881. data/lib/fog/aws/requests/storage/get_request_payment.rb +52 -0
  882. data/lib/fog/aws/requests/storage/get_service.rb +57 -0
  883. data/lib/fog/aws/requests/storage/head_object.rb +69 -0
  884. data/lib/fog/aws/requests/storage/initiate_multipart_upload.rb +47 -0
  885. data/lib/fog/aws/requests/storage/list_multipart_uploads.rb +60 -0
  886. data/lib/fog/aws/requests/storage/list_parts.rb +59 -0
  887. data/lib/fog/aws/requests/storage/post_object_hidden_fields.rb +40 -0
  888. data/lib/fog/aws/requests/storage/put_bucket.rb +77 -0
  889. data/lib/fog/aws/requests/storage/put_bucket_acl.rb +73 -0
  890. data/lib/fog/aws/requests/storage/put_bucket_lifecycle.rb +48 -0
  891. data/lib/fog/aws/requests/storage/put_bucket_logging.rb +83 -0
  892. data/lib/fog/aws/requests/storage/put_bucket_policy.rb +30 -0
  893. data/lib/fog/aws/requests/storage/put_bucket_versioning.rb +77 -0
  894. data/lib/fog/aws/requests/storage/put_bucket_website.rb +66 -0
  895. data/lib/fog/aws/requests/storage/put_object.rb +116 -0
  896. data/lib/fog/aws/requests/storage/put_object_acl.rb +82 -0
  897. data/lib/fog/aws/requests/storage/put_object_url.rb +51 -0
  898. data/lib/fog/aws/requests/storage/put_request_payment.rb +51 -0
  899. data/lib/fog/aws/requests/storage/sync_clock.rb +28 -0
  900. data/lib/fog/aws/requests/storage/upload_part.rb +44 -0
  901. data/lib/fog/aws/requests/sts/get_federation_token.rb +21 -0
  902. data/lib/fog/aws/requests/sts/get_session_token.rb +19 -0
  903. data/lib/fog/aws/ses.rb +121 -0
  904. data/lib/fog/aws/signaturev4.rb +73 -0
  905. data/lib/fog/aws/simpledb.rb +205 -0
  906. data/lib/fog/aws/sns.rb +116 -0
  907. data/lib/fog/aws/sqs.rb +150 -0
  908. data/lib/fog/aws/storage.rb +406 -0
  909. data/lib/fog/aws/sts.rb +136 -0
  910. data/lib/fog/bare_metal_cloud.rb +11 -0
  911. data/lib/fog/bare_metal_cloud/compute.rb +100 -0
  912. data/lib/fog/bare_metal_cloud/requests/compute/add_server.rb +33 -0
  913. data/lib/fog/bare_metal_cloud/requests/compute/add_server_by_configuration.rb +33 -0
  914. data/lib/fog/bare_metal_cloud/requests/compute/cancel_server.rb +30 -0
  915. data/lib/fog/bare_metal_cloud/requests/compute/get_server.rb +41 -0
  916. data/lib/fog/bare_metal_cloud/requests/compute/list_configurations.rb +27 -0
  917. data/lib/fog/bare_metal_cloud/requests/compute/list_images.rb +27 -0
  918. data/lib/fog/bare_metal_cloud/requests/compute/list_plans.rb +30 -0
  919. data/lib/fog/bare_metal_cloud/requests/compute/list_servers.rb +36 -0
  920. data/lib/fog/bare_metal_cloud/requests/compute/reboot_server.rb +24 -0
  921. data/lib/fog/bin.rb +93 -0
  922. data/lib/fog/bin/atmos.rb +31 -0
  923. data/lib/fog/bin/aws.rb +115 -0
  924. data/lib/fog/bin/bare_metal_cloud.rb +31 -0
  925. data/lib/fog/bin/bluebox.rb +36 -0
  926. data/lib/fog/bin/brightbox.rb +35 -0
  927. data/lib/fog/bin/clodo.rb +31 -0
  928. data/lib/fog/bin/cloudstack.rb +30 -0
  929. data/lib/fog/bin/dnsimple.rb +31 -0
  930. data/lib/fog/bin/dnsmadeeasy.rb +31 -0
  931. data/lib/fog/bin/dynect.rb +30 -0
  932. data/lib/fog/bin/ecloud.rb +35 -0
  933. data/lib/fog/bin/glesys.rb +31 -0
  934. data/lib/fog/bin/go_grid.rb +31 -0
  935. data/lib/fog/bin/google.rb +31 -0
  936. data/lib/fog/bin/hp.rb +38 -0
  937. data/lib/fog/bin/ibm.rb +34 -0
  938. data/lib/fog/bin/joyent.rb +31 -0
  939. data/lib/fog/bin/libvirt.rb +60 -0
  940. data/lib/fog/bin/linode.rb +36 -0
  941. data/lib/fog/bin/local.rb +31 -0
  942. data/lib/fog/bin/ninefold.rb +36 -0
  943. data/lib/fog/bin/openstack.rb +41 -0
  944. data/lib/fog/bin/ovirt.rb +30 -0
  945. data/lib/fog/bin/rackspace.rb +60 -0
  946. data/lib/fog/bin/serverlove.rb +31 -0
  947. data/lib/fog/bin/stormondemand.rb +31 -0
  948. data/lib/fog/bin/terremark.rb +31 -0
  949. data/lib/fog/bin/vcloud.rb +30 -0
  950. data/lib/fog/bin/virtual_box.rb +57 -0
  951. data/lib/fog/bin/vmfusion.rb +60 -0
  952. data/lib/fog/bin/voxel.rb +31 -0
  953. data/lib/fog/bin/vsphere.rb +30 -0
  954. data/lib/fog/bin/xenserver.rb +31 -0
  955. data/lib/fog/bin/zerigo.rb +31 -0
  956. data/lib/fog/bluebox.rb +12 -0
  957. data/lib/fog/bluebox/compute.rb +104 -0
  958. data/lib/fog/bluebox/dns.rb +104 -0
  959. data/lib/fog/bluebox/models/compute/flavor.rb +45 -0
  960. data/lib/fog/bluebox/models/compute/flavors.rb +28 -0
  961. data/lib/fog/bluebox/models/compute/image.rb +34 -0
  962. data/lib/fog/bluebox/models/compute/images.rb +28 -0
  963. data/lib/fog/bluebox/models/compute/location.rb +17 -0
  964. data/lib/fog/bluebox/models/compute/locations.rb +28 -0
  965. data/lib/fog/bluebox/models/compute/server.rb +120 -0
  966. data/lib/fog/bluebox/models/compute/servers.rb +36 -0
  967. data/lib/fog/bluebox/models/dns/record.rb +55 -0
  968. data/lib/fog/bluebox/models/dns/records.rb +36 -0
  969. data/lib/fog/bluebox/models/dns/zone.rb +64 -0
  970. data/lib/fog/bluebox/models/dns/zones.rb +28 -0
  971. data/lib/fog/bluebox/parsers/dns/create_record.rb +26 -0
  972. data/lib/fog/bluebox/parsers/dns/create_zone.rb +26 -0
  973. data/lib/fog/bluebox/parsers/dns/get_record.rb +21 -0
  974. data/lib/fog/bluebox/parsers/dns/get_records.rb +28 -0
  975. data/lib/fog/bluebox/parsers/dns/get_zone.rb +26 -0
  976. data/lib/fog/bluebox/parsers/dns/get_zones.rb +30 -0
  977. data/lib/fog/bluebox/requests/compute/create_block.rb +45 -0
  978. data/lib/fog/bluebox/requests/compute/create_template.rb +27 -0
  979. data/lib/fog/bluebox/requests/compute/destroy_block.rb +26 -0
  980. data/lib/fog/bluebox/requests/compute/destroy_template.rb +26 -0
  981. data/lib/fog/bluebox/requests/compute/get_block.rb +26 -0
  982. data/lib/fog/bluebox/requests/compute/get_blocks.rb +28 -0
  983. data/lib/fog/bluebox/requests/compute/get_location.rb +26 -0
  984. data/lib/fog/bluebox/requests/compute/get_locations.rb +24 -0
  985. data/lib/fog/bluebox/requests/compute/get_product.rb +26 -0
  986. data/lib/fog/bluebox/requests/compute/get_products.rb +25 -0
  987. data/lib/fog/bluebox/requests/compute/get_template.rb +26 -0
  988. data/lib/fog/bluebox/requests/compute/get_templates.rb +26 -0
  989. data/lib/fog/bluebox/requests/compute/reboot_block.rb +27 -0
  990. data/lib/fog/bluebox/requests/dns/create_record.rb +48 -0
  991. data/lib/fog/bluebox/requests/dns/create_zone.rb +52 -0
  992. data/lib/fog/bluebox/requests/dns/delete_record.rb +31 -0
  993. data/lib/fog/bluebox/requests/dns/delete_zone.rb +31 -0
  994. data/lib/fog/bluebox/requests/dns/get_record.rb +40 -0
  995. data/lib/fog/bluebox/requests/dns/get_records.rb +41 -0
  996. data/lib/fog/bluebox/requests/dns/get_zone.rb +44 -0
  997. data/lib/fog/bluebox/requests/dns/get_zones.rb +43 -0
  998. data/lib/fog/bluebox/requests/dns/update_record.rb +34 -0
  999. data/lib/fog/bluebox/requests/dns/update_zone.rb +30 -0
  1000. data/lib/fog/brightbox.rb +10 -0
  1001. data/lib/fog/brightbox/compute.rb +442 -0
  1002. data/lib/fog/brightbox/models/compute/account.rb +69 -0
  1003. data/lib/fog/brightbox/models/compute/accounts.rb +29 -0
  1004. data/lib/fog/brightbox/models/compute/api_client.rb +37 -0
  1005. data/lib/fog/brightbox/models/compute/api_clients.rb +24 -0
  1006. data/lib/fog/brightbox/models/compute/application.rb +27 -0
  1007. data/lib/fog/brightbox/models/compute/applications.rb +28 -0
  1008. data/lib/fog/brightbox/models/compute/cloud_ip.rb +59 -0
  1009. data/lib/fog/brightbox/models/compute/cloud_ips.rb +34 -0
  1010. data/lib/fog/brightbox/models/compute/firewall_policies.rb +29 -0
  1011. data/lib/fog/brightbox/models/compute/firewall_policy.rb +65 -0
  1012. data/lib/fog/brightbox/models/compute/firewall_rule.rb +54 -0
  1013. data/lib/fog/brightbox/models/compute/firewall_rules.rb +24 -0
  1014. data/lib/fog/brightbox/models/compute/flavor.rb +32 -0
  1015. data/lib/fog/brightbox/models/compute/flavors.rb +28 -0
  1016. data/lib/fog/brightbox/models/compute/image.rb +66 -0
  1017. data/lib/fog/brightbox/models/compute/images.rb +28 -0
  1018. data/lib/fog/brightbox/models/compute/load_balancer.rb +59 -0
  1019. data/lib/fog/brightbox/models/compute/load_balancers.rb +28 -0
  1020. data/lib/fog/brightbox/models/compute/server.rb +203 -0
  1021. data/lib/fog/brightbox/models/compute/server_group.rb +96 -0
  1022. data/lib/fog/brightbox/models/compute/server_groups.rb +29 -0
  1023. data/lib/fog/brightbox/models/compute/servers.rb +61 -0
  1024. data/lib/fog/brightbox/models/compute/user.rb +43 -0
  1025. data/lib/fog/brightbox/models/compute/users.rb +27 -0
  1026. data/lib/fog/brightbox/models/compute/zone.rb +22 -0
  1027. data/lib/fog/brightbox/models/compute/zones.rb +29 -0
  1028. data/lib/fog/brightbox/oauth2.rb +164 -0
  1029. data/lib/fog/brightbox/requests/compute/activate_console_server.rb +21 -0
  1030. data/lib/fog/brightbox/requests/compute/add_listeners_load_balancer.rb +23 -0
  1031. data/lib/fog/brightbox/requests/compute/add_nodes_load_balancer.rb +23 -0
  1032. data/lib/fog/brightbox/requests/compute/add_servers_server_group.rb +26 -0
  1033. data/lib/fog/brightbox/requests/compute/apply_to_firewall_policy.rb +23 -0
  1034. data/lib/fog/brightbox/requests/compute/create_api_client.rb +22 -0
  1035. data/lib/fog/brightbox/requests/compute/create_application.rb +22 -0
  1036. data/lib/fog/brightbox/requests/compute/create_cloud_ip.rb +23 -0
  1037. data/lib/fog/brightbox/requests/compute/create_firewall_policy.rb +24 -0
  1038. data/lib/fog/brightbox/requests/compute/create_firewall_rule.rb +28 -0
  1039. data/lib/fog/brightbox/requests/compute/create_image.rb +29 -0
  1040. data/lib/fog/brightbox/requests/compute/create_load_balancer.rb +25 -0
  1041. data/lib/fog/brightbox/requests/compute/create_server.rb +28 -0
  1042. data/lib/fog/brightbox/requests/compute/create_server_group.rb +22 -0
  1043. data/lib/fog/brightbox/requests/compute/destroy_api_client.rb +21 -0
  1044. data/lib/fog/brightbox/requests/compute/destroy_application.rb +21 -0
  1045. data/lib/fog/brightbox/requests/compute/destroy_cloud_ip.rb +21 -0
  1046. data/lib/fog/brightbox/requests/compute/destroy_firewall_policy.rb +21 -0
  1047. data/lib/fog/brightbox/requests/compute/destroy_firewall_rule.rb +21 -0
  1048. data/lib/fog/brightbox/requests/compute/destroy_image.rb +21 -0
  1049. data/lib/fog/brightbox/requests/compute/destroy_load_balancer.rb +21 -0
  1050. data/lib/fog/brightbox/requests/compute/destroy_server.rb +21 -0
  1051. data/lib/fog/brightbox/requests/compute/destroy_server_group.rb +21 -0
  1052. data/lib/fog/brightbox/requests/compute/get_account.rb +29 -0
  1053. data/lib/fog/brightbox/requests/compute/get_api_client.rb +21 -0
  1054. data/lib/fog/brightbox/requests/compute/get_application.rb +21 -0
  1055. data/lib/fog/brightbox/requests/compute/get_authenticated_user.rb +17 -0
  1056. data/lib/fog/brightbox/requests/compute/get_cloud_ip.rb +21 -0
  1057. data/lib/fog/brightbox/requests/compute/get_firewall_policy.rb +21 -0
  1058. data/lib/fog/brightbox/requests/compute/get_firewall_rule.rb +21 -0
  1059. data/lib/fog/brightbox/requests/compute/get_image.rb +21 -0
  1060. data/lib/fog/brightbox/requests/compute/get_interface.rb +21 -0
  1061. data/lib/fog/brightbox/requests/compute/get_load_balancer.rb +21 -0
  1062. data/lib/fog/brightbox/requests/compute/get_scoped_account.rb +15 -0
  1063. data/lib/fog/brightbox/requests/compute/get_server.rb +21 -0
  1064. data/lib/fog/brightbox/requests/compute/get_server_group.rb +21 -0
  1065. data/lib/fog/brightbox/requests/compute/get_server_type.rb +21 -0
  1066. data/lib/fog/brightbox/requests/compute/get_user.rb +29 -0
  1067. data/lib/fog/brightbox/requests/compute/get_zone.rb +21 -0
  1068. data/lib/fog/brightbox/requests/compute/list_accounts.rb +17 -0
  1069. data/lib/fog/brightbox/requests/compute/list_api_clients.rb +19 -0
  1070. data/lib/fog/brightbox/requests/compute/list_applications.rb +19 -0
  1071. data/lib/fog/brightbox/requests/compute/list_cloud_ips.rb +19 -0
  1072. data/lib/fog/brightbox/requests/compute/list_firewall_policies.rb +19 -0
  1073. data/lib/fog/brightbox/requests/compute/list_images.rb +19 -0
  1074. data/lib/fog/brightbox/requests/compute/list_load_balancers.rb +19 -0
  1075. data/lib/fog/brightbox/requests/compute/list_server_groups.rb +19 -0
  1076. data/lib/fog/brightbox/requests/compute/list_server_types.rb +19 -0
  1077. data/lib/fog/brightbox/requests/compute/list_servers.rb +19 -0
  1078. data/lib/fog/brightbox/requests/compute/list_users.rb +19 -0
  1079. data/lib/fog/brightbox/requests/compute/list_zones.rb +19 -0
  1080. data/lib/fog/brightbox/requests/compute/map_cloud_ip.rb +23 -0
  1081. data/lib/fog/brightbox/requests/compute/move_servers_server_group.rb +27 -0
  1082. data/lib/fog/brightbox/requests/compute/remove_firewall_policy.rb +23 -0
  1083. data/lib/fog/brightbox/requests/compute/remove_listeners_load_balancer.rb +23 -0
  1084. data/lib/fog/brightbox/requests/compute/remove_nodes_load_balancer.rb +23 -0
  1085. data/lib/fog/brightbox/requests/compute/remove_servers_server_group.rb +26 -0
  1086. data/lib/fog/brightbox/requests/compute/reset_ftp_password_account.rb +32 -0
  1087. data/lib/fog/brightbox/requests/compute/reset_ftp_password_scoped_account.rb +18 -0
  1088. data/lib/fog/brightbox/requests/compute/reset_secret_api_client.rb +26 -0
  1089. data/lib/fog/brightbox/requests/compute/reset_secret_application.rb +21 -0
  1090. data/lib/fog/brightbox/requests/compute/shutdown_server.rb +21 -0
  1091. data/lib/fog/brightbox/requests/compute/snapshot_server.rb +21 -0
  1092. data/lib/fog/brightbox/requests/compute/start_server.rb +21 -0
  1093. data/lib/fog/brightbox/requests/compute/stop_server.rb +21 -0
  1094. data/lib/fog/brightbox/requests/compute/unmap_cloud_ip.rb +21 -0
  1095. data/lib/fog/brightbox/requests/compute/update_account.rb +60 -0
  1096. data/lib/fog/brightbox/requests/compute/update_api_client.rb +25 -0
  1097. data/lib/fog/brightbox/requests/compute/update_application.rb +25 -0
  1098. data/lib/fog/brightbox/requests/compute/update_cloud_ip.rb +26 -0
  1099. data/lib/fog/brightbox/requests/compute/update_firewall_rule.rb +30 -0
  1100. data/lib/fog/brightbox/requests/compute/update_image.rb +30 -0
  1101. data/lib/fog/brightbox/requests/compute/update_load_balancer.rb +28 -0
  1102. data/lib/fog/brightbox/requests/compute/update_scoped_account.rb +30 -0
  1103. data/lib/fog/brightbox/requests/compute/update_server.rb +25 -0
  1104. data/lib/fog/brightbox/requests/compute/update_server_group.rb +25 -0
  1105. data/lib/fog/brightbox/requests/compute/update_user.rb +28 -0
  1106. data/lib/fog/cdn.rb +30 -0
  1107. data/lib/fog/clodo.rb +34 -0
  1108. data/lib/fog/clodo/compute.rb +150 -0
  1109. data/lib/fog/clodo/models/compute/image.rb +31 -0
  1110. data/lib/fog/clodo/models/compute/images.rb +28 -0
  1111. data/lib/fog/clodo/models/compute/server.rb +126 -0
  1112. data/lib/fog/clodo/models/compute/servers.rb +36 -0
  1113. data/lib/fog/clodo/requests/compute/add_ip_address.rb +49 -0
  1114. data/lib/fog/clodo/requests/compute/create_server.rb +112 -0
  1115. data/lib/fog/clodo/requests/compute/delete_ip_address.rb +47 -0
  1116. data/lib/fog/clodo/requests/compute/delete_server.rb +44 -0
  1117. data/lib/fog/clodo/requests/compute/get_image_details.rb +20 -0
  1118. data/lib/fog/clodo/requests/compute/get_server_details.rb +49 -0
  1119. data/lib/fog/clodo/requests/compute/list_images.rb +48 -0
  1120. data/lib/fog/clodo/requests/compute/list_images_detail.rb +61 -0
  1121. data/lib/fog/clodo/requests/compute/list_servers.rb +50 -0
  1122. data/lib/fog/clodo/requests/compute/list_servers_detail.rb +51 -0
  1123. data/lib/fog/clodo/requests/compute/move_ip_address.rb +34 -0
  1124. data/lib/fog/clodo/requests/compute/reboot_server.rb +19 -0
  1125. data/lib/fog/clodo/requests/compute/rebuild_server.rb +21 -0
  1126. data/lib/fog/clodo/requests/compute/server_action.rb +25 -0
  1127. data/lib/fog/clodo/requests/compute/start_server.rb +19 -0
  1128. data/lib/fog/clodo/requests/compute/stop_server.rb +19 -0
  1129. data/lib/fog/cloudstack.rb +40 -0
  1130. data/lib/fog/cloudstack/compute.rb +441 -0
  1131. data/lib/fog/cloudstack/models/compute/address.rb +17 -0
  1132. data/lib/fog/cloudstack/models/compute/flavor.rb +33 -0
  1133. data/lib/fog/cloudstack/models/compute/flavors.rb +28 -0
  1134. data/lib/fog/cloudstack/models/compute/image.rb +72 -0
  1135. data/lib/fog/cloudstack/models/compute/images.rb +41 -0
  1136. data/lib/fog/cloudstack/models/compute/job.rb +42 -0
  1137. data/lib/fog/cloudstack/models/compute/jobs.rb +28 -0
  1138. data/lib/fog/cloudstack/models/compute/security_group.rb +50 -0
  1139. data/lib/fog/cloudstack/models/compute/security_group_rule.rb +62 -0
  1140. data/lib/fog/cloudstack/models/compute/security_group_rules.rb +37 -0
  1141. data/lib/fog/cloudstack/models/compute/security_groups.rb +27 -0
  1142. data/lib/fog/cloudstack/models/compute/server.rb +118 -0
  1143. data/lib/fog/cloudstack/models/compute/servers.rb +34 -0
  1144. data/lib/fog/cloudstack/models/compute/volume.rb +115 -0
  1145. data/lib/fog/cloudstack/models/compute/volumes.rb +28 -0
  1146. data/lib/fog/cloudstack/models/compute/zone.rb +38 -0
  1147. data/lib/fog/cloudstack/models/compute/zones.rb +33 -0
  1148. data/lib/fog/cloudstack/requests/compute/acquire_ip_address.rb +21 -0
  1149. data/lib/fog/cloudstack/requests/compute/assign_to_load_balancer_rule.rb +25 -0
  1150. data/lib/fog/cloudstack/requests/compute/assign_virtual_machine.rb +18 -0
  1151. data/lib/fog/cloudstack/requests/compute/attach_volume.rb +70 -0
  1152. data/lib/fog/cloudstack/requests/compute/authorize_security_group_egress.rb +68 -0
  1153. data/lib/fog/cloudstack/requests/compute/authorize_security_group_ingress.rb +73 -0
  1154. data/lib/fog/cloudstack/requests/compute/change_service_for_virtual_machine.rb +20 -0
  1155. data/lib/fog/cloudstack/requests/compute/create_account.rb +20 -0
  1156. data/lib/fog/cloudstack/requests/compute/create_domain.rb +20 -0
  1157. data/lib/fog/cloudstack/requests/compute/create_load_balancer_rule.rb +20 -0
  1158. data/lib/fog/cloudstack/requests/compute/create_network.rb +20 -0
  1159. data/lib/fog/cloudstack/requests/compute/create_port_forwarding_rule.rb +20 -0
  1160. data/lib/fog/cloudstack/requests/compute/create_security_group.rb +28 -0
  1161. data/lib/fog/cloudstack/requests/compute/create_snapshot.rb +20 -0
  1162. data/lib/fog/cloudstack/requests/compute/create_snapshot_policy.rb +20 -0
  1163. data/lib/fog/cloudstack/requests/compute/create_ssh_key_pair.rb +22 -0
  1164. data/lib/fog/cloudstack/requests/compute/create_user.rb +20 -0
  1165. data/lib/fog/cloudstack/requests/compute/create_volume.rb +63 -0
  1166. data/lib/fog/cloudstack/requests/compute/create_zone.rb +20 -0
  1167. data/lib/fog/cloudstack/requests/compute/delete_account.rb +20 -0
  1168. data/lib/fog/cloudstack/requests/compute/delete_domain.rb +20 -0
  1169. data/lib/fog/cloudstack/requests/compute/delete_load_balancer_rule.rb +20 -0
  1170. data/lib/fog/cloudstack/requests/compute/delete_port_forwarding_rule.rb +20 -0
  1171. data/lib/fog/cloudstack/requests/compute/delete_security_group.rb +37 -0
  1172. data/lib/fog/cloudstack/requests/compute/delete_snapshot.rb +20 -0
  1173. data/lib/fog/cloudstack/requests/compute/delete_snapshot_policies.rb +20 -0
  1174. data/lib/fog/cloudstack/requests/compute/delete_ssh_key_pair.rb +21 -0
  1175. data/lib/fog/cloudstack/requests/compute/delete_template.rb +20 -0
  1176. data/lib/fog/cloudstack/requests/compute/delete_user.rb +20 -0
  1177. data/lib/fog/cloudstack/requests/compute/delete_volume.rb +40 -0
  1178. data/lib/fog/cloudstack/requests/compute/deploy_virtual_machine.rb +129 -0
  1179. data/lib/fog/cloudstack/requests/compute/destroy_virtual_machine.rb +51 -0
  1180. data/lib/fog/cloudstack/requests/compute/detach_volume.rb +62 -0
  1181. data/lib/fog/cloudstack/requests/compute/disable_account.rb +20 -0
  1182. data/lib/fog/cloudstack/requests/compute/disable_user.rb +20 -0
  1183. data/lib/fog/cloudstack/requests/compute/enable_account.rb +20 -0
  1184. data/lib/fog/cloudstack/requests/compute/enable_user.rb +20 -0
  1185. data/lib/fog/cloudstack/requests/compute/generate_usage_records.rb +28 -0
  1186. data/lib/fog/cloudstack/requests/compute/get_vm_password.rb +21 -0
  1187. data/lib/fog/cloudstack/requests/compute/list_accounts.rb +20 -0
  1188. data/lib/fog/cloudstack/requests/compute/list_alerts.rb +20 -0
  1189. data/lib/fog/cloudstack/requests/compute/list_async_jobs.rb +32 -0
  1190. data/lib/fog/cloudstack/requests/compute/list_capabilities.rb +20 -0
  1191. data/lib/fog/cloudstack/requests/compute/list_capacity.rb +20 -0
  1192. data/lib/fog/cloudstack/requests/compute/list_clusters.rb +20 -0
  1193. data/lib/fog/cloudstack/requests/compute/list_configurations.rb +20 -0
  1194. data/lib/fog/cloudstack/requests/compute/list_disk_offerings.rb +20 -0
  1195. data/lib/fog/cloudstack/requests/compute/list_domain_children.rb +20 -0
  1196. data/lib/fog/cloudstack/requests/compute/list_domains.rb +20 -0
  1197. data/lib/fog/cloudstack/requests/compute/list_events.rb +20 -0
  1198. data/lib/fog/cloudstack/requests/compute/list_external_firewalls.rb +20 -0
  1199. data/lib/fog/cloudstack/requests/compute/list_external_load_balancers.rb +20 -0
  1200. data/lib/fog/cloudstack/requests/compute/list_firewall_rules.rb +15 -0
  1201. data/lib/fog/cloudstack/requests/compute/list_hosts.rb +20 -0
  1202. data/lib/fog/cloudstack/requests/compute/list_hypervisors.rb +20 -0
  1203. data/lib/fog/cloudstack/requests/compute/list_instance_groups.rb +20 -0
  1204. data/lib/fog/cloudstack/requests/compute/list_isos.rb +20 -0
  1205. data/lib/fog/cloudstack/requests/compute/list_load_balancer_rule_instances.rb +23 -0
  1206. data/lib/fog/cloudstack/requests/compute/list_load_balancer_rules.rb +22 -0
  1207. data/lib/fog/cloudstack/requests/compute/list_network_offerings.rb +20 -0
  1208. data/lib/fog/cloudstack/requests/compute/list_networks.rb +20 -0
  1209. data/lib/fog/cloudstack/requests/compute/list_os_categories.rb +22 -0
  1210. data/lib/fog/cloudstack/requests/compute/list_os_types.rb +22 -0
  1211. data/lib/fog/cloudstack/requests/compute/list_pods.rb +20 -0
  1212. data/lib/fog/cloudstack/requests/compute/list_port_forwarding_rules.rb +22 -0
  1213. data/lib/fog/cloudstack/requests/compute/list_public_ip_addresses.rb +22 -0
  1214. data/lib/fog/cloudstack/requests/compute/list_resource_limits.rb +20 -0
  1215. data/lib/fog/cloudstack/requests/compute/list_security_groups.rb +38 -0
  1216. data/lib/fog/cloudstack/requests/compute/list_service_offerings.rb +42 -0
  1217. data/lib/fog/cloudstack/requests/compute/list_snapshot_policies.rb +20 -0
  1218. data/lib/fog/cloudstack/requests/compute/list_snapshots.rb +20 -0
  1219. data/lib/fog/cloudstack/requests/compute/list_ssh_key_pairs.rb +20 -0
  1220. data/lib/fog/cloudstack/requests/compute/list_storage_pools.rb +20 -0
  1221. data/lib/fog/cloudstack/requests/compute/list_templates.rb +35 -0
  1222. data/lib/fog/cloudstack/requests/compute/list_usage_records.rb +28 -0
  1223. data/lib/fog/cloudstack/requests/compute/list_users.rb +20 -0
  1224. data/lib/fog/cloudstack/requests/compute/list_virtual_machines.rb +26 -0
  1225. data/lib/fog/cloudstack/requests/compute/list_volumes.rb +38 -0
  1226. data/lib/fog/cloudstack/requests/compute/list_zones.rb +34 -0
  1227. data/lib/fog/cloudstack/requests/compute/migrate_virtual_machine.rb +20 -0
  1228. data/lib/fog/cloudstack/requests/compute/query_async_job_result.rb +32 -0
  1229. data/lib/fog/cloudstack/requests/compute/reboot_virtual_machine.rb +31 -0
  1230. data/lib/fog/cloudstack/requests/compute/recover_virtual_machine.rb +20 -0
  1231. data/lib/fog/cloudstack/requests/compute/register_ssh_key_pair.rb +20 -0
  1232. data/lib/fog/cloudstack/requests/compute/register_template.rb +35 -0
  1233. data/lib/fog/cloudstack/requests/compute/register_user_keys.rb +20 -0
  1234. data/lib/fog/cloudstack/requests/compute/remove_from_load_balancer_rule.rb +25 -0
  1235. data/lib/fog/cloudstack/requests/compute/reset_password_for_virtual_machine.rb +21 -0
  1236. data/lib/fog/cloudstack/requests/compute/revoke_security_group_egress.rb +42 -0
  1237. data/lib/fog/cloudstack/requests/compute/revoke_security_group_ingress.rb +47 -0
  1238. data/lib/fog/cloudstack/requests/compute/start_virtual_machine.rb +20 -0
  1239. data/lib/fog/cloudstack/requests/compute/stop_virtual_machine.rb +20 -0
  1240. data/lib/fog/cloudstack/requests/compute/update_account.rb +20 -0
  1241. data/lib/fog/cloudstack/requests/compute/update_domain.rb +20 -0
  1242. data/lib/fog/cloudstack/requests/compute/update_resource_count.rb +20 -0
  1243. data/lib/fog/cloudstack/requests/compute/update_user.rb +20 -0
  1244. data/lib/fog/cloudstack/requests/compute/update_virtual_machine.rb +20 -0
  1245. data/lib/fog/compute.rb +123 -0
  1246. data/lib/fog/compute/models/server.rb +73 -0
  1247. data/lib/fog/core.rb +38 -0
  1248. data/lib/fog/core/attributes.rb +204 -0
  1249. data/lib/fog/core/collection.rb +134 -0
  1250. data/lib/fog/core/connection.rb +36 -0
  1251. data/lib/fog/core/credentials.rb +65 -0
  1252. data/lib/fog/core/current_machine.rb +34 -0
  1253. data/lib/fog/core/deprecation.rb +23 -0
  1254. data/lib/fog/core/errors.rb +102 -0
  1255. data/lib/fog/core/hmac.rb +48 -0
  1256. data/lib/fog/core/json.rb +46 -0
  1257. data/lib/fog/core/logger.rb +43 -0
  1258. data/lib/fog/core/mock.rb +92 -0
  1259. data/lib/fog/core/model.rb +69 -0
  1260. data/lib/fog/core/parser.rb +103 -0
  1261. data/lib/fog/core/provider.rb +35 -0
  1262. data/lib/fog/core/scp.rb +95 -0
  1263. data/lib/fog/core/service.rb +223 -0
  1264. data/lib/fog/core/ssh.rb +136 -0
  1265. data/lib/fog/core/time.rb +32 -0
  1266. data/lib/fog/core/timeout.rb +11 -0
  1267. data/lib/fog/core/wait_for.rb +15 -0
  1268. data/lib/fog/dns.rb +56 -0
  1269. data/lib/fog/dnsimple.rb +11 -0
  1270. data/lib/fog/dnsimple/dns.rb +95 -0
  1271. data/lib/fog/dnsimple/models/dns/record.rb +67 -0
  1272. data/lib/fog/dnsimple/models/dns/records.rb +38 -0
  1273. data/lib/fog/dnsimple/models/dns/zone.rb +50 -0
  1274. data/lib/fog/dnsimple/models/dns/zones.rb +29 -0
  1275. data/lib/fog/dnsimple/requests/dns/create_domain.rb +27 -0
  1276. data/lib/fog/dnsimple/requests/dns/create_record.rb +48 -0
  1277. data/lib/fog/dnsimple/requests/dns/delete_domain.rb +26 -0
  1278. data/lib/fog/dnsimple/requests/dns/delete_record.rb +21 -0
  1279. data/lib/fog/dnsimple/requests/dns/get_domain.rb +37 -0
  1280. data/lib/fog/dnsimple/requests/dns/get_record.rb +34 -0
  1281. data/lib/fog/dnsimple/requests/dns/list_domains.rb +35 -0
  1282. data/lib/fog/dnsimple/requests/dns/list_records.rb +32 -0
  1283. data/lib/fog/dnsimple/requests/dns/update_record.rb +42 -0
  1284. data/lib/fog/dnsmadeeasy.rb +11 -0
  1285. data/lib/fog/dnsmadeeasy/dns.rb +135 -0
  1286. data/lib/fog/dnsmadeeasy/models/dns/record.rb +80 -0
  1287. data/lib/fog/dnsmadeeasy/models/dns/records.rb +36 -0
  1288. data/lib/fog/dnsmadeeasy/models/dns/zone.rb +42 -0
  1289. data/lib/fog/dnsmadeeasy/models/dns/zones.rb +30 -0
  1290. data/lib/fog/dnsmadeeasy/requests/dns/create_domain.rb +29 -0
  1291. data/lib/fog/dnsmadeeasy/requests/dns/create_record.rb +62 -0
  1292. data/lib/fog/dnsmadeeasy/requests/dns/create_secondary.rb +36 -0
  1293. data/lib/fog/dnsmadeeasy/requests/dns/delete_all_domains.rb +23 -0
  1294. data/lib/fog/dnsmadeeasy/requests/dns/delete_all_secondary.rb +22 -0
  1295. data/lib/fog/dnsmadeeasy/requests/dns/delete_domain.rb +25 -0
  1296. data/lib/fog/dnsmadeeasy/requests/dns/delete_record.rb +26 -0
  1297. data/lib/fog/dnsmadeeasy/requests/dns/delete_secondary.rb +25 -0
  1298. data/lib/fog/dnsmadeeasy/requests/dns/get_domain.rb +29 -0
  1299. data/lib/fog/dnsmadeeasy/requests/dns/get_record.rb +38 -0
  1300. data/lib/fog/dnsmadeeasy/requests/dns/get_secondary.rb +29 -0
  1301. data/lib/fog/dnsmadeeasy/requests/dns/list_domains.rb +24 -0
  1302. data/lib/fog/dnsmadeeasy/requests/dns/list_records.rb +42 -0
  1303. data/lib/fog/dnsmadeeasy/requests/dns/list_secondary.rb +24 -0
  1304. data/lib/fog/dnsmadeeasy/requests/dns/update_record.rb +56 -0
  1305. data/lib/fog/dnsmadeeasy/requests/dns/update_secondary.rb +36 -0
  1306. data/lib/fog/dynect.rb +26 -0
  1307. data/lib/fog/dynect/dns.rb +139 -0
  1308. data/lib/fog/dynect/models/dns/record.rb +66 -0
  1309. data/lib/fog/dynect/models/dns/records.rb +53 -0
  1310. data/lib/fog/dynect/models/dns/zone.rb +60 -0
  1311. data/lib/fog/dynect/models/dns/zones.rb +29 -0
  1312. data/lib/fog/dynect/requests/dns/delete_record.rb +56 -0
  1313. data/lib/fog/dynect/requests/dns/delete_zone.rb +42 -0
  1314. data/lib/fog/dynect/requests/dns/get_node_list.rb +56 -0
  1315. data/lib/fog/dynect/requests/dns/get_record.rb +84 -0
  1316. data/lib/fog/dynect/requests/dns/get_zone.rb +58 -0
  1317. data/lib/fog/dynect/requests/dns/post_record.rb +72 -0
  1318. data/lib/fog/dynect/requests/dns/post_session.rb +44 -0
  1319. data/lib/fog/dynect/requests/dns/post_zone.rb +71 -0
  1320. data/lib/fog/dynect/requests/dns/put_zone.rb +76 -0
  1321. data/lib/fog/ecloud.rb +17 -0
  1322. data/lib/fog/ecloud/collection.rb +26 -0
  1323. data/lib/fog/ecloud/compute.rb +515 -0
  1324. data/lib/fog/ecloud/generate_collection.rb +130 -0
  1325. data/lib/fog/ecloud/ipaddr.rb +5 -0
  1326. data/lib/fog/ecloud/mock_data_classes.rb +768 -0
  1327. data/lib/fog/ecloud/model.rb +22 -0
  1328. data/lib/fog/ecloud/models/compute/admin_organization.rb +39 -0
  1329. data/lib/fog/ecloud/models/compute/admin_organizations.rb +27 -0
  1330. data/lib/fog/ecloud/models/compute/api_key.rb +21 -0
  1331. data/lib/fog/ecloud/models/compute/api_keys.rb +27 -0
  1332. data/lib/fog/ecloud/models/compute/association.rb +23 -0
  1333. data/lib/fog/ecloud/models/compute/associations.rb +35 -0
  1334. data/lib/fog/ecloud/models/compute/authentication_level.rb +22 -0
  1335. data/lib/fog/ecloud/models/compute/authentication_levels.rb +27 -0
  1336. data/lib/fog/ecloud/models/compute/backup_internet_service.rb +45 -0
  1337. data/lib/fog/ecloud/models/compute/backup_internet_services.rb +42 -0
  1338. data/lib/fog/ecloud/models/compute/catalog.rb +40 -0
  1339. data/lib/fog/ecloud/models/compute/catalog_configuration.rb +23 -0
  1340. data/lib/fog/ecloud/models/compute/catalog_configurations.rb +27 -0
  1341. data/lib/fog/ecloud/models/compute/catalog_item.rb +24 -0
  1342. data/lib/fog/ecloud/models/compute/compute_pool.rb +59 -0
  1343. data/lib/fog/ecloud/models/compute/compute_pools.rb +34 -0
  1344. data/lib/fog/ecloud/models/compute/cpu_usage_detail.rb +17 -0
  1345. data/lib/fog/ecloud/models/compute/cpu_usage_detail_summary.rb +27 -0
  1346. data/lib/fog/ecloud/models/compute/environment.rb +105 -0
  1347. data/lib/fog/ecloud/models/compute/environments.rb +40 -0
  1348. data/lib/fog/ecloud/models/compute/firewall_acl.rb +27 -0
  1349. data/lib/fog/ecloud/models/compute/firewall_acls.rb +28 -0
  1350. data/lib/fog/ecloud/models/compute/group.rb +39 -0
  1351. data/lib/fog/ecloud/models/compute/groups.rb +28 -0
  1352. data/lib/fog/ecloud/models/compute/guest_process.rb +15 -0
  1353. data/lib/fog/ecloud/models/compute/guest_processes.rb +27 -0
  1354. data/lib/fog/ecloud/models/compute/hardware_configuration.rb +18 -0
  1355. data/lib/fog/ecloud/models/compute/hardware_configurations.rb +27 -0
  1356. data/lib/fog/ecloud/models/compute/internet_service.rb +91 -0
  1357. data/lib/fog/ecloud/models/compute/internet_services.rb +46 -0
  1358. data/lib/fog/ecloud/models/compute/ip_address.rb +25 -0
  1359. data/lib/fog/ecloud/models/compute/ip_addresses.rb +28 -0
  1360. data/lib/fog/ecloud/models/compute/layout.rb +20 -0
  1361. data/lib/fog/ecloud/models/compute/layouts.rb +27 -0
  1362. data/lib/fog/ecloud/models/compute/location.rb +23 -0
  1363. data/lib/fog/ecloud/models/compute/locations.rb +31 -0
  1364. data/lib/fog/ecloud/models/compute/login_banner.rb +16 -0
  1365. data/lib/fog/ecloud/models/compute/login_banners.rb +27 -0
  1366. data/lib/fog/ecloud/models/compute/memory_usage_detail.rb +16 -0
  1367. data/lib/fog/ecloud/models/compute/memory_usage_detail_summary.rb +27 -0
  1368. data/lib/fog/ecloud/models/compute/monitor.rb +46 -0
  1369. data/lib/fog/ecloud/models/compute/monitors.rb +31 -0
  1370. data/lib/fog/ecloud/models/compute/network.rb +36 -0
  1371. data/lib/fog/ecloud/models/compute/networks.rb +29 -0
  1372. data/lib/fog/ecloud/models/compute/node.rb +39 -0
  1373. data/lib/fog/ecloud/models/compute/nodes.rb +44 -0
  1374. data/lib/fog/ecloud/models/compute/operating_system.rb +17 -0
  1375. data/lib/fog/ecloud/models/compute/operating_system_families.rb +27 -0
  1376. data/lib/fog/ecloud/models/compute/operating_system_family.rb +21 -0
  1377. data/lib/fog/ecloud/models/compute/operating_systems.rb +26 -0
  1378. data/lib/fog/ecloud/models/compute/organization.rb +79 -0
  1379. data/lib/fog/ecloud/models/compute/organizations.rb +39 -0
  1380. data/lib/fog/ecloud/models/compute/password_complexity_rule.rb +49 -0
  1381. data/lib/fog/ecloud/models/compute/password_complexity_rules.rb +27 -0
  1382. data/lib/fog/ecloud/models/compute/physical_device.rb +22 -0
  1383. data/lib/fog/ecloud/models/compute/physical_devices.rb +27 -0
  1384. data/lib/fog/ecloud/models/compute/public_ip.rb +26 -0
  1385. data/lib/fog/ecloud/models/compute/public_ips.rb +33 -0
  1386. data/lib/fog/ecloud/models/compute/rnat.rb +27 -0
  1387. data/lib/fog/ecloud/models/compute/rnats.rb +27 -0
  1388. data/lib/fog/ecloud/models/compute/role.rb +24 -0
  1389. data/lib/fog/ecloud/models/compute/roles.rb +37 -0
  1390. data/lib/fog/ecloud/models/compute/row.rb +53 -0
  1391. data/lib/fog/ecloud/models/compute/rows.rb +37 -0
  1392. data/lib/fog/ecloud/models/compute/server.rb +277 -0
  1393. data/lib/fog/ecloud/models/compute/server_configuration_option.rb +17 -0
  1394. data/lib/fog/ecloud/models/compute/server_configuration_options.rb +27 -0
  1395. data/lib/fog/ecloud/models/compute/servers.rb +69 -0
  1396. data/lib/fog/ecloud/models/compute/ssh_key.rb +20 -0
  1397. data/lib/fog/ecloud/models/compute/ssh_keys.rb +27 -0
  1398. data/lib/fog/ecloud/models/compute/storage_usage_detail.rb +16 -0
  1399. data/lib/fog/ecloud/models/compute/storage_usage_detail_summary.rb +27 -0
  1400. data/lib/fog/ecloud/models/compute/support_ticket.rb +29 -0
  1401. data/lib/fog/ecloud/models/compute/support_tickets.rb +27 -0
  1402. data/lib/fog/ecloud/models/compute/tag.rb +13 -0
  1403. data/lib/fog/ecloud/models/compute/tags.rb +27 -0
  1404. data/lib/fog/ecloud/models/compute/task.rb +20 -0
  1405. data/lib/fog/ecloud/models/compute/tasks.rb +31 -0
  1406. data/lib/fog/ecloud/models/compute/template.rb +24 -0
  1407. data/lib/fog/ecloud/models/compute/templates.rb +40 -0
  1408. data/lib/fog/ecloud/models/compute/trusted_network_group.rb +33 -0
  1409. data/lib/fog/ecloud/models/compute/trusted_network_groups.rb +28 -0
  1410. data/lib/fog/ecloud/models/compute/user.rb +35 -0
  1411. data/lib/fog/ecloud/models/compute/users.rb +27 -0
  1412. data/lib/fog/ecloud/requests/compute/admin_disable_support_access.rb +9 -0
  1413. data/lib/fog/ecloud/requests/compute/admin_edit_authentication_levels.rb +34 -0
  1414. data/lib/fog/ecloud/requests/compute/admin_edit_login_banner.rb +32 -0
  1415. data/lib/fog/ecloud/requests/compute/admin_edit_password_complexity_rules.rb +74 -0
  1416. data/lib/fog/ecloud/requests/compute/admin_enable_support_access.rb +9 -0
  1417. data/lib/fog/ecloud/requests/compute/backup_internet_service_create.rb +47 -0
  1418. data/lib/fog/ecloud/requests/compute/backup_internet_service_delete.rb +11 -0
  1419. data/lib/fog/ecloud/requests/compute/backup_internet_service_edit.rb +47 -0
  1420. data/lib/fog/ecloud/requests/compute/compute_pool_edit.rb +37 -0
  1421. data/lib/fog/ecloud/requests/compute/firewall_acls_create.rb +79 -0
  1422. data/lib/fog/ecloud/requests/compute/firewall_acls_delete.rb +11 -0
  1423. data/lib/fog/ecloud/requests/compute/get_admin_organization.rb +11 -0
  1424. data/lib/fog/ecloud/requests/compute/get_admin_organizations.rb +11 -0
  1425. data/lib/fog/ecloud/requests/compute/get_api_key.rb +11 -0
  1426. data/lib/fog/ecloud/requests/compute/get_api_keys.rb +11 -0
  1427. data/lib/fog/ecloud/requests/compute/get_association.rb +11 -0
  1428. data/lib/fog/ecloud/requests/compute/get_associations.rb +11 -0
  1429. data/lib/fog/ecloud/requests/compute/get_authentication_level.rb +11 -0
  1430. data/lib/fog/ecloud/requests/compute/get_authentication_levels.rb +11 -0
  1431. data/lib/fog/ecloud/requests/compute/get_backup_internet_service.rb +11 -0
  1432. data/lib/fog/ecloud/requests/compute/get_backup_internet_services.rb +11 -0
  1433. data/lib/fog/ecloud/requests/compute/get_catalog.rb +11 -0
  1434. data/lib/fog/ecloud/requests/compute/get_catalog_configuration.rb +11 -0
  1435. data/lib/fog/ecloud/requests/compute/get_catalog_configurations.rb +11 -0
  1436. data/lib/fog/ecloud/requests/compute/get_catalog_item.rb +11 -0
  1437. data/lib/fog/ecloud/requests/compute/get_compute_pool.rb +11 -0
  1438. data/lib/fog/ecloud/requests/compute/get_compute_pools.rb +11 -0
  1439. data/lib/fog/ecloud/requests/compute/get_cpu_usage_detail.rb +11 -0
  1440. data/lib/fog/ecloud/requests/compute/get_cpu_usage_detail_summary.rb +11 -0
  1441. data/lib/fog/ecloud/requests/compute/get_environment.rb +11 -0
  1442. data/lib/fog/ecloud/requests/compute/get_environments.rb +0 -0
  1443. data/lib/fog/ecloud/requests/compute/get_firewall_acl.rb +11 -0
  1444. data/lib/fog/ecloud/requests/compute/get_firewall_acls.rb +11 -0
  1445. data/lib/fog/ecloud/requests/compute/get_group.rb +11 -0
  1446. data/lib/fog/ecloud/requests/compute/get_groups.rb +11 -0
  1447. data/lib/fog/ecloud/requests/compute/get_guest_process.rb +11 -0
  1448. data/lib/fog/ecloud/requests/compute/get_guest_processes.rb +11 -0
  1449. data/lib/fog/ecloud/requests/compute/get_hardware_configuration.rb +11 -0
  1450. data/lib/fog/ecloud/requests/compute/get_hardware_configurations.rb +11 -0
  1451. data/lib/fog/ecloud/requests/compute/get_internet_service.rb +11 -0
  1452. data/lib/fog/ecloud/requests/compute/get_internet_services.rb +11 -0
  1453. data/lib/fog/ecloud/requests/compute/get_ip_address.rb +11 -0
  1454. data/lib/fog/ecloud/requests/compute/get_ip_addresses.rb +11 -0
  1455. data/lib/fog/ecloud/requests/compute/get_layout.rb +11 -0
  1456. data/lib/fog/ecloud/requests/compute/get_layouts.rb +11 -0
  1457. data/lib/fog/ecloud/requests/compute/get_location.rb +12 -0
  1458. data/lib/fog/ecloud/requests/compute/get_locations.rb +12 -0
  1459. data/lib/fog/ecloud/requests/compute/get_login_banner.rb +11 -0
  1460. data/lib/fog/ecloud/requests/compute/get_login_banners.rb +11 -0
  1461. data/lib/fog/ecloud/requests/compute/get_memory_usage_detail.rb +11 -0
  1462. data/lib/fog/ecloud/requests/compute/get_memory_usage_detail_summary.rb +11 -0
  1463. data/lib/fog/ecloud/requests/compute/get_monitor.rb +11 -0
  1464. data/lib/fog/ecloud/requests/compute/get_monitors.rb +11 -0
  1465. data/lib/fog/ecloud/requests/compute/get_network.rb +11 -0
  1466. data/lib/fog/ecloud/requests/compute/get_network_summary.rb +11 -0
  1467. data/lib/fog/ecloud/requests/compute/get_networks.rb +11 -0
  1468. data/lib/fog/ecloud/requests/compute/get_node.rb +11 -0
  1469. data/lib/fog/ecloud/requests/compute/get_nodes.rb +11 -0
  1470. data/lib/fog/ecloud/requests/compute/get_operating_system.rb +11 -0
  1471. data/lib/fog/ecloud/requests/compute/get_operating_system_families.rb +11 -0
  1472. data/lib/fog/ecloud/requests/compute/get_operating_system_family.rb +11 -0
  1473. data/lib/fog/ecloud/requests/compute/get_organization.rb +11 -0
  1474. data/lib/fog/ecloud/requests/compute/get_organizations.rb +11 -0
  1475. data/lib/fog/ecloud/requests/compute/get_password_complexity_rule.rb +11 -0
  1476. data/lib/fog/ecloud/requests/compute/get_password_complexity_rules.rb +11 -0
  1477. data/lib/fog/ecloud/requests/compute/get_physical_device.rb +11 -0
  1478. data/lib/fog/ecloud/requests/compute/get_physical_devices.rb +11 -0
  1479. data/lib/fog/ecloud/requests/compute/get_process.rb +11 -0
  1480. data/lib/fog/ecloud/requests/compute/get_processes.rb +11 -0
  1481. data/lib/fog/ecloud/requests/compute/get_public_ip.rb +11 -0
  1482. data/lib/fog/ecloud/requests/compute/get_public_ips.rb +11 -0
  1483. data/lib/fog/ecloud/requests/compute/get_rnat.rb +11 -0
  1484. data/lib/fog/ecloud/requests/compute/get_rnats.rb +11 -0
  1485. data/lib/fog/ecloud/requests/compute/get_role.rb +11 -0
  1486. data/lib/fog/ecloud/requests/compute/get_roles.rb +11 -0
  1487. data/lib/fog/ecloud/requests/compute/get_row.rb +11 -0
  1488. data/lib/fog/ecloud/requests/compute/get_rows.rb +11 -0
  1489. data/lib/fog/ecloud/requests/compute/get_server.rb +11 -0
  1490. data/lib/fog/ecloud/requests/compute/get_server_configuration_option.rb +11 -0
  1491. data/lib/fog/ecloud/requests/compute/get_server_configuration_options.rb +11 -0
  1492. data/lib/fog/ecloud/requests/compute/get_servers.rb +11 -0
  1493. data/lib/fog/ecloud/requests/compute/get_ssh_key.rb +11 -0
  1494. data/lib/fog/ecloud/requests/compute/get_ssh_keys.rb +11 -0
  1495. data/lib/fog/ecloud/requests/compute/get_storage_usage_detail.rb +11 -0
  1496. data/lib/fog/ecloud/requests/compute/get_storage_usage_detail_summary.rb +11 -0
  1497. data/lib/fog/ecloud/requests/compute/get_support_ticket.rb +11 -0
  1498. data/lib/fog/ecloud/requests/compute/get_support_tickets.rb +11 -0
  1499. data/lib/fog/ecloud/requests/compute/get_tag.rb +11 -0
  1500. data/lib/fog/ecloud/requests/compute/get_tags.rb +11 -0
  1501. data/lib/fog/ecloud/requests/compute/get_task.rb +11 -0
  1502. data/lib/fog/ecloud/requests/compute/get_tasks.rb +11 -0
  1503. data/lib/fog/ecloud/requests/compute/get_template.rb +11 -0
  1504. data/lib/fog/ecloud/requests/compute/get_templates.rb +11 -0
  1505. data/lib/fog/ecloud/requests/compute/get_trusted_network_group.rb +11 -0
  1506. data/lib/fog/ecloud/requests/compute/get_trusted_network_groups.rb +11 -0
  1507. data/lib/fog/ecloud/requests/compute/get_user.rb +11 -0
  1508. data/lib/fog/ecloud/requests/compute/get_users.rb +11 -0
  1509. data/lib/fog/ecloud/requests/compute/groups_create.rb +31 -0
  1510. data/lib/fog/ecloud/requests/compute/groups_delete.rb +11 -0
  1511. data/lib/fog/ecloud/requests/compute/groups_edit.rb +29 -0
  1512. data/lib/fog/ecloud/requests/compute/groups_movedown.rb +11 -0
  1513. data/lib/fog/ecloud/requests/compute/groups_moveup.rb +11 -0
  1514. data/lib/fog/ecloud/requests/compute/internet_service_create.rb +67 -0
  1515. data/lib/fog/ecloud/requests/compute/internet_service_delete.rb +11 -0
  1516. data/lib/fog/ecloud/requests/compute/internet_service_edit.rb +60 -0
  1517. data/lib/fog/ecloud/requests/compute/monitors_create_default.rb +11 -0
  1518. data/lib/fog/ecloud/requests/compute/monitors_create_ecv.rb +40 -0
  1519. data/lib/fog/ecloud/requests/compute/monitors_create_http.rb +44 -0
  1520. data/lib/fog/ecloud/requests/compute/monitors_create_loopback.rb +11 -0
  1521. data/lib/fog/ecloud/requests/compute/monitors_create_ping.rb +35 -0
  1522. data/lib/fog/ecloud/requests/compute/monitors_disable.rb +11 -0
  1523. data/lib/fog/ecloud/requests/compute/monitors_edit_ecv.rb +40 -0
  1524. data/lib/fog/ecloud/requests/compute/monitors_edit_http.rb +44 -0
  1525. data/lib/fog/ecloud/requests/compute/monitors_edit_ping.rb +35 -0
  1526. data/lib/fog/ecloud/requests/compute/monitors_enable.rb +11 -0
  1527. data/lib/fog/ecloud/requests/compute/node_service_create.rb +45 -0
  1528. data/lib/fog/ecloud/requests/compute/node_service_delete.rb +11 -0
  1529. data/lib/fog/ecloud/requests/compute/node_service_edit.rb +41 -0
  1530. data/lib/fog/ecloud/requests/compute/power_off.rb +11 -0
  1531. data/lib/fog/ecloud/requests/compute/power_on.rb +11 -0
  1532. data/lib/fog/ecloud/requests/compute/power_reset.rb +11 -0
  1533. data/lib/fog/ecloud/requests/compute/power_shutdown.rb +11 -0
  1534. data/lib/fog/ecloud/requests/compute/public_ip_activate.rb +11 -0
  1535. data/lib/fog/ecloud/requests/compute/rnat_associations_create_device.rb +32 -0
  1536. data/lib/fog/ecloud/requests/compute/rnat_associations_delete.rb +9 -0
  1537. data/lib/fog/ecloud/requests/compute/rnat_associations_edit_network.rb +31 -0
  1538. data/lib/fog/ecloud/requests/compute/rows_create.rb +29 -0
  1539. data/lib/fog/ecloud/requests/compute/rows_delete.rb +11 -0
  1540. data/lib/fog/ecloud/requests/compute/rows_edit.rb +29 -0
  1541. data/lib/fog/ecloud/requests/compute/rows_movedown.rb +11 -0
  1542. data/lib/fog/ecloud/requests/compute/rows_moveup.rb +11 -0
  1543. data/lib/fog/ecloud/requests/compute/trusted_network_groups_create.rb +53 -0
  1544. data/lib/fog/ecloud/requests/compute/trusted_network_groups_delete.rb +11 -0
  1545. data/lib/fog/ecloud/requests/compute/trusted_network_groups_edit.rb +53 -0
  1546. data/lib/fog/ecloud/requests/compute/virtual_machine_add_ip.rb +40 -0
  1547. data/lib/fog/ecloud/requests/compute/virtual_machine_copy.rb +118 -0
  1548. data/lib/fog/ecloud/requests/compute/virtual_machine_copy_identical.rb +45 -0
  1549. data/lib/fog/ecloud/requests/compute/virtual_machine_create_from_template.rb +125 -0
  1550. data/lib/fog/ecloud/requests/compute/virtual_machine_delete.rb +11 -0
  1551. data/lib/fog/ecloud/requests/compute/virtual_machine_edit.rb +47 -0
  1552. data/lib/fog/ecloud/requests/compute/virtual_machine_edit_hardware_configuration.rb +53 -0
  1553. data/lib/fog/ecloud/requests/compute/virtual_machine_import.rb +67 -0
  1554. data/lib/fog/ecloud/requests/compute/virtual_machine_upload_file.rb +31 -0
  1555. data/lib/fog/glesys.rb +11 -0
  1556. data/lib/fog/glesys/compute.rb +130 -0
  1557. data/lib/fog/glesys/models/compute/ip.rb +75 -0
  1558. data/lib/fog/glesys/models/compute/ips.rb +39 -0
  1559. data/lib/fog/glesys/models/compute/server.rb +76 -0
  1560. data/lib/fog/glesys/models/compute/servers.rb +40 -0
  1561. data/lib/fog/glesys/models/compute/template.rb +25 -0
  1562. data/lib/fog/glesys/models/compute/templates.rb +22 -0
  1563. data/lib/fog/glesys/requests/compute/create.rb +15 -0
  1564. data/lib/fog/glesys/requests/compute/destroy.rb +18 -0
  1565. data/lib/fog/glesys/requests/compute/ip_add.rb +14 -0
  1566. data/lib/fog/glesys/requests/compute/ip_details.rb +14 -0
  1567. data/lib/fog/glesys/requests/compute/ip_list_free.rb +14 -0
  1568. data/lib/fog/glesys/requests/compute/ip_list_own.rb +14 -0
  1569. data/lib/fog/glesys/requests/compute/ip_release.rb +14 -0
  1570. data/lib/fog/glesys/requests/compute/ip_remove.rb +14 -0
  1571. data/lib/fog/glesys/requests/compute/ip_take.rb +14 -0
  1572. data/lib/fog/glesys/requests/compute/list_servers.rb +19 -0
  1573. data/lib/fog/glesys/requests/compute/reboot.rb +14 -0
  1574. data/lib/fog/glesys/requests/compute/server_details.rb +14 -0
  1575. data/lib/fog/glesys/requests/compute/server_status.rb +14 -0
  1576. data/lib/fog/glesys/requests/compute/start.rb +14 -0
  1577. data/lib/fog/glesys/requests/compute/stop.rb +14 -0
  1578. data/lib/fog/glesys/requests/compute/template_list.rb +14 -0
  1579. data/lib/fog/go_grid.rb +11 -0
  1580. data/lib/fog/go_grid/compute.rb +116 -0
  1581. data/lib/fog/go_grid/models/compute/image.rb +60 -0
  1582. data/lib/fog/go_grid/models/compute/images.rb +33 -0
  1583. data/lib/fog/go_grid/models/compute/password.rb +50 -0
  1584. data/lib/fog/go_grid/models/compute/passwords.rb +36 -0
  1585. data/lib/fog/go_grid/models/compute/server.rb +98 -0
  1586. data/lib/fog/go_grid/models/compute/servers.rb +36 -0
  1587. data/lib/fog/go_grid/requests/compute/common_lookup_list.rb +28 -0
  1588. data/lib/fog/go_grid/requests/compute/grid_image_get.rb +41 -0
  1589. data/lib/fog/go_grid/requests/compute/grid_image_list.rb +44 -0
  1590. data/lib/fog/go_grid/requests/compute/grid_ip_list.rb +30 -0
  1591. data/lib/fog/go_grid/requests/compute/grid_loadbalancer_list.rb +28 -0
  1592. data/lib/fog/go_grid/requests/compute/grid_server_add.rb +36 -0
  1593. data/lib/fog/go_grid/requests/compute/grid_server_delete.rb +25 -0
  1594. data/lib/fog/go_grid/requests/compute/grid_server_get.rb +25 -0
  1595. data/lib/fog/go_grid/requests/compute/grid_server_list.rb +30 -0
  1596. data/lib/fog/go_grid/requests/compute/grid_server_power.rb +26 -0
  1597. data/lib/fog/go_grid/requests/compute/support_password_get.rb +28 -0
  1598. data/lib/fog/go_grid/requests/compute/support_password_list.rb +30 -0
  1599. data/lib/fog/google.rb +23 -0
  1600. data/lib/fog/google/models/storage/directories.rb +43 -0
  1601. data/lib/fog/google/models/storage/directory.rb +78 -0
  1602. data/lib/fog/google/models/storage/file.rb +142 -0
  1603. data/lib/fog/google/models/storage/files.rb +103 -0
  1604. data/lib/fog/google/parsers/storage/access_control_list.rb +48 -0
  1605. data/lib/fog/google/parsers/storage/copy_object.rb +22 -0
  1606. data/lib/fog/google/parsers/storage/get_bucket.rb +62 -0
  1607. data/lib/fog/google/parsers/storage/get_bucket_logging.rb +40 -0
  1608. data/lib/fog/google/parsers/storage/get_bucket_object_versions.rb +88 -0
  1609. data/lib/fog/google/parsers/storage/get_bucket_versioning.rb +24 -0
  1610. data/lib/fog/google/parsers/storage/get_request_payment.rb +20 -0
  1611. data/lib/fog/google/parsers/storage/get_service.rb +32 -0
  1612. data/lib/fog/google/requests/storage/copy_object.rb +72 -0
  1613. data/lib/fog/google/requests/storage/delete_bucket.rb +46 -0
  1614. data/lib/fog/google/requests/storage/delete_object.rb +50 -0
  1615. data/lib/fog/google/requests/storage/get_bucket.rb +110 -0
  1616. data/lib/fog/google/requests/storage/get_bucket_acl.rb +63 -0
  1617. data/lib/fog/google/requests/storage/get_object.rb +112 -0
  1618. data/lib/fog/google/requests/storage/get_object_acl.rb +74 -0
  1619. data/lib/fog/google/requests/storage/get_object_http_url.rb +51 -0
  1620. data/lib/fog/google/requests/storage/get_object_https_url.rb +51 -0
  1621. data/lib/fog/google/requests/storage/get_object_torrent.rb +47 -0
  1622. data/lib/fog/google/requests/storage/get_object_url.rb +37 -0
  1623. data/lib/fog/google/requests/storage/get_service.rb +53 -0
  1624. data/lib/fog/google/requests/storage/head_object.rb +64 -0
  1625. data/lib/fog/google/requests/storage/put_bucket.rb +75 -0
  1626. data/lib/fog/google/requests/storage/put_bucket_acl.rb +73 -0
  1627. data/lib/fog/google/requests/storage/put_object.rb +93 -0
  1628. data/lib/fog/google/requests/storage/put_object_url.rb +54 -0
  1629. data/lib/fog/google/storage.rb +282 -0
  1630. data/lib/fog/hp.rb +234 -0
  1631. data/lib/fog/hp/README_HP.rdoc +60 -0
  1632. data/lib/fog/hp/cdn.rb +131 -0
  1633. data/lib/fog/hp/compute.rb +182 -0
  1634. data/lib/fog/hp/models/compute/address.rb +71 -0
  1635. data/lib/fog/hp/models/compute/addresses.rb +29 -0
  1636. data/lib/fog/hp/models/compute/flavor.rb +24 -0
  1637. data/lib/fog/hp/models/compute/flavors.rb +28 -0
  1638. data/lib/fog/hp/models/compute/image.rb +37 -0
  1639. data/lib/fog/hp/models/compute/images.rb +34 -0
  1640. data/lib/fog/hp/models/compute/key_pair.rb +59 -0
  1641. data/lib/fog/hp/models/compute/key_pairs.rb +31 -0
  1642. data/lib/fog/hp/models/compute/security_group.rb +50 -0
  1643. data/lib/fog/hp/models/compute/security_groups.rb +29 -0
  1644. data/lib/fog/hp/models/compute/server.rb +207 -0
  1645. data/lib/fog/hp/models/compute/servers.rb +36 -0
  1646. data/lib/fog/hp/models/storage/directories.rb +50 -0
  1647. data/lib/fog/hp/models/storage/directory.rb +160 -0
  1648. data/lib/fog/hp/models/storage/file.rb +87 -0
  1649. data/lib/fog/hp/models/storage/files.rb +103 -0
  1650. data/lib/fog/hp/requests/cdn/delete_container.rb +38 -0
  1651. data/lib/fog/hp/requests/cdn/get_containers.rb +44 -0
  1652. data/lib/fog/hp/requests/cdn/head_container.rb +50 -0
  1653. data/lib/fog/hp/requests/cdn/post_container.rb +52 -0
  1654. data/lib/fog/hp/requests/cdn/put_container.rb +53 -0
  1655. data/lib/fog/hp/requests/compute/allocate_address.rb +49 -0
  1656. data/lib/fog/hp/requests/compute/associate_address.rb +42 -0
  1657. data/lib/fog/hp/requests/compute/change_password_server.rb +33 -0
  1658. data/lib/fog/hp/requests/compute/confirm_resized_server.rb +34 -0
  1659. data/lib/fog/hp/requests/compute/create_image.rb +63 -0
  1660. data/lib/fog/hp/requests/compute/create_key_pair.rb +81 -0
  1661. data/lib/fog/hp/requests/compute/create_security_group.rb +83 -0
  1662. data/lib/fog/hp/requests/compute/create_security_group_rule.rb +75 -0
  1663. data/lib/fog/hp/requests/compute/create_server.rb +140 -0
  1664. data/lib/fog/hp/requests/compute/delete_image.rb +45 -0
  1665. data/lib/fog/hp/requests/compute/delete_key_pair.rb +39 -0
  1666. data/lib/fog/hp/requests/compute/delete_security_group.rb +41 -0
  1667. data/lib/fog/hp/requests/compute/delete_security_group_rule.rb +49 -0
  1668. data/lib/fog/hp/requests/compute/delete_server.rb +43 -0
  1669. data/lib/fog/hp/requests/compute/disassociate_address.rb +39 -0
  1670. data/lib/fog/hp/requests/compute/get_address.rb +45 -0
  1671. data/lib/fog/hp/requests/compute/get_flavor_details.rb +51 -0
  1672. data/lib/fog/hp/requests/compute/get_image_details.rb +43 -0
  1673. data/lib/fog/hp/requests/compute/get_security_group.rb +57 -0
  1674. data/lib/fog/hp/requests/compute/get_server_details.rb +52 -0
  1675. data/lib/fog/hp/requests/compute/list_addresses.rb +41 -0
  1676. data/lib/fog/hp/requests/compute/list_flavors.rb +44 -0
  1677. data/lib/fog/hp/requests/compute/list_flavors_detail.rb +46 -0
  1678. data/lib/fog/hp/requests/compute/list_images.rb +40 -0
  1679. data/lib/fog/hp/requests/compute/list_images_detail.rb +49 -0
  1680. data/lib/fog/hp/requests/compute/list_key_pairs.rb +44 -0
  1681. data/lib/fog/hp/requests/compute/list_security_groups.rb +54 -0
  1682. data/lib/fog/hp/requests/compute/list_server_addresses.rb +42 -0
  1683. data/lib/fog/hp/requests/compute/list_server_private_addresses.rb +58 -0
  1684. data/lib/fog/hp/requests/compute/list_server_public_addresses.rb +58 -0
  1685. data/lib/fog/hp/requests/compute/list_servers.rb +41 -0
  1686. data/lib/fog/hp/requests/compute/list_servers_detail.rb +56 -0
  1687. data/lib/fog/hp/requests/compute/reboot_server.rb +34 -0
  1688. data/lib/fog/hp/requests/compute/rebuild_server.rb +32 -0
  1689. data/lib/fog/hp/requests/compute/release_address.rb +39 -0
  1690. data/lib/fog/hp/requests/compute/resize_server.rb +39 -0
  1691. data/lib/fog/hp/requests/compute/revert_resized_server.rb +35 -0
  1692. data/lib/fog/hp/requests/compute/server_action.rb +25 -0
  1693. data/lib/fog/hp/requests/compute/update_server.rb +42 -0
  1694. data/lib/fog/hp/requests/storage/delete_container.rb +43 -0
  1695. data/lib/fog/hp/requests/storage/delete_object.rb +44 -0
  1696. data/lib/fog/hp/requests/storage/get_container.rb +92 -0
  1697. data/lib/fog/hp/requests/storage/get_containers.rb +71 -0
  1698. data/lib/fog/hp/requests/storage/get_object.rb +83 -0
  1699. data/lib/fog/hp/requests/storage/head_container.rb +40 -0
  1700. data/lib/fog/hp/requests/storage/head_containers.rb +37 -0
  1701. data/lib/fog/hp/requests/storage/head_object.rb +35 -0
  1702. data/lib/fog/hp/requests/storage/put_container.rb +48 -0
  1703. data/lib/fog/hp/requests/storage/put_object.rb +94 -0
  1704. data/lib/fog/hp/storage.rb +201 -0
  1705. data/lib/fog/ibm.rb +176 -0
  1706. data/lib/fog/ibm/compute.rb +235 -0
  1707. data/lib/fog/ibm/models/compute/address.rb +62 -0
  1708. data/lib/fog/ibm/models/compute/addresses.rb +28 -0
  1709. data/lib/fog/ibm/models/compute/image.rb +70 -0
  1710. data/lib/fog/ibm/models/compute/images.rb +27 -0
  1711. data/lib/fog/ibm/models/compute/instance-type.rb +14 -0
  1712. data/lib/fog/ibm/models/compute/instance-types.rb +15 -0
  1713. data/lib/fog/ibm/models/compute/key.rb +35 -0
  1714. data/lib/fog/ibm/models/compute/keys.rb +35 -0
  1715. data/lib/fog/ibm/models/compute/location.rb +15 -0
  1716. data/lib/fog/ibm/models/compute/locations.rb +27 -0
  1717. data/lib/fog/ibm/models/compute/server.rb +193 -0
  1718. data/lib/fog/ibm/models/compute/servers.rb +27 -0
  1719. data/lib/fog/ibm/models/compute/vlan.rb +15 -0
  1720. data/lib/fog/ibm/models/compute/vlans.rb +28 -0
  1721. data/lib/fog/ibm/models/storage/offering.rb +18 -0
  1722. data/lib/fog/ibm/models/storage/offerings.rb +19 -0
  1723. data/lib/fog/ibm/models/storage/volume.rb +98 -0
  1724. data/lib/fog/ibm/models/storage/volumes.rb +27 -0
  1725. data/lib/fog/ibm/requests/compute/clone_image.rb +48 -0
  1726. data/lib/fog/ibm/requests/compute/create_address.rb +50 -0
  1727. data/lib/fog/ibm/requests/compute/create_image.rb +56 -0
  1728. data/lib/fog/ibm/requests/compute/create_instance.rb +80 -0
  1729. data/lib/fog/ibm/requests/compute/create_key.rb +61 -0
  1730. data/lib/fog/ibm/requests/compute/delete_address.rb +46 -0
  1731. data/lib/fog/ibm/requests/compute/delete_image.rb +43 -0
  1732. data/lib/fog/ibm/requests/compute/delete_instance.rb +52 -0
  1733. data/lib/fog/ibm/requests/compute/delete_key.rb +41 -0
  1734. data/lib/fog/ibm/requests/compute/get_image.rb +67 -0
  1735. data/lib/fog/ibm/requests/compute/get_image_agreement.rb +66 -0
  1736. data/lib/fog/ibm/requests/compute/get_image_manifest.rb +39 -0
  1737. data/lib/fog/ibm/requests/compute/get_instance.rb +76 -0
  1738. data/lib/fog/ibm/requests/compute/get_instance_logs.rb +25 -0
  1739. data/lib/fog/ibm/requests/compute/get_key.rb +49 -0
  1740. data/lib/fog/ibm/requests/compute/get_location.rb +55 -0
  1741. data/lib/fog/ibm/requests/compute/get_request.rb +78 -0
  1742. data/lib/fog/ibm/requests/compute/list_address_offerings.rb +58 -0
  1743. data/lib/fog/ibm/requests/compute/list_addresses.rb +53 -0
  1744. data/lib/fog/ibm/requests/compute/list_images.rb +58 -0
  1745. data/lib/fog/ibm/requests/compute/list_instances.rb +57 -0
  1746. data/lib/fog/ibm/requests/compute/list_keys.rb +57 -0
  1747. data/lib/fog/ibm/requests/compute/list_locations.rb +37 -0
  1748. data/lib/fog/ibm/requests/compute/list_vlans.rb +47 -0
  1749. data/lib/fog/ibm/requests/compute/modify_instance.rb +71 -0
  1750. data/lib/fog/ibm/requests/compute/modify_key.rb +52 -0
  1751. data/lib/fog/ibm/requests/storage/create_volume.rb +66 -0
  1752. data/lib/fog/ibm/requests/storage/delete_volume.rb +42 -0
  1753. data/lib/fog/ibm/requests/storage/get_volume.rb +72 -0
  1754. data/lib/fog/ibm/requests/storage/list_offerings.rb +76 -0
  1755. data/lib/fog/ibm/requests/storage/list_volumes.rb +47 -0
  1756. data/lib/fog/ibm/storage.rb +82 -0
  1757. data/lib/fog/identity.rb +24 -0
  1758. data/lib/fog/image.rb +24 -0
  1759. data/lib/fog/joyent.rb +8 -0
  1760. data/lib/fog/joyent/compute.rb +243 -0
  1761. data/lib/fog/joyent/errors.rb +90 -0
  1762. data/lib/fog/joyent/models/compute/flavor.rb +17 -0
  1763. data/lib/fog/joyent/models/compute/flavors.rb +25 -0
  1764. data/lib/fog/joyent/models/compute/image.rb +18 -0
  1765. data/lib/fog/joyent/models/compute/images.rb +25 -0
  1766. data/lib/fog/joyent/models/compute/key.rb +19 -0
  1767. data/lib/fog/joyent/models/compute/keys.rb +34 -0
  1768. data/lib/fog/joyent/models/compute/server.rb +120 -0
  1769. data/lib/fog/joyent/models/compute/servers.rb +36 -0
  1770. data/lib/fog/joyent/models/compute/snapshot.rb +45 -0
  1771. data/lib/fog/joyent/models/compute/snapshots.rb +37 -0
  1772. data/lib/fog/joyent/requests/compute/add_machine_tags.rb +20 -0
  1773. data/lib/fog/joyent/requests/compute/create_key.rb +56 -0
  1774. data/lib/fog/joyent/requests/compute/create_machine.rb +16 -0
  1775. data/lib/fog/joyent/requests/compute/create_machine_snapshot.rb +18 -0
  1776. data/lib/fog/joyent/requests/compute/delete_all_machine_metadata.rb +16 -0
  1777. data/lib/fog/joyent/requests/compute/delete_all_machine_tags.rb +15 -0
  1778. data/lib/fog/joyent/requests/compute/delete_key.rb +29 -0
  1779. data/lib/fog/joyent/requests/compute/delete_machine.rb +15 -0
  1780. data/lib/fog/joyent/requests/compute/delete_machine_metadata.rb +18 -0
  1781. data/lib/fog/joyent/requests/compute/delete_machine_snapshot.rb +21 -0
  1782. data/lib/fog/joyent/requests/compute/delete_machine_tag.rb +15 -0
  1783. data/lib/fog/joyent/requests/compute/get_dataset.rb +28 -0
  1784. data/lib/fog/joyent/requests/compute/get_key.rb +29 -0
  1785. data/lib/fog/joyent/requests/compute/get_machine.rb +29 -0
  1786. data/lib/fog/joyent/requests/compute/get_machine_metadata.rb +25 -0
  1787. data/lib/fog/joyent/requests/compute/get_machine_snapshot.rb +14 -0
  1788. data/lib/fog/joyent/requests/compute/get_machine_tag.rb +19 -0
  1789. data/lib/fog/joyent/requests/compute/get_package.rb +33 -0
  1790. data/lib/fog/joyent/requests/compute/list_datacenters.rb +17 -0
  1791. data/lib/fog/joyent/requests/compute/list_datasets.rb +24 -0
  1792. data/lib/fog/joyent/requests/compute/list_keys.rb +25 -0
  1793. data/lib/fog/joyent/requests/compute/list_machine_snapshots.rb +14 -0
  1794. data/lib/fog/joyent/requests/compute/list_machine_tags.rb +20 -0
  1795. data/lib/fog/joyent/requests/compute/list_machines.rb +25 -0
  1796. data/lib/fog/joyent/requests/compute/list_packages.rb +36 -0
  1797. data/lib/fog/joyent/requests/compute/reboot_machine.rb +15 -0
  1798. data/lib/fog/joyent/requests/compute/resize_machine.rb +13 -0
  1799. data/lib/fog/joyent/requests/compute/start_machine.rb +16 -0
  1800. data/lib/fog/joyent/requests/compute/start_machine_from_snapshot.rb +15 -0
  1801. data/lib/fog/joyent/requests/compute/stop_machine.rb +16 -0
  1802. data/lib/fog/joyent/requests/compute/update_machine_metadata.rb +15 -0
  1803. data/lib/fog/libvirt.rb +11 -0
  1804. data/lib/fog/libvirt/compute.rb +136 -0
  1805. data/lib/fog/libvirt/models/compute/README.md +76 -0
  1806. data/lib/fog/libvirt/models/compute/interface.rb +28 -0
  1807. data/lib/fog/libvirt/models/compute/interfaces.rb +24 -0
  1808. data/lib/fog/libvirt/models/compute/network.rb +34 -0
  1809. data/lib/fog/libvirt/models/compute/networks.rb +24 -0
  1810. data/lib/fog/libvirt/models/compute/nic.rb +54 -0
  1811. data/lib/fog/libvirt/models/compute/nics.rb +16 -0
  1812. data/lib/fog/libvirt/models/compute/node.rb +34 -0
  1813. data/lib/fog/libvirt/models/compute/nodes.rb +23 -0
  1814. data/lib/fog/libvirt/models/compute/pool.rb +88 -0
  1815. data/lib/fog/libvirt/models/compute/pools.rb +24 -0
  1816. data/lib/fog/libvirt/models/compute/server.rb +399 -0
  1817. data/lib/fog/libvirt/models/compute/servers.rb +24 -0
  1818. data/lib/fog/libvirt/models/compute/templates/network.xml.erb +6 -0
  1819. data/lib/fog/libvirt/models/compute/templates/pool.xml.erb +6 -0
  1820. data/lib/fog/libvirt/models/compute/templates/server.xml.erb +53 -0
  1821. data/lib/fog/libvirt/models/compute/templates/volume.xml.erb +14 -0
  1822. data/lib/fog/libvirt/models/compute/util/uri.rb +145 -0
  1823. data/lib/fog/libvirt/models/compute/util/util.rb +33 -0
  1824. data/lib/fog/libvirt/models/compute/volume.rb +108 -0
  1825. data/lib/fog/libvirt/models/compute/volumes.rb +24 -0
  1826. data/lib/fog/libvirt/requests/compute/create_domain.rb +17 -0
  1827. data/lib/fog/libvirt/requests/compute/create_volume.rb +17 -0
  1828. data/lib/fog/libvirt/requests/compute/define_domain.rb +17 -0
  1829. data/lib/fog/libvirt/requests/compute/define_pool.rb +17 -0
  1830. data/lib/fog/libvirt/requests/compute/destroy_interface.rb +18 -0
  1831. data/lib/fog/libvirt/requests/compute/destroy_network.rb +17 -0
  1832. data/lib/fog/libvirt/requests/compute/get_node_info.rb +39 -0
  1833. data/lib/fog/libvirt/requests/compute/list_domains.rb +106 -0
  1834. data/lib/fog/libvirt/requests/compute/list_interfaces.rb +59 -0
  1835. data/lib/fog/libvirt/requests/compute/list_networks.rb +58 -0
  1836. data/lib/fog/libvirt/requests/compute/list_pool_volumes.rb +21 -0
  1837. data/lib/fog/libvirt/requests/compute/list_pools.rb +72 -0
  1838. data/lib/fog/libvirt/requests/compute/list_volumes.rb +89 -0
  1839. data/lib/fog/libvirt/requests/compute/mock_files/domain.xml +40 -0
  1840. data/lib/fog/libvirt/requests/compute/pool_action.rb +19 -0
  1841. data/lib/fog/libvirt/requests/compute/update_display.rb +31 -0
  1842. data/lib/fog/libvirt/requests/compute/vm_action.rb +19 -0
  1843. data/lib/fog/libvirt/requests/compute/volume_action.rb +18 -0
  1844. data/lib/fog/linode.rb +10 -0
  1845. data/lib/fog/linode/compute.rb +118 -0
  1846. data/lib/fog/linode/dns.rb +93 -0
  1847. data/lib/fog/linode/models/compute/data_center.rb +12 -0
  1848. data/lib/fog/linode/models/compute/data_centers.rb +26 -0
  1849. data/lib/fog/linode/models/compute/disk.rb +62 -0
  1850. data/lib/fog/linode/models/compute/disks.rb +40 -0
  1851. data/lib/fog/linode/models/compute/flavor.rb +23 -0
  1852. data/lib/fog/linode/models/compute/flavors.rb +32 -0
  1853. data/lib/fog/linode/models/compute/image.rb +14 -0
  1854. data/lib/fog/linode/models/compute/images.rb +33 -0
  1855. data/lib/fog/linode/models/compute/ip.rb +30 -0
  1856. data/lib/fog/linode/models/compute/ips.rb +40 -0
  1857. data/lib/fog/linode/models/compute/kernel.rb +12 -0
  1858. data/lib/fog/linode/models/compute/kernels.rb +32 -0
  1859. data/lib/fog/linode/models/compute/server.rb +97 -0
  1860. data/lib/fog/linode/models/compute/servers.rb +32 -0
  1861. data/lib/fog/linode/models/compute/stack_script.rb +13 -0
  1862. data/lib/fog/linode/models/compute/stack_scripts.rb +32 -0
  1863. data/lib/fog/linode/models/dns/record.rb +72 -0
  1864. data/lib/fog/linode/models/dns/records.rb +37 -0
  1865. data/lib/fog/linode/models/dns/zone.rb +84 -0
  1866. data/lib/fog/linode/models/dns/zones.rb +29 -0
  1867. data/lib/fog/linode/requests/compute/avail_datacenters.rb +43 -0
  1868. data/lib/fog/linode/requests/compute/avail_distributions.rb +67 -0
  1869. data/lib/fog/linode/requests/compute/avail_kernels.rb +65 -0
  1870. data/lib/fog/linode/requests/compute/avail_linodeplans.rb +69 -0
  1871. data/lib/fog/linode/requests/compute/avail_stackscripts.rb +63 -0
  1872. data/lib/fog/linode/requests/compute/linode_boot.rb +30 -0
  1873. data/lib/fog/linode/requests/compute/linode_config_create.rb +36 -0
  1874. data/lib/fog/linode/requests/compute/linode_config_list.rb +71 -0
  1875. data/lib/fog/linode/requests/compute/linode_create.rb +46 -0
  1876. data/lib/fog/linode/requests/compute/linode_delete.rb +41 -0
  1877. data/lib/fog/linode/requests/compute/linode_disk_create.rb +37 -0
  1878. data/lib/fog/linode/requests/compute/linode_disk_createfromdistribution.rb +38 -0
  1879. data/lib/fog/linode/requests/compute/linode_disk_createfromstackscript.rb +26 -0
  1880. data/lib/fog/linode/requests/compute/linode_disk_delete.rb +35 -0
  1881. data/lib/fog/linode/requests/compute/linode_disk_list.rb +60 -0
  1882. data/lib/fog/linode/requests/compute/linode_ip_addprivate.rb +17 -0
  1883. data/lib/fog/linode/requests/compute/linode_ip_list.rb +59 -0
  1884. data/lib/fog/linode/requests/compute/linode_list.rb +83 -0
  1885. data/lib/fog/linode/requests/compute/linode_reboot.rb +41 -0
  1886. data/lib/fog/linode/requests/compute/linode_shutdown.rb +30 -0
  1887. data/lib/fog/linode/requests/compute/linode_update.rb +30 -0
  1888. data/lib/fog/linode/requests/compute/stackscript_list.rb +32 -0
  1889. data/lib/fog/linode/requests/dns/domain_create.rb +43 -0
  1890. data/lib/fog/linode/requests/dns/domain_delete.rb +27 -0
  1891. data/lib/fog/linode/requests/dns/domain_list.rb +42 -0
  1892. data/lib/fog/linode/requests/dns/domain_resource_create.rb +44 -0
  1893. data/lib/fog/linode/requests/dns/domain_resource_delete.rb +28 -0
  1894. data/lib/fog/linode/requests/dns/domain_resource_list.rb +43 -0
  1895. data/lib/fog/linode/requests/dns/domain_resource_update.rb +46 -0
  1896. data/lib/fog/linode/requests/dns/domain_update.rb +40 -0
  1897. data/lib/fog/local.rb +11 -0
  1898. data/lib/fog/local/models/storage/directories.rb +33 -0
  1899. data/lib/fog/local/models/storage/directory.rb +57 -0
  1900. data/lib/fog/local/models/storage/file.rb +131 -0
  1901. data/lib/fog/local/models/storage/files.rb +87 -0
  1902. data/lib/fog/local/storage.rb +103 -0
  1903. data/lib/fog/network.rb +26 -0
  1904. data/lib/fog/ninefold.rb +12 -0
  1905. data/lib/fog/ninefold/compute.rb +148 -0
  1906. data/lib/fog/ninefold/models/compute/address.rb +103 -0
  1907. data/lib/fog/ninefold/models/compute/addresses.rb +31 -0
  1908. data/lib/fog/ninefold/models/compute/flavor.rb +29 -0
  1909. data/lib/fog/ninefold/models/compute/flavors.rb +30 -0
  1910. data/lib/fog/ninefold/models/compute/image.rb +42 -0
  1911. data/lib/fog/ninefold/models/compute/images.rb +30 -0
  1912. data/lib/fog/ninefold/models/compute/ip_forwarding_rule.rb +79 -0
  1913. data/lib/fog/ninefold/models/compute/ip_forwarding_rules.rb +31 -0
  1914. data/lib/fog/ninefold/models/compute/server.rb +185 -0
  1915. data/lib/fog/ninefold/models/compute/servers.rb +31 -0
  1916. data/lib/fog/ninefold/requests/compute/assign_to_load_balancer_rule.rb +13 -0
  1917. data/lib/fog/ninefold/requests/compute/associate_ip_address.rb +14 -0
  1918. data/lib/fog/ninefold/requests/compute/change_service_for_virtual_machine.rb +14 -0
  1919. data/lib/fog/ninefold/requests/compute/create_ip_forwarding_rule.rb +14 -0
  1920. data/lib/fog/ninefold/requests/compute/create_load_balancer_rule.rb +11 -0
  1921. data/lib/fog/ninefold/requests/compute/delete_ip_forwarding_rule.rb +14 -0
  1922. data/lib/fog/ninefold/requests/compute/delete_load_balancer_rule.rb +11 -0
  1923. data/lib/fog/ninefold/requests/compute/deploy_virtual_machine.rb +14 -0
  1924. data/lib/fog/ninefold/requests/compute/destroy_virtual_machine.rb +14 -0
  1925. data/lib/fog/ninefold/requests/compute/disable_static_nat.rb +14 -0
  1926. data/lib/fog/ninefold/requests/compute/disassociate_ip_address.rb +14 -0
  1927. data/lib/fog/ninefold/requests/compute/enable_static_nat.rb +14 -0
  1928. data/lib/fog/ninefold/requests/compute/list_accounts.rb +14 -0
  1929. data/lib/fog/ninefold/requests/compute/list_async_jobs.rb +14 -0
  1930. data/lib/fog/ninefold/requests/compute/list_capabilities.rb +14 -0
  1931. data/lib/fog/ninefold/requests/compute/list_disk_offerings.rb +14 -0
  1932. data/lib/fog/ninefold/requests/compute/list_events.rb +14 -0
  1933. data/lib/fog/ninefold/requests/compute/list_hypervisors.rb +14 -0
  1934. data/lib/fog/ninefold/requests/compute/list_ip_forwarding_rules.rb +14 -0
  1935. data/lib/fog/ninefold/requests/compute/list_load_balancer_rule_instances.rb +15 -0
  1936. data/lib/fog/ninefold/requests/compute/list_load_balancer_rules.rb +14 -0
  1937. data/lib/fog/ninefold/requests/compute/list_network_offerings.rb +14 -0
  1938. data/lib/fog/ninefold/requests/compute/list_networks.rb +14 -0
  1939. data/lib/fog/ninefold/requests/compute/list_public_ip_addresses.rb +14 -0
  1940. data/lib/fog/ninefold/requests/compute/list_resource_limits.rb +14 -0
  1941. data/lib/fog/ninefold/requests/compute/list_service_offerings.rb +14 -0
  1942. data/lib/fog/ninefold/requests/compute/list_templates.rb +14 -0
  1943. data/lib/fog/ninefold/requests/compute/list_virtual_machines.rb +14 -0
  1944. data/lib/fog/ninefold/requests/compute/list_zones.rb +14 -0
  1945. data/lib/fog/ninefold/requests/compute/query_async_job_result.rb +14 -0
  1946. data/lib/fog/ninefold/requests/compute/reboot_virtual_machine.rb +14 -0
  1947. data/lib/fog/ninefold/requests/compute/remove_from_load_balancer_rule.rb +12 -0
  1948. data/lib/fog/ninefold/requests/compute/reset_password_for_virtual_machine.rb +14 -0
  1949. data/lib/fog/ninefold/requests/compute/start_virtual_machine.rb +14 -0
  1950. data/lib/fog/ninefold/requests/compute/stop_virtual_machine.rb +14 -0
  1951. data/lib/fog/ninefold/requests/compute/update_load_balancer_rule.rb +15 -0
  1952. data/lib/fog/ninefold/requests/compute/update_virtual_machine.rb +14 -0
  1953. data/lib/fog/ninefold/storage.rb +56 -0
  1954. data/lib/fog/openstack.rb +178 -0
  1955. data/lib/fog/openstack/compute.rb +394 -0
  1956. data/lib/fog/openstack/identity.rb +283 -0
  1957. data/lib/fog/openstack/image.rb +211 -0
  1958. data/lib/fog/openstack/models/compute/address.rb +71 -0
  1959. data/lib/fog/openstack/models/compute/addresses.rb +33 -0
  1960. data/lib/fog/openstack/models/compute/flavor.rb +44 -0
  1961. data/lib/fog/openstack/models/compute/flavors.rb +28 -0
  1962. data/lib/fog/openstack/models/compute/host.rb +28 -0
  1963. data/lib/fog/openstack/models/compute/hosts.rb +32 -0
  1964. data/lib/fog/openstack/models/compute/image.rb +57 -0
  1965. data/lib/fog/openstack/models/compute/images.rb +33 -0
  1966. data/lib/fog/openstack/models/compute/key_pair.rb +60 -0
  1967. data/lib/fog/openstack/models/compute/key_pairs.rb +31 -0
  1968. data/lib/fog/openstack/models/compute/metadata.rb +69 -0
  1969. data/lib/fog/openstack/models/compute/metadatum.rb +29 -0
  1970. data/lib/fog/openstack/models/compute/network.rb +13 -0
  1971. data/lib/fog/openstack/models/compute/networks.rb +29 -0
  1972. data/lib/fog/openstack/models/compute/security_group.rb +44 -0
  1973. data/lib/fog/openstack/models/compute/security_groups.rb +27 -0
  1974. data/lib/fog/openstack/models/compute/server.rb +265 -0
  1975. data/lib/fog/openstack/models/compute/servers.rb +44 -0
  1976. data/lib/fog/openstack/models/compute/snapshot.rb +43 -0
  1977. data/lib/fog/openstack/models/compute/snapshots.rb +26 -0
  1978. data/lib/fog/openstack/models/compute/tenant.rb +24 -0
  1979. data/lib/fog/openstack/models/compute/tenants.rb +24 -0
  1980. data/lib/fog/openstack/models/compute/volume.rb +58 -0
  1981. data/lib/fog/openstack/models/compute/volumes.rb +26 -0
  1982. data/lib/fog/openstack/models/identity/role.rb +50 -0
  1983. data/lib/fog/openstack/models/identity/roles.rb +21 -0
  1984. data/lib/fog/openstack/models/identity/tenant.rb +62 -0
  1985. data/lib/fog/openstack/models/identity/tenants.rb +29 -0
  1986. data/lib/fog/openstack/models/identity/user.rb +64 -0
  1987. data/lib/fog/openstack/models/identity/users.rb +32 -0
  1988. data/lib/fog/openstack/models/image/image.rb +90 -0
  1989. data/lib/fog/openstack/models/image/images.rb +60 -0
  1990. data/lib/fog/openstack/models/meta_parent.rb +33 -0
  1991. data/lib/fog/openstack/models/network/network.rb +46 -0
  1992. data/lib/fog/openstack/models/network/networks.rb +34 -0
  1993. data/lib/fog/openstack/models/network/port.rb +52 -0
  1994. data/lib/fog/openstack/models/network/ports.rb +34 -0
  1995. data/lib/fog/openstack/models/network/subnet.rb +55 -0
  1996. data/lib/fog/openstack/models/network/subnets.rb +34 -0
  1997. data/lib/fog/openstack/models/volume/volume.rb +46 -0
  1998. data/lib/fog/openstack/models/volume/volumes.rb +27 -0
  1999. data/lib/fog/openstack/network.rb +234 -0
  2000. data/lib/fog/openstack/requests/compute/add_fixed_ip.rb +29 -0
  2001. data/lib/fog/openstack/requests/compute/allocate_address.rb +42 -0
  2002. data/lib/fog/openstack/requests/compute/associate_address.rb +27 -0
  2003. data/lib/fog/openstack/requests/compute/attach_volume.rb +38 -0
  2004. data/lib/fog/openstack/requests/compute/boot_from_snapshot.rb +41 -0
  2005. data/lib/fog/openstack/requests/compute/change_server_password.rb +24 -0
  2006. data/lib/fog/openstack/requests/compute/confirm_resize_server.rb +24 -0
  2007. data/lib/fog/openstack/requests/compute/create_flavor.rb +85 -0
  2008. data/lib/fog/openstack/requests/compute/create_image.rb +49 -0
  2009. data/lib/fog/openstack/requests/compute/create_key_pair.rb +49 -0
  2010. data/lib/fog/openstack/requests/compute/create_security_group.rb +51 -0
  2011. data/lib/fog/openstack/requests/compute/create_security_group_rule.rb +59 -0
  2012. data/lib/fog/openstack/requests/compute/create_server.rb +84 -0
  2013. data/lib/fog/openstack/requests/compute/create_volume.rb +54 -0
  2014. data/lib/fog/openstack/requests/compute/create_volume_snapshot.rb +47 -0
  2015. data/lib/fog/openstack/requests/compute/delete_flavor.rb +28 -0
  2016. data/lib/fog/openstack/requests/compute/delete_image.rb +40 -0
  2017. data/lib/fog/openstack/requests/compute/delete_key_pair.rb +31 -0
  2018. data/lib/fog/openstack/requests/compute/delete_metadata.rb +28 -0
  2019. data/lib/fog/openstack/requests/compute/delete_security_group.rb +31 -0
  2020. data/lib/fog/openstack/requests/compute/delete_security_group_rule.rb +31 -0
  2021. data/lib/fog/openstack/requests/compute/delete_server.rb +38 -0
  2022. data/lib/fog/openstack/requests/compute/delete_snapshot.rb +26 -0
  2023. data/lib/fog/openstack/requests/compute/delete_volume.rb +26 -0
  2024. data/lib/fog/openstack/requests/compute/detach_volume.rb +26 -0
  2025. data/lib/fog/openstack/requests/compute/disassociate_address.rb +27 -0
  2026. data/lib/fog/openstack/requests/compute/get_address.rb +41 -0
  2027. data/lib/fog/openstack/requests/compute/get_console_output.rb +28 -0
  2028. data/lib/fog/openstack/requests/compute/get_flavor_details.rb +43 -0
  2029. data/lib/fog/openstack/requests/compute/get_host_details.rb +74 -0
  2030. data/lib/fog/openstack/requests/compute/get_image_details.rb +33 -0
  2031. data/lib/fog/openstack/requests/compute/get_limits.rb +93 -0
  2032. data/lib/fog/openstack/requests/compute/get_metadata.rb +29 -0
  2033. data/lib/fog/openstack/requests/compute/get_quota.rb +31 -0
  2034. data/lib/fog/openstack/requests/compute/get_quota_defaults.rb +31 -0
  2035. data/lib/fog/openstack/requests/compute/get_security_group.rb +49 -0
  2036. data/lib/fog/openstack/requests/compute/get_server_details.rb +32 -0
  2037. data/lib/fog/openstack/requests/compute/get_server_volumes.rb +23 -0
  2038. data/lib/fog/openstack/requests/compute/get_snapshot_details.rb +39 -0
  2039. data/lib/fog/openstack/requests/compute/get_usage.rb +53 -0
  2040. data/lib/fog/openstack/requests/compute/get_vnc_console.rb +40 -0
  2041. data/lib/fog/openstack/requests/compute/get_volume_details.rb +42 -0
  2042. data/lib/fog/openstack/requests/compute/list_address_pools.rb +23 -0
  2043. data/lib/fog/openstack/requests/compute/list_addresses.rb +32 -0
  2044. data/lib/fog/openstack/requests/compute/list_all_addresses.rb +64 -0
  2045. data/lib/fog/openstack/requests/compute/list_flavors.rb +38 -0
  2046. data/lib/fog/openstack/requests/compute/list_flavors_detail.rb +38 -0
  2047. data/lib/fog/openstack/requests/compute/list_hosts.rb +32 -0
  2048. data/lib/fog/openstack/requests/compute/list_images.rb +33 -0
  2049. data/lib/fog/openstack/requests/compute/list_images_detail.rb +39 -0
  2050. data/lib/fog/openstack/requests/compute/list_key_pairs.rb +39 -0
  2051. data/lib/fog/openstack/requests/compute/list_metadata.rb +28 -0
  2052. data/lib/fog/openstack/requests/compute/list_private_addresses.rb +32 -0
  2053. data/lib/fog/openstack/requests/compute/list_public_addresses.rb +32 -0
  2054. data/lib/fog/openstack/requests/compute/list_security_groups.rb +35 -0
  2055. data/lib/fog/openstack/requests/compute/list_servers.rb +37 -0
  2056. data/lib/fog/openstack/requests/compute/list_servers_detail.rb +44 -0
  2057. data/lib/fog/openstack/requests/compute/list_snapshots.rb +32 -0
  2058. data/lib/fog/openstack/requests/compute/list_tenants.rb +44 -0
  2059. data/lib/fog/openstack/requests/compute/list_usages.rb +43 -0
  2060. data/lib/fog/openstack/requests/compute/list_volumes.rb +51 -0
  2061. data/lib/fog/openstack/requests/compute/live_migrate_server.rb +31 -0
  2062. data/lib/fog/openstack/requests/compute/migrate_server.rb +24 -0
  2063. data/lib/fog/openstack/requests/compute/pause_server.rb +24 -0
  2064. data/lib/fog/openstack/requests/compute/reboot_server.rb +24 -0
  2065. data/lib/fog/openstack/requests/compute/rebuild_server.rb +31 -0
  2066. data/lib/fog/openstack/requests/compute/release_address.rb +34 -0
  2067. data/lib/fog/openstack/requests/compute/remove_fixed_ip.rb +29 -0
  2068. data/lib/fog/openstack/requests/compute/rescue_server.rb +24 -0
  2069. data/lib/fog/openstack/requests/compute/reset_server_state.rb +24 -0
  2070. data/lib/fog/openstack/requests/compute/resize_server.rb +24 -0
  2071. data/lib/fog/openstack/requests/compute/resume_server.rb +24 -0
  2072. data/lib/fog/openstack/requests/compute/revert_resize_server.rb +30 -0
  2073. data/lib/fog/openstack/requests/compute/server_action.rb +18 -0
  2074. data/lib/fog/openstack/requests/compute/server_actions.rb +27 -0
  2075. data/lib/fog/openstack/requests/compute/server_diagnostics.rb +25 -0
  2076. data/lib/fog/openstack/requests/compute/set_metadata.rb +45 -0
  2077. data/lib/fog/openstack/requests/compute/set_tenant.rb +21 -0
  2078. data/lib/fog/openstack/requests/compute/suspend_server.rb +24 -0
  2079. data/lib/fog/openstack/requests/compute/unpause_server.rb +24 -0
  2080. data/lib/fog/openstack/requests/compute/update_metadata.rb +46 -0
  2081. data/lib/fog/openstack/requests/compute/update_quota.rb +32 -0
  2082. data/lib/fog/openstack/requests/compute/update_server.rb +35 -0
  2083. data/lib/fog/openstack/requests/identity/add_user_to_tenant.rb +29 -0
  2084. data/lib/fog/openstack/requests/identity/check_token.rb +23 -0
  2085. data/lib/fog/openstack/requests/identity/create_role.rb +37 -0
  2086. data/lib/fog/openstack/requests/identity/create_tenant.rb +34 -0
  2087. data/lib/fog/openstack/requests/identity/create_user.rb +47 -0
  2088. data/lib/fog/openstack/requests/identity/create_user_role.rb +26 -0
  2089. data/lib/fog/openstack/requests/identity/delete_role.rb +32 -0
  2090. data/lib/fog/openstack/requests/identity/delete_tenant.rb +31 -0
  2091. data/lib/fog/openstack/requests/identity/delete_user.rb +32 -0
  2092. data/lib/fog/openstack/requests/identity/delete_user_role.rb +26 -0
  2093. data/lib/fog/openstack/requests/identity/get_role.rb +28 -0
  2094. data/lib/fog/openstack/requests/identity/get_tenant.rb +31 -0
  2095. data/lib/fog/openstack/requests/identity/get_tenants_by_id.rb +23 -0
  2096. data/lib/fog/openstack/requests/identity/get_tenants_by_name.rb +23 -0
  2097. data/lib/fog/openstack/requests/identity/get_user_by_id.rb +34 -0
  2098. data/lib/fog/openstack/requests/identity/get_user_by_name.rb +23 -0
  2099. data/lib/fog/openstack/requests/identity/list_endpoints_for_token.rb +23 -0
  2100. data/lib/fog/openstack/requests/identity/list_roles.rb +36 -0
  2101. data/lib/fog/openstack/requests/identity/list_roles_for_user_on_tenant.rb +24 -0
  2102. data/lib/fog/openstack/requests/identity/list_tenants.rb +45 -0
  2103. data/lib/fog/openstack/requests/identity/list_user_global_roles.rb +22 -0
  2104. data/lib/fog/openstack/requests/identity/list_users.rb +25 -0
  2105. data/lib/fog/openstack/requests/identity/remove_user_from_tenant.rb +20 -0
  2106. data/lib/fog/openstack/requests/identity/set_tenant.rb +21 -0
  2107. data/lib/fog/openstack/requests/identity/update_tenant.rb +30 -0
  2108. data/lib/fog/openstack/requests/identity/update_user.rb +36 -0
  2109. data/lib/fog/openstack/requests/identity/validate_token.rb +23 -0
  2110. data/lib/fog/openstack/requests/image/add_member_to_image.rb +23 -0
  2111. data/lib/fog/openstack/requests/image/create_image.rb +77 -0
  2112. data/lib/fog/openstack/requests/image/delete_image.rb +25 -0
  2113. data/lib/fog/openstack/requests/image/get_image.rb +45 -0
  2114. data/lib/fog/openstack/requests/image/get_image_by_id.rb +32 -0
  2115. data/lib/fog/openstack/requests/image/get_image_members.rb +29 -0
  2116. data/lib/fog/openstack/requests/image/get_shared_images.rb +29 -0
  2117. data/lib/fog/openstack/requests/image/list_public_images.rb +32 -0
  2118. data/lib/fog/openstack/requests/image/list_public_images_detailed.rb +31 -0
  2119. data/lib/fog/openstack/requests/image/remove_member_from_image.rb +23 -0
  2120. data/lib/fog/openstack/requests/image/set_tenant.rb +21 -0
  2121. data/lib/fog/openstack/requests/image/update_image.rb +70 -0
  2122. data/lib/fog/openstack/requests/image/update_image_members.rb +37 -0
  2123. data/lib/fog/openstack/requests/network/create_network.rb +44 -0
  2124. data/lib/fog/openstack/requests/network/create_port.rb +52 -0
  2125. data/lib/fog/openstack/requests/network/create_subnet.rb +56 -0
  2126. data/lib/fog/openstack/requests/network/delete_network.rb +30 -0
  2127. data/lib/fog/openstack/requests/network/delete_port.rb +30 -0
  2128. data/lib/fog/openstack/requests/network/delete_subnet.rb +30 -0
  2129. data/lib/fog/openstack/requests/network/get_network.rb +42 -0
  2130. data/lib/fog/openstack/requests/network/get_port.rb +48 -0
  2131. data/lib/fog/openstack/requests/network/get_subnet.rb +49 -0
  2132. data/lib/fog/openstack/requests/network/list_networks.rb +27 -0
  2133. data/lib/fog/openstack/requests/network/list_ports.rb +27 -0
  2134. data/lib/fog/openstack/requests/network/list_subnets.rb +27 -0
  2135. data/lib/fog/openstack/requests/network/set_tenant.rb +21 -0
  2136. data/lib/fog/openstack/requests/network/update_network.rb +41 -0
  2137. data/lib/fog/openstack/requests/network/update_port.rb +44 -0
  2138. data/lib/fog/openstack/requests/network/update_subnet.rb +44 -0
  2139. data/lib/fog/openstack/requests/volume/create_volume.rb +54 -0
  2140. data/lib/fog/openstack/requests/volume/create_volume_snapshot.rb +47 -0
  2141. data/lib/fog/openstack/requests/volume/delete_snapshot.rb +26 -0
  2142. data/lib/fog/openstack/requests/volume/delete_volume.rb +26 -0
  2143. data/lib/fog/openstack/requests/volume/get_snapshot_details.rb +39 -0
  2144. data/lib/fog/openstack/requests/volume/get_volume_details.rb +42 -0
  2145. data/lib/fog/openstack/requests/volume/list_snapshots.rb +32 -0
  2146. data/lib/fog/openstack/requests/volume/list_volumes.rb +55 -0
  2147. data/lib/fog/openstack/requests/volume/set_tenant.rb +21 -0
  2148. data/lib/fog/openstack/volume.rb +215 -0
  2149. data/lib/fog/ovirt.rb +17 -0
  2150. data/lib/fog/ovirt/compute.rb +116 -0
  2151. data/lib/fog/ovirt/models/compute/cluster.rb +24 -0
  2152. data/lib/fog/ovirt/models/compute/clusters.rb +23 -0
  2153. data/lib/fog/ovirt/models/compute/interface.rb +22 -0
  2154. data/lib/fog/ovirt/models/compute/interfaces.rb +32 -0
  2155. data/lib/fog/ovirt/models/compute/server.rb +135 -0
  2156. data/lib/fog/ovirt/models/compute/servers.rb +30 -0
  2157. data/lib/fog/ovirt/models/compute/template.rb +60 -0
  2158. data/lib/fog/ovirt/models/compute/templates.rb +23 -0
  2159. data/lib/fog/ovirt/models/compute/volume.rb +35 -0
  2160. data/lib/fog/ovirt/models/compute/volumes.rb +32 -0
  2161. data/lib/fog/ovirt/requests/compute/add_interface.rb +23 -0
  2162. data/lib/fog/ovirt/requests/compute/add_volume.rb +23 -0
  2163. data/lib/fog/ovirt/requests/compute/create_vm.rb +20 -0
  2164. data/lib/fog/ovirt/requests/compute/datacenters.rb +22 -0
  2165. data/lib/fog/ovirt/requests/compute/destroy_interface.rb +25 -0
  2166. data/lib/fog/ovirt/requests/compute/destroy_vm.rb +22 -0
  2167. data/lib/fog/ovirt/requests/compute/destroy_volume.rb +25 -0
  2168. data/lib/fog/ovirt/requests/compute/get_cluster.rb +18 -0
  2169. data/lib/fog/ovirt/requests/compute/get_template.rb +18 -0
  2170. data/lib/fog/ovirt/requests/compute/get_virtual_machine.rb +18 -0
  2171. data/lib/fog/ovirt/requests/compute/list_clusters.rb +20 -0
  2172. data/lib/fog/ovirt/requests/compute/list_networks.rb +17 -0
  2173. data/lib/fog/ovirt/requests/compute/list_template_interfaces.rb +20 -0
  2174. data/lib/fog/ovirt/requests/compute/list_template_volumes.rb +20 -0
  2175. data/lib/fog/ovirt/requests/compute/list_templates.rb +20 -0
  2176. data/lib/fog/ovirt/requests/compute/list_virtual_machines.rb +20 -0
  2177. data/lib/fog/ovirt/requests/compute/list_vm_interfaces.rb +20 -0
  2178. data/lib/fog/ovirt/requests/compute/list_vm_volumes.rb +20 -0
  2179. data/lib/fog/ovirt/requests/compute/mock_files/cluster.xml +20 -0
  2180. data/lib/fog/ovirt/requests/compute/mock_files/clusters.xml +39 -0
  2181. data/lib/fog/ovirt/requests/compute/mock_files/data_centers.xml +17 -0
  2182. data/lib/fog/ovirt/requests/compute/mock_files/nics.xml +10 -0
  2183. data/lib/fog/ovirt/requests/compute/mock_files/storage_domains.xml +36 -0
  2184. data/lib/fog/ovirt/requests/compute/mock_files/template.xml +39 -0
  2185. data/lib/fog/ovirt/requests/compute/mock_files/templates.xml +110 -0
  2186. data/lib/fog/ovirt/requests/compute/mock_files/vm.xml +52 -0
  2187. data/lib/fog/ovirt/requests/compute/mock_files/vms.xml +152 -0
  2188. data/lib/fog/ovirt/requests/compute/mock_files/volumes.xml +40 -0
  2189. data/lib/fog/ovirt/requests/compute/storage_domains.rb +22 -0
  2190. data/lib/fog/ovirt/requests/compute/update_interface.rb +25 -0
  2191. data/lib/fog/ovirt/requests/compute/update_vm.rb +20 -0
  2192. data/lib/fog/ovirt/requests/compute/vm_action.rb +26 -0
  2193. data/lib/fog/ovirt/requests/compute/vm_ticket.rb +21 -0
  2194. data/lib/fog/providers.rb +33 -0
  2195. data/lib/fog/rackspace.rb +85 -0
  2196. data/lib/fog/rackspace/block_storage.rb +114 -0
  2197. data/lib/fog/rackspace/cdn.rb +100 -0
  2198. data/lib/fog/rackspace/compute.rb +262 -0
  2199. data/lib/fog/rackspace/compute_v2.rb +124 -0
  2200. data/lib/fog/rackspace/databases.rb +121 -0
  2201. data/lib/fog/rackspace/dns.rb +139 -0
  2202. data/lib/fog/rackspace/identity.rb +83 -0
  2203. data/lib/fog/rackspace/load_balancers.rb +161 -0
  2204. data/lib/fog/rackspace/models/block_storage/snapshot.rb +46 -0
  2205. data/lib/fog/rackspace/models/block_storage/snapshots.rb +25 -0
  2206. data/lib/fog/rackspace/models/block_storage/volume.rb +58 -0
  2207. data/lib/fog/rackspace/models/block_storage/volume_type.rb +14 -0
  2208. data/lib/fog/rackspace/models/block_storage/volume_types.rb +25 -0
  2209. data/lib/fog/rackspace/models/block_storage/volumes.rb +25 -0
  2210. data/lib/fog/rackspace/models/compute/flavor.rb +46 -0
  2211. data/lib/fog/rackspace/models/compute/flavors.rb +28 -0
  2212. data/lib/fog/rackspace/models/compute/image.rb +48 -0
  2213. data/lib/fog/rackspace/models/compute/images.rb +35 -0
  2214. data/lib/fog/rackspace/models/compute/server.rb +107 -0
  2215. data/lib/fog/rackspace/models/compute/servers.rb +36 -0
  2216. data/lib/fog/rackspace/models/compute_v2/attachment.rb +34 -0
  2217. data/lib/fog/rackspace/models/compute_v2/attachments.rb +25 -0
  2218. data/lib/fog/rackspace/models/compute_v2/flavor.rb +17 -0
  2219. data/lib/fog/rackspace/models/compute_v2/flavors.rb +25 -0
  2220. data/lib/fog/rackspace/models/compute_v2/image.rb +35 -0
  2221. data/lib/fog/rackspace/models/compute_v2/images.rb +25 -0
  2222. data/lib/fog/rackspace/models/compute_v2/server.rb +176 -0
  2223. data/lib/fog/rackspace/models/compute_v2/servers.rb +33 -0
  2224. data/lib/fog/rackspace/models/databases/database.rb +32 -0
  2225. data/lib/fog/rackspace/models/databases/databases.rb +31 -0
  2226. data/lib/fog/rackspace/models/databases/flavor.rb +15 -0
  2227. data/lib/fog/rackspace/models/databases/flavors.rb +25 -0
  2228. data/lib/fog/rackspace/models/databases/instance.rb +104 -0
  2229. data/lib/fog/rackspace/models/databases/instances.rb +25 -0
  2230. data/lib/fog/rackspace/models/databases/user.rb +32 -0
  2231. data/lib/fog/rackspace/models/databases/users.rb +31 -0
  2232. data/lib/fog/rackspace/models/dns/callback.rb +30 -0
  2233. data/lib/fog/rackspace/models/dns/record.rb +95 -0
  2234. data/lib/fog/rackspace/models/dns/records.rb +38 -0
  2235. data/lib/fog/rackspace/models/dns/zone.rb +67 -0
  2236. data/lib/fog/rackspace/models/dns/zones.rb +33 -0
  2237. data/lib/fog/rackspace/models/identity/credential.rb +13 -0
  2238. data/lib/fog/rackspace/models/identity/credentials.rb +32 -0
  2239. data/lib/fog/rackspace/models/identity/role.rb +14 -0
  2240. data/lib/fog/rackspace/models/identity/roles.rb +32 -0
  2241. data/lib/fog/rackspace/models/identity/tenant.rb +15 -0
  2242. data/lib/fog/rackspace/models/identity/tenants.rb +28 -0
  2243. data/lib/fog/rackspace/models/identity/user.rb +53 -0
  2244. data/lib/fog/rackspace/models/identity/users.rb +36 -0
  2245. data/lib/fog/rackspace/models/load_balancers/access_rule.rb +39 -0
  2246. data/lib/fog/rackspace/models/load_balancers/access_rules.rb +29 -0
  2247. data/lib/fog/rackspace/models/load_balancers/load_balancer.rb +250 -0
  2248. data/lib/fog/rackspace/models/load_balancers/load_balancers.rb +27 -0
  2249. data/lib/fog/rackspace/models/load_balancers/node.rb +58 -0
  2250. data/lib/fog/rackspace/models/load_balancers/nodes.rb +29 -0
  2251. data/lib/fog/rackspace/models/load_balancers/virtual_ip.rb +35 -0
  2252. data/lib/fog/rackspace/models/load_balancers/virtual_ips.rb +32 -0
  2253. data/lib/fog/rackspace/models/storage/directories.rb +43 -0
  2254. data/lib/fog/rackspace/models/storage/directory.rb +80 -0
  2255. data/lib/fog/rackspace/models/storage/file.rb +150 -0
  2256. data/lib/fog/rackspace/models/storage/files.rb +94 -0
  2257. data/lib/fog/rackspace/requests/block_storage/create_snapshot.rb +26 -0
  2258. data/lib/fog/rackspace/requests/block_storage/create_volume.rb +27 -0
  2259. data/lib/fog/rackspace/requests/block_storage/delete_snapshot.rb +15 -0
  2260. data/lib/fog/rackspace/requests/block_storage/delete_volume.rb +15 -0
  2261. data/lib/fog/rackspace/requests/block_storage/get_snapshot.rb +15 -0
  2262. data/lib/fog/rackspace/requests/block_storage/get_volume.rb +15 -0
  2263. data/lib/fog/rackspace/requests/block_storage/get_volume_type.rb +15 -0
  2264. data/lib/fog/rackspace/requests/block_storage/list_snapshots.rb +15 -0
  2265. data/lib/fog/rackspace/requests/block_storage/list_volume_types.rb +15 -0
  2266. data/lib/fog/rackspace/requests/block_storage/list_volumes.rb +15 -0
  2267. data/lib/fog/rackspace/requests/cdn/get_containers.rb +31 -0
  2268. data/lib/fog/rackspace/requests/cdn/head_container.rb +33 -0
  2269. data/lib/fog/rackspace/requests/cdn/post_container.rb +30 -0
  2270. data/lib/fog/rackspace/requests/cdn/put_container.rb +30 -0
  2271. data/lib/fog/rackspace/requests/compute/confirm_resized_server.rb +34 -0
  2272. data/lib/fog/rackspace/requests/compute/create_image.rb +60 -0
  2273. data/lib/fog/rackspace/requests/compute/create_server.rb +94 -0
  2274. data/lib/fog/rackspace/requests/compute/delete_image.rb +45 -0
  2275. data/lib/fog/rackspace/requests/compute/delete_server.rb +43 -0
  2276. data/lib/fog/rackspace/requests/compute/get_flavor_details.rb +52 -0
  2277. data/lib/fog/rackspace/requests/compute/get_image_details.rb +27 -0
  2278. data/lib/fog/rackspace/requests/compute/get_server_details.rb +52 -0
  2279. data/lib/fog/rackspace/requests/compute/list_addresses.rb +43 -0
  2280. data/lib/fog/rackspace/requests/compute/list_flavors.rb +45 -0
  2281. data/lib/fog/rackspace/requests/compute/list_flavors_detail.rb +47 -0
  2282. data/lib/fog/rackspace/requests/compute/list_images.rb +40 -0
  2283. data/lib/fog/rackspace/requests/compute/list_images_detail.rb +49 -0
  2284. data/lib/fog/rackspace/requests/compute/list_private_addresses.rb +41 -0
  2285. data/lib/fog/rackspace/requests/compute/list_public_addresses.rb +41 -0
  2286. data/lib/fog/rackspace/requests/compute/list_servers.rb +41 -0
  2287. data/lib/fog/rackspace/requests/compute/list_servers_detail.rb +56 -0
  2288. data/lib/fog/rackspace/requests/compute/reboot_server.rb +30 -0
  2289. data/lib/fog/rackspace/requests/compute/resize_server.rb +39 -0
  2290. data/lib/fog/rackspace/requests/compute/revert_resized_server.rb +35 -0
  2291. data/lib/fog/rackspace/requests/compute/server_action.rb +25 -0
  2292. data/lib/fog/rackspace/requests/compute/update_server.rb +45 -0
  2293. data/lib/fog/rackspace/requests/compute_v2/attach_volume.rb +23 -0
  2294. data/lib/fog/rackspace/requests/compute_v2/change_server_password.rb +22 -0
  2295. data/lib/fog/rackspace/requests/compute_v2/confirm_resize_server.rb +20 -0
  2296. data/lib/fog/rackspace/requests/compute_v2/create_image.rb +59 -0
  2297. data/lib/fog/rackspace/requests/compute_v2/create_server.rb +31 -0
  2298. data/lib/fog/rackspace/requests/compute_v2/delete_attachment.rb +15 -0
  2299. data/lib/fog/rackspace/requests/compute_v2/delete_server.rb +15 -0
  2300. data/lib/fog/rackspace/requests/compute_v2/get_attachment.rb +15 -0
  2301. data/lib/fog/rackspace/requests/compute_v2/get_flavor.rb +15 -0
  2302. data/lib/fog/rackspace/requests/compute_v2/get_image.rb +15 -0
  2303. data/lib/fog/rackspace/requests/compute_v2/get_server.rb +15 -0
  2304. data/lib/fog/rackspace/requests/compute_v2/list_attachments.rb +15 -0
  2305. data/lib/fog/rackspace/requests/compute_v2/list_flavors.rb +15 -0
  2306. data/lib/fog/rackspace/requests/compute_v2/list_images.rb +15 -0
  2307. data/lib/fog/rackspace/requests/compute_v2/list_servers.rb +15 -0
  2308. data/lib/fog/rackspace/requests/compute_v2/reboot_server.rb +22 -0
  2309. data/lib/fog/rackspace/requests/compute_v2/rebuild_server.rb +22 -0
  2310. data/lib/fog/rackspace/requests/compute_v2/resize_server.rb +22 -0
  2311. data/lib/fog/rackspace/requests/compute_v2/revert_resize_server.rb +20 -0
  2312. data/lib/fog/rackspace/requests/compute_v2/update_server.rb +22 -0
  2313. data/lib/fog/rackspace/requests/databases/check_root_user.rb +15 -0
  2314. data/lib/fog/rackspace/requests/databases/create_database.rb +24 -0
  2315. data/lib/fog/rackspace/requests/databases/create_instance.rb +26 -0
  2316. data/lib/fog/rackspace/requests/databases/create_user.rb +24 -0
  2317. data/lib/fog/rackspace/requests/databases/delete_database.rb +15 -0
  2318. data/lib/fog/rackspace/requests/databases/delete_instance.rb +15 -0
  2319. data/lib/fog/rackspace/requests/databases/delete_user.rb +15 -0
  2320. data/lib/fog/rackspace/requests/databases/enable_root_user.rb +15 -0
  2321. data/lib/fog/rackspace/requests/databases/get_flavor.rb +15 -0
  2322. data/lib/fog/rackspace/requests/databases/get_instance.rb +15 -0
  2323. data/lib/fog/rackspace/requests/databases/list_databases.rb +15 -0
  2324. data/lib/fog/rackspace/requests/databases/list_flavors.rb +15 -0
  2325. data/lib/fog/rackspace/requests/databases/list_instances.rb +15 -0
  2326. data/lib/fog/rackspace/requests/databases/list_users.rb +15 -0
  2327. data/lib/fog/rackspace/requests/databases/resize_instance.rb +22 -0
  2328. data/lib/fog/rackspace/requests/databases/resize_instance_volume.rb +24 -0
  2329. data/lib/fog/rackspace/requests/databases/restart_instance.rb +20 -0
  2330. data/lib/fog/rackspace/requests/dns/add_records.rb +34 -0
  2331. data/lib/fog/rackspace/requests/dns/callback.rb +19 -0
  2332. data/lib/fog/rackspace/requests/dns/create_domains.rb +48 -0
  2333. data/lib/fog/rackspace/requests/dns/list_domain_details.rb +32 -0
  2334. data/lib/fog/rackspace/requests/dns/list_domains.rb +21 -0
  2335. data/lib/fog/rackspace/requests/dns/list_record_details.rb +21 -0
  2336. data/lib/fog/rackspace/requests/dns/list_records.rb +23 -0
  2337. data/lib/fog/rackspace/requests/dns/list_subdomains.rb +23 -0
  2338. data/lib/fog/rackspace/requests/dns/modify_domain.rb +36 -0
  2339. data/lib/fog/rackspace/requests/dns/modify_record.rb +37 -0
  2340. data/lib/fog/rackspace/requests/dns/remove_domain.rb +29 -0
  2341. data/lib/fog/rackspace/requests/dns/remove_domains.rb +27 -0
  2342. data/lib/fog/rackspace/requests/dns/remove_record.rb +21 -0
  2343. data/lib/fog/rackspace/requests/dns/remove_records.rb +20 -0
  2344. data/lib/fog/rackspace/requests/identity/create_token.rb +25 -0
  2345. data/lib/fog/rackspace/requests/identity/create_user.rb +25 -0
  2346. data/lib/fog/rackspace/requests/identity/delete_user.rb +15 -0
  2347. data/lib/fog/rackspace/requests/identity/get_credentials.rb +15 -0
  2348. data/lib/fog/rackspace/requests/identity/get_user_by_id.rb +15 -0
  2349. data/lib/fog/rackspace/requests/identity/get_user_by_name.rb +15 -0
  2350. data/lib/fog/rackspace/requests/identity/list_credentials.rb +22 -0
  2351. data/lib/fog/rackspace/requests/identity/list_tenants.rb +22 -0
  2352. data/lib/fog/rackspace/requests/identity/list_user_roles.rb +22 -0
  2353. data/lib/fog/rackspace/requests/identity/list_users.rb +22 -0
  2354. data/lib/fog/rackspace/requests/identity/update_user.rb +24 -0
  2355. data/lib/fog/rackspace/requests/load_balancers/create_access_rule.rb +24 -0
  2356. data/lib/fog/rackspace/requests/load_balancers/create_load_balancer.rb +29 -0
  2357. data/lib/fog/rackspace/requests/load_balancers/create_node.rb +27 -0
  2358. data/lib/fog/rackspace/requests/load_balancers/create_virtual_ip.rb +20 -0
  2359. data/lib/fog/rackspace/requests/load_balancers/delete_access_rule.rb +15 -0
  2360. data/lib/fog/rackspace/requests/load_balancers/delete_all_access_rules.rb +15 -0
  2361. data/lib/fog/rackspace/requests/load_balancers/delete_load_balancer.rb +15 -0
  2362. data/lib/fog/rackspace/requests/load_balancers/delete_node.rb +15 -0
  2363. data/lib/fog/rackspace/requests/load_balancers/delete_nodes.rb +16 -0
  2364. data/lib/fog/rackspace/requests/load_balancers/delete_virtual_ip.rb +15 -0
  2365. data/lib/fog/rackspace/requests/load_balancers/get_connection_logging.rb +15 -0
  2366. data/lib/fog/rackspace/requests/load_balancers/get_connection_throttling.rb +15 -0
  2367. data/lib/fog/rackspace/requests/load_balancers/get_error_page.rb +15 -0
  2368. data/lib/fog/rackspace/requests/load_balancers/get_load_balancer.rb +15 -0
  2369. data/lib/fog/rackspace/requests/load_balancers/get_load_balancer_usage.rb +21 -0
  2370. data/lib/fog/rackspace/requests/load_balancers/get_monitor.rb +15 -0
  2371. data/lib/fog/rackspace/requests/load_balancers/get_node.rb +15 -0
  2372. data/lib/fog/rackspace/requests/load_balancers/get_session_persistence.rb +15 -0
  2373. data/lib/fog/rackspace/requests/load_balancers/get_ssl_termination.rb +15 -0
  2374. data/lib/fog/rackspace/requests/load_balancers/get_usage.rb +20 -0
  2375. data/lib/fog/rackspace/requests/load_balancers/list_access_rules.rb +15 -0
  2376. data/lib/fog/rackspace/requests/load_balancers/list_algorithms.rb +15 -0
  2377. data/lib/fog/rackspace/requests/load_balancers/list_load_balancers.rb +21 -0
  2378. data/lib/fog/rackspace/requests/load_balancers/list_nodes.rb +15 -0
  2379. data/lib/fog/rackspace/requests/load_balancers/list_protocols.rb +15 -0
  2380. data/lib/fog/rackspace/requests/load_balancers/list_virtual_ips.rb +15 -0
  2381. data/lib/fog/rackspace/requests/load_balancers/remove_connection_throttling.rb +15 -0
  2382. data/lib/fog/rackspace/requests/load_balancers/remove_error_page.rb +15 -0
  2383. data/lib/fog/rackspace/requests/load_balancers/remove_monitor.rb +15 -0
  2384. data/lib/fog/rackspace/requests/load_balancers/remove_session_persistence.rb +15 -0
  2385. data/lib/fog/rackspace/requests/load_balancers/remove_ssl_termination.rb +15 -0
  2386. data/lib/fog/rackspace/requests/load_balancers/set_connection_logging.rb +21 -0
  2387. data/lib/fog/rackspace/requests/load_balancers/set_connection_throttling.rb +22 -0
  2388. data/lib/fog/rackspace/requests/load_balancers/set_error_page.rb +21 -0
  2389. data/lib/fog/rackspace/requests/load_balancers/set_monitor.rb +31 -0
  2390. data/lib/fog/rackspace/requests/load_balancers/set_session_persistence.rb +21 -0
  2391. data/lib/fog/rackspace/requests/load_balancers/set_ssl_termination.rb +31 -0
  2392. data/lib/fog/rackspace/requests/load_balancers/update_load_balancer.rb +24 -0
  2393. data/lib/fog/rackspace/requests/load_balancers/update_node.rb +26 -0
  2394. data/lib/fog/rackspace/requests/storage/copy_object.rb +27 -0
  2395. data/lib/fog/rackspace/requests/storage/delete_container.rb +22 -0
  2396. data/lib/fog/rackspace/requests/storage/delete_object.rb +23 -0
  2397. data/lib/fog/rackspace/requests/storage/get_container.rb +44 -0
  2398. data/lib/fog/rackspace/requests/storage/get_containers.rb +33 -0
  2399. data/lib/fog/rackspace/requests/storage/get_object.rb +30 -0
  2400. data/lib/fog/rackspace/requests/storage/get_object_https_url.rb +51 -0
  2401. data/lib/fog/rackspace/requests/storage/head_container.rb +28 -0
  2402. data/lib/fog/rackspace/requests/storage/head_containers.rb +25 -0
  2403. data/lib/fog/rackspace/requests/storage/head_object.rb +23 -0
  2404. data/lib/fog/rackspace/requests/storage/post_set_meta_temp_url_key.rb +37 -0
  2405. data/lib/fog/rackspace/requests/storage/put_container.rb +22 -0
  2406. data/lib/fog/rackspace/requests/storage/put_object.rb +30 -0
  2407. data/lib/fog/rackspace/requests/storage/put_object_manifest.rb +25 -0
  2408. data/lib/fog/rackspace/storage.rb +162 -0
  2409. data/lib/fog/serverlove.rb +10 -0
  2410. data/lib/fog/serverlove/compute.rb +97 -0
  2411. data/lib/fog/serverlove/models/compute/image.rb +57 -0
  2412. data/lib/fog/serverlove/models/compute/images.rb +26 -0
  2413. data/lib/fog/serverlove/models/compute/server.rb +72 -0
  2414. data/lib/fog/serverlove/models/compute/servers.rb +26 -0
  2415. data/lib/fog/serverlove/requests/compute/create_image.rb +32 -0
  2416. data/lib/fog/serverlove/requests/compute/create_server.rb +34 -0
  2417. data/lib/fog/serverlove/requests/compute/destroy_image.rb +13 -0
  2418. data/lib/fog/serverlove/requests/compute/destroy_server.rb +13 -0
  2419. data/lib/fog/serverlove/requests/compute/get_image.rb +13 -0
  2420. data/lib/fog/serverlove/requests/compute/get_images.rb +13 -0
  2421. data/lib/fog/serverlove/requests/compute/get_server.rb +13 -0
  2422. data/lib/fog/serverlove/requests/compute/get_servers.rb +13 -0
  2423. data/lib/fog/serverlove/requests/compute/load_standard_image.rb +13 -0
  2424. data/lib/fog/serverlove/requests/compute/reset_server.rb +13 -0
  2425. data/lib/fog/serverlove/requests/compute/shutdown_server.rb +13 -0
  2426. data/lib/fog/serverlove/requests/compute/start_server.rb +13 -0
  2427. data/lib/fog/serverlove/requests/compute/stop_server.rb +13 -0
  2428. data/lib/fog/serverlove/requests/compute/update_image.rb +15 -0
  2429. data/lib/fog/serverlove/requests/compute/update_server.rb +15 -0
  2430. data/lib/fog/serverlove/util/compute/password_generator.rb +11 -0
  2431. data/lib/fog/storage.rb +91 -0
  2432. data/lib/fog/storm_on_demand.rb +12 -0
  2433. data/lib/fog/storm_on_demand/compute.rb +136 -0
  2434. data/lib/fog/storm_on_demand/models/compute/balancer.rb +38 -0
  2435. data/lib/fog/storm_on_demand/models/compute/balancers.rb +21 -0
  2436. data/lib/fog/storm_on_demand/models/compute/config.rb +25 -0
  2437. data/lib/fog/storm_on_demand/models/compute/configs.rb +22 -0
  2438. data/lib/fog/storm_on_demand/models/compute/image.rb +20 -0
  2439. data/lib/fog/storm_on_demand/models/compute/images.rb +21 -0
  2440. data/lib/fog/storm_on_demand/models/compute/private_ip.rb +19 -0
  2441. data/lib/fog/storm_on_demand/models/compute/private_ips.rb +31 -0
  2442. data/lib/fog/storm_on_demand/models/compute/server.rb +70 -0
  2443. data/lib/fog/storm_on_demand/models/compute/servers.rb +26 -0
  2444. data/lib/fog/storm_on_demand/models/compute/stat.rb +23 -0
  2445. data/lib/fog/storm_on_demand/models/compute/stats.rb +22 -0
  2446. data/lib/fog/storm_on_demand/models/compute/template.rb +22 -0
  2447. data/lib/fog/storm_on_demand/models/compute/templates.rb +21 -0
  2448. data/lib/fog/storm_on_demand/requests/compute/add_balancer_node.rb +16 -0
  2449. data/lib/fog/storm_on_demand/requests/compute/clone_server.rb +16 -0
  2450. data/lib/fog/storm_on_demand/requests/compute/create_server.rb +16 -0
  2451. data/lib/fog/storm_on_demand/requests/compute/delete_server.rb +16 -0
  2452. data/lib/fog/storm_on_demand/requests/compute/get_server.rb +16 -0
  2453. data/lib/fog/storm_on_demand/requests/compute/get_stats.rb +16 -0
  2454. data/lib/fog/storm_on_demand/requests/compute/list_balancers.rb +16 -0
  2455. data/lib/fog/storm_on_demand/requests/compute/list_configs.rb +16 -0
  2456. data/lib/fog/storm_on_demand/requests/compute/list_images.rb +16 -0
  2457. data/lib/fog/storm_on_demand/requests/compute/list_private_ips.rb +16 -0
  2458. data/lib/fog/storm_on_demand/requests/compute/list_servers.rb +16 -0
  2459. data/lib/fog/storm_on_demand/requests/compute/list_templates.rb +16 -0
  2460. data/lib/fog/storm_on_demand/requests/compute/reboot_server.rb +16 -0
  2461. data/lib/fog/storm_on_demand/requests/compute/remove_balancer_node.rb +16 -0
  2462. data/lib/fog/storm_on_demand/requests/compute/resize_server.rb +16 -0
  2463. data/lib/fog/terremark.rb +11 -0
  2464. data/lib/fog/terremark/models/shared/address.rb +29 -0
  2465. data/lib/fog/terremark/models/shared/addresses.rb +49 -0
  2466. data/lib/fog/terremark/models/shared/image.rb +22 -0
  2467. data/lib/fog/terremark/models/shared/images.rb +48 -0
  2468. data/lib/fog/terremark/models/shared/internetservice.rb +67 -0
  2469. data/lib/fog/terremark/models/shared/internetservices.rb +42 -0
  2470. data/lib/fog/terremark/models/shared/network.rb +35 -0
  2471. data/lib/fog/terremark/models/shared/networks.rb +52 -0
  2472. data/lib/fog/terremark/models/shared/nodeservice.rb +52 -0
  2473. data/lib/fog/terremark/models/shared/nodeservices.rb +32 -0
  2474. data/lib/fog/terremark/models/shared/server.rb +209 -0
  2475. data/lib/fog/terremark/models/shared/servers.rb +54 -0
  2476. data/lib/fog/terremark/models/shared/task.rb +50 -0
  2477. data/lib/fog/terremark/models/shared/tasks.rb +58 -0
  2478. data/lib/fog/terremark/models/shared/vdc.rb +44 -0
  2479. data/lib/fog/terremark/models/shared/vdcs.rb +52 -0
  2480. data/lib/fog/terremark/parser.rb +19 -0
  2481. data/lib/fog/terremark/parsers/shared/get_catalog.rb +51 -0
  2482. data/lib/fog/terremark/parsers/shared/get_catalog_item.rb +46 -0
  2483. data/lib/fog/terremark/parsers/shared/get_internet_services.rb +60 -0
  2484. data/lib/fog/terremark/parsers/shared/get_keys_list.rb +56 -0
  2485. data/lib/fog/terremark/parsers/shared/get_network_ips.rb +29 -0
  2486. data/lib/fog/terremark/parsers/shared/get_node_services.rb +36 -0
  2487. data/lib/fog/terremark/parsers/shared/get_organization.rb +52 -0
  2488. data/lib/fog/terremark/parsers/shared/get_organizations.rb +32 -0
  2489. data/lib/fog/terremark/parsers/shared/get_public_ips.rb +30 -0
  2490. data/lib/fog/terremark/parsers/shared/get_tasks_list.rb +52 -0
  2491. data/lib/fog/terremark/parsers/shared/get_vapp_template.rb +46 -0
  2492. data/lib/fog/terremark/parsers/shared/get_vdc.rb +123 -0
  2493. data/lib/fog/terremark/parsers/shared/instantiate_vapp_template.rb +41 -0
  2494. data/lib/fog/terremark/parsers/shared/internet_service.rb +65 -0
  2495. data/lib/fog/terremark/parsers/shared/network.rb +51 -0
  2496. data/lib/fog/terremark/parsers/shared/node_service.rb +32 -0
  2497. data/lib/fog/terremark/parsers/shared/public_ip.rb +26 -0
  2498. data/lib/fog/terremark/parsers/shared/task.rb +40 -0
  2499. data/lib/fog/terremark/parsers/shared/vapp.rb +77 -0
  2500. data/lib/fog/terremark/requests/shared/add_internet_service.rb +56 -0
  2501. data/lib/fog/terremark/requests/shared/add_node_service.rb +53 -0
  2502. data/lib/fog/terremark/requests/shared/configure_vapp.rb +61 -0
  2503. data/lib/fog/terremark/requests/shared/create_internet_service.rb +60 -0
  2504. data/lib/fog/terremark/requests/shared/delete_internet_service.rb +23 -0
  2505. data/lib/fog/terremark/requests/shared/delete_node_service.rb +23 -0
  2506. data/lib/fog/terremark/requests/shared/delete_public_ip.rb +23 -0
  2507. data/lib/fog/terremark/requests/shared/delete_vapp.rb +22 -0
  2508. data/lib/fog/terremark/requests/shared/deploy_vapp.rb +35 -0
  2509. data/lib/fog/terremark/requests/shared/get_catalog.rb +32 -0
  2510. data/lib/fog/terremark/requests/shared/get_catalog_item.rb +35 -0
  2511. data/lib/fog/terremark/requests/shared/get_internet_services.rb +36 -0
  2512. data/lib/fog/terremark/requests/shared/get_keys_list.rb +36 -0
  2513. data/lib/fog/terremark/requests/shared/get_network.rb +73 -0
  2514. data/lib/fog/terremark/requests/shared/get_network_ips.rb +32 -0
  2515. data/lib/fog/terremark/requests/shared/get_node_services.rb +31 -0
  2516. data/lib/fog/terremark/requests/shared/get_organization.rb +86 -0
  2517. data/lib/fog/terremark/requests/shared/get_organizations.rb +49 -0
  2518. data/lib/fog/terremark/requests/shared/get_public_ip.rb +33 -0
  2519. data/lib/fog/terremark/requests/shared/get_public_ips.rb +72 -0
  2520. data/lib/fog/terremark/requests/shared/get_task.rb +39 -0
  2521. data/lib/fog/terremark/requests/shared/get_tasks_list.rb +33 -0
  2522. data/lib/fog/terremark/requests/shared/get_vapp.rb +42 -0
  2523. data/lib/fog/terremark/requests/shared/get_vapp_template.rb +35 -0
  2524. data/lib/fog/terremark/requests/shared/get_vdc.rb +125 -0
  2525. data/lib/fog/terremark/requests/shared/instantiate_vapp_template.rb +81 -0
  2526. data/lib/fog/terremark/requests/shared/power_off.rb +35 -0
  2527. data/lib/fog/terremark/requests/shared/power_on.rb +35 -0
  2528. data/lib/fog/terremark/requests/shared/power_reset.rb +35 -0
  2529. data/lib/fog/terremark/requests/shared/power_shutdown.rb +24 -0
  2530. data/lib/fog/terremark/shared.rb +311 -0
  2531. data/lib/fog/terremark/vcloud.rb +135 -0
  2532. data/lib/fog/vcloud.rb +11 -0
  2533. data/lib/fog/vcloud/compute.rb +372 -0
  2534. data/lib/fog/vcloud/models/compute/catalog.rb +22 -0
  2535. data/lib/fog/vcloud/models/compute/catalog_item.rb +29 -0
  2536. data/lib/fog/vcloud/models/compute/catalog_items.rb +36 -0
  2537. data/lib/fog/vcloud/models/compute/catalogs.rb +38 -0
  2538. data/lib/fog/vcloud/models/compute/helpers/status.rb +37 -0
  2539. data/lib/fog/vcloud/models/compute/ip.rb +42 -0
  2540. data/lib/fog/vcloud/models/compute/ips.rb +33 -0
  2541. data/lib/fog/vcloud/models/compute/network.rb +23 -0
  2542. data/lib/fog/vcloud/models/compute/networks.rb +48 -0
  2543. data/lib/fog/vcloud/models/compute/organization.rb +43 -0
  2544. data/lib/fog/vcloud/models/compute/organizations.rb +31 -0
  2545. data/lib/fog/vcloud/models/compute/server.rb +305 -0
  2546. data/lib/fog/vcloud/models/compute/servers.rb +52 -0
  2547. data/lib/fog/vcloud/models/compute/task.rb +21 -0
  2548. data/lib/fog/vcloud/models/compute/tasks.rb +30 -0
  2549. data/lib/fog/vcloud/models/compute/vapp.rb +43 -0
  2550. data/lib/fog/vcloud/models/compute/vapps.rb +28 -0
  2551. data/lib/fog/vcloud/models/compute/vdc.rb +41 -0
  2552. data/lib/fog/vcloud/models/compute/vdcs.rb +35 -0
  2553. data/lib/fog/vcloud/requests/compute/clone_vapp.rb +40 -0
  2554. data/lib/fog/vcloud/requests/compute/configure_network.rb +43 -0
  2555. data/lib/fog/vcloud/requests/compute/configure_network_ip.rb +46 -0
  2556. data/lib/fog/vcloud/requests/compute/configure_node.rb +38 -0
  2557. data/lib/fog/vcloud/requests/compute/configure_org_network.rb +141 -0
  2558. data/lib/fog/vcloud/requests/compute/configure_vapp.rb +112 -0
  2559. data/lib/fog/vcloud/requests/compute/configure_vm.rb +109 -0
  2560. data/lib/fog/vcloud/requests/compute/configure_vm_cpus.rb +38 -0
  2561. data/lib/fog/vcloud/requests/compute/configure_vm_disks.rb +100 -0
  2562. data/lib/fog/vcloud/requests/compute/configure_vm_memory.rb +39 -0
  2563. data/lib/fog/vcloud/requests/compute/configure_vm_name_description.rb +30 -0
  2564. data/lib/fog/vcloud/requests/compute/configure_vm_password.rb +39 -0
  2565. data/lib/fog/vcloud/requests/compute/delete_node.rb +10 -0
  2566. data/lib/fog/vcloud/requests/compute/delete_vapp.rb +10 -0
  2567. data/lib/fog/vcloud/requests/compute/get_catalog.rb +10 -0
  2568. data/lib/fog/vcloud/requests/compute/get_catalog_item.rb +10 -0
  2569. data/lib/fog/vcloud/requests/compute/get_customization_options.rb +10 -0
  2570. data/lib/fog/vcloud/requests/compute/get_network.rb +10 -0
  2571. data/lib/fog/vcloud/requests/compute/get_network_extensions.rb +11 -0
  2572. data/lib/fog/vcloud/requests/compute/get_network_ip.rb +15 -0
  2573. data/lib/fog/vcloud/requests/compute/get_network_ips.rb +15 -0
  2574. data/lib/fog/vcloud/requests/compute/get_organization.rb +11 -0
  2575. data/lib/fog/vcloud/requests/compute/get_server.rb +10 -0
  2576. data/lib/fog/vcloud/requests/compute/get_task.rb +11 -0
  2577. data/lib/fog/vcloud/requests/compute/get_task_list.rb +11 -0
  2578. data/lib/fog/vcloud/requests/compute/get_vapp.rb +10 -0
  2579. data/lib/fog/vcloud/requests/compute/get_vapp_template.rb +11 -0
  2580. data/lib/fog/vcloud/requests/compute/get_vdc.rb +10 -0
  2581. data/lib/fog/vcloud/requests/compute/get_vm_disks.rb +16 -0
  2582. data/lib/fog/vcloud/requests/compute/get_vm_memory.rb +16 -0
  2583. data/lib/fog/vcloud/requests/compute/instantiate_vapp_template.rb +83 -0
  2584. data/lib/fog/vcloud/requests/compute/login.rb +27 -0
  2585. data/lib/fog/vcloud/requests/compute/power_off.rb +10 -0
  2586. data/lib/fog/vcloud/requests/compute/power_on.rb +11 -0
  2587. data/lib/fog/vcloud/requests/compute/power_reset.rb +11 -0
  2588. data/lib/fog/vcloud/requests/compute/power_shutdown.rb +11 -0
  2589. data/lib/fog/vcloud/requests/compute/undeploy.rb +31 -0
  2590. data/lib/fog/version.rb +5 -0
  2591. data/lib/fog/virtual_box.rb +11 -0
  2592. data/lib/fog/virtual_box/compute.rb +53 -0
  2593. data/lib/fog/virtual_box/models/compute/medium.rb +87 -0
  2594. data/lib/fog/virtual_box/models/compute/medium_format.rb +34 -0
  2595. data/lib/fog/virtual_box/models/compute/mediums.rb +32 -0
  2596. data/lib/fog/virtual_box/models/compute/nat_engine.rb +65 -0
  2597. data/lib/fog/virtual_box/models/compute/nat_redirect.rb +91 -0
  2598. data/lib/fog/virtual_box/models/compute/nat_redirects.rb +41 -0
  2599. data/lib/fog/virtual_box/models/compute/network_adapter.rb +82 -0
  2600. data/lib/fog/virtual_box/models/compute/network_adapters.rb +42 -0
  2601. data/lib/fog/virtual_box/models/compute/server.rb +199 -0
  2602. data/lib/fog/virtual_box/models/compute/servers.rb +41 -0
  2603. data/lib/fog/virtual_box/models/compute/storage_controller.rb +83 -0
  2604. data/lib/fog/virtual_box/models/compute/storage_controllers.rb +38 -0
  2605. data/lib/fog/vmfusion.rb +11 -0
  2606. data/lib/fog/vmfusion/compute.rb +29 -0
  2607. data/lib/fog/vmfusion/models/compute/server.rb +258 -0
  2608. data/lib/fog/vmfusion/models/compute/servers.rb +41 -0
  2609. data/lib/fog/volume.rb +25 -0
  2610. data/lib/fog/voxel.rb +16 -0
  2611. data/lib/fog/voxel/compute.rb +125 -0
  2612. data/lib/fog/voxel/models/compute/image.rb +15 -0
  2613. data/lib/fog/voxel/models/compute/images.rb +30 -0
  2614. data/lib/fog/voxel/models/compute/server.rb +78 -0
  2615. data/lib/fog/voxel/models/compute/servers.rb +32 -0
  2616. data/lib/fog/voxel/parsers/compute/basic.rb +31 -0
  2617. data/lib/fog/voxel/parsers/compute/devices_list.rb +111 -0
  2618. data/lib/fog/voxel/parsers/compute/images_list.rb +59 -0
  2619. data/lib/fog/voxel/parsers/compute/voxcloud_create.rb +40 -0
  2620. data/lib/fog/voxel/parsers/compute/voxcloud_delete.rb +31 -0
  2621. data/lib/fog/voxel/parsers/compute/voxcloud_status.rb +42 -0
  2622. data/lib/fog/voxel/requests/compute/devices_list.rb +24 -0
  2623. data/lib/fog/voxel/requests/compute/devices_power.rb +22 -0
  2624. data/lib/fog/voxel/requests/compute/images_list.rb +31 -0
  2625. data/lib/fog/voxel/requests/compute/voxcloud_create.rb +22 -0
  2626. data/lib/fog/voxel/requests/compute/voxcloud_delete.rb +20 -0
  2627. data/lib/fog/voxel/requests/compute/voxcloud_status.rb +24 -0
  2628. data/lib/fog/vsphere.rb +17 -0
  2629. data/lib/fog/vsphere/compute.rb +250 -0
  2630. data/lib/fog/vsphere/models/compute/cluster.rb +31 -0
  2631. data/lib/fog/vsphere/models/compute/clusters.rb +26 -0
  2632. data/lib/fog/vsphere/models/compute/datacenter.rb +35 -0
  2633. data/lib/fog/vsphere/models/compute/datacenters.rb +23 -0
  2634. data/lib/fog/vsphere/models/compute/datastore.rb +24 -0
  2635. data/lib/fog/vsphere/models/compute/datastores.rb +25 -0
  2636. data/lib/fog/vsphere/models/compute/folder.rb +28 -0
  2637. data/lib/fog/vsphere/models/compute/folders.rb +27 -0
  2638. data/lib/fog/vsphere/models/compute/interface.rb +39 -0
  2639. data/lib/fog/vsphere/models/compute/interfaces.rb +33 -0
  2640. data/lib/fog/vsphere/models/compute/network.rb +21 -0
  2641. data/lib/fog/vsphere/models/compute/networks.rb +25 -0
  2642. data/lib/fog/vsphere/models/compute/resource_pool.rb +23 -0
  2643. data/lib/fog/vsphere/models/compute/resource_pools.rb +26 -0
  2644. data/lib/fog/vsphere/models/compute/server.rb +204 -0
  2645. data/lib/fog/vsphere/models/compute/servers.rb +39 -0
  2646. data/lib/fog/vsphere/models/compute/template.rb +13 -0
  2647. data/lib/fog/vsphere/models/compute/templates.rb +23 -0
  2648. data/lib/fog/vsphere/models/compute/volume.rb +45 -0
  2649. data/lib/fog/vsphere/models/compute/volumes.rb +33 -0
  2650. data/lib/fog/vsphere/requests/compute/create_vm.rb +114 -0
  2651. data/lib/fog/vsphere/requests/compute/current_time.rb +22 -0
  2652. data/lib/fog/vsphere/requests/compute/get_cluster.rb +25 -0
  2653. data/lib/fog/vsphere/requests/compute/get_datacenter.rb +29 -0
  2654. data/lib/fog/vsphere/requests/compute/get_datastore.rb +25 -0
  2655. data/lib/fog/vsphere/requests/compute/get_folder.rb +73 -0
  2656. data/lib/fog/vsphere/requests/compute/get_network.rb +25 -0
  2657. data/lib/fog/vsphere/requests/compute/get_resource_pool.rb +26 -0
  2658. data/lib/fog/vsphere/requests/compute/get_virtual_machine.rb +62 -0
  2659. data/lib/fog/vsphere/requests/compute/list_clusters.rb +37 -0
  2660. data/lib/fog/vsphere/requests/compute/list_datacenters.rb +34 -0
  2661. data/lib/fog/vsphere/requests/compute/list_datastores.rb +40 -0
  2662. data/lib/fog/vsphere/requests/compute/list_folders.rb +45 -0
  2663. data/lib/fog/vsphere/requests/compute/list_networks.rb +38 -0
  2664. data/lib/fog/vsphere/requests/compute/list_resource_pools.rb +39 -0
  2665. data/lib/fog/vsphere/requests/compute/list_virtual_machines.rb +173 -0
  2666. data/lib/fog/vsphere/requests/compute/list_vm_interfaces.rb +52 -0
  2667. data/lib/fog/vsphere/requests/compute/list_vm_volumes.rb +51 -0
  2668. data/lib/fog/vsphere/requests/compute/vm_clone.rb +208 -0
  2669. data/lib/fog/vsphere/requests/compute/vm_config_vnc.rb +47 -0
  2670. data/lib/fog/vsphere/requests/compute/vm_destroy.rb +27 -0
  2671. data/lib/fog/vsphere/requests/compute/vm_migrate.rb +37 -0
  2672. data/lib/fog/vsphere/requests/compute/vm_power_off.rb +41 -0
  2673. data/lib/fog/vsphere/requests/compute/vm_power_on.rb +30 -0
  2674. data/lib/fog/vsphere/requests/compute/vm_reboot.rb +35 -0
  2675. data/lib/fog/vsphere/requests/compute/vm_reconfig_cpus.rb +23 -0
  2676. data/lib/fog/vsphere/requests/compute/vm_reconfig_hardware.rb +24 -0
  2677. data/lib/fog/vsphere/requests/compute/vm_reconfig_memory.rb +23 -0
  2678. data/lib/fog/xenserver.rb +56 -0
  2679. data/lib/fog/xenserver/compute.rb +122 -0
  2680. data/lib/fog/xenserver/models/compute/guest_metrics.rb +28 -0
  2681. data/lib/fog/xenserver/models/compute/host.rb +46 -0
  2682. data/lib/fog/xenserver/models/compute/hosts.rb +29 -0
  2683. data/lib/fog/xenserver/models/compute/network.rb +58 -0
  2684. data/lib/fog/xenserver/models/compute/networks.rb +33 -0
  2685. data/lib/fog/xenserver/models/compute/pbd.rb +33 -0
  2686. data/lib/fog/xenserver/models/compute/pbds.rb +33 -0
  2687. data/lib/fog/xenserver/models/compute/pif.rb +46 -0
  2688. data/lib/fog/xenserver/models/compute/pifs.rb +33 -0
  2689. data/lib/fog/xenserver/models/compute/pool.rb +40 -0
  2690. data/lib/fog/xenserver/models/compute/pools.rb +33 -0
  2691. data/lib/fog/xenserver/models/compute/server.rb +211 -0
  2692. data/lib/fog/xenserver/models/compute/servers.rb +63 -0
  2693. data/lib/fog/xenserver/models/compute/storage_repositories.rb +31 -0
  2694. data/lib/fog/xenserver/models/compute/storage_repository.rb +47 -0
  2695. data/lib/fog/xenserver/models/compute/vbd.rb +90 -0
  2696. data/lib/fog/xenserver/models/compute/vbd_metrics.rb +27 -0
  2697. data/lib/fog/xenserver/models/compute/vbds.rb +33 -0
  2698. data/lib/fog/xenserver/models/compute/vdi.rb +102 -0
  2699. data/lib/fog/xenserver/models/compute/vdis.rb +29 -0
  2700. data/lib/fog/xenserver/models/compute/vif.rb +51 -0
  2701. data/lib/fog/xenserver/models/compute/vifs.rb +29 -0
  2702. data/lib/fog/xenserver/parser.rb +36 -0
  2703. data/lib/fog/xenserver/parsers/get_hosts.rb +19 -0
  2704. data/lib/fog/xenserver/parsers/get_networks.rb +19 -0
  2705. data/lib/fog/xenserver/parsers/get_pools.rb +19 -0
  2706. data/lib/fog/xenserver/parsers/get_records.rb +19 -0
  2707. data/lib/fog/xenserver/parsers/get_storage_repositories.rb +19 -0
  2708. data/lib/fog/xenserver/parsers/get_vbds.rb +19 -0
  2709. data/lib/fog/xenserver/parsers/get_vifs.rb +19 -0
  2710. data/lib/fog/xenserver/parsers/get_vms.rb +20 -0
  2711. data/lib/fog/xenserver/requests/compute/clone_server.rb +31 -0
  2712. data/lib/fog/xenserver/requests/compute/create_server.rb +126 -0
  2713. data/lib/fog/xenserver/requests/compute/create_vbd.rb +40 -0
  2714. data/lib/fog/xenserver/requests/compute/create_vdi.rb +33 -0
  2715. data/lib/fog/xenserver/requests/compute/create_vif.rb +57 -0
  2716. data/lib/fog/xenserver/requests/compute/destroy_server.rb +22 -0
  2717. data/lib/fog/xenserver/requests/compute/destroy_vdi.rb +22 -0
  2718. data/lib/fog/xenserver/requests/compute/destroy_vif.rb +22 -0
  2719. data/lib/fog/xenserver/requests/compute/eject_vbd.rb +22 -0
  2720. data/lib/fog/xenserver/requests/compute/get_record.rb +29 -0
  2721. data/lib/fog/xenserver/requests/compute/get_records.rb +30 -0
  2722. data/lib/fog/xenserver/requests/compute/insert_vbd.rb +22 -0
  2723. data/lib/fog/xenserver/requests/compute/provision_server.rb +21 -0
  2724. data/lib/fog/xenserver/requests/compute/reboot_server.rb +23 -0
  2725. data/lib/fog/xenserver/requests/compute/scan_sr.rb +22 -0
  2726. data/lib/fog/xenserver/requests/compute/set_affinity.rb +25 -0
  2727. data/lib/fog/xenserver/requests/compute/set_attribute.rb +25 -0
  2728. data/lib/fog/xenserver/requests/compute/shutdown_server.rb +23 -0
  2729. data/lib/fog/xenserver/requests/compute/start_server.rb +23 -0
  2730. data/lib/fog/xenserver/requests/compute/start_vm.rb +25 -0
  2731. data/lib/fog/xenserver/requests/compute/unplug_vbd.rb +30 -0
  2732. data/lib/fog/xenserver/utilities.rb +8 -0
  2733. data/lib/fog/zerigo.rb +11 -0
  2734. data/lib/fog/zerigo/dns.rb +120 -0
  2735. data/lib/fog/zerigo/models/dns/record.rb +70 -0
  2736. data/lib/fog/zerigo/models/dns/records.rb +46 -0
  2737. data/lib/fog/zerigo/models/dns/zone.rb +88 -0
  2738. data/lib/fog/zerigo/models/dns/zones.rb +30 -0
  2739. data/lib/fog/zerigo/parsers/dns/count_hosts.rb +24 -0
  2740. data/lib/fog/zerigo/parsers/dns/count_zones.rb +24 -0
  2741. data/lib/fog/zerigo/parsers/dns/create_host.rb +28 -0
  2742. data/lib/fog/zerigo/parsers/dns/create_zone.rb +26 -0
  2743. data/lib/fog/zerigo/parsers/dns/find_hosts.rb +32 -0
  2744. data/lib/fog/zerigo/parsers/dns/get_host.rb +28 -0
  2745. data/lib/fog/zerigo/parsers/dns/get_zone.rb +58 -0
  2746. data/lib/fog/zerigo/parsers/dns/get_zone_stats.rb +26 -0
  2747. data/lib/fog/zerigo/parsers/dns/list_hosts.rb +32 -0
  2748. data/lib/fog/zerigo/parsers/dns/list_zones.rb +30 -0
  2749. data/lib/fog/zerigo/requests/dns/count_hosts.rb +47 -0
  2750. data/lib/fog/zerigo/requests/dns/count_zones.rb +39 -0
  2751. data/lib/fog/zerigo/requests/dns/create_host.rb +128 -0
  2752. data/lib/fog/zerigo/requests/dns/create_zone.rb +132 -0
  2753. data/lib/fog/zerigo/requests/dns/delete_host.rb +43 -0
  2754. data/lib/fog/zerigo/requests/dns/delete_zone.rb +42 -0
  2755. data/lib/fog/zerigo/requests/dns/find_hosts.rb +76 -0
  2756. data/lib/fog/zerigo/requests/dns/get_host.rb +56 -0
  2757. data/lib/fog/zerigo/requests/dns/get_zone.rb +66 -0
  2758. data/lib/fog/zerigo/requests/dns/get_zone_stats.rb +59 -0
  2759. data/lib/fog/zerigo/requests/dns/list_hosts.rb +59 -0
  2760. data/lib/fog/zerigo/requests/dns/list_zones.rb +60 -0
  2761. data/lib/fog/zerigo/requests/dns/update_host.rb +71 -0
  2762. data/lib/fog/zerigo/requests/dns/update_zone.rb +89 -0
  2763. data/lib/tasks/changelog_task.rb +98 -0
  2764. data/lib/tasks/documentation_task.rb +155 -0
  2765. data/lib/tasks/test_task.rb +46 -0
  2766. data/tests/atmos/models/storage/file_update_tests.rb +19 -0
  2767. data/tests/atmos/models/storage/nested_directories_tests.rb +23 -0
  2768. data/tests/aws/credentials_tests.rb +57 -0
  2769. data/tests/aws/models/auto_scaling/activities_tests.rb +6 -0
  2770. data/tests/aws/models/auto_scaling/configuration_test.rb +13 -0
  2771. data/tests/aws/models/auto_scaling/configurations_tests.rb +11 -0
  2772. data/tests/aws/models/auto_scaling/helper.rb +0 -0
  2773. data/tests/aws/models/auto_scaling/instances_tests.rb +6 -0
  2774. data/tests/aws/models/beanstalk/application_tests.rb +70 -0
  2775. data/tests/aws/models/beanstalk/applications_tests.rb +7 -0
  2776. data/tests/aws/models/beanstalk/environment_tests.rb +132 -0
  2777. data/tests/aws/models/beanstalk/environments_tests.rb +34 -0
  2778. data/tests/aws/models/beanstalk/template_tests.rb +47 -0
  2779. data/tests/aws/models/beanstalk/templates_tests.rb +62 -0
  2780. data/tests/aws/models/beanstalk/version_tests.rb +66 -0
  2781. data/tests/aws/models/beanstalk/versions_tests.rb +61 -0
  2782. data/tests/aws/models/cdn/distribution_tests.rb +15 -0
  2783. data/tests/aws/models/cdn/distributions_tests.rb +15 -0
  2784. data/tests/aws/models/cdn/invalidation_tests.rb +32 -0
  2785. data/tests/aws/models/cdn/invalidations_tests.rb +15 -0
  2786. data/tests/aws/models/cdn/streaming_distribution_tests.rb +15 -0
  2787. data/tests/aws/models/cdn/streaming_distributions_tests.rb +15 -0
  2788. data/tests/aws/models/cloud_watch/alarm_data_tests.rb +42 -0
  2789. data/tests/aws/models/cloud_watch/alarm_history_tests.rb +22 -0
  2790. data/tests/aws/models/cloud_watch/metric_statistics_tests.rb +51 -0
  2791. data/tests/aws/models/cloud_watch/metrics_tests.rb +32 -0
  2792. data/tests/aws/models/compute/address_tests.rb +24 -0
  2793. data/tests/aws/models/compute/addresses_tests.rb +5 -0
  2794. data/tests/aws/models/compute/dhcp_option_tests.rb +4 -0
  2795. data/tests/aws/models/compute/dhcp_options_tests.rb +4 -0
  2796. data/tests/aws/models/compute/internet_gateway_tests.rb +3 -0
  2797. data/tests/aws/models/compute/internet_gateways_tests.rb +4 -0
  2798. data/tests/aws/models/compute/key_pair_tests.rb +27 -0
  2799. data/tests/aws/models/compute/key_pairs_tests.rb +5 -0
  2800. data/tests/aws/models/compute/network_interfaces_test.rb +12 -0
  2801. data/tests/aws/models/compute/security_group_tests.rb +60 -0
  2802. data/tests/aws/models/compute/security_groups_tests.rb +5 -0
  2803. data/tests/aws/models/compute/server_tests.rb +63 -0
  2804. data/tests/aws/models/compute/snapshot_tests.rb +10 -0
  2805. data/tests/aws/models/compute/snapshots_tests.rb +10 -0
  2806. data/tests/aws/models/compute/subnet_tests.rb +5 -0
  2807. data/tests/aws/models/compute/subnets_tests.rb +6 -0
  2808. data/tests/aws/models/compute/volume_tests.rb +43 -0
  2809. data/tests/aws/models/compute/volumes_tests.rb +5 -0
  2810. data/tests/aws/models/compute/vpc_tests.rb +4 -0
  2811. data/tests/aws/models/compute/vpcs_tests.rb +6 -0
  2812. data/tests/aws/models/dns/record_tests.rb +35 -0
  2813. data/tests/aws/models/dns/records_tests.rb +47 -0
  2814. data/tests/aws/models/dns/zone_tests.rb +4 -0
  2815. data/tests/aws/models/dns/zones_tests.rb +4 -0
  2816. data/tests/aws/models/elasticache/cluster_tests.rb +30 -0
  2817. data/tests/aws/models/elasticache/parameter_groups_tests.rb +17 -0
  2818. data/tests/aws/models/elasticache/security_groups_tests.rb +52 -0
  2819. data/tests/aws/models/elb/model_tests.rb +296 -0
  2820. data/tests/aws/models/glacier/model_tests.rb +47 -0
  2821. data/tests/aws/models/iam/access_keys_tests.rb +53 -0
  2822. data/tests/aws/models/iam/policies_tests.rb +56 -0
  2823. data/tests/aws/models/iam/users_tests.rb +68 -0
  2824. data/tests/aws/models/rds/helper.rb +5 -0
  2825. data/tests/aws/models/rds/parameter_group_tests.rb +24 -0
  2826. data/tests/aws/models/rds/parameter_groups_tests.rb +8 -0
  2827. data/tests/aws/models/rds/security_group_tests.rb +53 -0
  2828. data/tests/aws/models/rds/security_groups_tests.rb +5 -0
  2829. data/tests/aws/models/rds/server_tests.rb +109 -0
  2830. data/tests/aws/models/rds/servers_tests.rb +6 -0
  2831. data/tests/aws/models/rds/snapshot_tests.rb +13 -0
  2832. data/tests/aws/models/rds/snapshots_tests.rb +13 -0
  2833. data/tests/aws/models/rds/tagging_tests.rb +20 -0
  2834. data/tests/aws/models/storage/directory_tests.rb +51 -0
  2835. data/tests/aws/models/storage/file_tests.rb +80 -0
  2836. data/tests/aws/models/storage/files_tests.rb +56 -0
  2837. data/tests/aws/models/storage/url_tests.rb +28 -0
  2838. data/tests/aws/models/storage/version_tests.rb +52 -0
  2839. data/tests/aws/models/storage/versions_tests.rb +56 -0
  2840. data/tests/aws/requests/auto_scaling/auto_scaling_tests.rb +77 -0
  2841. data/tests/aws/requests/auto_scaling/describe_types_tests.rb +102 -0
  2842. data/tests/aws/requests/auto_scaling/helper.rb +230 -0
  2843. data/tests/aws/requests/auto_scaling/model_tests.rb +233 -0
  2844. data/tests/aws/requests/auto_scaling/notification_configuration_tests.rb +124 -0
  2845. data/tests/aws/requests/auto_scaling/tag_tests.rb +63 -0
  2846. data/tests/aws/requests/beanstalk/application_tests.rb +140 -0
  2847. data/tests/aws/requests/beanstalk/solution_stack_tests.rb +22 -0
  2848. data/tests/aws/requests/cdn/cdn_tests.rb +252 -0
  2849. data/tests/aws/requests/cloud_formation/stack_tests.rb +157 -0
  2850. data/tests/aws/requests/cloud_watch/get_metric_statistics_tests.rb +28 -0
  2851. data/tests/aws/requests/cloud_watch/list_metrics_test.rb +64 -0
  2852. data/tests/aws/requests/cloud_watch/put_metric_data_tests.rb +36 -0
  2853. data/tests/aws/requests/compute/address_tests.rb +96 -0
  2854. data/tests/aws/requests/compute/availability_zone_tests.rb +25 -0
  2855. data/tests/aws/requests/compute/dhcp_options_tests.rb +40 -0
  2856. data/tests/aws/requests/compute/helper.rb +16 -0
  2857. data/tests/aws/requests/compute/image_tests.rb +138 -0
  2858. data/tests/aws/requests/compute/instance_tests.rb +282 -0
  2859. data/tests/aws/requests/compute/internet_gateway_tests.rb +44 -0
  2860. data/tests/aws/requests/compute/key_pair_tests.rb +67 -0
  2861. data/tests/aws/requests/compute/network_interface_tests.rb +175 -0
  2862. data/tests/aws/requests/compute/placement_group_tests.rb +48 -0
  2863. data/tests/aws/requests/compute/region_tests.rb +23 -0
  2864. data/tests/aws/requests/compute/security_group_tests.rb +434 -0
  2865. data/tests/aws/requests/compute/snapshot_tests.rb +57 -0
  2866. data/tests/aws/requests/compute/spot_datafeed_subscription_tests.rb +47 -0
  2867. data/tests/aws/requests/compute/spot_instance_tests.rb +54 -0
  2868. data/tests/aws/requests/compute/spot_price_history_tests.rb +24 -0
  2869. data/tests/aws/requests/compute/subnet_tests.rb +36 -0
  2870. data/tests/aws/requests/compute/tag_tests.rb +78 -0
  2871. data/tests/aws/requests/compute/volume_tests.rb +204 -0
  2872. data/tests/aws/requests/compute/vpc_tests.rb +34 -0
  2873. data/tests/aws/requests/dns/dns_tests.rb +283 -0
  2874. data/tests/aws/requests/dns/helper.rb +21 -0
  2875. data/tests/aws/requests/dynamodb/item_tests.rb +137 -0
  2876. data/tests/aws/requests/dynamodb/table_tests.rb +99 -0
  2877. data/tests/aws/requests/elasticache/cache_cluster_tests.rb +137 -0
  2878. data/tests/aws/requests/elasticache/describe_events.rb +17 -0
  2879. data/tests/aws/requests/elasticache/helper.rb +68 -0
  2880. data/tests/aws/requests/elasticache/parameter_group_tests.rb +105 -0
  2881. data/tests/aws/requests/elasticache/security_group_tests.rb +107 -0
  2882. data/tests/aws/requests/elb/helper.rb +92 -0
  2883. data/tests/aws/requests/elb/listener_tests.rb +68 -0
  2884. data/tests/aws/requests/elb/load_balancer_tests.rb +61 -0
  2885. data/tests/aws/requests/elb/policy_tests.rb +54 -0
  2886. data/tests/aws/requests/emr/helper.rb +172 -0
  2887. data/tests/aws/requests/emr/instance_group_tests.rb +106 -0
  2888. data/tests/aws/requests/emr/job_flow_tests.rb +88 -0
  2889. data/tests/aws/requests/glacier/archive_tests.rb +13 -0
  2890. data/tests/aws/requests/glacier/multipart_upload_tests.rb +30 -0
  2891. data/tests/aws/requests/glacier/tree_hash_tests.rb +63 -0
  2892. data/tests/aws/requests/glacier/vault_tests.rb +35 -0
  2893. data/tests/aws/requests/iam/access_key_tests.rb +53 -0
  2894. data/tests/aws/requests/iam/group_policy_tests.rb +42 -0
  2895. data/tests/aws/requests/iam/group_tests.rb +44 -0
  2896. data/tests/aws/requests/iam/helper.rb +104 -0
  2897. data/tests/aws/requests/iam/login_profile_tests.rb +64 -0
  2898. data/tests/aws/requests/iam/role_tests.rb +168 -0
  2899. data/tests/aws/requests/iam/server_certificate_tests.rb +95 -0
  2900. data/tests/aws/requests/iam/user_policy_tests.rb +45 -0
  2901. data/tests/aws/requests/iam/user_tests.rb +76 -0
  2902. data/tests/aws/requests/rds/describe_events.rb +16 -0
  2903. data/tests/aws/requests/rds/helper.rb +236 -0
  2904. data/tests/aws/requests/rds/instance_tests.rb +125 -0
  2905. data/tests/aws/requests/rds/parameter_group_tests.rb +62 -0
  2906. data/tests/aws/requests/rds/parameter_request_tests.rb +35 -0
  2907. data/tests/aws/requests/rds/security_group_tests.rb +101 -0
  2908. data/tests/aws/requests/rds/subnet_groups_test.rb +48 -0
  2909. data/tests/aws/requests/rds/tagging_tests.rb +78 -0
  2910. data/tests/aws/requests/ses/helper.rb +15 -0
  2911. data/tests/aws/requests/ses/verified_email_address_tests.rb +27 -0
  2912. data/tests/aws/requests/simpledb/attributes_tests.rb +86 -0
  2913. data/tests/aws/requests/simpledb/domain_tests.rb +51 -0
  2914. data/tests/aws/requests/simpledb/helper.rb +16 -0
  2915. data/tests/aws/requests/sns/helper.rb +9 -0
  2916. data/tests/aws/requests/sns/subscription_tests.rb +86 -0
  2917. data/tests/aws/requests/sns/topic_tests.rb +50 -0
  2918. data/tests/aws/requests/sqs/helper.rb +15 -0
  2919. data/tests/aws/requests/sqs/message_tests.rb +51 -0
  2920. data/tests/aws/requests/sqs/queue_tests.rb +50 -0
  2921. data/tests/aws/requests/storage/acl_utils_tests.rb +209 -0
  2922. data/tests/aws/requests/storage/bucket_tests.rb +294 -0
  2923. data/tests/aws/requests/storage/multipart_upload_tests.rb +132 -0
  2924. data/tests/aws/requests/storage/object_tests.rb +165 -0
  2925. data/tests/aws/requests/storage/versioning_tests.rb +258 -0
  2926. data/tests/aws/requests/sts/get_federation_token_tests.rb +21 -0
  2927. data/tests/aws/requests/sts/session_token_tests.rb +16 -0
  2928. data/tests/aws/signaturev4_tests.rb +41 -0
  2929. data/tests/aws/signed_params_tests.rb +5 -0
  2930. data/tests/bluebox/requests/compute/block_tests.rb +82 -0
  2931. data/tests/bluebox/requests/compute/helper.rb +22 -0
  2932. data/tests/bluebox/requests/compute/location_tests.rb +32 -0
  2933. data/tests/bluebox/requests/compute/product_tests.rb +34 -0
  2934. data/tests/bluebox/requests/compute/template_tests.rb +37 -0
  2935. data/tests/bluebox/requests/dns/dns_tests.rb +259 -0
  2936. data/tests/brightbox/compute_tests.rb +101 -0
  2937. data/tests/brightbox/models/compute/account_tests.rb +15 -0
  2938. data/tests/brightbox/oauth2_tests.rb +103 -0
  2939. data/tests/brightbox/requests/compute/account_tests.rb +64 -0
  2940. data/tests/brightbox/requests/compute/api_client_tests.rb +64 -0
  2941. data/tests/brightbox/requests/compute/application_test.rb +63 -0
  2942. data/tests/brightbox/requests/compute/cloud_ip_tests.rb +86 -0
  2943. data/tests/brightbox/requests/compute/helper.rb +680 -0
  2944. data/tests/brightbox/requests/compute/image_tests.rb +60 -0
  2945. data/tests/brightbox/requests/compute/interface_tests.rb +45 -0
  2946. data/tests/brightbox/requests/compute/load_balancer_tests.rb +121 -0
  2947. data/tests/brightbox/requests/compute/server_group_tests.rb +96 -0
  2948. data/tests/brightbox/requests/compute/server_tests.rb +96 -0
  2949. data/tests/brightbox/requests/compute/server_type_tests.rb +34 -0
  2950. data/tests/brightbox/requests/compute/user_tests.rb +36 -0
  2951. data/tests/brightbox/requests/compute/zone_tests.rb +34 -0
  2952. data/tests/clodo/requests/compute/image_tests.rb +36 -0
  2953. data/tests/clodo/requests/compute/server_tests.rb +152 -0
  2954. data/tests/cloudstack/compute/models/security_group_rule_tests.rb +29 -0
  2955. data/tests/cloudstack/compute/models/security_group_tests.rb +16 -0
  2956. data/tests/cloudstack/compute/models/security_groups_tests.rb +19 -0
  2957. data/tests/cloudstack/compute/models/server_tests.rb +18 -0
  2958. data/tests/cloudstack/compute/models/volume_tests.rb +34 -0
  2959. data/tests/cloudstack/compute/models/volumes_tests.rb +17 -0
  2960. data/tests/cloudstack/requests/disk_offering_tests.rb +29 -0
  2961. data/tests/cloudstack/requests/os_type_tests.rb +38 -0
  2962. data/tests/cloudstack/requests/security_group_tests.rb +29 -0
  2963. data/tests/cloudstack/requests/service_offering_tests.rb +38 -0
  2964. data/tests/cloudstack/requests/snapshot_tests.rb +32 -0
  2965. data/tests/cloudstack/requests/ssh_key_pair_tests.rb +23 -0
  2966. data/tests/cloudstack/requests/template_tests.rb +53 -0
  2967. data/tests/cloudstack/requests/virtual_machine_tests.rb +71 -0
  2968. data/tests/cloudstack/requests/volume_tests.rb +48 -0
  2969. data/tests/cloudstack/requests/zone_tests.rb +33 -0
  2970. data/tests/cloudstack/signed_params_tests.rb +12 -0
  2971. data/tests/compute/helper.rb +102 -0
  2972. data/tests/compute/models/flavors_tests.rb +11 -0
  2973. data/tests/compute/models/server_tests.rb +20 -0
  2974. data/tests/compute/models/servers_tests.rb +10 -0
  2975. data/tests/core/attribute_tests.rb +83 -0
  2976. data/tests/core/credential_tests.rb +66 -0
  2977. data/tests/core/current_machine_tests.rb +32 -0
  2978. data/tests/core/mocking_tests.rb +60 -0
  2979. data/tests/core/parser_tests.rb +67 -0
  2980. data/tests/core/timeout_tests.rb +10 -0
  2981. data/tests/dns/helper.rb +52 -0
  2982. data/tests/dns/models/record_tests.rb +44 -0
  2983. data/tests/dns/models/records_tests.rb +30 -0
  2984. data/tests/dns/models/zone_tests.rb +18 -0
  2985. data/tests/dns/models/zones_tests.rb +18 -0
  2986. data/tests/dnsimple/requests/dns/dns_tests.rb +118 -0
  2987. data/tests/dnsmadeeasy/requests/dns/dns_tests.rb +138 -0
  2988. data/tests/dynect/requests/dns/dns_tests.rb +232 -0
  2989. data/tests/glesys/requests/compute/helper.rb +266 -0
  2990. data/tests/glesys/requests/compute/ip_tests.rb +67 -0
  2991. data/tests/glesys/requests/compute/server_tests.rb +125 -0
  2992. data/tests/glesys/requests/compute/template_tests.rb +12 -0
  2993. data/tests/go_grid/requests/compute/image_tests.rb +0 -0
  2994. data/tests/google/requests/storage/bucket_tests.rb +77 -0
  2995. data/tests/google/requests/storage/object_tests.rb +81 -0
  2996. data/tests/helper.rb +38 -0
  2997. data/tests/helpers/collection_helper.rb +59 -0
  2998. data/tests/helpers/compute/flavors_helper.rb +34 -0
  2999. data/tests/helpers/compute/server_helper.rb +26 -0
  3000. data/tests/helpers/compute/servers_helper.rb +11 -0
  3001. data/tests/helpers/formats_helper.rb +86 -0
  3002. data/tests/helpers/formats_helper_tests.rb +60 -0
  3003. data/tests/helpers/mock_helper.rb +89 -0
  3004. data/tests/helpers/model_helper.rb +35 -0
  3005. data/tests/helpers/responds_to_helper.rb +13 -0
  3006. data/tests/helpers/succeeds_helper.rb +11 -0
  3007. data/tests/hp/models/compute/address_tests.rb +18 -0
  3008. data/tests/hp/models/compute/addresses_tests.rb +5 -0
  3009. data/tests/hp/models/compute/key_pair_tests.rb +27 -0
  3010. data/tests/hp/models/compute/key_pairs_tests.rb +5 -0
  3011. data/tests/hp/models/compute/security_group_tests.rb +36 -0
  3012. data/tests/hp/models/compute/security_groups_tests.rb +5 -0
  3013. data/tests/hp/requests/cdn/container_tests.rb +56 -0
  3014. data/tests/hp/requests/compute/address_tests.rb +73 -0
  3015. data/tests/hp/requests/compute/flavor_tests.rb +45 -0
  3016. data/tests/hp/requests/compute/image_tests.rb +79 -0
  3017. data/tests/hp/requests/compute/key_pair_tests.rb +65 -0
  3018. data/tests/hp/requests/compute/security_group_rule_tests.rb +54 -0
  3019. data/tests/hp/requests/compute/security_group_tests.rb +64 -0
  3020. data/tests/hp/requests/compute/server_address_tests.rb +45 -0
  3021. data/tests/hp/requests/compute/server_tests.rb +127 -0
  3022. data/tests/hp/requests/storage/container_tests.rb +78 -0
  3023. data/tests/hp/requests/storage/object_tests.rb +81 -0
  3024. data/tests/ibm/models/compute/image_tests.rb +25 -0
  3025. data/tests/ibm/models/compute/key_tests.rb +23 -0
  3026. data/tests/ibm/models/compute/keys_tests.rb +35 -0
  3027. data/tests/ibm/models/compute/locations_tests.rb +18 -0
  3028. data/tests/ibm/models/compute/server_tests.rb +88 -0
  3029. data/tests/ibm/models/compute/servers_tests.rb +37 -0
  3030. data/tests/ibm/models/storage/volume_tests.rb +60 -0
  3031. data/tests/ibm/requests/compute/address_tests.rb +44 -0
  3032. data/tests/ibm/requests/compute/image_tests.rb +110 -0
  3033. data/tests/ibm/requests/compute/instance_tests.rb +102 -0
  3034. data/tests/ibm/requests/compute/key_tests.rb +50 -0
  3035. data/tests/ibm/requests/compute/location_tests.rb +28 -0
  3036. data/tests/ibm/requests/compute/vlan_tests.rb +21 -0
  3037. data/tests/ibm/requests/storage/volume_tests.rb +100 -0
  3038. data/tests/joyent/requests/compute/datasets_tests.rb +58 -0
  3039. data/tests/joyent/requests/compute/keys_tests.rb +47 -0
  3040. data/tests/joyent/requests/compute/machines_tests.rb +67 -0
  3041. data/tests/joyent/requests/compute/packages_tests.rb +68 -0
  3042. data/tests/libvirt/compute_tests.rb +17 -0
  3043. data/tests/libvirt/models/compute/interface_tests.rb +27 -0
  3044. data/tests/libvirt/models/compute/interfaces_tests.rb +14 -0
  3045. data/tests/libvirt/models/compute/network_tests.rb +27 -0
  3046. data/tests/libvirt/models/compute/networks_tests.rb +13 -0
  3047. data/tests/libvirt/models/compute/nic_tests.rb +31 -0
  3048. data/tests/libvirt/models/compute/nics_tests.rb +10 -0
  3049. data/tests/libvirt/models/compute/pool_tests.rb +27 -0
  3050. data/tests/libvirt/models/compute/pools_tests.rb +13 -0
  3051. data/tests/libvirt/models/compute/server_tests.rb +58 -0
  3052. data/tests/libvirt/models/compute/servers_tests.rb +14 -0
  3053. data/tests/libvirt/models/compute/volume_tests.rb +30 -0
  3054. data/tests/libvirt/models/compute/volumes_tests.rb +14 -0
  3055. data/tests/libvirt/requests/compute/create_domain_tests.rb +21 -0
  3056. data/tests/libvirt/requests/compute/define_domain_tests.rb +11 -0
  3057. data/tests/libvirt/requests/compute/update_display.rb +13 -0
  3058. data/tests/linode/requests/compute/datacenter_tests.rb +19 -0
  3059. data/tests/linode/requests/compute/distribution_tests.rb +32 -0
  3060. data/tests/linode/requests/compute/helper.rb +16 -0
  3061. data/tests/linode/requests/compute/kernel_tests.rb +27 -0
  3062. data/tests/linode/requests/compute/linode_tests.rb +143 -0
  3063. data/tests/linode/requests/compute/linodeplans_tests.rb +40 -0
  3064. data/tests/linode/requests/compute/stackscripts_tests.rb +36 -0
  3065. data/tests/linode/requests/dns/dns_tests.rb +250 -0
  3066. data/tests/local/models/directory_tests.rb +16 -0
  3067. data/tests/local/models/file_tests.rb +43 -0
  3068. data/tests/local/storage_tests.rb +40 -0
  3069. data/tests/lorem.txt +1 -0
  3070. data/tests/ninefold/models/storage/file_update_tests.rb +19 -0
  3071. data/tests/ninefold/models/storage/nested_directories_tests.rb +23 -0
  3072. data/tests/ninefold/requests/compute/address_tests.rb +42 -0
  3073. data/tests/ninefold/requests/compute/async_job_tests.rb +33 -0
  3074. data/tests/ninefold/requests/compute/helper.rb +370 -0
  3075. data/tests/ninefold/requests/compute/list_tests.rb +56 -0
  3076. data/tests/ninefold/requests/compute/load_balancer_tests.rb +66 -0
  3077. data/tests/ninefold/requests/compute/nat_tests.rb +92 -0
  3078. data/tests/ninefold/requests/compute/network_tests.rb +21 -0
  3079. data/tests/ninefold/requests/compute/template_tests.rb +21 -0
  3080. data/tests/ninefold/requests/compute/virtual_machine_tests.rb +69 -0
  3081. data/tests/openstack/models/identity/role_tests.rb +27 -0
  3082. data/tests/openstack/models/identity/roles_tests.rb +19 -0
  3083. data/tests/openstack/models/identity/tenant_tests.rb +24 -0
  3084. data/tests/openstack/models/identity/tenants_tests.rb +26 -0
  3085. data/tests/openstack/models/identity/user_tests.rb +46 -0
  3086. data/tests/openstack/models/identity/users_tests.rb +33 -0
  3087. data/tests/openstack/models/image/image_tests.rb +36 -0
  3088. data/tests/openstack/models/image/images_tests.rb +14 -0
  3089. data/tests/openstack/models/network/network_tests.rb +24 -0
  3090. data/tests/openstack/models/network/networks_tests.rb +21 -0
  3091. data/tests/openstack/models/network/port_tests.rb +28 -0
  3092. data/tests/openstack/models/network/ports_tests.rb +25 -0
  3093. data/tests/openstack/models/network/subnet_tests.rb +30 -0
  3094. data/tests/openstack/models/network/subnets_tests.rb +27 -0
  3095. data/tests/openstack/requests/compute/address_tests.rb +52 -0
  3096. data/tests/openstack/requests/compute/flavor_tests.rb +50 -0
  3097. data/tests/openstack/requests/compute/helper.rb +17 -0
  3098. data/tests/openstack/requests/compute/image_tests.rb +58 -0
  3099. data/tests/openstack/requests/compute/keypair_tests.rb +30 -0
  3100. data/tests/openstack/requests/compute/limit_tests.rb +60 -0
  3101. data/tests/openstack/requests/compute/quota_tests.rb +61 -0
  3102. data/tests/openstack/requests/compute/security_group_tests.rb +51 -0
  3103. data/tests/openstack/requests/compute/server_tests.rb +144 -0
  3104. data/tests/openstack/requests/compute/tenant_tests.rb +19 -0
  3105. data/tests/openstack/requests/compute/volume_tests.rb +38 -0
  3106. data/tests/openstack/requests/identity/role_tests.rb +41 -0
  3107. data/tests/openstack/requests/identity/tenant_tests.rb +54 -0
  3108. data/tests/openstack/requests/identity/user_tests.rb +29 -0
  3109. data/tests/openstack/requests/image/image_tests.rb +119 -0
  3110. data/tests/openstack/requests/network/network_tests.rb +56 -0
  3111. data/tests/openstack/requests/network/port_tests.rb +63 -0
  3112. data/tests/openstack/requests/network/subnet_tests.rb +66 -0
  3113. data/tests/ovirt/compute_tests.rb +24 -0
  3114. data/tests/ovirt/models/compute/cluster_tests.rb +31 -0
  3115. data/tests/ovirt/models/compute/clusters_tests.rb +9 -0
  3116. data/tests/ovirt/models/compute/interface_tests.rb +27 -0
  3117. data/tests/ovirt/models/compute/interfaces_tests.rb +9 -0
  3118. data/tests/ovirt/models/compute/server_tests.rb +51 -0
  3119. data/tests/ovirt/models/compute/servers_tests.rb +14 -0
  3120. data/tests/ovirt/models/compute/template_tests.rb +28 -0
  3121. data/tests/ovirt/models/compute/templates_tests.rb +9 -0
  3122. data/tests/ovirt/requests/compute/create_vm_tests.rb +26 -0
  3123. data/tests/ovirt/requests/compute/destroy_vm_tests.rb +18 -0
  3124. data/tests/ovirt/requests/compute/list_datacenters_tests.rb +13 -0
  3125. data/tests/ovirt/requests/compute/list_storage_domains_tests.rb +13 -0
  3126. data/tests/ovirt/requests/compute/update_vm_tests.rb +18 -0
  3127. data/tests/rackspace/databases_tests.rb +26 -0
  3128. data/tests/rackspace/helper.rb +24 -0
  3129. data/tests/rackspace/load_balancer_tests.rb +21 -0
  3130. data/tests/rackspace/models/block_storage/snapshot_tests.rb +20 -0
  3131. data/tests/rackspace/models/block_storage/snapshots_tests.rb +20 -0
  3132. data/tests/rackspace/models/block_storage/volume_tests.rb +27 -0
  3133. data/tests/rackspace/models/block_storage/volume_types_tests.rb +20 -0
  3134. data/tests/rackspace/models/block_storage/volumes_tests.rb +11 -0
  3135. data/tests/rackspace/models/compute_v2/flavors_tests.rb +20 -0
  3136. data/tests/rackspace/models/compute_v2/images_tests.rb +22 -0
  3137. data/tests/rackspace/models/compute_v2/server_tests.rb +62 -0
  3138. data/tests/rackspace/models/compute_v2/servers_tests.rb +20 -0
  3139. data/tests/rackspace/models/databases/database_tests.rb +17 -0
  3140. data/tests/rackspace/models/databases/databases_tests.rb +17 -0
  3141. data/tests/rackspace/models/databases/flavors_tests.rb +20 -0
  3142. data/tests/rackspace/models/databases/instance_tests.rb +43 -0
  3143. data/tests/rackspace/models/databases/instances_tests.rb +14 -0
  3144. data/tests/rackspace/models/databases/user_tests.rb +21 -0
  3145. data/tests/rackspace/models/databases/users_tests.rb +21 -0
  3146. data/tests/rackspace/models/dns/zone_tests.rb +14 -0
  3147. data/tests/rackspace/models/identity/credentials_tests.rb +16 -0
  3148. data/tests/rackspace/models/identity/roles_tests.rb +16 -0
  3149. data/tests/rackspace/models/identity/tenants_tests.rb +21 -0
  3150. data/tests/rackspace/models/identity/user_tests.rb +17 -0
  3151. data/tests/rackspace/models/identity/users_tests.rb +17 -0
  3152. data/tests/rackspace/models/load_balancers/access_list_tests.rb +12 -0
  3153. data/tests/rackspace/models/load_balancers/access_lists_tests.rb +12 -0
  3154. data/tests/rackspace/models/load_balancers/load_balancer_tests.rb +173 -0
  3155. data/tests/rackspace/models/load_balancers/load_balancers_tests.rb +19 -0
  3156. data/tests/rackspace/models/load_balancers/node_tests.rb +19 -0
  3157. data/tests/rackspace/models/load_balancers/nodes_tests.rb +12 -0
  3158. data/tests/rackspace/models/load_balancers/virtual_ip_tests.rb +16 -0
  3159. data/tests/rackspace/models/load_balancers/virtual_ips_tests.rb +12 -0
  3160. data/tests/rackspace/models/storage/file_tests.rb +172 -0
  3161. data/tests/rackspace/requests/block_storage/snapshot_tests.rb +81 -0
  3162. data/tests/rackspace/requests/block_storage/volume_tests.rb +61 -0
  3163. data/tests/rackspace/requests/block_storage/volume_type_tests.rb +31 -0
  3164. data/tests/rackspace/requests/compute/address_tests.rb +40 -0
  3165. data/tests/rackspace/requests/compute/flavor_tests.rb +38 -0
  3166. data/tests/rackspace/requests/compute/helper.rb +16 -0
  3167. data/tests/rackspace/requests/compute/image_tests.rb +68 -0
  3168. data/tests/rackspace/requests/compute/resize_tests.rb +33 -0
  3169. data/tests/rackspace/requests/compute/server_tests.rb +92 -0
  3170. data/tests/rackspace/requests/compute_v2/attachment_tests.rb +68 -0
  3171. data/tests/rackspace/requests/compute_v2/flavor_tests.rb +43 -0
  3172. data/tests/rackspace/requests/compute_v2/image_tests.rb +47 -0
  3173. data/tests/rackspace/requests/compute_v2/server_tests.rb +147 -0
  3174. data/tests/rackspace/requests/databases/database_tests.rb +36 -0
  3175. data/tests/rackspace/requests/databases/flavor_tests.rb +16 -0
  3176. data/tests/rackspace/requests/databases/helper.rb +84 -0
  3177. data/tests/rackspace/requests/databases/instance_tests.rb +77 -0
  3178. data/tests/rackspace/requests/databases/user_tests.rb +37 -0
  3179. data/tests/rackspace/requests/dns/dns_tests.rb +125 -0
  3180. data/tests/rackspace/requests/dns/helper.rb +126 -0
  3181. data/tests/rackspace/requests/dns/records_tests.rb +83 -0
  3182. data/tests/rackspace/requests/identity/tenants_tests.rb +21 -0
  3183. data/tests/rackspace/requests/identity/token_tests.rb +63 -0
  3184. data/tests/rackspace/requests/identity/user_tests.rb +107 -0
  3185. data/tests/rackspace/requests/load_balancers/access_list_tests.rb +56 -0
  3186. data/tests/rackspace/requests/load_balancers/algorithm_tests.rb +19 -0
  3187. data/tests/rackspace/requests/load_balancers/connection_logging_tests.rb +25 -0
  3188. data/tests/rackspace/requests/load_balancers/connection_throttling_tests.rb +37 -0
  3189. data/tests/rackspace/requests/load_balancers/error_page_tests.rb +31 -0
  3190. data/tests/rackspace/requests/load_balancers/helper.rb +216 -0
  3191. data/tests/rackspace/requests/load_balancers/load_balancer_tests.rb +75 -0
  3192. data/tests/rackspace/requests/load_balancers/load_balancer_usage_tests.rb +19 -0
  3193. data/tests/rackspace/requests/load_balancers/monitor_tests.rb +46 -0
  3194. data/tests/rackspace/requests/load_balancers/node_tests.rb +86 -0
  3195. data/tests/rackspace/requests/load_balancers/protocol_tests.rb +21 -0
  3196. data/tests/rackspace/requests/load_balancers/session_persistence_tests.rb +33 -0
  3197. data/tests/rackspace/requests/load_balancers/ssl_termination_tests.rb +38 -0
  3198. data/tests/rackspace/requests/load_balancers/usage_tests.rb +17 -0
  3199. data/tests/rackspace/requests/load_balancers/virtual_ip_tests.rb +40 -0
  3200. data/tests/rackspace/requests/storage/account_tests.rb +17 -0
  3201. data/tests/rackspace/requests/storage/container_tests.rb +64 -0
  3202. data/tests/rackspace/requests/storage/large_object_tests.rb +47 -0
  3203. data/tests/rackspace/requests/storage/object_tests.rb +117 -0
  3204. data/tests/rackspace/url_encoding_tests.rb +3 -0
  3205. data/tests/serverlove/requests/compute/image_tests.rb +57 -0
  3206. data/tests/serverlove/requests/compute/server_tests.rb +85 -0
  3207. data/tests/serverlove/util/compute/password_generator_tests.rb +19 -0
  3208. data/tests/storage/helper.rb +22 -0
  3209. data/tests/storage/models/directories_tests.rb +17 -0
  3210. data/tests/storage/models/directory_test.rb +29 -0
  3211. data/tests/storage/models/file_tests.rb +41 -0
  3212. data/tests/storage/models/files_tests.rb +26 -0
  3213. data/tests/storm_on_demand/requests/compute/server_tests.rb +64 -0
  3214. data/tests/vcloud/data/api_+_admin_+_network_+_2 +110 -0
  3215. data/tests/vcloud/data/api_+_network_+_1 +44 -0
  3216. data/tests/vcloud/data/api_+_org_+_ +5 -0
  3217. data/tests/vcloud/data/api_+_org_+_1 +17 -0
  3218. data/tests/vcloud/data/api_+_sessions +8 -0
  3219. data/tests/vcloud/data/api_+_v1.0_+_admin_+_network_+_2 +110 -0
  3220. data/tests/vcloud/data/api_+_v1.0_+_login +5 -0
  3221. data/tests/vcloud/data/api_+_v1.0_+_network_+_1 +44 -0
  3222. data/tests/vcloud/data/api_+_v1.0_+_network_+_2 +31 -0
  3223. data/tests/vcloud/data/api_+_v1.0_+_org_+_1 +17 -0
  3224. data/tests/vcloud/data/api_+_v1.0_+_vApp_+_vapp-1 +369 -0
  3225. data/tests/vcloud/data/api_+_v1.0_+_vApp_+_vm-1 +139 -0
  3226. data/tests/vcloud/data/api_+_v1.0_+_vApp_+_vm-2 +155 -0
  3227. data/tests/vcloud/data/api_+_v1.0_+_vdc_+_1 +61 -0
  3228. data/tests/vcloud/data/api_+_vApp_+_vapp-1 +369 -0
  3229. data/tests/vcloud/data/api_+_vApp_+_vm-2 +155 -0
  3230. data/tests/vcloud/data/api_+_vdc_+_1 +61 -0
  3231. data/tests/vcloud/models/compute/conn_helper.rb +20 -0
  3232. data/tests/vcloud/models/compute/helper.rb +25 -0
  3233. data/tests/vcloud/models/compute/network_tests.rb +67 -0
  3234. data/tests/vcloud/models/compute/networks_tests.rb +61 -0
  3235. data/tests/vcloud/models/compute/organization_tests.rb +20 -0
  3236. data/tests/vcloud/models/compute/organizations_tests.rb +16 -0
  3237. data/tests/vcloud/models/compute/server_tests.rb +142 -0
  3238. data/tests/vcloud/models/compute/servers_tests.rb +23 -0
  3239. data/tests/vcloud/models/compute/vapp_tests.rb +32 -0
  3240. data/tests/vcloud/models/compute/vapps_tests.rb +19 -0
  3241. data/tests/vcloud/models/compute/vdc_tests.rb +48 -0
  3242. data/tests/vcloud/models/compute/vdcs_tests.rb +24 -0
  3243. data/tests/vcloud/requests/compute/disk_configure_tests.rb +114 -0
  3244. data/tests/voxel/requests/compute/image_tests.rb +52 -0
  3245. data/tests/voxel/requests/compute/server_tests.rb +123 -0
  3246. data/tests/vsphere/compute_tests.rb +55 -0
  3247. data/tests/vsphere/models/compute/server_tests.rb +44 -0
  3248. data/tests/vsphere/models/compute/servers_tests.rb +15 -0
  3249. data/tests/vsphere/requests/compute/current_time_tests.rb +12 -0
  3250. data/tests/vsphere/requests/compute/list_virtual_machines_tests.rb +38 -0
  3251. data/tests/vsphere/requests/compute/vm_clone_tests.rb +32 -0
  3252. data/tests/vsphere/requests/compute/vm_config_vnc_tests.rb +19 -0
  3253. data/tests/vsphere/requests/compute/vm_destroy_tests.rb +17 -0
  3254. data/tests/vsphere/requests/compute/vm_migrate_tests.rb +16 -0
  3255. data/tests/vsphere/requests/compute/vm_power_off_tests.rb +26 -0
  3256. data/tests/vsphere/requests/compute/vm_power_on_tests.rb +17 -0
  3257. data/tests/vsphere/requests/compute/vm_reboot_tests.rb +26 -0
  3258. data/tests/vsphere/requests/compute/vm_reconfig_cpus_tests.rb +19 -0
  3259. data/tests/vsphere/requests/compute/vm_reconfig_hardware_tests.rb +19 -0
  3260. data/tests/vsphere/requests/compute/vm_reconfig_memory_tests.rb +19 -0
  3261. data/tests/watchr.rb +22 -0
  3262. data/tests/xenserver/README +21 -0
  3263. data/tests/xenserver/compute_tests.rb +52 -0
  3264. data/tests/xenserver/helper.rb +36 -0
  3265. data/tests/xenserver/models/compute/host_tests.rb +68 -0
  3266. data/tests/xenserver/models/compute/hosts_tests.rb +22 -0
  3267. data/tests/xenserver/models/compute/network_tests.rb +67 -0
  3268. data/tests/xenserver/models/compute/networks_tests.rb +22 -0
  3269. data/tests/xenserver/models/compute/pbd_tests.rb +44 -0
  3270. data/tests/xenserver/models/compute/pbds_tests.rb +22 -0
  3271. data/tests/xenserver/models/compute/pif_tests.rb +58 -0
  3272. data/tests/xenserver/models/compute/pifs_tests.rb +22 -0
  3273. data/tests/xenserver/models/compute/pool_tests.rb +50 -0
  3274. data/tests/xenserver/models/compute/pools_tests.rb +30 -0
  3275. data/tests/xenserver/models/compute/server_tests.rb +167 -0
  3276. data/tests/xenserver/models/compute/servers_tests.rb +88 -0
  3277. data/tests/xenserver/models/compute/storage_repositories_tests.rb +30 -0
  3278. data/tests/xenserver/models/compute/storage_repository_tests.rb +63 -0
  3279. data/tests/xenserver/models/compute/vbd_tests.rb +115 -0
  3280. data/tests/xenserver/models/compute/vbds_tests.rb +22 -0
  3281. data/tests/xenserver/models/compute/vif_tests.rb +53 -0
  3282. data/tests/xenserver/models/compute/vifs_tests.rb +22 -0
  3283. data/tests/xenserver/requests/compute/clone_server_tests.rb +32 -0
  3284. data/tests/xenserver/requests/compute/create_server_tests.rb +129 -0
  3285. data/tests/xenserver/requests/compute/create_vdi_tests.rb +80 -0
  3286. data/tests/xenserver/requests/compute/create_vif_tests.rb +88 -0
  3287. data/tests/xenserver/requests/compute/destroy_vdi_tests.rb +25 -0
  3288. data/tests/xenserver/requests/compute/get_record_tests.rb +15 -0
  3289. data/tests/xenserver/requests/compute/set_attribute_tests.rb +66 -0
  3290. data/tests/xenserver/xenserver_tests.rb +34 -0
  3291. data/tests/zerigo/requests/dns/dns_tests.rb +373 -0
  3292. metadata +4189 -0
@@ -0,0 +1,106 @@
1
+ require 'rubygems'
2
+ require 'aws/s3'
3
+ require 'benchmark'
4
+ require 'right_aws'
5
+
6
+ require File.join(File.dirname(__FILE__), '..', 'lib', 'fog')
7
+
8
+ data = File.open(File.expand_path('~/.fog')).read
9
+ config = YAML.load(data)[:default]
10
+ fog = Fog::AWS::S3.new(
11
+ :aws_access_key_id => config[:aws_access_key_id],
12
+ :aws_secret_access_key => config[:aws_secret_access_key]
13
+ )
14
+ raws = RightAws::S3Interface.new(
15
+ config[:aws_access_key_id],
16
+ config[:aws_secret_access_key]
17
+ )
18
+ raws.logger.level = 3 # ERROR
19
+ awss3 = AWS::S3::Base.establish_connection!(
20
+ :access_key_id => config[:aws_access_key_id],
21
+ :secret_access_key => config[:aws_secret_access_key],
22
+ :persistent => true
23
+ )
24
+
25
+ TIMES = 10
26
+
27
+ Benchmark.bmbm(25) do |bench|
28
+ bench.report('fog.put_bucket') do
29
+ TIMES.times do |x|
30
+ fog.put_bucket("fogbench#{x}")
31
+ end
32
+ end
33
+ bench.report('raws.create_bucket') do
34
+ TIMES.times do |x|
35
+ raws.create_bucket("rawsbench#{x}")
36
+ end
37
+ end
38
+ bench.report('awss3::Bucket.create') do
39
+ TIMES.times do |x|
40
+ AWS::S3::Bucket.create("awss3bench#{x}")
41
+ end
42
+ end
43
+
44
+ bench.report('fog.put_object') do
45
+ TIMES.times do |x|
46
+ TIMES.times do |y|
47
+ file = File.open(File.dirname(__FILE__) + '/../spec/lorem.txt', 'r')
48
+ fog.put_object("fogbench#{x}", "lorem_#{y}", file)
49
+ end
50
+ end
51
+ end
52
+ bench.report('raws.put') do
53
+ TIMES.times do |x|
54
+ TIMES.times do |y|
55
+ file = File.open(File.dirname(__FILE__) + '/../spec/lorem.txt', 'r')
56
+ raws.put("rawsbench#{x}", "lorem_#{y}", file)
57
+ end
58
+ end
59
+ end
60
+ bench.report('awss3::S3Object.create') do
61
+ TIMES.times do |x|
62
+ TIMES.times do |y|
63
+ file = File.open(File.dirname(__FILE__) + '/../spec/lorem.txt', 'r')
64
+ AWS::S3::S3Object.create("lorem_#{y}", file, "awss3bench#{x}")
65
+ end
66
+ end
67
+ end
68
+
69
+ bench.report('fog.delete_object') do
70
+ TIMES.times do |x|
71
+ TIMES.times do |y|
72
+ fog.delete_object("fogbench#{x}", "lorem_#{y}")
73
+ end
74
+ end
75
+ end
76
+ bench.report('raws.delete') do
77
+ TIMES.times do |x|
78
+ TIMES.times do |y|
79
+ raws.delete("rawsbench#{x}", "lorem_#{y}")
80
+ end
81
+ end
82
+ end
83
+ bench.report('awss3::S3Object.delete') do
84
+ TIMES.times do |x|
85
+ TIMES.times do |y|
86
+ AWS::S3::S3Object.delete("lorem_#{y}", "awss3bench#{x}")
87
+ end
88
+ end
89
+ end
90
+
91
+ bench.report('fog.delete_bucket') do
92
+ TIMES.times do |x|
93
+ fog.delete_bucket("fogbench#{x}")
94
+ end
95
+ end
96
+ bench.report('raws.delete_bucket') do
97
+ TIMES.times do |x|
98
+ raws.delete_bucket("rawsbench#{x}")
99
+ end
100
+ end
101
+ bench.report('awss3::Bucket.delete') do
102
+ TIMES.times do |x|
103
+ AWS::S3::Bucket.delete("awss3bench#{x}")
104
+ end
105
+ end
106
+ end
@@ -0,0 +1,43 @@
1
+ require 'benchmark'
2
+
3
+ def hash(options)
4
+ result = "#{options.delete(:name)}"
5
+ for key, value in options
6
+ result << " #{key} => #{value} "
7
+ end
8
+ result
9
+ end
10
+
11
+ def optional(name, a = nil, b = nil, c = nil)
12
+ result = "#{name}"
13
+ options = { :a => a, :b => b, :c => c }
14
+ for key, value in options
15
+ result << " #{key} => #{value} "
16
+ end
17
+ result
18
+ end
19
+
20
+ COUNT = 100_000
21
+ data = "Content-Length: 100"
22
+ Benchmark.bmbm(25) do |bench|
23
+ bench.report('hash') do
24
+ COUNT.times do
25
+ hash({:name => 'name'})
26
+ end
27
+ end
28
+ bench.report('optional') do
29
+ COUNT.times do
30
+ optional('name')
31
+ end
32
+ end
33
+ bench.report('hash_with_option') do
34
+ COUNT.times do
35
+ hash({:name => 'name', :a => 'a', :b => 'b', :c => 'c'})
36
+ end
37
+ end
38
+ bench.report('optional_with_option') do
39
+ COUNT.times do
40
+ optional('name', :a => 'a', :b => 'b', :c => 'c')
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,69 @@
1
+ require 'benchmark'
2
+ require 'rubygems'
3
+ require 'nokogiri'
4
+
5
+ class Parser < Nokogiri::XML::SAX::Document
6
+
7
+ attr_reader :response
8
+
9
+ def initialize
10
+ reset
11
+ end
12
+
13
+ def reset
14
+ @item = {}
15
+ @response = { :items => [] }
16
+ end
17
+
18
+ def characters(string)
19
+ @value ||= ''
20
+ @value << string.strip
21
+ end
22
+
23
+ def start_element(name, attrs = [])
24
+ @value = nil
25
+ end
26
+
27
+ def end_element(name)
28
+ case name
29
+ when 'item'
30
+ @response[:items] << @item
31
+ @item = {}
32
+ when 'key'
33
+ @item[:key] = value
34
+ end
35
+ end
36
+
37
+ def value
38
+ @value.dup
39
+ end
40
+
41
+ end
42
+
43
+ data = <<-DATA
44
+ <items>
45
+ <item>
46
+ <key>value</key>
47
+ </item>
48
+ </items>
49
+ DATA
50
+
51
+ COUNT = 10_000
52
+
53
+ Benchmark.bmbm(25) do |bench|
54
+ bench.report('parse') do
55
+ COUNT.times do
56
+ parser = Parser.new
57
+ Nokogiri::XML::SAX::Parser.new(parser).parse(data)
58
+ parser.response
59
+ end
60
+ end
61
+
62
+ bench.report('push') do
63
+ COUNT.times do
64
+ parser = Parser.new
65
+ Nokogiri::XML::SAX::PushParser.new(parser).write(data, true)
66
+ parser.response
67
+ end
68
+ end
69
+ end
data/bin/fog ADDED
@@ -0,0 +1,52 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'fog'))
3
+ require 'irb'
4
+ require 'yaml'
5
+ Fog.credential = ARGV.first ? ARGV.first.to_sym : nil
6
+ Fog.mock! if ENV['FOG_MOCK']
7
+ if Fog.credentials.empty?
8
+ begin
9
+ Fog::Errors.missing_credentials
10
+ rescue Fog::Errors::LoadError => error
11
+ abort error.message
12
+ end
13
+ end
14
+
15
+ require 'fog/bin'
16
+
17
+ providers = Fog.available_providers
18
+ providers = if providers.length > 1
19
+ providers[0...-1].join(', ') << ' and ' << providers[-1]
20
+ else
21
+ providers.first
22
+ end
23
+
24
+ if ARGV.length > 1
25
+
26
+ result = instance_eval(ARGV[1..-1].join(' '))
27
+ puts(Fog::JSON.encode(result))
28
+
29
+ else
30
+
31
+ ARGV.clear # Avoid passing args to IRB
32
+ IRB.setup(nil)
33
+ @irb = IRB::Irb.new(nil)
34
+ IRB.conf[:MAIN_CONTEXT] = @irb.context
35
+ IRB.conf[:PROMPT][:FOG] = IRB.conf[:PROMPT][:SIMPLE].dup
36
+ IRB.conf[:PROMPT][:FOG][:RETURN] = "%s\n"
37
+ @irb.context.prompt_mode = :FOG
38
+ @irb.context.workspace = IRB::WorkSpace.new(binding)
39
+
40
+ Formatador.display_line('Welcome to fog interactive!')
41
+ Formatador.display_line(":#{Fog.credential} provides #{providers}")
42
+ providers = Fog.providers
43
+
44
+ # FIXME: hacks until we can `include Fog` in bin
45
+ CDN = Fog::CDN
46
+ Compute = Fog::Compute
47
+ DNS = Fog::DNS
48
+ Storage = Fog::Storage
49
+
50
+ catch(:IRB_EXIT) { @irb.eval_input }
51
+
52
+ end
@@ -0,0 +1,3726 @@
1
+ 1.8.0 12/01/2012 057c0c525a39e77cb2037c9fec3d851b209c151b
2
+ =========================================================
3
+
4
+ Stats! { 'collaborators' => 41, 'downloads' => 1334733, 'forks' => 630, 'open_issues' => 98, 'watchers' => 2258 }
5
+
6
+ [AWS]
7
+ Adds ModifyVolumeAttribute. thanks Eric Stonfer
8
+
9
+ [Brightbox]
10
+ Removes incorrect yard tag. thanks Paul Thornthwaite
11
+ Updates request docs to use Yard. thanks Paul Thornthwaite
12
+ Adds baseline documentation. thanks Paul Thornthwaite
13
+ Documents #request method. thanks Paul Thornthwaite
14
+ Comments out rogue text. thanks Paul Thornthwaite
15
+ Fixes generated files EOF with newlines. thanks Paul Thornthwaite
16
+ Adds Servers#bootstrap. thanks Paul Thornthwaite
17
+ Adds way to check auth method. thanks Paul Thornthwaite
18
+ Adds reset FTP for scoped accounts. thanks Paul Thornthwaite
19
+ Fixes Compute#account to pass service. thanks Paul Thornthwaite
20
+ Fixes Account#reset_ftp_password. thanks Paul Thornthwaite
21
+ Fixes test to run out of sequence. thanks Paul Thornthwaite
22
+ Expands documentation for Compute class. thanks Paul Thornthwaite
23
+ Tests recognised options. thanks Paul Thornthwaite
24
+ Refactors credential code in Compute. thanks Paul Thornthwaite
25
+ Extracts authentication connection. thanks Paul Thornthwaite
26
+ Refactors how tokens are requested. thanks Paul Thornthwaite
27
+ Moves tokens to CredentialSet. thanks Paul Thornthwaite
28
+ Extracts parts of request out of compute. thanks Paul Thornthwaite
29
+ Adds support for refresh tokens. thanks Paul Thornthwaite
30
+ Adds option to disable token management. thanks Paul Thornthwaite
31
+ Adds means to update scoped account. thanks Paul Thornthwaite
32
+ Moves more of public API into Shared. thanks Paul Thornthwaite
33
+ Guards unimplemented mock tests. thanks Paul Thornthwaite
34
+
35
+ [Docs]
36
+ Switches to using Yard for documentation. thanks Paul Thornthwaite
37
+
38
+ [aws]
39
+ fixed auto scaling model group 'destroy' method where it needs to use merge! instead of merge to set the opts local variable in place, otherwise the options passed to the method are droppedon the floor. thanks Jay Perry
40
+
41
+ [aws|compute]
42
+ add offeringType to output from describe_reserved_instances_offerings. thanks geemus
43
+ fix mocks/tests around describe_reserved_instances_offerings. thanks geemus
44
+ fix one more offeringType mock format test failure. thanks geemus
45
+
46
+ [aws|dynamodb]
47
+ port off of sts for credentials, now uses signature v4. thanks geemus
48
+
49
+ [aws|storage]
50
+ Add Fog::Storage::AWS#delete_multiple_objects. thanks Garret Alfert
51
+ Add mock for Fog::Storage::AWS#delete_multiple_objects. thanks Garret Alfert
52
+ Little improvements to delete_multiple_objects tests. thanks Garret Alfert
53
+ Add Fog::Storage::AWS#delete_multiple_objects. thanks Garret Alfert
54
+ Add mock for Fog::Storage::AWS#delete_multiple_objects. thanks Garret Alfert
55
+ Little improvements to delete_multiple_objects tests. thanks Garret Alfert
56
+
57
+ [core]
58
+ Adds fog User-Agent header. thanks Paul Thornthwaite
59
+ Splits Fog::VERSION into own file. thanks Paul Thornthwaite
60
+ Adds fog User-Agent header. thanks Paul Thornthwaite
61
+ Updates Rakefile to use Fog::VERSION. thanks Paul Thornthwaite
62
+
63
+ [dns]
64
+ Add more record tests. thanks Brian Hartsock
65
+
66
+ [docs]
67
+ Updates link on fog.io to point to doc. thanks Paul Thornthwaite
68
+ Updates contributing notes. thanks Paul Thornthwaite
69
+ Replaces link to API to `rubydoc.info`. thanks Paul Thornthwaite
70
+ Adds 1.8.7 note to fog.io collaborators guide. thanks Paul Thornthwaite
71
+
72
+ [misc]
73
+ Add support for AWS Australia (ap-southeast-2). thanks Amy Woodward
74
+ Add Hosted Zone ID for ap-southeast-2. thanks Amy Woodward
75
+ Do not add empty security group. thanks Dan Bode
76
+ Add attr group. thanks Dan Bode
77
+ Sync with latest OpenStack flavors extensions. thanks Dan Prince
78
+ OpenStack floating_ip (aka address) test fixes. thanks Dan Prince
79
+ OpenStack: Remove volumes from limits tests. thanks Dan Prince
80
+ OpenStack: updates to quota tests. thanks Dan Prince
81
+ OpenStack: security group test fixes. thanks Dan Prince
82
+ add support for Storage::Rackspace::File#access_control_allow_origin and #origin. thanks Dusty Jones
83
+ add support for Storage::Rackspace::File#access_control_allow_origin and #origin. thanks Dusty Jones
84
+ Save the file instance before testing for presence of attribute. thanks Dusty Jones
85
+ Fix describe_instances stateReason handling. thanks Edward Muller
86
+ added support for Storage::Rackspace::File#metadata. thanks Evan Smith
87
+ added support for Storage::Rackspace::File#metadata. thanks Evan Smith
88
+ merged with origin. thanks Evan Smith
89
+ Rackspace Cloud Files. can load metadata from existing file. can set metadata for new file. can unset metadata for existing file. thanks Evan Smith
90
+ merged with upstream master. thanks Evan Smith
91
+ Implemented bootstrap method for Rackspace Compute v2. Added ability to set "metadata" and "personality" fields when creating a server on Rackspace Compute v2. Improved response parsing when dealing with Rackspace DNS service. thanks Jesse Scott
92
+ Removed the commented out password setting line for Rackspace Compute v2 bootstrap method. thanks Jesse Scott
93
+ Clarified the logic for finding the newly created DNS record for Rackspace Cloud DNS. thanks Jesse Scott
94
+ fix warning message to follow correct bucket naming guidelines. thanks Michael Elfassy
95
+ Bucket names cannot begin with the "goog" prefix. Also change for DNS compliant subdomain. thanks Michael Elfassy
96
+ VMWare vsphere provider refactor. thanks Ohad Levy
97
+ do not force trailing / on path. thanks Ohad Levy
98
+ Removes dead link to DNS tests. thanks Paul Thornthwaite
99
+ Adds link to Code Climate metrics. thanks Paul Thornthwaite
100
+ Extracts Changelog Rake task to class. thanks Paul Thornthwaite
101
+ Moves fog.io generation a prerequsite. thanks Paul Thornthwaite
102
+ Extracts docs rake tasks to a class. thanks Paul Thornthwaite
103
+ Extracts testing Rake tasks to class. thanks Paul Thornthwaite
104
+ Moves new Task classes to better location. thanks Paul Thornthwaite
105
+ Revert "[core] Adds fog User-Agent header". thanks Paul Thornthwaite
106
+ Inconsistent usage of cpus / vpcus in libvirt / requests. Reported number of cpus was always 1 for libvirt domains. thanks Romain Vrignaud
107
+ use CGI.escape when encoding the POST body. thanks Sam Cooper
108
+ Added versioned delete_multiple_objects support. thanks Timur Alperovich
109
+ Add support for volume_pool_name. thanks Vincent Demeester
110
+ fixes issue#1313 ~ Creating user via `Aws.iam.users` ignores `:path`. thanks VirtualStaticVoid
111
+ revised create logic to default path to '/'. thanks VirtualStaticVoid
112
+ added test for create logic to default path to '/'. thanks VirtualStaticVoid
113
+ added support for mock. thanks VirtualStaticVoid
114
+ revised test order. thanks VirtualStaticVoid
115
+ README: s/'cloud computing'/'cloud services'. thanks Wesley Beary
116
+ Adding explicit support for metadata for Rackspace compute_v2. thanks heyryanw
117
+ removed Fog::AWS[:rds] this was creating issues with was security credentials. thanks mauro catenacci
118
+ Adding public_ip_address and private_ip_address to Fog::Compute::RackspaceV2::Server. thanks sashap
119
+ Adding bootstrap and setup for RackspaceV2 servers. thanks sashap
120
+
121
+ [openstack]
122
+ Add Accept header with application/json media type to requests. thanks Andrew Donald Kennedy
123
+ Refactor Openstack Authentication. thanks Nelvin Driz
124
+ Fix Typo in Merge of Authentication Refactoring. thanks Nelvin Driz
125
+ Make use of the unscoped token for reauthentication. thanks Philip Mark M. Deazeta
126
+
127
+ [openstack|compute]
128
+ Add "Reset Server State" request. thanks Nelvin Driz
129
+ Add `get_limits` request. thanks Nelvin Driz
130
+
131
+ [openstack|identity]
132
+ use tenant_id parameter in users model. thanks Philip Mark M. Deazeta
133
+ Add `attr_accessor :unscoped_token` to Mock. thanks Philip Mark M. Deazeta
134
+
135
+ [opnestack|identity]
136
+ Added set_tenant request for identity service. thanks Philip Mark M. Deazeta
137
+
138
+ [rackspace|computev2]
139
+ aded test for bootstrap. thanks Brian Hartsock
140
+
141
+ [rackspace|dns]
142
+ fixed tests, merged some formatting to reduce duplication. thanks Brian Hartsock
143
+
144
+ [rackspace|storage]
145
+ rackspace files tests should be pending in mocked mode. thanks geemus
146
+
147
+ [readme]
148
+ update outdated sponsorship section. thanks geemus
149
+
150
+ [vsphere]
151
+ ensure reload works correctly for server. thanks Ohad Levy
152
+
153
+
154
+ 1.7.0 11/04/2012 aa853488c9d84d849f52cf348787030fbb963163
155
+ =========================================================
156
+
157
+ Stats! { 'collaborators' => 41, 'downloads' => 1216554, 'forks' => 599, 'open_issues' => 80, 'watchers' => 2206 }
158
+
159
+ MVP! Nick Osborn
160
+
161
+ [AWS::Mock|create_image]
162
+ automatic registration of ebs image upon image_create. thanks Chielo Zimmerman
163
+
164
+ [AWS|Glacier]
165
+ Fix description header not being passed through Fog.escape. thanks Frederick Cheung
166
+
167
+ [Brightbox]
168
+ Change code to return Single user. thanks Hemant Kumar
169
+ Adds ApiClient Model. thanks Hemant Kumar
170
+ Add identifier to get_account method. thanks Hemant Kumar
171
+ Reuses connection for image selection. thanks Paul Thornthwaite
172
+ Fixes cloud IP options default. thanks Paul Thornthwaite
173
+ Deprecates overloaded requests. thanks Paul Thornthwaite
174
+ Standardises update_firewall_rule. thanks Paul Thornthwaite
175
+ Deprecates old account update request. thanks Paul Thornthwaite
176
+ Use correct request to update account. thanks Paul Thornthwaite
177
+ Brightbox tests should select the smallest official image. thanks Steve Smith
178
+ Allows authentication as user. thanks Steve Smith
179
+ Allow users to lists all accounts associated with the current credentials. thanks Steve Smith
180
+ add support for User Applications. thanks Steve Smith
181
+
182
+ [HP|Storage]
183
+ remove debug output. thanks geemus
184
+
185
+ [Ninefold|Storage]
186
+ Use Atmos in Ninefold storage. thanks Timur Alperovich
187
+
188
+ [aws|auto_scaling]
189
+ update display_*_types. thanks Nick Osborn
190
+ Fix documentation URL. thanks Nick Osborn
191
+ support termination policies. thanks Nick Osborn
192
+ correct DefaultCooldown in mocks. thanks Nick Osborn
193
+ documentation tinkering. thanks Nick Osborn
194
+ support ForceDelete for delete_auto_scaling_group. thanks Nick Osborn
195
+ better tag handling. thanks Nick Osborn
196
+ DRY out ARNs in mocks. thanks Nick Osborn
197
+ document Tags option to create_auto_scaling_group. thanks Nick Osborn
198
+ fix AutoScalingGroupName in mock. thanks Nick Osborn
199
+ expose delete_notification_configuration request. thanks Nick Osborn
200
+ improve describe_*_types test. thanks Nick Osborn
201
+ improve notification configurations. thanks Nick Osborn
202
+ s/data/self.data/ in mocks. thanks Nick Osborn
203
+ mark describe_*_types requests as idempotent. thanks Nick Osborn
204
+ tags support. thanks Nick Osborn
205
+ expose termination policies in group model. thanks Nick Osborn
206
+
207
+ [aws|autoscaling]
208
+ fix casting availability_zones to array in create_auto_scaling_group mock. thanks geemus
209
+ mark problematic auto_scaling mocked tests as pending see also #1183. thanks geemus
210
+
211
+ [aws|cdn]
212
+ cover AWS CDN with some non-exhaustive tests. thanks Brice Figureau
213
+ Implements AWS CDN get_invalidation request. thanks Brice Figureau
214
+ fix incorrect get_invalidation result. thanks Brice Figureau
215
+ add aws cdn tests for streaming distributions. thanks Brice Figureau
216
+ fix cdn documentation. thanks Brice Figureau
217
+ AWS CDN models. thanks Brice Figureau
218
+ add request mock support for AWS Cloudfront. thanks Brice Figureau
219
+ fix up failing mocked tests around invalidations. thanks geemus
220
+
221
+ [aws|cloud_watch]
222
+ Add instrumentation support. thanks Michael Hale
223
+
224
+ [aws|ec2]
225
+ describe_availability_zones parser handles nested <item> tags. thanks Aaron Suggs
226
+
227
+ [aws|rds]
228
+ add region and owner_id as RDS connection attributes. thanks Benton Roberts
229
+ add request definitions for RDS tagging and increment RDS API version. thanks Benton Roberts
230
+ add tests for RDS tagging requests. thanks Benton Roberts
231
+ add tagging methods to RDS server model. thanks Benton Roberts
232
+ add tagging tests for RDS server model. thanks Benton Roberts
233
+ store mocked RDS instance tags in connection object. thanks Benton Roberts
234
+ FIX non-1.8-compliant syntax bug. thanks Benton Roberts
235
+
236
+ [misc]
237
+ modified create function to include options. changed "diskConfig" to "OS-DCF:diskConfig" to allow disk configuration to be properly set. thanks Alex Dunn
238
+ 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
239
+ Replace nil return value with private IP, implementation as in public_ip_address method. thanks Andrew Taylor
240
+ Change the metadata method to support amazon tags such as x-amz-website-redirect-location. thanks Arthur Gunawan
241
+ Fix issue #1245 - mock register_image fails with block device mapping. thanks Brice Figureau
242
+ Added ninefold load balancers. thanks Carl Woodward
243
+ Added other commands for load balancers. thanks Carl Woodward
244
+ Fix create load balancer test. thanks Carl Woodward
245
+ Add assign list to load balancer rules and update load balancer rule for Ninefold. thanks Carl Woodward
246
+ Add remove from load balancer test. thanks Carl Woodward
247
+ Move ssh private_key, public_key, username to Server model to reduce duplication. thanks Carlos Sanchez
248
+ Joyent server creation should not wait for server to be ready. thanks Carlos Sanchez
249
+ Added ParameterValue to engine_defaults_parser. thanks Curtis Stewart
250
+ Added outputs 'Description' field to DescribeStacks parser. thanks Curtis Stewart
251
+ Make region available to mock. thanks Edward Muller
252
+ Added OpenStack::Server#created and #updated. thanks Eric Hodel
253
+ Use :default from tests/.fog for test credentials. thanks Eric Hodel
254
+ Only run mocked tests by default. thanks Eric Hodel
255
+ Tested handling of Openstack server created and updated times. thanks Eric Hodel
256
+ create image now supports block device mapping. thanks Eric Stonfer
257
+ create image extended to allow for EBS volume handling. thanks Eric Stonfer
258
+ fix indexed_param usage. thanks Eric Stonfer
259
+ forgot to commit some changes. thanks Eric Stonfer
260
+ when querying servers by icenter group, servers will return nil. fixed this. thanks Eugene Howe
261
+ fixed bad request names. thanks Eugene Howe
262
+ correct the options checking in BlueBox create_block. thanks Josh Kalderimis
263
+ changed list nova servers request to get details. thanks Julio Feijo
264
+ Correct the handling of the power_on option. thanks Karan Misra
265
+ Added support for scheduler_hints in OpenStack. thanks Mariusz Pietrzyk
266
+ add force option to auto scaling group destroy method. thanks Michael Hale
267
+ use hash args. thanks Michael Hale
268
+ [AWS|cloud_watch]: fix list_metrics NextMarker should be NextToken. thanks Michael Hale
269
+ Fix to resolve "objectid is required for this operation" error message when calling public_url. thanks Michael Harrison
270
+ Fix to resolve "objectid is required for this operation" error message when calling public_url. thanks Michael Harrison
271
+ Return nil on public_url if the file isn't present on the cloud storage. thanks Michael Harrison
272
+ Added file existence check before file deletion attempt. thanks Michael Harrison
273
+ Rolled back deletion guard as some may be using the exception raised in their code. thanks Michael Harrison
274
+ Changed Atmos::FIle.public_url so an exception is thrown if the file doesn't exist on the cloud storage. thanks Michael Harrison
275
+ 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
276
+ 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
277
+ added documentation. thanks Nick Huanuca
278
+ ammend dest_folder disclaimer. thanks Nick Huanuca
279
+ fixed vm listing problem. thanks Ohad Levy
280
+ Allows tests to run against FOG_RC setting. thanks Paul Thornthwaite
281
+ Beginning implementation of RDS subnet groups. thanks Rusty Geldmacher
282
+ Changes RDS subnet attribute name from subnets to subnet_ids. thanks Rusty Geldmacher
283
+ allow port to be included in queue_url. thanks Sairam
284
+ Fixed typos in elasticache and rds describe_events. Added better documentation of describe_events. thanks Sean Hart
285
+ 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
286
+ Added parsing for Marker. AWS limits response to 100 lines and gives you a marker to get the next batch with. thanks Sean Hart
287
+ Added missing header. thanks Stephen von Takach
288
+ Bumped mocked maximum value for provisioned iops. thanks Thom Mahoney
289
+ Ignore existing directory when creating on local storage. thanks Thomas Wright
290
+ Add config instructions to README. thanks Thomas Wright
291
+ Fix reference to config file. thanks Thomas Wright
292
+ expect public_key option instead of ssh_key on block create. thanks Trevor Bramble
293
+ Added usagePrice the hourly cost for a reserved instance. thanks Ulf Mansson
294
+ Added RDS describe_events. thanks Your Name
295
+ Created describe events for RDS. thanks Your Name
296
+ Update lib/fog/vsphere/requests/compute/vm_clone.rb. thanks endzyme
297
+ Update lib/fog/vsphere/requests/compute/vm_clone.rb. thanks endzyme
298
+ Update lib/fog/vsphere/requests/compute/vm_clone.rb. thanks endzyme
299
+
300
+ [ninefold|compute]
301
+ update load balancer tests to pass hash parameters for backwards compatability. thanks geemus
302
+ mark before/after blocks as pending in mocked mode also. thanks geemus
303
+
304
+ [openstack]
305
+ Authentication Mocks. thanks Nelvin Driz
306
+ Fix Failing Shindo Tests. thanks Nelvin Driz
307
+ Ensure String Username for Authentication. thanks Nelvin Driz
308
+ Changed volumes attributes of mocks from camelcase to snakecase. thanks Philip Mark M. Deazeta
309
+ Updated mocks for quota, image, tenant and volumes. thanks Philip Mark M. Deazeta
310
+ Fixed mocks for failing shindo tests. thanks Philip Mark M. Deazeta
311
+ Updated 'image update' mocks. thanks Philip Mark M. Deazeta
312
+
313
+ [openstack|compute]
314
+ Added auth_token_expiration. thanks Alfonso Juan Dillera
315
+ Fixed security groups typos. thanks Alfonso Juan Dillera
316
+ Fix Server Mocks and `find_by_id` method. thanks Nelvin Driz
317
+
318
+ [openstack|identity]
319
+ Update for failing mock test. thanks Alvin Garcia
320
+ Update Identity Mocking Process. thanks Nelvin Driz
321
+ Update Fog Mocks on Authentication, User and Roles. thanks Nelvin Driz
322
+
323
+ [openstack|image]
324
+ Added update_members function. thanks Alvin Garcia
325
+ Added updateable attributes. thanks Alvin Garcia
326
+ Added optional attributes to set on create image. thanks Alvin Garcia
327
+ Fixed update image and list public images mocks. thanks Alvin Garcia
328
+ Fix Hash Access on Mock of Create Image. thanks Nelvin Driz
329
+
330
+ [openstack|network]
331
+ Add support for OpenStack Quantum. thanks Ferran Rodenas
332
+ Add filters to networks, ports and subnets. thanks Ferran Rodenas
333
+
334
+ [rackspace|identity]
335
+ user should be alphanumeric. thanks geemus
336
+
337
+
338
+ 1.6.0 09/15/2012 4bd909557fd595a656ebd86a3d7c5849bd923fe1
339
+ =========================================================
340
+
341
+ Stats! { 'collaborators' => 40, 'downloads' => 1015900, 'forks' => 539, 'open_issues' => 55, 'watchers' => 2119 }
342
+
343
+ [AWS]
344
+ Implement signature v4. thanks Frederick Cheung
345
+ Create the time directly in tests, avoids using a method not present in 1.8.7. thanks Frederick Cheung
346
+ avoid spurious test failure when tag test returns before images test. thanks Frederick Cheung
347
+ Adding missing :glacier case for AWS.collections. thanks Frederick Cheung
348
+
349
+ [AWS|AutoScaling]
350
+ Typo in delete_autoscaling_group mock: Autoscaling->AutoScaling. thanks Frederick Cheung
351
+ fix group#instances. thanks Frederick Cheung
352
+ Fix describe_auto_scaling_groups parser added spurious nil groups. thanks Frederick Cheung
353
+ Fix delete_auto_scaling_group.rb mock not raising the same error as real code. thanks Frederick Cheung
354
+
355
+ [AWS|Compute]
356
+ Add the ablity to pass :version and use newer AWS API. thanks Zuhaib M Siddique
357
+
358
+ [AWS|Glacier]
359
+ Bare glacier service. thanks Frederick Cheung
360
+ single part uploads. thanks Frederick Cheung
361
+ multipart uploads. thanks Frederick Cheung
362
+ Jobs requests. thanks Frederick Cheung
363
+ vaults model. thanks Frederick Cheung
364
+ Use bytesize rather than length. thanks Frederick Cheung
365
+ models for archives. thanks Frederick Cheung
366
+ jobs model. thanks Frederick Cheung
367
+ Add notification configuration to model. thanks Frederick Cheung
368
+ mark tests as pending. thanks Frederick Cheung
369
+ byteslice is only available in 1.9.3 - add fallback for 1.9.2. thanks Frederick Cheung
370
+ fix 1.9.2 fallback. thanks Frederick Cheung
371
+ make 1.8.7 friendly. thanks Frederick Cheung
372
+ Fix job type constant. thanks Frederick Cheung
373
+ fix setting description on multipart upload. thanks Frederick Cheung
374
+ fix name of header used for description. thanks Frederick Cheung
375
+ Allow filtering of jobs collection. thanks Frederick Cheung
376
+ Don't try to deserialize json when body is empty. thanks Frederick Cheung
377
+
378
+ [AWS|RDS]
379
+ expose the SnapshotType attribute & allow filtering by it. thanks Frederick Cheung
380
+
381
+ [AWS|Signaturev4]
382
+ allow symbols to be used as header/query keys. thanks Frederick Cheung
383
+
384
+ [AWS|Storage]
385
+ mark upload_part as idempotent so it will be retried automatically. thanks Frederick Cheung
386
+
387
+ [Brightbox]
388
+ Fix output format for brightbox cloud ip. thanks Hemant Kumar
389
+
390
+ [Brightbox|CloudIp]
391
+ Remove duplicate constant definition for port translators. thanks Hemant Kumar
392
+
393
+ [Cloudstack]
394
+ 1.8.7 compat: on 1.8.7 '123'[0] returns the byte value of '0' and not '1'. thanks Frederick Cheung
395
+
396
+ [Core]
397
+ fix format_helper assuming p returns nil. thanks Frederick Cheung
398
+
399
+ [HP]
400
+ delete_if returns the array, not what was deleted. thanks Frederick Cheung
401
+
402
+ [OpenStack]
403
+ fixes wrong method name. thanks Ohad Levy
404
+
405
+ [Openstack]
406
+ Fix mock returning a hash instead of an array. thanks Frederick Cheung
407
+
408
+ [Openstack|Compute]
409
+ Security Groups are not assigned correctly to servers. thanks Ohad Levy
410
+
411
+ [aws|auto_scaling]
412
+ Add instrumentation support. thanks Michael Hale
413
+
414
+ [aws|compute]
415
+ fix typo in deprecation warning. thanks Aaron Suggs
416
+ Nicer interface for security group authorizations. thanks Aaron Suggs
417
+ Add instrumentation support. thanks Dan Peterson
418
+ Support creating and describing volumes with provisioned IOPS. thanks Dan Peterson
419
+ Get instance requests tests working. thanks Dan Peterson
420
+ Support for EBS-optimized instances. thanks Dan Peterson
421
+ Pass empty groupIds when mocking. thanks Dan Peterson
422
+ DescribeInstanceStatus code within eventsSet goes on the item. thanks Dan Peterson
423
+ fixes for spot request waiting see also #841. thanks geemus
424
+ remove brittle instance tests which rely on tests running fast p.s. these fail on travis-ci. thanks geemus
425
+ fix mock filters for internet gateways/subnets/vpcs. thanks geemus
426
+
427
+ [aws|elb]
428
+ Add instrumentation support. thanks Dan Peterson
429
+ fixes for mock tests. thanks geemus
430
+
431
+ [aws|iam]
432
+ Add instrumentation support. thanks Dan Peterson
433
+
434
+ [aws|rds]
435
+ Correct server#read_replica_identifiers when mocking. thanks Aaron Suggs
436
+ Mocking better supports reboot state. thanks Aaron Suggs
437
+ Mocking better supports modifying state. thanks Aaron Suggs
438
+ Fix server tests. thanks Aaron Suggs
439
+ Mocking support for read replicas. thanks Aaron Suggs
440
+ Mock support for setting AZ and MultiAZ. thanks Aaron Suggs
441
+
442
+ [brightbox]
443
+ Use first available image for server tests. thanks Steve Smith
444
+
445
+ [brightbox|ServerGroup]
446
+ ServerGroups can have a nil name. thanks Steve Smith
447
+
448
+ [brightbox|compute]
449
+ Merged outstanding work from Brightbox's fork. thanks Paul Thornthwaite
450
+ Implemented reboot using available API commands. thanks Paul Thornthwaite
451
+ Updates to Test helper for select image. thanks Paul Thornthwaite
452
+ Helper to get default image from API. thanks Paul Thornthwaite
453
+
454
+ [cloudstack|compute]
455
+ remove erroneous comma in merge command. thanks geemus
456
+
457
+ [compute|Ecloud]
458
+ Ecloud should not show up as a valid provider when not providing credentials. thanks Eugene Howe
459
+
460
+ [dynect|dns]
461
+ Only JSON decode when Content-Type says so. Fixes job handling. thanks Dan Peterson
462
+ Job polling should use original expected statuses. thanks Dan Peterson
463
+
464
+ [google/storage]
465
+ Fix docs for new GCS urls. thanks Nat Welch
466
+
467
+ [google|storage]
468
+ update expected format to remove StorageClass. thanks geemus
469
+ also update mocks to omit storageclass. thanks geemus
470
+
471
+ [hp|storage]
472
+ Use response_block param, as excon has deprecated implicit blocks. thanks Ferran Rodenas
473
+
474
+ [misc]
475
+ When using mock mode, Range header is now not ignored in get_object(). thanks Ahmed Al Hafoudh
476
+ Documentation error for delete_object. thanks Alex Tambellini
477
+ Add barebones configuration for Travis CI. thanks Alexander Wenzowski
478
+ add Travis CI build status image. thanks Alexander Wenzowski
479
+ notify #ruby-fog on freenode instead of emailing. thanks Alexander Wenzowski
480
+ remove repository_url from notification template Interpolation of %{repository_url} is currently broken on Travis CI. thanks Alexander Wenzowski
481
+ CloudStack: added registerTemplate request. thanks Aliaksei Kliuchnikau
482
+ CloudStack: listTemplates, registerTemplate requests return hypervisor in the response. thanks Aliaksei Kliuchnikau
483
+ Enable AWS spot requests in a VPC by specifying subnet_id. thanks Ben Turley
484
+ Fix for RDS VPC subnet groups. thanks Ben Turley
485
+ parse ASCII code * in wildcard domain. Fixes #1093. thanks Blake Gentry
486
+ automatically figure out the elb hosted_zone_id if possible. thanks Blake Gentry
487
+ Add source for getting instance mac address. thanks Carl Caum
488
+ Only add VNC password and listen port if present. thanks Carl Caum
489
+ Revert 530122d. thanks Carl Caum
490
+ Abillity to List Images and List SSH Keys. thanks Chirag Jog
491
+ Add support to create, delete internet services. thanks Chirag Jog
492
+ Accept vCPUS and Memory as parameters while creating servers. thanks Chirag Jog
493
+ Minor Fixes: Remove unncessary prints. Use override_path instead of replace class variable path. thanks Chirag Jog
494
+ Fix support to add internet service to the existing Public Ip. thanks Chirag Jog
495
+ Support to configure vapp and add multiple internet services. thanks Chirag Jog
496
+ Remove uneccessary puts. thanks Chirag Jog
497
+ Add support to build/re-build/clobber gem/package/docs. thanks Chirag Jog
498
+ Fix minor issue. thanks Chirag Jog
499
+ Re-work based on Geemus's review. Manage InternetService and NodeService as separate entities Reload server status properly. thanks Chirag Jog
500
+ Revert Rakefile changes. thanks Chirag Jog
501
+ 1.Ability to fetch/list Orgs, Vdcs, Vapps, Servers. 2.Support to customize CPUs and Password. thanks Chirag Jog
502
+ Add ability to configure a vApp with an Org-wide network and associated firewall, NAT rules(limited support). thanks Chirag Jog
503
+ 1.Fix Catalog Listing for vCD 1.5 2.Construct Valid XML to memory configuration 3.Fix Undeploy vCD 1.5. thanks Chirag Jog
504
+ Added m1.medium instance type for AWS flavors. thanks Curtis Stewart
505
+ - 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
506
+ Add gsub to replace URL-encoded characters in the public_url method. thanks Eric Chernuka
507
+ fix reboot guest in vsphere to reboot rather than shutdown guest. thanks Eric Stonfer
508
+ added file upload and ip add capabilities. thanks Eugene Howe
509
+ added error handling for edge cases where there are no networks or ips. thanks Eugene Howe
510
+ [AWS|Glacier} basic vault operations. thanks Frederick Cheung
511
+ fix mock not returning the right data. thanks Frederick Cheung
512
+ set Content-MD5. thanks Frederick Cheung
513
+ Add fqdn to server attributes. thanks Hemant Kumar
514
+ Brightbox : Include licence_name in Image. thanks Hemant Kumar
515
+ Brightbox: Change licence_name type to Fog::Nullable::String. thanks Hemant Kumar
516
+ Add support for port translators. thanks Hemant Kumar
517
+ Rackspace Storage: new request, get_object_https_url. thanks James Healy
518
+ Rackspace Storage: new request, post_set_meta_temp_url_key. thanks James Healy
519
+ Rackspace Storage: a backslash shouldn't be escaped when signing URLS. thanks James Healy
520
+ add a basic spec for Rackspace::Storage#get_object_https_url. thanks James Healy
521
+ add basic spec for Rackspace::Storage##post_set_meta_temp_url_key. thanks James Healy
522
+ Rackspace Storage: fix expiring URLs that contain a hyphen. thanks James Healy
523
+ Add Serverlove directory. thanks James Rose
524
+ Basic Serverlove implementation. thanks James Rose
525
+ Wrong directory. thanks James Rose
526
+ Typo. thanks James Rose
527
+ Proper request arguments. thanks James Rose
528
+ Typo. thanks James Rose
529
+ Still wrong. thanks James Rose
530
+ Works. thanks James Rose
531
+ We want JSON. thanks James Rose
532
+ Typo. thanks James Rose
533
+ add high io flavor to aws flavors. thanks Josh Lane
534
+ Move Dynect endpoint from api2 to api-v4. thanks Marc Seeger
535
+ don't let the Paulistas be left out of the party. thanks Martin Englund
536
+ use 10.04 instead of 12.04. thanks Martin Englund
537
+ Google changed their URL scheme for Cloud Storage. thanks Nat Welch
538
+ Also change GCS url in dir and file models. thanks Nat Welch
539
+ Update lib/fog/hp/models/compute/image.rb. thanks Neill Turner
540
+ Update lib/fog/hp/models/compute/server.rb. thanks Neill Turner
541
+ Update lib/fog/aws/requests/compute/describe_instance_status.rb. thanks Oleg
542
+ Added new Server#fqdn attribute to test helper. thanks Paul Thornthwaite
543
+ Rewrite tests to use 1.8 compatible Hash syntax. thanks Paul Thornthwaite
544
+ Add missing providers to the all_providers list for testing. thanks Paul Thornthwaite
545
+ Use string not symbols for Storage tests to work with Shindo tagging. thanks Paul Thornthwaite
546
+ Retagged tests with strings to be skipped by Shindo. thanks Paul Thornthwaite
547
+ Tagged AWS URL test so correctly ignored by Shindo. thanks Paul Thornthwaite
548
+ Reduce maintenance of tests by using a dynamic list of providers. thanks Paul Thornthwaite
549
+ add support for multiple regions in Opentack. thanks Pedro Perez
550
+ Fixed the link to GitHub issues. thanks Postmodern
551
+ Change iprange --> ec2_secg in Mock. thanks Rob Lockstone
552
+ Added support for RDS VPC subnet groups. Bumped RDS API version to 2012-01-15. thanks Rusty Geldmacher
553
+ Added DBSubnetGroupName to test format for RDS instances. thanks Rusty Geldmacher
554
+ Adding server love disk model. thanks Sean Handley
555
+ Changed disk model based on responses from real API requests. thanks Sean Handley
556
+ Set up drive objects (not disks). thanks Sean Handley
557
+ If you use info, you get all the info. thanks Sean Handley
558
+ Alias the encryption cipher. thanks Sean Handley
559
+ Sometimes the response body is empty. thanks Sean Handley
560
+ Destroying drives is easy. thanks Sean Handley
561
+ Allowed setting of params as k/v pairs. thanks Sean Handley
562
+ Added create/update functionality. thanks Sean Handley
563
+ Made create/save conform to the Fog API. thanks Sean Handley
564
+ Returning self is totes better than bools. thanks Sean Handley
565
+ Fog calls drives "images", rename for consistency. thanks Sean Handley
566
+ Beginnings of shin do request tests. thanks Sean Handley
567
+ Need these to run the server love tests. thanks Sean Handley
568
+ Beginnings of tests for image operations. thanks Sean Handley
569
+ Adding mock for easier testing. thanks Sean Handley
570
+ Added get_image function. thanks Sean Handley
571
+ Added meaningful test for updating images. thanks Sean Handley
572
+ Typo!. thanks Sean Handley
573
+ Fix conflict. thanks Sean Handley
574
+ This shouldn't be here. thanks Sean Handley
575
+ Can't run shindo tests with old references. thanks Sean Handley
576
+ Added loading of standard image. thanks Sean Handley
577
+ Shindo tests pass. thanks Sean Handley
578
+ Test that we can view servers. thanks Sean Handley
579
+ Whitespace adjustments. thanks Sean Handley
580
+ CRUDs + tests for servers. thanks Sean Handley
581
+ Added server power cycle actions + basic tests. thanks Sean Handley
582
+ Add new request methods to server object. thanks Sean Handley
583
+ Use get_server, not get_image. thanks Sean Handley
584
+ Need a mock server id. thanks Sean Handley
585
+ This was plain wrong - works now!. thanks Sean Handley
586
+ Don't start servers by default. thanks Sean Handley
587
+ Contrary to the documentation, this actually returns a 200 status rather than a 204. thanks Sean Handley
588
+ Allow setting of memory and disk drives. thanks Sean Handley
589
+ Allow DHCP assignment by default. thanks Sean Handley
590
+ Key 'vnc:ip' was invalid. thanks Sean Handley
591
+ Update allowed attributes and defaults. thanks Sean Handley
592
+ Increase test drive size to accommodate a real image. thanks Sean Handley
593
+ Without setting SMP the web UI won't load :-/. thanks Sean Handley
594
+ Reduce from 80GB to 20GB - big enough, save space. thanks Sean Handley
595
+ Standard images need to be unzipped. thanks Sean Handley
596
+ Need to wait for imaging to complete. thanks Sean Handley
597
+ Add a pseudorandom password generator for VNC. thanks Sean Handley
598
+ Auto generate VNC password randomly. thanks Sean Handley
599
+ Used the amazon published endpoints for sqs as defined at http://docs.amazonwebservices.com/general/latest/gr/rande.html#sqs_region. thanks Stuart Eccles
600
+ Better mocks for invalid Provisioned IOPS values. thanks Thom Mahoney
601
+ Add generic support for EMC Atmos. thanks Timur Alperovich
602
+ Submit password/ssh_key/username through POST body. thanks Trevor Bramble
603
+ Update public_url to handle new header casings from Rackspace. thanks Zachary Danger Campbell
604
+ CloudStack: images.get always returns nil - fixed. thanks alex
605
+ add changelog for 1.5.0. thanks geemus
606
+ fixes for cloudstack mock tests see #1090. thanks geemus
607
+ fix mocked elb tests by including InstanceProtocol closes #1090. thanks geemus
608
+ expand travis config, build more rubies, use non-threaded runner. thanks geemus
609
+ just run mri for now on travis. thanks geemus
610
+ remove empty failure block from model_helper. thanks geemus
611
+ 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
612
+ return to expecting 1.8.7 to pass. thanks geemus
613
+ fix deprecated requires in Rakefile. thanks geemus
614
+ Made steps to get update/create working. Work in progress. thanks seanhandley
615
+ Update lib/fog/aws/models/compute/security_group.rb. thanks vkhatri
616
+
617
+ [rackspace|blockstorage]
618
+ Add volume tests. thanks Brad Gignac
619
+ Add volume type tests. thanks Brad Gignac
620
+ Add snapshot tests. thanks Brad Gignac
621
+ Add relationship between volumes and snapshots. thanks Brad Gignac
622
+ Add block storage provider. thanks Julio Feijo
623
+ Add volume types to block storage. thanks Julio Feijo
624
+ Add snapshots to block storage. thanks Julio Feijo
625
+
626
+ [rackspace|compute]
627
+ Add service for Cloud Servers v2.0. thanks Brad Gignac
628
+ Add flavors and images. thanks Brad Gignac
629
+ Add servers model and collection. thanks Brad Gignac
630
+ Set password attribute on V2 servers. thanks Brad Gignac
631
+ Don't intern nil strings. thanks Brad Gignac
632
+ Add method for listing attachments. thanks Brad Gignac
633
+ Add tests for volume attachments. thanks Brad Gignac
634
+ Improve attachment test reliability. thanks Brad Gignac
635
+ Add attachments model and collection. thanks Julio Feijo
636
+
637
+ [rackspace|storage]
638
+ Override path when generating sha1 to make tests past. thanks Brian Hartsock
639
+
640
+ [serverlove|compute]
641
+ fix serverlove tests for 1.8.7 compatibility. thanks Frederick Cheung
642
+ fix serverlove tests for 1.8.7 compatibility. thanks geemus
643
+
644
+
645
+ 1.5.0 07/28/2012 2e57e2029abbb618411c20f8974e64d8d3fd31fe
646
+ =========================================================
647
+
648
+ Stats! { 'collaborators' => 36, 'downloads' => 870008, 'forks' => 500, 'open_issues' => 44, 'watchers' => 2074 }
649
+
650
+ [AWS|Autoscaling]
651
+ fix group#instances returning all autoscaled instances in the account. thanks Frederick Cheung
652
+
653
+ [Libvirt]
654
+ fixed incorrect mock method signature. thanks Ohad Levy
655
+ ensure Fog volumes do not raise on LVM based volumes. thanks Ohad Levy
656
+
657
+ [aws|compute]
658
+ Address#destroy handles VPC addresses, improve address allocate/release mocking for VPC. thanks Dan Peterson
659
+
660
+ [aws|elasticache]
661
+ Fix bug in cache cluster test. thanks Benton Roberts
662
+ Remove erroneous whitespace trimming. thanks Benton Roberts
663
+ Add Elasticache service-level mocking support. thanks Benton Roberts
664
+ Add mocking for cache cluster requests. thanks Benton Roberts
665
+ Change modify_cache_cluster test to work in mocking mode. thanks Benton Roberts
666
+ Enable mocking for elasticache cluster tests. thanks Benton Roberts
667
+ Mock raises NotFound Exception when AWS does. thanks Benton Roberts
668
+
669
+ [aws|storage]
670
+ Default to false for persistent connections. thanks Kenny Johnston
671
+
672
+ [cloudstack|security_group]
673
+ fix rule revoke mock. thanks Josh Lane
674
+
675
+ [cloudstack|security_groups]
676
+ add groups and rules. thanks Josh Lane & Jason Hansen
677
+
678
+ [cloudstack|server]
679
+ assign security group. thanks Josh Lane & Jason Hansen
680
+
681
+ [dynect|dns]
682
+ No more recursion when polling jobs. Raise an error if the body indicates failure. thanks Dan Peterson
683
+
684
+ [fix-ephemeral-naming]
685
+ Typo in ephemeral naming. thanks Josh Pasqualetto
686
+
687
+ [joyent|compute]
688
+ fix dataset format in tests. thanks geemus
689
+
690
+ [local|storage]
691
+ mark tests pending in mock mode. thanks geemus
692
+
693
+ [misc]
694
+ fix changelog task for github API v3. thanks Aaron Suggs
695
+ update changelog for release 1.4.0. thanks Aaron Suggs
696
+ changelog: backdate to release data. thanks Aaron Suggs
697
+ Local storage support for #public_url. thanks Adam Tanner
698
+ Bugfix in Fog::DNS::AWS::Records.all!. thanks Alexander Kolesen
699
+ Fix for stopping all the servers instead of just specified servers. thanks Avrohom Katz
700
+ private ip address should start with a 10. thanks Avrohom Katz
701
+ Use proper signature when testing with aws mock. thanks Bohuslav Kabrda
702
+ 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
703
+ The condition here should be the same as for destroying, so that we test iff the instance gets destroyed. thanks Bohuslav Kabrda
704
+ The assignment correctly returns nil, just the test has to react to it. thanks Bohuslav Kabrda
705
+ The assignment correctly returns false, just the test has to react to it. thanks Bohuslav Kabrda
706
+ Include this to make refresh_credentials_if_expired method work properly with Mock. thanks Bohuslav Kabrda
707
+ Fix the number where credentials expire - if too high, other tests will fail. thanks Bohuslav Kabrda
708
+ Fix openstack tests. thanks Bohuslav Kabrda
709
+ Fix more openstack mock tests failures. thanks Bohuslav Kabrda
710
+ Add the mock urls to fix some more openstack tests. thanks Bohuslav Kabrda
711
+ Fix minor typos and incorrect types in openstack volume tests. thanks Bohuslav Kabrda
712
+ More typos in openstack server tests. thanks Bohuslav Kabrda
713
+ Rework the quota mock testing to work and be more comfortable. thanks Bohuslav Kabrda
714
+ Must use values, so that connection.list_roles gets corrent argument. thanks Bohuslav Kabrda
715
+ Deleting returns nothing, so do not expect role. thanks Bohuslav Kabrda
716
+ Properly check whether role is present. thanks Bohuslav Kabrda
717
+ Return the properly updated image. thanks Bohuslav Kabrda
718
+ Add the 'new_image' public images, so that find_by_id can find it. thanks Bohuslav Kabrda
719
+ The pending block fails the outer one => make sure we return proper result. thanks Bohuslav Kabrda
720
+ Use proper parameters when testing deploying cloudstact VMs. thanks Bohuslav Kabrda
721
+ This was implemented right previously, shouldn't have changed it. thanks Bohuslav Kabrda
722
+ Correct solution for subnet failing tests - use a collection in self.data. thanks Bohuslav Kabrda
723
+ Do the same thing for vpcs as previously done for subnets. thanks Bohuslav Kabrda
724
+ ...and the same for dhcp_options. thanks Bohuslav Kabrda
725
+ And the same for internet gateways. thanks Bohuslav Kabrda
726
+ Fixes the failure for hp storage. thanks Bohuslav Kabrda
727
+ [rackspace|databases| Add service tests. thanks Brad Gignac
728
+ fix for RDS mocking to avoid state flipping between "modifying" and "available". thanks Brian Nelson
729
+ Fix typo listing datacenters. thanks Carlos Sanchez
730
+ Stop vSphere vms before destroying, or destroy will fail. thanks Carlos Sanchez
731
+ Add a failure for #1014. :v:. thanks Dylan Egan
732
+ Only dup @attributes if it's not nil. thanks Edward Muller
733
+ each based pagination for Fog::AWS::IAM#users. thanks Edward Muller
734
+ fixes elb test in mocking mode. thanks Eric Stonfer
735
+ fix running subnet tests in mocking mode. thanks Eric Stonfer
736
+ fix subnet tests in mocking mode. thanks Eric Stonfer
737
+ fog bombs out on ruby 1.8.x because it cannot find Mutex. thanks Eric Stonfer
738
+ fix not pulling InstanceProtocol from the xml. thanks Frederick Cheung
739
+ Add Sao Paulo server to Amazon RDS known regions. thanks Irio Irineu Musskopf Junior
740
+ Add Sao Paulo server to Amazon SQS known regions. thanks Irio Irineu Musskopf Junior
741
+ Fix bug in local storage #copy_object. thanks Jade Tucker
742
+ Add and get SSL certificates to Rackspace Soft LB. thanks Justin Barry
743
+ Default to being less pessimistic about excon. thanks Kevin Moore
744
+ Fix ssh key behavior when passing specified private keys to ssh/scp. thanks Marc Seeger
745
+ Should not modify passed in "params" variable since block might run several times due to authentication failure producing erroneous path. thanks Max Stepanov
746
+ As discussed in #991, this converts the readme from SimpleMarkup to Markdown. thanks Mike Fiedler
747
+ added PeopleAdmin to list of users. thanks Mike Manewitz
748
+ Fixing typo bug in rackspace load balancer set_ssl_termination request. thanks Paul
749
+ add us-east-1e to mock. thanks Shai Rosenfeld
750
+ Pass up all the options that have been assigned. thanks Trotter Cashion
751
+ Pass options on to AutoScalingGroup. thanks Trotter Cashion
752
+ Add better ScalingPolicy support. thanks Trotter Cashion
753
+ Add more AWS Alarm functionality. thanks Trotter Cashion
754
+ Add delete mocks. thanks Trotter Cashion
755
+ Properly array-ify keys for create_auto_scaling_group. thanks Trotter Cashion
756
+ Add tags to autoscaling groups. thanks Trotter Cashion
757
+ Enable tests when mocking. thanks Trotter Cashion
758
+ Recognize ninefold_api_url option for pre-production testing. thanks Warren Bain
759
+ remove specs (likely from a bad merge). thanks geemus
760
+ update tests/helper to have bare_metal_cloud instead of new_servers. thanks geemus
761
+ Mock for filter ec2 instances by group name. thanks phillc
762
+
763
+ [openstack]
764
+ Fix Authentication for OpenStack v1.1 Authentication. thanks Nelvin Driz
765
+
766
+ [openstack|compute]
767
+ Add filters to list servers details. thanks Ferran Rodenas
768
+ Added adminPass attribute in create_server. thanks Philip Mark M. Deazeta
769
+ fix method signature for mock list_servers_detail. thanks geemus
770
+
771
+ [openstack|image]
772
+ Stream OpenStack image. thanks Vadim Spivak
773
+
774
+ [rackspace|databases]
775
+ Add read-only support for Rackspace Cloud Databases. thanks Brad Gignac
776
+ Add write support for Rackspace Cloud Databases. thanks Brad Gignac
777
+ Register Rackspace Cloud Databases service with Fog. thanks Brad Gignac
778
+ Remove "list/details" API calls in favor of "list" calls. thanks Brad Gignac
779
+ Add model tests. thanks Brad Gignac
780
+ Finish request tests. thanks Brad Gignac
781
+ Remove old comments. thanks Brad Gignac
782
+ Handle breaking API changes. thanks Brad Gignac
783
+ Initial pass at request tests. thanks Brian Hartsock
784
+
785
+ [rackspace|identity]
786
+ Add Rackspace identity service. thanks Brad Gignac
787
+ Add requests and request tests. thanks Brad Gignac
788
+ Add user model and collection with tests. thanks Brad Gignac
789
+ Handle non-array responses from list calls. thanks Brad Gignac
790
+ Better checking around hash/array responses. thanks Brad Gignac
791
+ Handle NotAuthorized respones from the identity API in the user model. thanks Brian Hartsock
792
+ use a valid username in tests. thanks geemus
793
+
794
+ [rackspace|lb]
795
+ fixed broken tests because of API format changes. thanks Brian Hartsock
796
+ ssl termination fixes. thanks Brian Hartsock
797
+ moved to Fog::JSON.encode instead of MultiJson.encode. thanks Brian Hartsock
798
+
799
+
800
+ 1.4.0 06/24/2012 24e0be755e251159f07d5d82beb1e8ef57c962d9
801
+ =========================================================
802
+
803
+ Stats! { 'collaborators' => 35, 'downloads' => 800348, 'forks' => 477, 'open_issues' => 43, 'watchers' => 2080 }
804
+
805
+ MVP! Nelvin Driz
806
+
807
+ [AWS]
808
+ make beanstalk, cdn, cloudformation, cloudwatch, elasticache, elb, storage, rds, ses, sns, route53 temporary credential friendly. thanks Frederick Cheung
809
+
810
+ [AWS|Auto Scale]
811
+ Add support for put_notification_configuration and change AWS API to use 01-01-2011 Spec. thanks Zuhaib M Siddique
812
+
813
+ [AWS|Autoscale]
814
+ 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
815
+ 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
816
+
817
+ [Openstack|Compute]
818
+ Usage Requests. thanks Hunter Nield
819
+ Migration and Console output. thanks Hunter Nield
820
+ server methods for console and migration. thanks Hunter Nield
821
+ Minor address cleanup. thanks Hunter Nield
822
+
823
+ [aws|address]
824
+ fixes release_address for VPC EIPs * amazon requires allocation_id only for vpc eips, and public_ip otherwise. thanks Albert Choi
825
+
826
+ [aws|beanstalk]
827
+ Added missing :beanstalk case. thanks George Scott
828
+ Added #load_balancer method. thanks George Scott
829
+ Serialize keys for SourceConfiguration. thanks George Scott
830
+ Added modify method for template. thanks George Scott
831
+ Support different AWS regions. thanks George Scott
832
+ Added swap_cnames method. thanks George Scott
833
+
834
+ [aws|compute]
835
+ add networkInterfaceSet context to EC2 instance parser. thanks Benton Roberts
836
+
837
+ [aws|dns]
838
+ Allow both Ruby and AWS style names for alias. thanks George Scott
839
+ Support for latency/weighted resource sets. thanks George Scott
840
+ Fixed #all iteration. thanks George Scott
841
+ Reimplemented #get. thanks George Scott
842
+ Added #all! method to Records. thanks George Scott
843
+
844
+ [aws|dynamodb]
845
+ correct batch_put_item to batch_write_item for consistency with API. thanks geemus
846
+
847
+ [aws|elb]
848
+ Failing test for load_balancers marker support. thanks Dan Peterson
849
+ Deprecate describe_load_balancers with just an array of names. thanks Dan Peterson
850
+ Marker support for describe_load_balancers. thanks Dan Peterson
851
+ Fix use of describe_load_balancers in tests. thanks Dan Peterson
852
+ load_balancers.get(nil) returns nil instead of the first of all load balancers. thanks Dan Peterson
853
+
854
+ [aws|iam]
855
+ Add test for AWS[:iam].get_user. thanks Benton Roberts
856
+ add test for AWS[:iam].get_user_policy. thanks Benton Roberts
857
+ FIX - make arguments AWS::IAM.get_user conform to expected standard for this module. thanks Benton Roberts
858
+ Fix Users model to comply with updated request parameter set. thanks Benton Roberts
859
+ mark role tests as pending in mock mode. thanks geemus
860
+
861
+ [aws|storage]
862
+ fix flipped logic on valid acl check closes #889. thanks geemus
863
+ fix method signature for setup_credentials. thanks geemus
864
+
865
+ [aws|storage|]
866
+ Make get_object_http_url use correct S3 host in returned URL. thanks Michiel Sikkes
867
+ Make get_object_http_url use correct S3 host in returned URL. thanks Michiel Sikkes
868
+
869
+ [brightbox|compute]
870
+ Updated image reference where unfortunately hardcoded. thanks Paul Thornthwaite
871
+ Remove resize request since not available. thanks Paul Thornthwaite
872
+ Update format tests for new attributes on Cloud IPs. thanks Paul Thornthwaite
873
+ Update format tests for "fqdn" attribute. thanks Paul Thornthwaite
874
+ Update format tests for updates to Image. thanks Paul Thornthwaite
875
+
876
+ [cloudstack]
877
+ prevent mock test failure when cloudstack credentials are not defined. thanks geemus
878
+ add to list of providers so it can be skipped when lacking credentials. thanks geemus
879
+
880
+ [cloudstack|compute]
881
+ zones,flavors,images,address. thanks Jason Hansen & Josh Lane
882
+ support async jobs. thanks Jason Hansen & Josh Lane
883
+ server abstraction and mocks. thanks Josh Lane & Jason Hansen
884
+ volumes support. thanks Josh Lane & Jason Hansen
885
+
886
+ [compute]
887
+ volume tests. thanks Josh Lane & Jason Hansen
888
+
889
+ [compute|aws]
890
+ Apply tags to volume at creation. thanks Dan Carley
891
+ Respect extra register_image options when mocking. thanks Dan Peterson
892
+ extend polling interval for spot_requests bootstrap. thanks geemus
893
+ cleanup internet_gateway mocks and remove debug output. thanks geemus
894
+
895
+ [compute|openstack]
896
+ update server attributes for shared compute tests. thanks geemus
897
+ cleanup for list security groups request/mock. thanks geemus
898
+
899
+ [docs]
900
+ fix link to EngineYard logo (broken in /storage, /compute, etc.). thanks Len
901
+
902
+ [ecloud|compute]
903
+ Adding multiple disks at once was not working properly. thanks Eugene Howe
904
+ fix optional params for validate_data closes #969. thanks geemus
905
+
906
+ [glesys|compute]
907
+ update server/status format to include cpu hash and warnings. thanks Anton Lindström
908
+ add reboot and compute test params. thanks Anton Lindström
909
+
910
+ [hp|compute]
911
+ fix tests to properly set default base image. thanks geemus
912
+
913
+ [ibm|compute]
914
+ Typo in parameter name, should be storageID. thanks Decklin Foster
915
+
916
+ [joyent|compute]
917
+ Fixes issue where params are not properly passed to #keys_create from #create_key. thanks Kevin Chan
918
+ Added #list_datacenters. thanks Kevin Chan
919
+ Support for DSA keys for auth. thanks Kevin Chan
920
+
921
+ [libVirt]
922
+ added tests. thanks Amos Benari
923
+
924
+ [libvirt]
925
+ refactored libvirt entire code. thanks Ohad Levy
926
+ expose node hostname. thanks Ohad Levy
927
+ added display attributes and allowed to change display of a running server. thanks Ohad Levy
928
+ volumes dev names must be uniq. thanks Ohad Levy
929
+ makes libvirt code more debian friendly. thanks Ohad Levy
930
+ - ensure no nil pools are returned. thanks Ohad Levy
931
+ Fix SSH keyfile being pulled from wrong param. thanks brookemckim
932
+ skip tests if ruby-libvirt is unavailable. thanks geemus
933
+ correct error message when skipping tests. thanks geemus
934
+
935
+ [misc]
936
+ Add support for internal ELBs in VPC. thanks Aaron Bell
937
+ cleaning up model. thanks Aaron Bell
938
+ fix parser to show scheme, add test for internal ELB creation. thanks Aaron Bell
939
+ fixing test. thanks Aaron Bell
940
+ add scheme to elb helper. thanks Aaron Bell
941
+ adds batch_put_item functionality to AWS dynamodb + test. thanks Alex Gaudio
942
+ Fixed non-persistent connections handling to AWS. thanks Alexander Kolesen
943
+ Fixed handling options[:persistent] in some cases. thanks Alexander Kolesen
944
+ added mock implementation. thanks Amos Benari
945
+ removed unneeded dependency,. thanks Amos Benari
946
+ new rbovirt version. thanks Amos Benari
947
+ use constant for GB. thanks Amos Benari
948
+ Adding network interface information and security group ids. thanks Artem Veremey
949
+ Adding network interface information and security group ids to the model. thanks Artem Veremey
950
+ Store the region for S3. thanks Ben Butler-Cole
951
+ add create_hosted_zone and get_hosted_zone request mocks. thanks Bulat Shakirzyanov
952
+ add list_hosted_zones request mock. thanks Bulat Shakirzyanov
953
+ add change_resource_record_set request mock. thanks Bulat Shakirzyanov
954
+ fix response codes and formatting. thanks Bulat Shakirzyanov
955
+ fix typos. thanks Bulat Shakirzyanov
956
+ fix identifiers. thanks Bulat Shakirzyanov
957
+ use hard-coded sample value to eliminate randomness. thanks Bulat Shakirzyanov
958
+ fix typos. thanks Bulat Shakirzyanov
959
+ fix zone id in create_hosted_zone response. thanks Bulat Shakirzyanov
960
+ fix attribute name. thanks Bulat Shakirzyanov
961
+ add authorize and revoke port range for security group. thanks Bulat Shakirzyanov
962
+ Fix typo. thanks Christopher Meiklejohn
963
+ Specify image_ref rather than trying to instantiate object. thanks Christopher Meiklejohn
964
+ Fog::Compute::AWS::Address#server -> assigned Server. thanks Dr Nic Williams
965
+ fix auto-discovery for HP Cloud by fog bin. thanks Dr Nic Williams
966
+ whitespace. :bomb: :v:. thanks Dylan Egan
967
+ Default to false for persistent connections. You can't pass in false. This now behaves like other connections in fog. :v:. thanks Dylan Egan
968
+ Idempotent Dynect calls. :v:. thanks Dylan Egan
969
+ Fix up describe_volume_status to work with THE ARRAYZ. :v:. thanks Dylan Egan
970
+ Fog::AWS.indexed_reuqest_param. thanks Edward Muller
971
+ include the nextToken in the body. thanks Edward Muller
972
+ complete Request param support. thanks Edward Muller
973
+ refactor to use Fog::AWS.indexed_request_param. thanks Edward Muller
974
+ the old parser was not working properly. thanks Edward Muller
975
+ All directories.create on us-east-1. thanks Edward Muller
976
+ us-west-2 default ami. thanks Edward Muller
977
+ some small fixups. thanks Edward Muller
978
+ make the aws region accessible. thanks Edward Muller
979
+ Fog::Compute::Server#private_key=. thanks Edward Muller
980
+ Fog::Compute::Server#sshable?. thanks Edward Muller
981
+ ssh/run optionally takes a block. thanks Edward Muller
982
+ Cleanup after talking to @dpiddy. thanks Edward Muller
983
+ return '' not nil. thanks Edward Muller
984
+ Revert "Add debug option to Fog::Compute::Server#ssh". thanks Edward Muller
985
+ Mock stop_instances. thanks Edward Muller
986
+ Mock aws compute start_instances. thanks Edward Muller
987
+ Don't duplicate effort. thanks Edward Muller
988
+ Add ssh_port to Fog::Compute::Server. thanks Edward Muller
989
+ Generalize NoLeak Inspector for Fog::Service. thanks Edward Muller
990
+ Don't leak HP cdn & storage. thanks Edward Muller
991
+ Make aws compute server retry SSH on EHOSTUNREACH. thanks Eric Boehs
992
+ Copied auth token reauthentication from rackspace|compute. thanks Eric Hankins
993
+ https://github.com/fog/fog/issues/810 - Add ENI support by maf23. thanks Eric Stonfer
994
+ minor fix to ENI tests. thanks Eric Stonfer
995
+ VPC ELBs, Tests, and the introduction of the InternetGateway object. thanks Eric Stonfer
996
+ clean up conflict. thanks Eric Stonfer
997
+ this adds the dhcp_options object and associated operations. thanks Eric Stonfer
998
+ merge upstream. thanks Eric Stonfer
999
+ forgot to commit dhcp_options tests. thanks Eric Stonfer
1000
+ fix describe_volume_status parser. thanks Eric Stonfer
1001
+ add some more explanation to the server creation process. thanks Eric Stonfer
1002
+ testing. thanks Eugene Howe
1003
+ added requests and models for compute_pools. thanks Eugene Howe
1004
+ changed to urn:tmrk:eCloudExtensions-2.8. thanks Eugene Howe
1005
+ require compute pool to be specified on vapp creation. thanks Eugene Howe
1006
+ set default value for computePool on vapp creation. thanks Eugene Howe
1007
+ Made computePool an optional parameter, specs now pass without issue. thanks Eugene Howe
1008
+ Removed non-functioning Mock classes. thanks Eugene Howe
1009
+ fixed method name. thanks Eugene Howe
1010
+ start an instance with an IAM profile and access the credentials. thanks Frederick Cheung
1011
+ add new iam requests to support iam roles. thanks Frederick Cheung
1012
+ request tests for the new iam role requests. thanks Frederick Cheung
1013
+ test credential fetching. thanks Frederick Cheung
1014
+ use excon rather than net/http. thanks Frederick Cheung
1015
+ remove stray multijson require. thanks Frederick Cheung
1016
+ fix errant use of net/http. thanks Frederick Cheung
1017
+ Add debug option to Fog::Compute::Server#ssh. thanks Gabriel Horner
1018
+ Correct docs for change_resource_record_sets. thanks Gavin Sandie
1019
+ add cc2.8xlarge AWS flavor. thanks Ian Downes
1020
+ Fix user-data attribute name. thanks Igor Bolotin
1021
+ Refactor AWS Directory. thanks James Herdman
1022
+ Remove unused variable. thanks James Herdman
1023
+ Fix indentation warning. thanks James Herdman
1024
+ Remove unnecessary full path usage with require. thanks James Herdman
1025
+ Remove unused variable. thanks James Herdman
1026
+ Remove unused accessor. thanks James Herdman
1027
+ Silence warning regarding splat operator. thanks James Herdman
1028
+ Remove unused variable. thanks James Herdman
1029
+ Remove unused variable. thanks James Herdman
1030
+ Silence warnings about potentially private attribute. thanks James Herdman
1031
+ Remove unused variable. thanks James Herdman
1032
+ Silence warning about potentially private attribute. thanks James Herdman
1033
+ Remove unused variable. thanks James Herdman
1034
+ Remove unused variable. thanks James Herdman
1035
+ Remove unused variable. thanks James Herdman
1036
+ Remove unused variable. thanks James Herdman
1037
+ Remove unused variable. thanks James Herdman
1038
+ Remove unused variable. thanks James Herdman
1039
+ Remove unused variable. thanks James Herdman
1040
+ Remove unused variable. thanks James Herdman
1041
+ Remove unused variable. thanks James Herdman
1042
+ Remove unused variable. thanks James Herdman
1043
+ Remove unused variable. thanks James Herdman
1044
+ Remove unused variable. thanks James Herdman
1045
+ Remove unused variable. thanks James Herdman
1046
+ Remove duplicate require. thanks James Herdman
1047
+ Remove unused variable. thanks James Herdman
1048
+ Remove unused variable. thanks James Herdman
1049
+ Remove unused variable. thanks James Herdman
1050
+ Remove absolute path when requiring. thanks James Herdman
1051
+ Remove unused variable. thanks James Herdman
1052
+ Remove duplicate Mock class definition. thanks James Herdman
1053
+ implement Fog::SSH::Mock#run. thanks Jason Hansen & Josh Lane
1054
+ add a method to IPAddr instead of breaking a useful one. thanks Jesse Newland
1055
+ Adjusts regex to fix issues with S3 paths that include periods. thanks John Feminella
1056
+ fix response-cache-control type for AWS signed urls. thanks John Nishinaga
1057
+ remove FOG_PROVIDER env override. thanks Josh Lane
1058
+ more robust resource pool discovery. thanks Justin Clayton
1059
+ Removed duplicate property :ips on server. thanks Kevin Chan
1060
+ Fixes invalid call to #resize, should be #resize_machine. thanks Kevin Chan
1061
+ Fixed #875: Loosen multi_json version. thanks Kevin Menard
1062
+ Bad string replace. thanks Kevin Menard
1063
+ Actually call the new MultiJSON 1.3.2 API methods. thanks Kevin Menard
1064
+ Rename dd_belatedpng.js to dd_belatedpng.min.js. thanks Laurent Bigonville
1065
+ Add non-minified javascript files used in docs/ (#939). thanks Laurent Bigonville
1066
+ Catch Errno::ETIMEDOUT timeout error when connecting to a freshly created EC2 machine. thanks Marc Seeger
1067
+ fix get, all, and all!. thanks Michael Keirnan
1068
+ Make `.irbrc` service agnostic. thanks Nelvin Driz
1069
+ Nested Credentials with Array gets flattened; restrict flatten to 1L. thanks Nelvin Driz
1070
+ Allow for stringified options keys. thanks Nikita Pomyashchiy
1071
+ add supports for defining/extracting libvit boot order. thanks Ohad Levy
1072
+ libvirt volume sizes are in GB, ensuring both requests and setters are in GB. thanks Ohad Levy
1073
+ adds deprecation on vnc_port. thanks Ohad Levy
1074
+ monitoring-state is enabled or disabled, if enabled returns true. thanks Ozgur Akan
1075
+ reserved instances hourly cost was returning empty. thanks Ozgur Akan
1076
+ Modify url regexp to handle periods in bucket names. thanks Parker Selbert
1077
+ Tag generated model tests with string not symbol. thanks Paul Thornthwaite
1078
+ added missing server attributes for openstack compute model. thanks Pedro Perez
1079
+ openstack: extended list_servers and list_server_detail to allow all_tenants param. thanks Pedro Perez
1080
+ depend on excon >= 0.13.0. thanks Prashant Nadarajan
1081
+ use pessimistic gem version constraint for excon (~>0.14.0). thanks Prashant Nadarajan
1082
+ aim users model and nested model policy. thanks Rodrigo Estebanez
1083
+ IAM access_key model implemented. thanks Rodrigo Estebanez
1084
+ get_user Mock implemented. Basic shindo user_tests added. thanks Rodrigo Estebanez
1085
+ Refactor aim modeling for nested models (policies and access keys). thanks Rodrigo Estebanez
1086
+ shindo tests for IAM models: users, policies and access_keys. Mock implementation for get_user_policy. thanks Rodrigo Estebanez
1087
+ @users -> @user. Clean up the @user after the policies and access_keys test. thanks Rodrigo Estebanez
1088
+ Fix encoding issue: https://github.com/fog/fog/pull/189. thanks Rodrigo Estebanez
1089
+ aim users model and nested model policy. thanks Rodrigo Estebanez
1090
+ IAM access_key model implemented. thanks Rodrigo Estebanez
1091
+ get_user Mock implemented. Basic shindo user_tests added. thanks Rodrigo Estebanez
1092
+ Refactor aim modeling for nested models (policies and access keys). thanks Rodrigo Estebanez
1093
+ shindo tests for IAM models: users, policies and access_keys. Mock implementation for get_user_policy. thanks Rodrigo Estebanez
1094
+ @users -> @user. Clean up the @user after the policies and access_keys test. thanks Rodrigo Estebanez
1095
+ Fix encoding issue: https://github.com/fog/fog/pull/189. thanks Rodrigo Estebanez
1096
+ For some reason, there was a missing comma in the mock class. thanks Rodrigo Estebanez
1097
+ Fix get_user_policy. The actual AWS data has to be in a ['Policy'] hash section. thanks Rodrigo Estebanez
1098
+ add IAM mocking for get_group method. thanks Rodrigo Estebanez
1099
+ add IAM mocking for get_group method. thanks Rodrigo Estebanez
1100
+ Add new HP providers for Object Storage, Compute and CDN services. thanks Rupak Ganguly
1101
+ 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
1102
+ Use spot request's public_key when setting up keypair. thanks Ryan Stout
1103
+ ensure apiKey and command are included in parameter sorting. thanks Sean Caffery
1104
+ * [xenserver|compute] initial release. thanks Sergio Rubio
1105
+ * Added VIF model and collection tests * added network and server wrappers to VIF model. thanks Sergio Rubio
1106
+ * Added VIF collection Shindo tests. thanks Sergio Rubio
1107
+ * Added PIFs collection Shindo tests. thanks Sergio Rubio
1108
+ * Added VBD Shindo tests * added server wrapper to VBD model. thanks Sergio Rubio
1109
+ * Added Network collection Shindo tests * Fixed PBD and PIF tests descriptions. thanks Sergio Rubio
1110
+ * Added Pool and StorageRepository models and collections Shindo tests * Added missing attributes to Pool and StorageRepository models. thanks Sergio Rubio
1111
+ * Define missing InvalidLogin exception * Add login tests. thanks Sergio Rubio
1112
+ * Added custom_templates and templates methods to Host model. thanks Sergio Rubio
1113
+ * 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
1114
+ * Added some more tests * Lots of fixes and some refactoring. thanks Sergio Rubio
1115
+ * Fix Servers.templates method. thanks Sergio Rubio
1116
+ * Added clone_server request. thanks Sergio Rubio
1117
+ * 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
1118
+ * Added Vif.destroy and destroy_vif request * add :auto_start parameter to Server.save. thanks Sergio Rubio
1119
+ * Added create_vdi request * Added missing VDI methods and attributes. thanks Sergio Rubio
1120
+ * Added missing VBD operations. thanks Sergio Rubio
1121
+ * Added set_attribute request and tests * Added missing PV_bootloaer attribute to Server * Added Server.set_attribute method and tests. thanks Sergio Rubio
1122
+ * 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
1123
+ * 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
1124
+ * Added missing attributes to Server model * Added create_server_raw request and tests * Added VIF.save action * more tests. thanks Sergio Rubio
1125
+ * 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
1126
+ * 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
1127
+ * [xenserver|compute] set_attribute request now accepts var args - added new tests. thanks Sergio Rubio
1128
+ updating gitignore for eclipse settings. thanks Spencer Dillard
1129
+ first pass at updates for VPC. thanks Spencer Dillard
1130
+ updating for SSL ciphers and protocols. thanks Spencer Dillard
1131
+ updating to master. thanks Spencer Dillard
1132
+ regularize examples showing use of AWS access keys. thanks Stephen Bannasch
1133
+ Use MultiJSON #dump and #load rather than #encode and #decode. thanks Steve Smith
1134
+ Add support for ports in AWS storage URLs. thanks Tim Carey-Smith
1135
+ Mock implementations for SCP upload and download. thanks Tom Mornini
1136
+ add Linode Mock classes to request primitives. thanks Wes Morgan
1137
+ make Mock#linode_disk_delete return the response object. thanks Wes Morgan
1138
+ make Mock#linode_disk_list return the response object. thanks Wes Morgan
1139
+ use kernel_id for mocked kernel, not stackscript_id. thanks Wes Morgan
1140
+ Adds new method delete_notification_configuration which allows you notifications created by put_notification_configuration. thanks Zuhaib Siddique
1141
+ Fix for stacks that have capabilities. Without this the parser misinterprets stacks with capabilities set. thanks atlantacs
1142
+ volume(s) are not considered to be universally available. thanks geemus
1143
+ catch passing an invalid openstack_tenant. thanks mattray
1144
+ addresses['internet'] (like on TryStack.org) supported and public and private_ip_address now work. thanks mattray
1145
+ don't assume 'internet' for addresses. thanks mattray
1146
+ Added offering type for reserved instances response. thanks questionnet
1147
+
1148
+ [oVirt]
1149
+ added volumes to server and template. thanks Amos Benari
1150
+ added volume size in GB accessor. thanks Amos Benari
1151
+ fixed create_vm and get_virtual_machine requests mock implementation. thanks Amos Benari
1152
+
1153
+ [openstack]
1154
+ Fix create snapshot. thanks Ferran Rodenas
1155
+ Match both OS API 1.1 and v2 since they are the same. thanks Josh Kearney
1156
+ Update Reinitialization Process of Existing Auth Token. thanks Nelvin Driz
1157
+ Add Export of Credentials. thanks Nelvin Driz
1158
+ Wrong instance variables accessed for #credentials. thanks Nelvin Driz
1159
+ Update Authentication through X-Auth-Token. thanks Nelvin Driz
1160
+ Update mocks for login and identity request #get_user_by_id. thanks Nelvin Driz
1161
+ Fix authentication without specifying tenant name. thanks Nelvin Driz
1162
+ Make current_user and current_token accessible to services. thanks Nelvin Driz
1163
+ Fix Authentication as well as Fog::JSON call bugs. thanks Nelvin Driz
1164
+ Raise error when no tenant is found for the user logging in. thanks Nelvin Driz
1165
+ Ensure password sent is of type string. thanks Nelvin Driz
1166
+ Modify authentication process. thanks Philip Mark Deazeta
1167
+
1168
+ [openstack|compute]
1169
+ Add requests and tests for security groups. thanks Alfonso Juan Dillera
1170
+ Add requests, models and tests for keypairs. thanks Alfonso Juan Dillera
1171
+ Add requests, models and tests for address management. thanks Alfonso Juan Dillera
1172
+ Add requests, models and tests for address management. thanks Alfonso Juan Dillera
1173
+ Add flavor CRUD. thanks Alfonso Juan Dillera
1174
+ Add auth_token. thanks Alfonso Juan Dillera
1175
+ Added request for boot_from_snapshot. thanks Alfonso Juan Dillera
1176
+ Added id attribute to the keypair. thanks Alfonso Juan Dillera
1177
+ Update fetching of addresses and added fetching for address pools. thanks Alvin Garcia
1178
+ Fixed creating image of a server. thanks Alvin Garcia
1179
+ Added requests for quota. thanks Alvin Garcia
1180
+ Initial extension support for addresses. thanks Hunter Nield
1181
+ Initial extension support for key pairs. thanks Hunter Nield
1182
+ Initial extension support for security groups. thanks Hunter Nield
1183
+ Added Address models. thanks Hunter Nield
1184
+ Added key pair models. thanks Hunter Nield
1185
+ added security group models. thanks Hunter Nield
1186
+ Updates to server model. thanks Hunter Nield
1187
+ Added list/get support for /os-hosts. thanks Hunter Nield
1188
+ Add Tenants and Fix Authentication Implementation. thanks Nelvin Driz
1189
+ Fix Requests on Compute. thanks Nelvin Driz
1190
+ General Cleanup and Update. thanks Nelvin Driz
1191
+ Fix Compute Identity Endpoint Credential Export. thanks Nelvin Driz
1192
+ Add Identity Enpoint to Recognized Init Parameters. thanks Nelvin Driz
1193
+ Update requests and response of server actions. thanks Nelvin Driz
1194
+ Fix Bug on Key Pair Mock. thanks Nelvin Driz
1195
+ Update Mocks for Volumes. thanks Nelvin Driz
1196
+ Update Mocks for Security Groups and Volumes. thanks Nelvin Driz
1197
+ Add Instance Name to Fog. thanks Nelvin Driz
1198
+ Update Image Mocks. thanks Nelvin Driz
1199
+ Update List Security Groups to list those assigned to a server. thanks Nelvin Driz
1200
+ Assert Timezone to UTC and fix format for OS on `get_usage`. thanks Nelvin Driz
1201
+ Added get_usage function, mocks, tests. thanks Philip Mark Deazeta
1202
+ Added get server volumes request. thanks Philip Mark M. Deazeta
1203
+ Added key_pair and security_groups options int create server requrest. thanks Philip Mark M. Deazeta
1204
+ added key_name and security_groups in boot from snapshot request. thanks Philip Mark M. Deazeta
1205
+ authenticate_v2 fixes. thanks Sergio Rubio
1206
+
1207
+ [openstack|identity]
1208
+ Added current user id. thanks Alfonso Juan Dillera
1209
+ Updated current user id for identity. thanks Alfonso Juan Dillera
1210
+ Keystone Roles. thanks Alvin Garcia
1211
+ Keystone Roles and Users. thanks Alvin Garcia
1212
+ Update users collections and model. thanks Alvin Garcia
1213
+ Update users model initialization and save. thanks Alvin Garcia
1214
+ Fixed users fetching. thanks Alvin Garcia
1215
+ Rough implementation of the Keystone API (untested). thanks Hunter Nield
1216
+ Correction in Roles#all method. thanks Mark Maglana
1217
+ Express the "add user role" intent more clearly. thanks Mark Maglana
1218
+ Fix Authentication Implementation. thanks Nelvin Driz
1219
+ Update Tenants. thanks Nelvin Driz
1220
+ Update Tenants (Complete CRUD). thanks Nelvin Driz
1221
+ Fix Identity Authentication Conditions on Endpoint Detection. thanks Nelvin Driz
1222
+ Add User List and Delete User Mocks. thanks Nelvin Driz
1223
+ Update Fog to Accomodate Tenant Deletion Workaround Workflow. thanks Nelvin Driz
1224
+ Fix status code expectation. thanks Nelvin Driz
1225
+ Added function to add user to a tenant. thanks Philip Mark Deazeta
1226
+ Added function to add user to a tenant. thanks Philip Mark Deazeta
1227
+ fixes for mocks. thanks geemus
1228
+
1229
+ [openstack|image]
1230
+ Added set_tenant. thanks Alvin Garcia
1231
+ Added copy_from attribute. thanks Alvin Garcia
1232
+ Update Image Service Authentication Options. thanks Nelvin Driz
1233
+ Added image service, model and request. thanks Philip Mark Deazeta
1234
+ Added test for models and request. thanks Philip Mark Deazeta
1235
+ Added image module, model and request. thanks Philip Mark Deazeta
1236
+ Image Model Updates. thanks Philip Mark Deazeta
1237
+ Refactor Dynamic Methods on Image Model. thanks Philip Mark Deazeta
1238
+
1239
+ [openstack|volume]
1240
+ Volume Endpoints Support. thanks Marjun Pagalan
1241
+ Volume Snapshot CRUD. thanks Marjun Pagalan
1242
+ Volume attach/detach to Server. thanks Marjun Pagalan
1243
+ Added volume service requests. thanks Philip Mark M. Deazeta
1244
+ fix on module name. thanks Philip Mark M. Deazeta
1245
+ Added volume model. thanks Philip Mark M. Deazeta
1246
+
1247
+ [ovirt]
1248
+ fixed list storage domain test. thanks Amos Benari
1249
+
1250
+ [rackspace|compute]
1251
+ fix rackspace server compare. thanks Josh Lane & Jason Hansen
1252
+ default images. thanks Josh Lane & Jason Hansen
1253
+ Images#all returns data. thanks Josh Lane & Jason Hansen
1254
+ fixes for mock images. thanks geemus
1255
+
1256
+ [rackspace|lb]
1257
+ added support for algorithm on create. thanks Brian Hartsock
1258
+ fixed broken tests due to API contract changes. thanks Brian Hartsock
1259
+
1260
+ [rackspace|loadbalancers]
1261
+ fixed broken tests. thanks Brian Hartsock
1262
+
1263
+ [rackspace|storage|file]
1264
+ copy method now use the options hash and apply content type. thanks Matthias Gröbner
1265
+
1266
+ [rackspace|storage|files]
1267
+ fix iteration. thanks Matthias Gröbner
1268
+
1269
+ [slicehost]
1270
+ remove (now deprecated) slicehost support. thanks geemus
1271
+
1272
+ [storage|aws]
1273
+ fix location stuff to allow creating new buckets properly. thanks geemus
1274
+
1275
+ [vcloud]
1276
+ Remove some un-needed debug information. thanks Lincoln Stoll
1277
+
1278
+ [vpc-fixes]
1279
+ AWS security group model + VPC. thanks Sean Porter
1280
+
1281
+ [vsphere]
1282
+ force poweroff of instance of vmware tools are not installed. thanks Ohad Levy
1283
+ adds memory and cpu server attributes. thanks Ohad Levy
1284
+ adds support to get and set vnc console. thanks Ohad Levy
1285
+
1286
+ [xenserver]
1287
+ Added missing Server.tags attribute. thanks Sergio Rubio
1288
+ fix tags to skip tests without credentials. thanks geemus
1289
+
1290
+
1291
+ 1.3.1 03/27/2012 f0f692456956fe2e414ef8205d0268259901644a
1292
+ =========================================================
1293
+
1294
+ Stats! { 'collaborators' => 32, 'downloads' => 527366, 'forks' => 392, 'open_issues' => 27, 'watchers' => 1901 }
1295
+
1296
+ MVP! George Scott
1297
+
1298
+ [aws|dns]
1299
+ Preserves change_id. Support for checking sync status via reload. thanks George Scott
1300
+ Changed #insync? to #ready?. thanks George Scott
1301
+
1302
+ [ibm]
1303
+ avoid using constants (Rails loads files multiple times, issue #807). thanks Decklin Foster
1304
+ Make usage of #state rather than #status consistent. thanks Decklin Foster
1305
+
1306
+ [ibm|compute]
1307
+ Add clone/destroy methods and tests to Image. thanks Decklin Foster
1308
+ Add request test for list_vlans and fix mock. thanks Decklin Foster
1309
+
1310
+ [ibm|storage]
1311
+ Restore storage_area, platform_version, clone_status Volume attributes. thanks Decklin Foster
1312
+
1313
+ [misc]
1314
+ Allow custom headers in Storage#put_object_url. thanks Jacob Mattingley
1315
+ Use https_url instead of deprecated url for put_object_url. thanks Jacob Mattingley
1316
+ Adding Vlan class to IBM SmartCloud. thanks Joe Kinsella
1317
+ bump excon dep to get jruby openssl fixes. thanks geemus
1318
+
1319
+ [storage]
1320
+ properly update content-type at save time for file models. thanks geemus
1321
+
1322
+
1323
+ 1.3.0 03/21/2012 f78afe98242a60ae4dbbfcd8c5ab67ba71c6d773
1324
+ =========================================================
1325
+
1326
+ Stats! { 'collaborators' => 32, 'downloads' => 513974, 'forks' => 387, 'open_issues' => 24, 'watchers' => 1893 }
1327
+
1328
+ MVP! Decklin Foster
1329
+
1330
+ [aws|cloud_watch]
1331
+ GitHub Edit! s/prodide/provide/ :v:. thanks Dylan Egan
1332
+
1333
+ [aws|simpledb]
1334
+ fix region/host for us-east-1. thanks geemus
1335
+
1336
+ [ibm]
1337
+ Added Mocking and Tests. thanks Carl Hicks
1338
+ Moar convenience methods for servers. thanks Carl Hicks
1339
+ Update model for Volume. thanks Carl Hicks
1340
+ Added request tests for addresses. thanks Carl Hicks
1341
+ Initial IBM SmartCloud support. thanks Decklin Foster
1342
+ Add Location model and requests. thanks Decklin Foster
1343
+ Rename collection requests get->list so we have get_foo and list_foos. thanks Decklin Foster
1344
+ Don't need json_body, so we can simplify requests; remove unused params. thanks Decklin Foster
1345
+ Pass optional params to requests with hashes. thanks Decklin Foster
1346
+ Add a InstanceType model, returned as part of Images. thanks Decklin Foster
1347
+ Rename model test files into compute, storage dirs. thanks Decklin Foster
1348
+ Remove trailing whitespace. thanks Decklin Foster
1349
+ Update tests to match model arguments (attribs hash) and lower-level request methods. thanks Decklin Foster
1350
+ Update mocks to reflect moving volume models from from compute to storage. thanks Decklin Foster
1351
+ Add some missing mocks, fix list_instances. thanks Decklin Foster
1352
+ Raise NotFound in mock instead of returning a 404. thanks Decklin Foster
1353
+ Fix form_encode to stringify args (e.g. booleans) to URI.escape. thanks Decklin Foster
1354
+ Typos in state names and status vs. state. thanks Decklin Foster
1355
+ Fix key model for passing public_key, add setting/testing whether key is default. thanks Decklin Foster
1356
+ Setting default key returns success, not key name. thanks Decklin Foster
1357
+ Typo, assignment instead of equality, made some tests incorrectly pass. thanks Decklin Foster
1358
+ Flesh out modify_instance and modify_key for different modes. thanks Decklin Foster
1359
+ Restarting should return success, changing expiration should only return time. thanks Decklin Foster
1360
+ Delete instance mock should return success. thanks Decklin Foster
1361
+ Remove IBM from flavors tests. thanks Decklin Foster
1362
+ Make names used in tests unique using current time. thanks Decklin Foster
1363
+ Add vlan_id attrib so that it can be used in creating an instance. thanks Decklin Foster
1364
+ Return nil for public_hostname if primary_ip unset (e.g. state is Failed). thanks Decklin Foster
1365
+ Change default location and image ID. thanks Decklin Foster
1366
+ Rename ibm_user_id -> ibm_username. thanks Decklin Foster
1367
+ Create temporary keys in tests that need to create instances. thanks Decklin Foster
1368
+ servers are not sorted, don't assume we can just take the last. thanks Decklin Foster
1369
+ create_image should do a PUT, not a POST, and needs 'state' param. thanks Decklin Foster
1370
+ Correct spelling of test volume format ('RAW') and fix parameter typo. thanks Decklin Foster
1371
+ Rename data -> body. thanks Decklin Foster
1372
+ Don't reboot or immediately expire, interferes with other tests. thanks Decklin Foster
1373
+ Use Raleigh location for tests. thanks Decklin Foster
1374
+ Nullable formats for attributes that may not be returned. thanks Decklin Foster
1375
+ Set expire a few seconds in the future since it takes a while to process. thanks Decklin Foster
1376
+ Return nil if instance_id is nil. thanks Decklin Foster
1377
+ Can't access Fog::Compute::IBM::Location class from here, just check if ID returned. thanks Decklin Foster
1378
+ servers.length will include already existing servers. thanks Decklin Foster
1379
+ Add state and ready? method to Image. thanks Decklin Foster
1380
+ Change public key format. thanks Decklin Foster
1381
+ vlan is part of primaryIP. thanks Decklin Foster
1382
+ Rename root_only -> is_mini_ephemeral. thanks Decklin Foster
1383
+ Description is mandatory. thanks Decklin Foster
1384
+ Wait for instance to be ready before deleting it or creating image. thanks Decklin Foster
1385
+ Add state/ready? methods for Address. thanks Decklin Foster
1386
+ Expiration time should be epoch in ms. thanks Decklin Foster
1387
+ launched_at convenience method. thanks Decklin Foster
1388
+ Don't set server to nil. thanks Decklin Foster
1389
+ Set a longer timeout on all wait_for calls. thanks Decklin Foster
1390
+ Generated key needs different name, supplied key only returns success. thanks Decklin Foster
1391
+ Invalid instance creation will return a 412 and thus raise PreconditionFailed. thanks Decklin Foster
1392
+ Don't calculate expiration time until ready to make the request. thanks Decklin Foster
1393
+ Fix volume formats and mocks. thanks Decklin Foster
1394
+ Wait for volume to be ready before deleting. thanks Decklin Foster
1395
+ Mark volume attach/detach pending, won't create instance. thanks Decklin Foster
1396
+ Return pending if provisioning times out in the real tests. thanks Decklin Foster
1397
+ adding documentation. thanks Wyatt Walter
1398
+ add bin helpers for storage. thanks geemus
1399
+
1400
+ [misc]
1401
+ ovirt added support for 'set vm ticket'. This api call is needed for openning a console to the server. thanks Amos Benari
1402
+ wrangled security tests into working. thanks Eric Stonfer
1403
+ 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
1404
+ 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
1405
+ Removed merge commit. thanks MaF
1406
+
1407
+ [release]
1408
+ add Kevin Menard to future MVP exclusion list. thanks geemus
1409
+
1410
+ [storage|aws]
1411
+ fix hardcoded host in get_object_http(s)_url methods. thanks geemus
1412
+
1413
+
1414
+ 1.2.0 03/19/2012 70e0f48fa446dbf233ae31c4f055eb26ea2dadd1
1415
+ =========================================================
1416
+
1417
+ Stats! { 'collaborators' => 30, 'downloads' => 508132, 'forks' => 384, 'open_issues' => 23, 'watchers' => 1874 }
1418
+
1419
+ MVP! Kevin Menard
1420
+
1421
+ [AWS]
1422
+ Compute: The security group parser was not parsing groupid properly. thanks Christopher Oliver
1423
+
1424
+ [AWS|DynamoDB]
1425
+ table requests. thanks geemus
1426
+ cleanup/fixes for tables. thanks geemus
1427
+ item requests. thanks geemus
1428
+ update item should not be idempotent when an action is specified. thanks geemus
1429
+ fix for UpdateItem idempotency. thanks geemus
1430
+ first pass at query/scan requests. thanks geemus
1431
+ ConsumedCapacityUnits should be a Float. thanks geemus
1432
+ add missing pending for mocked tests. thanks geemus
1433
+
1434
+ [AWS|ELB]
1435
+ Added support for InstanceProtocol to listeners. thanks James Stremick
1436
+ Updating listener and LB tests to include InstancePort checks. thanks James Stremick
1437
+
1438
+ [AWS|Storage]
1439
+ versioning related fixes copy_object mocks. thanks geemus
1440
+ fix for put_bucket_website mock. thanks geemus
1441
+ remove redundant mock setup in tests #731. thanks geemus
1442
+
1443
+ [AWS|storage]
1444
+ fix for versioned copy_object. thanks geemus
1445
+
1446
+ [Brightbox]
1447
+ Updates to format tests. thanks Paul Thornthwaite
1448
+ Updated Server output format. thanks Paul Thornthwaite
1449
+ Updated format test to use correct link name. thanks Paul Thornthwaite
1450
+ Updated Image format for min_ram attribute. thanks Paul Thornthwaite
1451
+ Updated LoadBalancer format to include listeners in listing. thanks Paul Thornthwaite
1452
+ Updated format for nested firewall policies. thanks Paul Thornthwaite
1453
+ Merge in various spec corrections. thanks Paul Thornthwaite
1454
+ Update format test to not fail on new attributes in JSON. thanks Paul Thornthwaite
1455
+ Load balancer listener timeouts are now reported. thanks Paul Thornthwaite
1456
+ Correct server snapshot test. thanks Paul Thornthwaite
1457
+
1458
+ [Compute|OpenStack]
1459
+ match auth response to stable/diablo branch of keystone. thanks Todd Willey
1460
+
1461
+ [Rackspace|Storage]
1462
+ set put_object to idempotent. thanks geemus
1463
+
1464
+ [aws]
1465
+ add sts helper. thanks geemus
1466
+
1467
+ [aws|compute]
1468
+ Fixed failing instance tests. thanks Christopher Oliver
1469
+ Update API version and support new DescribeInstanceStatus format. thanks Dan Peterson
1470
+ Fix allocate_address mocking. thanks Dan Peterson
1471
+ Mock detach_volume should raise proper error if volume is not attached. thanks Dan Peterson
1472
+ added group id to security group parser and model. thanks bdorry
1473
+ added security group get by id method. thanks bdorry
1474
+
1475
+ [aws|dns]
1476
+ Record identity is 'Name'. thanks Aaron Suggs
1477
+ Add Record#modify method. thanks Aaron Suggs
1478
+ Add model tests. thanks Aaron Suggs
1479
+ add test for Record#modify. thanks Aaron Suggs
1480
+ Parse IsTruncated as boolean in list_resource_record_set. thanks Aaron Suggs
1481
+ Add support for aliasing records to Elastic Load Balancers (API 2011-05-05). thanks James Miller
1482
+
1483
+ [aws|elb]
1484
+ start working on policies. :v:. thanks Dylan Egan
1485
+ create policies, describe policies, fix old mocking and yup. :v:. thanks Dylan Egan
1486
+ PolicyNotFound. :v:. thanks Dylan Egan
1487
+ remove test debugging. :v:. thanks Dylan Egan
1488
+ actually raise a PolicyNotFound. :v:. thanks Dylan Egan
1489
+ InstanceProtocol support. :v:. thanks Dylan Egan
1490
+
1491
+ [aws|fog]
1492
+ crapiness and hacks. :v:. thanks Dylan Egan
1493
+
1494
+ [aws|iam]
1495
+ Mock upload_server_certificate errors if private key is not RSA. thanks Dan Peterson
1496
+ P. :v:. thanks Dylan Egan
1497
+
1498
+ [aws|rds]
1499
+ Mock DB snapshot requests. thanks Aaron Suggs
1500
+ Enabled model tests that pass when mocking. thanks Aaron Suggs
1501
+
1502
+ [aws|storage]
1503
+ Simple multipart uploads; supports files > 5GB. thanks Aaron Suggs
1504
+ Automatically abort multipart uploads on exceptions. thanks Aaron Suggs
1505
+ Add mock for Fog::Storage::AWS#put_bucket_website. thanks Garret Alfert
1506
+ Handle S3 object deletions in the face of versioning. thanks Kevin Menard
1507
+ Return the object version in the request header and set an attribute value in the model. thanks Kevin Menard
1508
+ Allow options to be passed to the destroy method, facilitating passing of versionId. thanks Kevin Menard
1509
+ Added ability to control bucket versioning from Directory model. thanks Kevin Menard
1510
+ Added the ability to fetch a list of versions from a file. thanks Kevin Menard
1511
+ Allow passing of options to fetching versions. thanks Kevin Menard
1512
+ Added the pagination offset params to the get_object_bucket_versions parser. thanks Kevin Menard
1513
+ Added the MfaDelete value to the get_bucket_versioning parser. thanks Kevin Menard
1514
+ Fix put bucket website test, request returns not found when the bucket does not exist. thanks Peter Weldon
1515
+ Add bucket lifecycle / object expiration requests. thanks Peter Weldon
1516
+ make head_object idempotent. thanks geemus
1517
+ 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
1518
+
1519
+ [aws|storage|test]
1520
+ use a random directory key; prevent collision. thanks Aaron Suggs
1521
+ Mark multipart upload test as pending. thanks Aaron Suggs
1522
+ Added mock support for setting and retrieving versioning on a bucket. thanks Kevin Menard
1523
+ Added in versioning support for S3 objects, sans deletion markers. thanks Kevin Menard
1524
+ Track if the version is the latest or not. thanks Kevin Menard
1525
+ Basic handling of version-id-marker. thanks Kevin Menard
1526
+ Added the ability to get_object by versionId. thanks Kevin Menard
1527
+ Added S3 versioning support for delete_object. thanks Kevin Menard
1528
+ Deal with suspended buckets properly. thanks Kevin Menard
1529
+ Added request tests for put_bucket_versioning and get_bucket_versioning. thanks Kevin Menard
1530
+ Added tests for get_bucket_object_versions. thanks Kevin Menard
1531
+ Added request test for get_object with versioning. thanks Kevin Menard
1532
+ Added request tests for delete_object with versioning. thanks Kevin Menard
1533
+ Added failing request test for delete_object with versioning. thanks Kevin Menard
1534
+ Added in some file and directory model tests. thanks Kevin Menard
1535
+ Added model tests for versioning Directory and File models. thanks Kevin Menard
1536
+ Added tests for the Version model. thanks Kevin Menard
1537
+ Added versioning test for Files collection. thanks Kevin Menard
1538
+ Added versioning tests for Versions collection. thanks Kevin Menard
1539
+ Added versioning test for Files#head. thanks Kevin Menard
1540
+ Removed a commented-out test. thanks Kevin Menard
1541
+ Make sure tests pass with both mocking enabled and disabled. thanks Kevin Menard
1542
+ Fixed a regression with mocked get_bucket requests, due to a change in the mock data ordering. thanks Kevin Menard
1543
+ Fixed handling of options in mocked get_bucket_object_versions. thanks Kevin Menard
1544
+ Replaced random ETag implementation with MD5, per S3 docs. thanks Kevin Menard
1545
+
1546
+ [aws|sts]
1547
+ make get_*_token requests idempotent. thanks geemus
1548
+
1549
+ [beanstalk]
1550
+ avoid one remaining error with mocked tests. thanks geemus
1551
+
1552
+ [cloudstack]
1553
+ Fix warning in ruby 1.8.7. thanks Aaron Suggs
1554
+ added additional networking support and volume management commands. thanks Brian Dorry
1555
+ added unit tests. thanks Brian Dorry
1556
+ skip ssl verification. thanks geemus
1557
+
1558
+ [cloudstack|compute]
1559
+ merged in upstream. thanks bdorry
1560
+ added ssh key support, snapshot policy support. thanks bdorry
1561
+ added update resource count action. thanks bdorry
1562
+
1563
+ [compute|aws]
1564
+ fix for describe_images parser that accidently split records. thanks geemus
1565
+ fix error in describe_security_groups parser closes #678. thanks geemus
1566
+
1567
+ [compute|cloudstack]
1568
+ added basic cloudstack list support. thanks bdorry
1569
+ added user management support. thanks bdorry
1570
+ added domain management support. thanks bdorry
1571
+ added domain management support, added documentation links to existing cloudstack requests. thanks bdorry
1572
+
1573
+ [core]
1574
+ no need to expand the already exanded __LIB_DIR__. thanks geemus
1575
+ update connection to use new excon response_block format. thanks geemus
1576
+
1577
+ [docs]
1578
+ Update GitHub repository references from geemus/fog to fog/fog. thanks Benjamin Manns
1579
+
1580
+ [dynect|dns]
1581
+ Pass zone.records.all options through to get_node_list. thanks Dan Peterson
1582
+
1583
+ [glesys|compute]
1584
+ fix for changes in api. thanks Anton Lindström
1585
+
1586
+ [joyent|compute]
1587
+ rename _test files to _tests for shindo. thanks geemus
1588
+ make password required. thanks geemus
1589
+ fix format of joyent to match real output and remove mock-only test. thanks geemus
1590
+
1591
+ [local|storage]
1592
+ Fix Local::File deletion for Ruby 1.8. thanks Benjamin Manns
1593
+ Add copy_object method to Local::Storage. thanks Benjamin Manns
1594
+ Add copy method to Local::File. thanks Benjamin Manns
1595
+
1596
+ [misc]
1597
+ whitespace. thanks Aaron Suggs
1598
+ fix typo in comment. thanks Aaron Suggs
1599
+ whitespace cleanup. thanks Aaron Suggs
1600
+ Refactor to support ruby 1.8.7. thanks Aaron Suggs
1601
+ Whoops, don't need to require digest/md5. thanks Aaron Suggs
1602
+ whitespace. thanks Aaron Suggs
1603
+ Adds Supprt for oVirt (http://ovirt.org). thanks Amos Benari
1604
+ oVirt: Added tests to work on both real and mock. thanks Amos Benari
1605
+ Removing duplicates from reservation's groupSet. thanks Artem
1606
+ Remove coverage Rake task. thanks Benjamin Manns
1607
+ Remove a step that referenced a private config file. thanks Bob Briski
1608
+ updated cloudstack tests for user level permissions, added ssh key, disk offering, service offering, os type, security group tests. thanks Brian Dorry
1609
+ Adding update_firewall_rule request. thanks Caius Durling
1610
+ Correct an error with long keys where Base64.encode64 would add "\n" at 60 chars. thanks Chris Hasenpflug
1611
+ Use gsub for Ruby 1.8.7 compatibility. thanks Chris Hasenpflug
1612
+ Correct copy & paste error. thanks Chris Hasenpflug
1613
+ implement #scp_download method to allow downloads in addition to uploads via scp. alias #scp method as #scp_upload. thanks Christoph Schiessl
1614
+ tests for scp_download. thanks Christoph Schiessl
1615
+ Removed various 'puts' statements... thanks Christopher Oliver
1616
+ fix for free choice of region. thanks Daniel Schweighoefer
1617
+ save the region in a instance variable. thanks Daniel Schweighoefer
1618
+ rounding out API coverage in 'Virtual Machine section. thanks David Nalley
1619
+ mock #create_user and #create_access_keys". thanks Edward Muller
1620
+ fix typo. thanks Edward Muller
1621
+ Enable Shindo tests for the mocked methods. thanks Edward Muller
1622
+ Refactor mock data structure. thanks Edward Muller
1623
+ mock #put_user_policy. thanks Edward Muller
1624
+ Mock out #list_users. thanks Edward Muller
1625
+ Mock #delete_user_policy. thanks Edward Muller
1626
+ Move this is Mock.key_id and don't default the path. thanks Edward Muller
1627
+ Add group mock data. thanks Edward Muller
1628
+ Use #has_key? instead of #keys.include?. thanks Edward Muller
1629
+ rework these to use #tap instead. Cleaner IMNSHO. thanks Edward Muller
1630
+ Additional mocks. thanks Edward Muller
1631
+ missing raise. thanks Edward Muller
1632
+ DescribeVolumeStatus. thanks Edward Muller
1633
+ Add code to support the creation and modification of security groups existing in a VPC. thanks Eric Stonfer
1634
+ 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
1635
+ Change default for vpc_id from '' to nil. thanks Eric Stonfer
1636
+ fixed a conditional that was assigining = rather than evaluating == in vsphere clone routine. This resulted in cloning from folders always failing. thanks Eric Stonfer
1637
+ Add the ability to create linked clones in vsphere. thanks Eric Stonfer
1638
+ whitespace fix. thanks Eric Stonfer
1639
+ whitespace fix. thanks Eric Stonfer
1640
+ 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
1641
+ linked clone tests. thanks Eric Stonfer
1642
+ This patch allows the ability to create 'blank' vms in vsphere. thanks Eric Stonfer
1643
+ fix list_virtual_machines when using :folder. thanks Eric Stonfer
1644
+ add vm reconfiguration functions for memory cpu / generic spec. thanks Eric Stonfer
1645
+ add subnet and vpc info to instance gets. thanks Eric Stonfer
1646
+ fixed a typo in vm_power_on_tests.rb. thanks Eric Stonfer
1647
+ make eips useable in a VPC. thanks Eric Stonfer
1648
+ associate EIPs in a vpc. thanks Eric Stonfer
1649
+ update autoscaling groups to allow the use of recurrence, start and end times. thanks Eric Stonfer
1650
+ realized that @activity was actually not used. thanks Eric Stonfer
1651
+ fixed some whitespace issues in auto_scaling tests. Fixed auto_scaling tests formats. thanks Eric Stonfer
1652
+ add host based vmotion. thanks Eric Stonfer
1653
+ basic VPC creation. thanks Eric Stonfer
1654
+ [aws]Add in subnets. thanks Eric Stonfer
1655
+ enable_metrics_collection requires a granularity argument (1Minute is the only legal value). thanks Frederick Cheung
1656
+ New file additions for AWS Elastic Beanstalk support. thanks George Scott
1657
+ Added beanstalk service to AWS Provider. thanks George Scott
1658
+ Unit tests for beanstalk. thanks George Scott
1659
+ Now sets pending when mocking for all beanstalk model tests. thanks George Scott
1660
+ environment now uses name as identity. thanks George Scott
1661
+ Added additional convenience methods to application. thanks George Scott
1662
+ remove rubygems require from core.rb. thanks Hemant Kumar
1663
+ Reset the alias_target hash for good measure. thanks James Miller
1664
+ Add a test for ALIAS records. thanks James Miller
1665
+ Cleanups and crazy long sleep to ensure ALIAS zone is found. thanks James Miller
1666
+ Fix linked clone mocked test unhandled exception. thanks Jeff McCune
1667
+ (maint) Whitespace and format only clean up. thanks Jeff McCune
1668
+ added support for server-side encryption on s3. thanks John Parker
1669
+ Switch from NewServers to BareMetalCloud for #773. thanks John Wang
1670
+ Add deprecation warning. thanks John Wang
1671
+ Fixed bug in SQS :receive_message mock. thanks Joshua Krall
1672
+ Fixed a typo in the warning. thanks Kashif Rasul
1673
+ One more typo fix. thanks Kashif Rasul
1674
+ GH-690 Joyent Cloud Provider. thanks Kevin Chan
1675
+ Credentials: cloudapi_* -> joyent_* for consistency. thanks Kevin Chan
1676
+ Revert "[joyent|compute] make password required" This reverts commit 6e93321e29e69cc863aa9d78cdcf1c83203a2fa7. thanks Kevin Chan
1677
+ Fixes dataset tests. thanks Kevin Chan
1678
+ - Fixes tests to run in both mock and non-mock mode - Clean ups and fixes. thanks Kevin Chan
1679
+ Cleanups + Fixes #get_machine test breaking when there are no machines. thanks Kevin Chan
1680
+ cleanups + refactorings + better error reporting per joyent cloudapi spec. thanks Kevin Chan
1681
+ Fixed #673: Zerigo DNS - update_host fails with some options. thanks Kevin Menard
1682
+ Fixed a filename. thanks Kevin Menard
1683
+ implement respond_to? corresponding to method_missing for VirtualBox and libvirt. thanks Konstantin Haase
1684
+ Swap aws_access_key_id and aws_secret_access_key positions in hash to match typical usage convention. thanks Kyle Drake
1685
+ When Exists boolean is not specified, this request is not idempotent. thanks Lance Carlson
1686
+ Scan sort of acts like a GET request, which are idempotent. thanks Lance Carlson
1687
+ 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
1688
+ Improved support for SecurityGroup IDs. thanks MaF
1689
+ We must create the VPC before we can create a security group in it. thanks MaF
1690
+ 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
1691
+ Check if exception has a #response method before calling it, otherwise call #message. thanks Manuel Meurer
1692
+ 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
1693
+ Updated excon to version ~>0.10.0. Closes #781. thanks Marc Seeger
1694
+ include fission gem. thanks Michael Brodhead & Shai Rosenfeld
1695
+ Move fission from reg dependency to dev dependency per comments on pull request #736. thanks Michael Brodhead & Shai Rosenfeld
1696
+ adding required gem to run the tests. thanks Ohad Levy
1697
+ first cut of cleaning up libvirt server class. thanks Ohad Levy
1698
+ minor cleanups. thanks Ohad Levy
1699
+ fixes libvirt wrong state check. thanks Ohad Levy
1700
+ libvirt - avoids exception if a uuid is not found. thanks Ohad Levy
1701
+ libvirt: servers return nil, not an empty array... thanks Ohad Levy
1702
+ Added basic tests to Ovirt compute provider. thanks Ohad Levy
1703
+ Added check if Fog.mock! should be used in AWS tests. thanks Paul Thornthwaite
1704
+ Nix hardcoded regions: DynamoDB. thanks Pavel Repin
1705
+ Nix hardcoded regions: Autoscaling. thanks Pavel Repin
1706
+ Nix hardcoded regions: CloudFormation. thanks Pavel Repin
1707
+ Nix hardcoded regions: CloudWatch. thanks Pavel Repin
1708
+ Nix hardcoded regions: EC2. thanks Pavel Repin
1709
+ Nix hardcoded regions: ElastiCache. thanks Pavel Repin
1710
+ Nix hardcoded regions: ELB. thanks Pavel Repin
1711
+ Nix hardcoded regions: EMR. thanks Pavel Repin
1712
+ Nix hardcoded regions: RDS. thanks Pavel Repin
1713
+ Nix hardcoded regions: SES. thanks Pavel Repin
1714
+ Nix hardcoded regions: SimpleDB. thanks Pavel Repin
1715
+ Nix hardcoded regions: SNS. thanks Pavel Repin
1716
+ Nix hardcoded regions: SQS (us-east-1 is special). thanks Pavel Repin
1717
+ Nix hardcoded regions: S3 (us-east-1 is special). thanks Pavel Repin
1718
+ Fixing typo "retreive" -> "retrieve". thanks Pedro Nascimento
1719
+ Add the ":idempotent => true" property to create_tags to fix an issue when launching many instance from cluster_chef. thanks Peter C. Norton
1720
+ Ran M-x align-regexp on the hashrockets. thanks Peter C. Norton
1721
+ Passing half of rds/instance_tests.rb shindo tests. thanks Rodrigo Estebanez
1722
+ making shindo tests for security groups in rds. thanks Rodrigo Estebanez
1723
+ Better rds/security_group_test. Mocking rds security_groups. thanks Rodrigo Estebanez
1724
+ Support for rds parameter groups mocking. thanks Rodrigo Estebanez
1725
+ [aws][auto_scaling] Bug fixed: configurations.get(launch-configuration) always shows the first element. thanks Rodrigo Estebanez
1726
+ it doesn't throw an error when the launch configuration doesnt exist. thanks Rodrigo Estebanez
1727
+ [aws][auto_scaling]. Support delete_launch_configuration mocking. thanks Rodrigo Estebanez
1728
+ Added PrivateIpAddress to the list of valid parameters for instance creation. thanks Rusty Geldmacher
1729
+ Add Ecloud version 2.8 as supported. thanks Shai Rosenfeld
1730
+ support alias records in the route53 models. thanks Thom May
1731
+ Remove unused comment / commented code. thanks Todd Willey
1732
+ Fix intial public_url when saving using rackspace_cdn_ssl = true. thanks Zachary Danger Campbell
1733
+ added virtual machine support and security group support. thanks bdorry
1734
+ merged in 0.11.0 release. thanks bdorry
1735
+ merged 1.0.0. thanks bdorry
1736
+ remove latest MVP from future possibilities. thanks geemus
1737
+ examples should use providers.values. thanks geemus
1738
+ fix Fog::Nullable::Boolean to include true/false. thanks geemus
1739
+ update fog.io copyright year. thanks geemus
1740
+ use path style access for https public_urls that include . to avoid certificate issues closes #743. thanks geemus
1741
+ fix AWS get_object_http(s)_url methods to properly use subdomain vs path urls as appropriate closes #611. thanks geemus
1742
+ loosen multi-json dependency closes #757. thanks geemus
1743
+ remove examples as they are not that helpful or well supported. thanks geemus
1744
+ bump excon dep closes #799. thanks geemus
1745
+ bump excon dep. thanks geemus
1746
+ strip ARNs - AWS is sensitive to leading and trailing whitespace/cr/lf. thanks hedgehog
1747
+ allow for bundler+rbenv best practice. thanks hedgehog
1748
+ Rackspace create_image request - pass all options. thanks kbockmanrs
1749
+ Add Blue Box location support. thanks leehuffman
1750
+ Update location UUID. thanks leehuffman
1751
+ Add passing tests. thanks leehuffman
1752
+ Fix location_id typo. thanks leehuffman
1753
+ Add Blue Box location support. thanks leehuffman
1754
+ Update location UUID. thanks leehuffman
1755
+ Add passing tests. thanks leehuffman
1756
+ Fix location_id typo. thanks leehuffman
1757
+
1758
+ [ninefold|storage]
1759
+ Add copy method to Ninefold::File. thanks Benjamin Manns
1760
+
1761
+ [oVirt]
1762
+ Fixed syntax error in ovirt parser. thanks Amos Benari
1763
+ 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
1764
+ added support for update vm on ovirt. thanks Amos Benari
1765
+ Added VM and Template network-interfaces crud. thanks Amos Benari
1766
+
1767
+ [ovirt|compute]
1768
+ #instance_variables returns Symbols in 1.9.2+. thanks Dan Peterson
1769
+
1770
+ [rackspace/compute]
1771
+ Add 30GB (30720) compute size. thanks Phil Kates
1772
+
1773
+ [rackspace|storage]
1774
+ Add copy_object request. thanks Benjamin Manns
1775
+ Add copy method to Rackspace::File. thanks Benjamin Manns
1776
+
1777
+ [slicehost]
1778
+ add deprecation warnings. thanks geemus
1779
+
1780
+ [storage]
1781
+ fixes for deprecated implicit block usage to excon requests. thanks geemus
1782
+ update get_object requests to use excon response_blocks. thanks geemus
1783
+
1784
+ [storage|test]
1785
+ Run storage tests on a file in a subdirectory. thanks Benjamin Manns
1786
+
1787
+ [storage|tests]
1788
+ Add copy method to storage tests. thanks Benjamin Manns
1789
+ Check that the copied file body matches the original file. thanks Benjamin Manns
1790
+
1791
+ [vcloud]
1792
+ mark mock tests pending. thanks geemus
1793
+
1794
+ [vcloud|compute]
1795
+ rather mock Fog::Vcloud::Connection as this is the right place to mock things. thanks Peter Meier
1796
+ improve models + additional tests. thanks Peter Meier
1797
+ add API version 1.5 compability. thanks Peter Meier
1798
+
1799
+ [vmfusion|compute]
1800
+ Sync fission v0.4.0 plus more. thanks Cody Herriges
1801
+
1802
+ [voxel]
1803
+ update ssl_verify_peer = false setting. thanks geemus
1804
+
1805
+ [vsphere]
1806
+ add to test skip list when lacking credentials. thanks geemus
1807
+
1808
+ [zerigo|dns]
1809
+ Fixed an issue with updating a record since the response body is an empty string, not nil. thanks Kevin Menard
1810
+ Fixed the parser. TTL and priority values can be nil and should not be coerced into integers in that case. thanks Kevin Menard
1811
+
1812
+
1813
+ 1.1.2 12/18/2011 c1873e37e76af83e9de3f3308f3baa0664dd8dc2
1814
+ =========================================================
1815
+
1816
+ Stats! { 'collaborators' => 20, 'downloads' => 351821, 'forks' => 332, 'open_issues' => 21, 'watchers' => 1731 }
1817
+
1818
+ MVP! Stepan G. Fedorov
1819
+
1820
+ [Brightbox]
1821
+ Fix zone_id/flavour_id getter/setter for Server. thanks Hemant Kumar
1822
+ Add zone/server_type attribute for Server. thanks Hemant Kumar
1823
+ Add username to Image. thanks Hemant Kumar
1824
+ Add request for remove_firewall_policy. thanks Hemant Kumar
1825
+ Add model method for remove. thanks Hemant Kumar
1826
+ Change logic of fetching zone and flavour_id. thanks Hemant Kumar
1827
+ Remove name as mandatory parameter for creating server group. thanks Hemant Kumar
1828
+ Add created_at attribute for server_group,policy and firewall rule. thanks Hemant Kumar
1829
+ Updated Image format tests for username. thanks Paul Thornthwaite
1830
+ Updated ServerGroup format for created_at time. thanks Paul Thornthwaite
1831
+
1832
+ [aws|autoscaling]
1833
+ allow sa-east-1 region in mocks. thanks Nick Osborn
1834
+
1835
+ [aws|compute]
1836
+ fix security_group format for mock tests. thanks geemus
1837
+
1838
+ [aws|dns]
1839
+ fix capitilization for records#all options. thanks geemus
1840
+
1841
+ [aws|elb]
1842
+ update SSL certificates on listeners. :christmas_tree:. thanks Dylan Egan
1843
+
1844
+ [aws|storage]
1845
+ Support ACL on copy_object. :v:. thanks Dylan Egan
1846
+
1847
+ [brightbox]
1848
+ Adding *_server actions to ServerGroup model. thanks Caius Durling
1849
+ Pass along server_groups when creating a server. thanks Caius Durling
1850
+ Make update_cloud_ip request work. thanks Caius Durling
1851
+ Firewall models. thanks Paul Thornthwaite
1852
+ Added missing requirement and request arg. thanks Paul Thornthwaite
1853
+ Corrected deprecated argument. thanks Paul Thornthwaite
1854
+ Dynamically select testing image. thanks Paul Thornthwaite
1855
+ Helper to get a test server ready. thanks Paul Thornthwaite
1856
+ Revised tests structure. thanks Paul Thornthwaite
1857
+ Test and fix for API client secret reset. thanks Paul Thornthwaite
1858
+ Test update of reverse DNS for CIP. thanks Paul Thornthwaite
1859
+ Updated default Ubuntu image. thanks Paul Thornthwaite
1860
+ Make Cloud IP model's map nicer to use. thanks Paul Thornthwaite
1861
+ Correctly get Server's IP addresses as strings. thanks Paul Thornthwaite
1862
+ ServerGroup association to Servers. thanks Paul Thornthwaite
1863
+ Replace duplicate remove with move test. thanks Paul Thornthwaite
1864
+ Load balancer request tests expanded. thanks Paul Thornthwaite
1865
+ Request test for snapshotting a server. thanks Paul Thornthwaite
1866
+ fix mock tests. thanks geemus
1867
+
1868
+ [clodo]
1869
+ : Added missing field. thanks NomadRain
1870
+ Some cleanup before pool request. thanks NomadRain
1871
+ add fake credentials for mock tests. thanks geemus
1872
+
1873
+ [clodo|compute]
1874
+ Bug fixes. thanks NomadRain
1875
+ I don't know what is ignore_awful_caching, so i removed it. thanks Stepan G Fedorov
1876
+ server.ssh with password. Not only with key. thanks Stepan G Fedorov
1877
+ Fix Mocks. thanks Stepan G Fedorov
1878
+ Enable get_image_details. thanks Stepan G Fedorov
1879
+ Actualize Mocks. thanks Stepan G. Fedorov
1880
+ Enable :get_image_details. thanks Stepan G. Fedorov
1881
+ Add tests. thanks Stepan G. Fedorov
1882
+ Remove ddosprotect field from Mock. thanks Stepan G. Fedorov
1883
+ Add ip-address management. thanks Stepan G. Fedorov
1884
+ Rename moveip to move_ip_address. thanks Stepan G. Fedorov
1885
+ Enable ip-management. thanks Stepan G. Fedorov
1886
+ Fix delete_server mock. thanks Stepan G. Fedorov
1887
+ Fix move_ip_address behaviour. thanks Stepan G. Fedorov
1888
+ Add ip-address management. thanks Stepan G. Fedorov
1889
+ Rename moveip to move_ip_address. thanks Stepan G. Fedorov
1890
+ Enable ip-management. thanks Stepan G. Fedorov
1891
+ Fix delete_server mock. thanks Stepan G. Fedorov
1892
+ Fix move_ip_address behaviour. thanks Stepan G. Fedorov
1893
+ Added missing field (server.type). thanks Обоев Рулон ибн Хаттаб
1894
+
1895
+ [core]
1896
+ Cast Fog.wait_for interval to float. thanks Aaron Suggs
1897
+ fix exceptions from nil credential value. thanks Blake Gentry
1898
+ `@credential` should always be a symbol. thanks Hunter Haugen
1899
+
1900
+ [docs]
1901
+ note in title that multiple keys is an EC2 thing. thanks geemus
1902
+
1903
+ [glesys|compute]
1904
+ fixed tests due to changes in the api. thanks Anton Lindström
1905
+ fix test formats and whitespaces. thanks Anton Lindström
1906
+
1907
+ [misc]
1908
+ parse SQS timestamps as milliseconds. thanks Andrew Bruce
1909
+ Allow use of sa-east-1 in the ec2 mock as well. thanks Andy Delcambre
1910
+ Enabled tests for setting S3 ACL by id and uri on buckets and objects when mocking. thanks Arvid Andersson
1911
+ Added acl_to_hash helper method to Fog::Storage::AWS. thanks Arvid Andersson
1912
+ Ensuring that get_object_acl and get_bucket_acl mock methods returns a hash representation of the ACL. thanks Arvid Andersson
1913
+ Created Rackspace LB models folder. thanks Brian Hartsock
1914
+ 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
1915
+ indentation change. thanks Eric Stonfer
1916
+ Add the ability to return the security group ID when requesting a SecurityGroupData object. thanks Eric Stonfer
1917
+ fix tests to accomodate the new SecurityGroupId. thanks Eric Stonfer
1918
+ Revert "fix tests to accomodate the new SecurityGroupId". thanks Eric Stonfer
1919
+ fix tests to accomodate the addition of security_group_id. thanks Eric Stonfer
1920
+ indentation fix. thanks Eric Stonfer
1921
+ indentation fix. thanks Eric Stonfer
1922
+ [Brightbox]Add remove_firewall_policy to computer.rb. thanks Hemant Kumar
1923
+ [Brightbox]Protocol is no longer required parameter for firewall. thanks Hemant Kumar
1924
+ Add implementation of DescribeInstanceStatus. thanks JD Huntington & Jason Hansen
1925
+ fixed type-o in rdoc on Fog::DNS:DNSMadeEasy. thanks John Dyer
1926
+ add query options to Fog::Storage::AWS#get_object_https_url. thanks Mateusz Juraszek
1927
+ 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
1928
+ add query param to get_object_http_url for consistency. thanks Mateusz Juraszek
1929
+ Fix regression in Rakefile introduced in 70e7ea13. thanks Michael Brodhead
1930
+ add são paulo/brasil region. thanks Raphael Costa
1931
+ mock create_db_instance. thanks Rodrigo Estebanez
1932
+ mocking describe_db_instance. Fix hash structure in create_db_instance. thanks Rodrigo Estebanez
1933
+ mocking delete_db_instance. thanks Rodrigo Estebanez
1934
+ mocking wait_for through describe_db_instances. thanks Rodrigo Estebanez
1935
+ mocking modify_db_instance and reboot_db_instance. thanks Rodrigo Estebanez
1936
+ raise exception instead of excon response. thanks Rodrigo Estebanez
1937
+ Fixing bug: It always showed the first instance when using get. thanks Rodrigo Estebanez
1938
+ Fixes for issues 616 and 617. thanks Sergio Rubio
1939
+ * remove unnecessary debugging. thanks Sergio Rubio
1940
+ * Add missing recognized :libvirt_ip_command. thanks Sergio Rubio
1941
+ * Add server_name environment variable to ip_command. thanks Sergio Rubio
1942
+ * implement :destroy_volumes in Server.destroy (libvirt provider). thanks Sergio Rubio
1943
+ Add documentation for using multiple ssh keys on AWS. thanks Sven Pfleiderer
1944
+ Update bootstrap description. thanks Sven Pfleiderer
1945
+ Escape underscore charakters. thanks Sven Pfleiderer
1946
+ implement STS support. thanks Thom May
1947
+ Allow use of session tokens in AWS Compute. thanks Thom May
1948
+ handle session tokens for SQS and SimpleDB. thanks Thom May
1949
+ Split [AWS|STS] tests into separate files per #609. thanks Thom May
1950
+ Bug fix, metric_statistic#save would always fail. thanks bmiller
1951
+ bump excon dep. thanks geemus
1952
+ bump excon dep. thanks geemus
1953
+ Fixing Rackspace's lack of integer-as-string support as per https://github.com/fog/fog/pull/657#issuecomment-3145337. thanks jimworm
1954
+ add current set of elasticache endpoints. thanks lostboy
1955
+ added sa-east-1 region. thanks thattommyhall
1956
+ Add clodo support. thanks Обоев Рулон ибн Хаттаб
1957
+ Enable clodo support. thanks Обоев Рулон ибн Хаттаб
1958
+
1959
+ [rackspace|dns]
1960
+ error state callbacks now return an error. thanks Brian Hartsock
1961
+ fixed broken test. thanks Brian Hartsock
1962
+ should recognize rackspace_dns_endpoint argument. thanks geemus
1963
+ record should pass priority. thanks geemus
1964
+ mark tests for models pending in mocked mode. thanks geemus
1965
+
1966
+ [rackspace|lb]
1967
+ Fixed bug #644 with HTTP health monitors. thanks Brian Hartsock
1968
+ fix for #650 - Connection logging now loads appropriately. thanks Brian Hartsock
1969
+ added error page requests. thanks Brian Hartsock
1970
+ Added error pages to the model. thanks Brian Hartsock
1971
+ Added list parameter for nodeddress. thanks Brian Hartsock
1972
+ fixed broken test; cleaned up some tests. thanks Brian Hartsock
1973
+
1974
+ [rackspace|load balancers]
1975
+ fixed broken tests. thanks Brian Hartsock
1976
+
1977
+ [rackspace|loadbalancers]
1978
+ Fixed bug in deleting multiple nodes. thanks Brian Hartsock
1979
+
1980
+ [slicehost|compute]
1981
+ update image id in tests. thanks geemus
1982
+
1983
+ [storm_on_demand]
1984
+ fixes for formats in tests. thanks geemus
1985
+
1986
+ [tests | clodo]
1987
+ Added ip-management tests. thanks Stepan G. Fedorov
1988
+ Added ip-management tests. thanks Stepan G. Fedorov
1989
+
1990
+ [tests | clodo ]
1991
+ ddosprotect field must not exist. thanks Stepan G. Fedorov
1992
+
1993
+ [tests | clodo | compute]
1994
+ Add most tests. thanks Stepan G Fedorov
1995
+ Add image tests. thanks Stepan G Fedorov
1996
+
1997
+ [tests | clodo | compute ]
1998
+ create_server - First try. thanks Stepan G Fedorov
1999
+
2000
+ [vcloud]
2001
+ mark tests pending in mocked mode. thanks geemus
2002
+
2003
+ [vcloud|compute]
2004
+ introduce organizations. thanks Peter Meier
2005
+ make networks working also in organizations. thanks Peter Meier
2006
+ remove server from organizations as they are within vApps of vDC. thanks Peter Meier
2007
+ add catalogs to an organization. thanks Peter Meier
2008
+ a vdc does not have a tasklist. thanks Peter Meier
2009
+ introduce vapps. thanks Peter Meier
2010
+ More work on getting server in a useable shape. thanks Peter Meier
2011
+ fix network to the minimum. thanks Peter Meier
2012
+ a vapp might not have any childrens attached. thanks Peter Meier
2013
+ improve models add tests. thanks Peter Meier
2014
+ improve disk info access. thanks Peter Meier
2015
+ improve network. thanks Peter Meier
2016
+ introduce link on a network to parent network. thanks Peter Meier
2017
+ fix an issue if this is not parsed as an array. thanks Peter Meier
2018
+ stopgap fix for test data files. thanks geemus
2019
+ properly namespace vcloud test to prevent breaking others. thanks geemus
2020
+
2021
+ [vsphere]
2022
+ (#10644) Add servers filter to improve clone performance. thanks Jeff McCune
2023
+ fix whitespace issue in yaml for mocks. thanks geemus
2024
+
2025
+
2026
+ 1.1.1 11/11/2011 a468aa9a3445aae4f496b1a51e26572b8379c3da
2027
+ =========================================================
2028
+
2029
+ Stats! { 'collaborators' => 19, 'downloads' => 300403, 'forks' => 300, 'open_issues' => 14, 'watchers' => 1667 }
2030
+
2031
+ [core]
2032
+ loosen net-ssh dependency to avoid chef conflict. thanks geemus
2033
+
2034
+ [misc]
2035
+ 1.1.0 changelog. thanks geemus
2036
+
2037
+
2038
+ 1.1.0 11/11/2011 b706c7ed66c2e760fdd6222e38c68768575483b2
2039
+ =========================================================
2040
+
2041
+ Stats! { 'collaborators' => 19, 'downloads' => 300383, 'forks' => 300, 'open_issues' => 16, 'watchers' => 1667 }
2042
+
2043
+ MVP! Michael Zeng
2044
+
2045
+ [Compute|Libvirt]
2046
+ Take into account a query string can be empty, different on some rubies it gives nil, on some empty string. thanks Patrick Debois
2047
+
2048
+ [OpenStack|compute]
2049
+ fix v2.0 auth endpoints. thanks Todd Willey
2050
+ default metadata to empy hash. thanks Todd Willey
2051
+ add zone awareness. thanks Todd Willey
2052
+
2053
+ [aws]
2054
+ add us-west-2 region. thanks geemus
2055
+
2056
+ [aws|cloud_watch]
2057
+ mark tests pending when mocked. thanks geemus
2058
+
2059
+ [aws|cloudwatch]
2060
+ Add support for put-metric-alarm call. thanks Jens Braeuer
2061
+ Remove duplicate RequestId from response. thanks Jens Braeuer
2062
+ Add mocked implementation of put_metric_alarm. thanks Jens Braeuer
2063
+ Fix whitespace. thanks Jens Braeuer
2064
+ Fix merge error. thanks Jens Braeuer
2065
+ Add mocked version of put_metric_alarm. thanks Jens Braeuer
2066
+
2067
+ [aws|compute]
2068
+ Mock modify_image_attribute add/remove users. thanks Dan Peterson
2069
+ Allow mock tagging to work across accounts. thanks Dan Peterson
2070
+ Fix new instance eventual consistency for the non-filtered case. thanks Dan Peterson
2071
+ Update security group operations. thanks Dan Peterson
2072
+ Test for more invalid security group request input when mocking. thanks Dan Peterson
2073
+ 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
2074
+ tags are reset when reloading. #570. thanks Dylan Egan
2075
+ fixed sopt_instance_request reply parsing when the original request contained a device mapping. thanks MaF
2076
+ wait_for reload then add server tags. thanks geemus
2077
+ spot request fixes. thanks geemus
2078
+ tweaks for spot request bootstrap. thanks geemus
2079
+ save tags for spot_requests#bootstrap. thanks geemus
2080
+ update ami for windows. thanks geemus
2081
+
2082
+ [aws|elb]
2083
+ Missed a change as part of #545. thanks Dan Peterson
2084
+ use a set union to register new instances. thanks Dylan Egan
2085
+ return only the instance IDs on describe. Use only available availability zones. :v:. thanks Dylan Egan
2086
+ attribute aliases for CanonicalHostedZoneName(ID). :v:. thanks Dylan Egan
2087
+ eventually consistent, like me getting a haircut. :v:. thanks Dylan Egan
2088
+
2089
+ [aws|emr]
2090
+ mark tests pending when mocked. thanks geemus
2091
+
2092
+ [aws|iam]
2093
+ slight cleanup and test with a certificate chain. :cake:. thanks Dylan Egan
2094
+
2095
+ [aws|mock]
2096
+ Dig into mock data instead of instantiating new service objects. thanks Dan Peterson
2097
+
2098
+ [aws|storage]
2099
+ ensure path isn't empty when specifying endpoint. thanks geemus
2100
+
2101
+ [brightbox]
2102
+ Fixed incorrect call to reset_ftp_password. thanks Paul Thornthwaite
2103
+
2104
+ [brightbox|compute]
2105
+ format fixes for tests. thanks geemus
2106
+
2107
+ [core]
2108
+ treat boolean values as a boolean. thanks Peter Meier
2109
+ fix attribute squashing with : in key. thanks Peter Meier
2110
+ all services should recognize :connection_options. thanks geemus
2111
+ separate loggers for deprecations/warnings. thanks geemus
2112
+ avoid duplicates in Fog.providers. thanks geemus
2113
+ more useful structure for Fog.providers. thanks geemus
2114
+ add newlines to logger messages. thanks geemus
2115
+ update stats raketask to point to org. thanks geemus
2116
+ toss out nil-value keys when checking required credentials. thanks geemus
2117
+
2118
+ [dns]
2119
+ Made model tests use uniq domain names. thanks Brian Hartsock
2120
+
2121
+ [dnsmadeeasy|dns]
2122
+ Fix Fog::DNS::DNSMadeEasy::Record#save to handle updating a record correctly. thanks Peter Weldon
2123
+
2124
+ [docs]
2125
+ update links to point to http://github.com/fog/fog. thanks geemus
2126
+
2127
+ [dynect|dns]
2128
+ Automatically poll jobs if we get them. Closes #575. thanks Dan Peterson
2129
+
2130
+ [misc]
2131
+ Change response parameter. thanks Alan Ivey
2132
+ Missing HEAD method. thanks Andrew Newman
2133
+ Missing HEAD method. thanks Andrew Newman
2134
+ Putting version back. thanks Andrew Newman
2135
+ Reformatting and making consistent with other classes. thanks Andrew Newman
2136
+ Missed renam to head_namespace. thanks Andrew Newman
2137
+ Reverting version and date in gemspec. thanks Andrew Newman
2138
+ Formatting. thanks Andrew Newman
2139
+ Removed puts of element name. thanks Arvid Andersson
2140
+ Changes to allow EMR control through fog. thanks Bob Briski
2141
+ Added EMR functions for AWS. thanks Bob Briski
2142
+ Adding tests. thanks Bob Briski
2143
+ merge EMR changes with upstream repo. thanks Bob Briski
2144
+ (#10055) Search vmFolder inventory vs children. thanks Carl Caum
2145
+ Adding a path attribute to the vm_mob_ref hash. thanks Carl Caum
2146
+ Cleanup Attributes#merge_attributes. thanks Hemant Kumar
2147
+ Update S3 doc example to show current API. thanks Jason Roelofs
2148
+ Restructure main website's navigation. thanks Jason Roelofs
2149
+ Add CloudFormation UpdateStack call. thanks Jason Roelofs
2150
+ Minor whitespace change. thanks Jens Braeuer
2151
+ Trailing whitespace cleanup. thanks Jens Braeuer
2152
+ Whitespace cleanup. thanks Jens Braeuer
2153
+ Fix merge error. thanks Jens Braeuer
2154
+ Removed statement about @geemus being only member of collaborators list since it's not true anymore. thanks John Wang
2155
+ Fixes Fog::AWS::Storage#put_(bucket|object)_acl. thanks Jonas Pfenniger
2156
+ Randomize bucket names in tests. thanks Jonas Pfenniger
2157
+ Fix AWS S3 bucket and object tests. thanks Jonas Pfenniger
2158
+ (#10570) Use nil in-place of missing attributes. thanks Kelsey Hightower
2159
+ (#10570) Update `Fog::Compute::Vsphere` tests. thanks Kelsey Hightower
2160
+ We use 'Key' for all S3 objects now. thanks Kevin Menard
2161
+ Implemented mocks for Zerigo. thanks Kevin Menard
2162
+ Updated docs to use newer arg, rather than the old deprecated one. thanks Kevin Menard
2163
+ Added the ability to search Zerigo records for a particular zone. thanks Kevin Menard
2164
+ Return the only element of the array, not the array itself. thanks Kevin Menard
2165
+ Fixed an issue whereby saving an existing record in Zerigo would nil out its value. thanks Kevin Menard
2166
+ added DeleteAlarms, DescribeAlarms and PutMetricAlarms. thanks Michael Zeng
2167
+ re-adding files. thanks Michael Zeng
2168
+ adding describe_alarm_history. thanks Michael Zeng
2169
+ adding diable/enable alarm actions. thanks Michael Zeng
2170
+ added DescribeAlarmHistory request and parser. thanks Michael Zeng
2171
+ fixing describe_alarms and describe_alarms_for_metric requests. thanks Michael Zeng
2172
+ cleaned up requesters and parsers. thanks Michael Zeng
2173
+ added SetAlarmState. thanks Michael Zeng
2174
+ included more response elements, request parameters should now be complete. Included model and collection classes. thanks Michael Zeng
2175
+ bug fixes. thanks Michael Zeng
2176
+ fixed models and added tests. thanks Michael Zeng
2177
+ no need to add rake dep. thanks Michael Zeng
2178
+ revert gempspec date change. thanks Michael Zeng
2179
+ reverting cloud_watch.rb. thanks Michael Zeng
2180
+ reverting cloud_watch.rb. thanks Michael Zeng
2181
+ reverting cloud_watch.rb. thanks Michael Zeng
2182
+ reverting cloud_watch.rb. thanks Michael Zeng
2183
+ reverting cloud_watch.rb. thanks Michael Zeng
2184
+ added newline to the end of file. thanks Michael Zeng
2185
+ removed all tabs. thanks Michael Zeng
2186
+ added alarm_data_tests. thanks Michael Zeng
2187
+ spacing change. thanks Michael Zeng
2188
+ AWS#hash_to_acl - add support for EmailAddress and URI grantee types. thanks Nathan Sutton
2189
+ Test and improve Fog::Storage::AWS.hash_to_acl. thanks Nathan Sutton
2190
+ Adding a method to unmock Fog. Addresses issue #594. thanks Nathan Sutton
2191
+ Adding documentation for Fog.unmock! and Fog::Mock.reset. thanks Nathan Sutton
2192
+ added linode ssh support. thanks Nicholas Ricketts
2193
+ added linode ssh support with proper public ip address. thanks Nicholas Ricketts
2194
+ cleaned up code to use att_XX methods. thanks Nicholas Ricketts
2195
+ clean up public_ip_address code for linode. thanks Nicholas Ricketts
2196
+ Seems like rackspace might have changed this. thanks Nik Wakelin
2197
+ Sends power parameter in GoGrid's grid_server_power request. thanks Pablo Baños López
2198
+ 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
2199
+ Did this do anything?. thanks Patrick McKenzie
2200
+ 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
2201
+ Not having the best of days with git. Revert the reversion of the commit that I really do want to make. thanks Patrick McKenzie
2202
+ 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
2203
+ Do not touch .gitignore. thanks Patrick McKenzie
2204
+ 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
2205
+ 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
2206
+ Allow updates of DNS records. Updates on zones not supported yet. thanks Patrick McKenzie
2207
+ 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
2208
+ Getting it so zone.records works as expected (loads all records, for that zone only). thanks Patrick McKenzie
2209
+ simplification. thanks Peter Meier
2210
+ Optimize vSphere convert_vm_mob_ref_to_attr_hash. thanks Rich Lane
2211
+ Compact the way options are mapped to request. thanks Todd Willey
2212
+ Allow setting userdata as plain ascii or b64. thanks Todd Willey
2213
+ bump excon dep. thanks geemus
2214
+ [rackspace][dns] fixes for job request format. thanks geemus
2215
+ bump net-ssh dependency. thanks geemus
2216
+ tshirt offer should be implicit, rather than explicit. thanks geemus
2217
+ add region option to aws sns service recognizes method. thanks lostboy
2218
+ add capabilities support to cloudformation createstack request. thanks lostboy
2219
+
2220
+ [ninefold|storage]
2221
+ omit signature in stringtosign. thanks geemus
2222
+ check objectid for existence. thanks geemus
2223
+ allow overwriting files for consistency. thanks geemus
2224
+
2225
+ [rackspace|dns]
2226
+ Fixed request tests that need unique domain name. thanks Brian Hartsock
2227
+ Adapted to changes in callback mechanism. thanks Brian Hartsock
2228
+
2229
+ [rackspace|load_balancers]
2230
+ made lb endpoint configurable. thanks Brian Hartsock
2231
+
2232
+ [release]
2233
+ omit Patrick Debois from future MVP status. thanks geemus
2234
+
2235
+ [vsphere|compute]
2236
+ test fixes. thanks geemus
2237
+
2238
+
2239
+ 1.0.0 09/29/2011 a81be08ef2473af91f16f4926e5b3dfa962a34ae
2240
+ =========================================================
2241
+
2242
+ Stats! { 'collaborators' => 16, 'downloads' => 245745, 'forks' => 260, 'open_issues' => 13, 'watchers' => 1521 }
2243
+
2244
+ MVP! Patrick Debois
2245
+
2246
+ [Libvirt]
2247
+ if transport is empty, ssh can't be enabled. thanks Patrick Debois
2248
+ 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
2249
+ corrected typo for appending string output to IO.popen. thanks Patrick Debois
2250
+ initialize the ip_address as an empty string. thanks Patrick Debois
2251
+ more specific error if the ip_command results in string that has no ip-address format. thanks Patrick Debois
2252
+ Remove the newlines after running the local ip_command. thanks Patrick Debois
2253
+ rename xml_desc to xml as an attribute and hide all non_dynamic attributes from fog console. thanks Patrick Debois
2254
+ added blocked state and corrected crashed to shutoff state. thanks Patrick Debois
2255
+ renamed 'raw' connection to raw in the Fog Connection. thanks Patrick Debois
2256
+
2257
+ [Libvirt|Compute]
2258
+ renamed all disk_ params for server creation to volume_ to make it consistent with the object type volume. thanks Patrick Debois
2259
+
2260
+ [aws]
2261
+ remove base64 require (duplicates require in fog/core). thanks geemus
2262
+
2263
+ [aws/sqs]
2264
+ Adding SQS mocking support. thanks Istvan Hoka
2265
+
2266
+ [aws|acs]
2267
+ Create ACS security_group model and collection. thanks Aaron Suggs
2268
+ Improve security group tests. thanks Aaron Suggs
2269
+ Adds ACS#delete_cache_security_group. thanks Benton Roberts
2270
+ Added security group methods. thanks Benton Roberts
2271
+ Update CacheSecurityGroup API to public beta 2011-07-15. thanks Benton Roberts
2272
+
2273
+ [aws|cloudwatch]
2274
+ Fix whitespace. thanks Jens Braeuer
2275
+
2276
+ [aws|compute]
2277
+ add snapshot method to volume model. thanks Andrei Serdeliuc
2278
+ Correct path. thanks Dylan Egan
2279
+ raise an ArgumentError if image_id is nil, otherwise an ugly InternalError is returned from AWS. thanks Dylan Egan
2280
+ wait for ready before testing tags. thanks geemus
2281
+ fixes for mocks tests. thanks geemus
2282
+ fix formatting for mock security groups. thanks geemus
2283
+
2284
+ [aws|dns]
2285
+ fix parser path. thanks geemus
2286
+
2287
+ [aws|elasticache]
2288
+ refactor acs->elasticache. thanks Benton Roberts
2289
+ refactor for whitespace / readability. thanks Benton Roberts
2290
+ fix typo in Elasticache Security Group tests. thanks Benton Roberts
2291
+ rename test file for shindo. thanks Benton Roberts
2292
+ create and describe cache clusters. thanks Benton Roberts
2293
+ delete cache clusters. thanks Benton Roberts
2294
+ add Cache Cluster model and collection. thanks Benton Roberts
2295
+ Fix bug in AWS::Elasticache::Cluster.get. thanks Benton Roberts
2296
+ randomize cache cluster IDs in testing. thanks Benton Roberts
2297
+ return nil on CacheClusterNotFound. thanks Benton Roberts
2298
+ use Formatador for testing output. thanks Benton Roberts
2299
+ move ClusterNotFound rescue code into Elasticache service definition. thanks Benton Roberts
2300
+ change method profile for create_cache_cluster, delete_cache_cluster, and describe_cache_clusters. thanks Benton Roberts
2301
+ change parameters for describe_cache_security_groups to ruby-friendly values. thanks Benton Roberts
2302
+ remove port attribute from cluster model. thanks Benton Roberts
2303
+ fix Elasticahce::Cluster.security_groups attribute. thanks Benton Roberts
2304
+ implement modify_cache_cluster request. thanks Benton Roberts
2305
+ cluster port number cannot be modified. thanks Benton Roberts
2306
+ add cache node info to describe_cache_clusters. thanks Benton Roberts
2307
+ add InvalidInstace error class. thanks Benton Roberts
2308
+ remove optional parameters from Elasticache::Cluster. thanks Benton Roberts
2309
+ show cluster node details by default in model. thanks Benton Roberts
2310
+ add test for removing a cache node. thanks Benton Roberts
2311
+ add pending_values to modified nodes. thanks Benton Roberts
2312
+ implement RebootCacheCluster. thanks Benton Roberts
2313
+ implement DescribeEvents. thanks Benton Roberts
2314
+ implement basic parameter group requests. thanks Benton Roberts
2315
+ implement describe_engine_default_parameters request. thanks Benton Roberts
2316
+ implement Elasticache::ParameterGroup model and collection. thanks Benton Roberts
2317
+ implement modify_cache_parameter_group request. thanks Benton Roberts
2318
+ implement reset_cache_parameter_group request. thanks Benton Roberts
2319
+ implement describe_cache_groups request. thanks Benton Roberts
2320
+ test fix: change DESCRIBE_SECURITY_GROUPS helper format. thanks Benton Roberts
2321
+ delete outdated test file. thanks Benton Roberts
2322
+
2323
+ [aws|elb]
2324
+ Raise a custom exception for Throttling. thanks Dylan Egan
2325
+ wait_for server to be ready? before register. thanks geemus
2326
+
2327
+ [aws|iam]
2328
+ implement correct path behaviour in mocking. thanks Dylan Egan
2329
+
2330
+ [aws|simpledb]
2331
+ fix tests to use proper accessor. thanks geemus
2332
+
2333
+ [aws|storage]
2334
+ fix acl mocking. thanks geemus
2335
+
2336
+ [bluebox|compute]
2337
+ Fixed instance state. thanks Lee Huffman
2338
+ Create and destroy images. thanks Lee Huffman
2339
+ Fix for setting hostname on server save. thanks Lee Huffman
2340
+ Expect correct status code for template create. thanks Lee Huffman
2341
+
2342
+ [cdn|aws]
2343
+ move aws cdn to its own shared area (namespacing should probably be corrected). thanks geemus
2344
+
2345
+ [cdn|rackspace]
2346
+ move rackspace cdn to its own shared area (namespacing should probably be corrected). thanks geemus
2347
+
2348
+ [compute]
2349
+ fix service calls I missed in recent rearrange. thanks geemus
2350
+
2351
+ [compute|aws]
2352
+ - Change modify_instance_attribute name to match EC2 API method, and actually make it do something. thanks Caleb Tennis
2353
+ Include ids of things we're modifying in requests. thanks Dan Peterson
2354
+ Fix create_volume mock when creating from a snapshot. thanks Dan Peterson
2355
+ Make get_bucket_location mock return LocationConstraint as API doc describes. thanks Dan Peterson
2356
+ Fix associate_address mock to detach/revert previous addresses properly. thanks Dan Peterson
2357
+ Don't warn in mock describe_snapshots if RestorableBy is 'self'. thanks Dan Peterson
2358
+ When mocking, instances don't show up right away. thanks Dan Peterson
2359
+ Suffix with _tests.rb. thanks Dylan Egan
2360
+ IpPermissionsEgress is returned from AWS. thanks Dylan Egan
2361
+ Simple test to verify revoke_group_and_owner behaviour. thanks Dylan Egan
2362
+ Apparently passing a nil value works against live AWS. Only use SourceSecurityGroupOwnerId in mocks if supplied. thanks Dylan Egan
2363
+ Since this is really proving the use of nil, let's just not pretend there's a value for owner_id. thanks Dylan Egan
2364
+ sometimes the platform string is returned. thanks Dylan Egan
2365
+ enable tests for mocked tags. thanks Dylan Egan
2366
+ Fix NameError. thanks Jens Braeuer
2367
+ Fix bug in tag mocking preventing servers from being updated with new tags. thanks Matt Griffin
2368
+ Add mocking for describe_tags. thanks Matt Griffin
2369
+ move aws compute to its own shared area (namespacing should probably be corrected). thanks geemus
2370
+
2371
+ [compute|bluebox]
2372
+ move bluebox compute to its own shared area (namespacing should probably be corrected). thanks geemus
2373
+
2374
+ [compute|brightbox]
2375
+ Allow persistent option to be passed to Brightbox::Compute. thanks Caius Durling
2376
+ Updated test for new behaviour. thanks Paul Thornthwaite
2377
+ Picking up more attributes from Account. thanks Paul Thornthwaite
2378
+ No need to hardcode a server type. thanks Paul Thornthwaite
2379
+ Updated and reordered model attributes. thanks Paul Thornthwaite
2380
+ Updates to tests. thanks Paul Thornthwaite
2381
+ Added resave warning to a few Brightbox models. thanks Paul Thornthwaite
2382
+ Requests for server group management. thanks Paul Thornthwaite
2383
+ Merge in test updates and server groups. thanks Paul Thornthwaite
2384
+ Corrected require missed in update. thanks Paul Thornthwaite
2385
+ Reset times to the correct type so not string attributes. thanks Paul Thornthwaite
2386
+ Updated Format test to remove gone fields. thanks Paul Thornthwaite
2387
+ Fixed typo in connection options. thanks Paul Thornthwaite
2388
+ Added missing requests. thanks Paul Thornthwaite
2389
+ Added requests for firewall management. thanks Paul Thornthwaite
2390
+ Added ServerGroup model and collections. thanks Paul Thornthwaite
2391
+ Passing options to server group update. thanks Paul Thornthwaite
2392
+ Fixed server_groups.get. thanks Paul Thornthwaite
2393
+ move brightbox compute to its own shared area (namespacing should probably be corrected). thanks geemus
2394
+
2395
+ [compute|ecloud]
2396
+ move ecloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
2397
+
2398
+ [compute|glesys]
2399
+ added glesys as provider. thanks Anton Lindstrom
2400
+ added tests. thanks Anton Lindström
2401
+ fixed logical error for default values. thanks Anton Lindström
2402
+ fixed an invalid character. thanks Anton Lindström
2403
+ consistency/cleanup. thanks geemus
2404
+ fix format for start vs stop. thanks geemus
2405
+ rearrange to match current naming conventions. thanks geemus
2406
+
2407
+ [compute|go_grid]
2408
+ move go_grid compute to its own shared area (namespacing should probably be corrected). thanks geemus
2409
+
2410
+ [compute|libvirt]
2411
+ merge jedi4ever/libvirt. thanks geemus
2412
+ move libvirt compute to its own shared area (namespacing should probably be corrected). thanks geemus
2413
+
2414
+ [compute|linode]
2415
+ move linode compute to its own shared area (namespacing should probably be corrected). thanks geemus
2416
+
2417
+ [compute|bare_metal_cloud]
2418
+ move bare_metal_cloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
2419
+
2420
+ [compute|ninefold]
2421
+ move ninefold compute to its own shared area (namespacing should probably be corrected). thanks geemus
2422
+
2423
+ [compute|rackspace]
2424
+ move rackspace compute to its own shared area (namespacing should probably be corrected). thanks geemus
2425
+
2426
+ [compute|slicehost]
2427
+ move slicehost compute to its own shared area (namespacing should probably be corrected). thanks geemus
2428
+
2429
+ [compute|storm_on_demand]
2430
+ move storm_on_demand compute to its own shared area (namespacing should probably be corrected). thanks geemus
2431
+
2432
+ [compute|vcloud]
2433
+ move vcloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
2434
+
2435
+ [compute|virtual_box]
2436
+ move virtual_box compute to its own shared area (namespacing should probably be corrected). thanks geemus
2437
+
2438
+ [compute|voxel]
2439
+ move voxel compute to its own shared area (namespacing should probably be corrected). thanks geemus
2440
+
2441
+ [core]
2442
+ Allow FOG_CREDENTIAL env variable for config. thanks Aaron Suggs
2443
+ add collection#destroy(identity). thanks geemus
2444
+ move openssl to more central location. thanks geemus
2445
+ first steps toward seperately requirable bits. thanks geemus
2446
+ move providers to lib/fog/. thanks geemus
2447
+ work toward separate requires. thanks geemus
2448
+ prototype logger. thanks geemus
2449
+ add get/set methods for logger channels. thanks geemus
2450
+ use logger throughout for warnings. thanks geemus
2451
+ coerce service credentials. thanks geemus
2452
+ delete nil valued keys from config. thanks geemus
2453
+ pass connection_options through service init. thanks geemus
2454
+ don't rely on bin stuff for service init in tests. thanks geemus
2455
+ dedup services listings. thanks geemus
2456
+ more convenient accessors. thanks geemus
2457
+ fixing more paths after rearrange. thanks geemus
2458
+ add credentials setter. thanks geemus
2459
+ make sure credentials tests properly reset after completion. thanks geemus
2460
+ bump excon dep. thanks geemus
2461
+ properly fix credentials tests. thanks geemus
2462
+ skip vmfusion in rake nuke. thanks geemus
2463
+ bump excon. thanks geemus
2464
+ kill dns stuff in nuke as well. thanks geemus
2465
+
2466
+ [dns]
2467
+ update dns constructor to match recent file moves. thanks geemus
2468
+
2469
+ [dns|aws]
2470
+ move aws dns to its own shared area (namespacing should probably be corrected). thanks geemus
2471
+
2472
+ [dns|bluebox]
2473
+ move bluebox dns to its own shared area (namespacing should probably be corrected). thanks geemus
2474
+
2475
+ [dns|dnsimple]
2476
+ move dnsimple dns to its own shared area (namespacing should probably be corrected). thanks geemus
2477
+
2478
+ [dns|dnsmadeeasy]
2479
+ move dnsmadeeasy dns to its own shared area (namespacing should probably be corrected). thanks geemus
2480
+
2481
+ [dns|dynect]
2482
+ move dynect dns to its own shared area (namespacing should probably be corrected). thanks geemus
2483
+
2484
+ [dns|linode]
2485
+ move linode dns to its own shared area (namespacing should probably be corrected). thanks geemus
2486
+
2487
+ [dns|rackspace]
2488
+ initial commit. thanks Brian Hartsock
2489
+ list_domains request. thanks Brian Hartsock
2490
+ added attributes to list_domains; refactored rackspace errors to be shared with load balancers. thanks Brian Hartsock
2491
+ move rackspace dns to its own shared area (namespacing should probably be corrected). thanks geemus
2492
+
2493
+ [dns|slicehost]
2494
+ move slicehost dns to its own shared area (namespacing should probably be corrected). thanks geemus
2495
+
2496
+ [dns|zerigo]
2497
+ move zerigo dns to its own shared area (namespacing should probably be corrected). thanks geemus
2498
+
2499
+ [doc]
2500
+ Added blogpost about libvirt into fog to the press page. thanks Patrick Debois
2501
+ corrected the link to the actual blogpost instead of the github markdown page :). thanks Patrick Debois
2502
+
2503
+ [docs]
2504
+ add note about ec2 default username. thanks geemus
2505
+
2506
+ [dynect|dns]
2507
+ use a string for now. #362 is open for accepting symbols in mocks. thanks Dylan Egan
2508
+ return the zone name. thanks Dylan Egan
2509
+ accidentally hardcoded the record type in the mocked data. thanks Dylan Egan
2510
+ support ANY record results. thanks Dylan Egan
2511
+ Don't use address as different records have different arguments, just send rdata. Remove value. Add CNAME test. thanks Dylan Egan
2512
+ find, not first. thanks Dylan Egan
2513
+ always ensure it's an integer. thanks Dylan Egan
2514
+ retry if auth_token was previously set and error message includes possible login expiration. thanks Dylan Egan
2515
+ support reauth for inactivity logout too. thanks Dylan Egan
2516
+
2517
+ [glesys|compute]
2518
+ fixes to play nice with mock tests. thanks geemus
2519
+ skip flavor tests. thanks geemus
2520
+
2521
+ [gleysys]
2522
+ fixes for mocked test setup. thanks geemus
2523
+
2524
+ [libvirt]
2525
+ Added option libvirt_ip_command to the credentials error page. thanks Patrick Debois
2526
+ Corrected template variable from interface_nat_network to network_nat_network. thanks Patrick Debois
2527
+
2528
+ [linode|compute]
2529
+ update format for plans. thanks geemus
2530
+
2531
+ [load balancer|rackspace]
2532
+ fixed some minor bugs i noticed in the tests. thanks Brian Hartsock
2533
+
2534
+ [misc]
2535
+ Fixed a couple of errors in the examples. thanks Bobby Wilson
2536
+ 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
2537
+ Add create_image to server model. thanks Dan Prince
2538
+ Add support for non-strict validations, and nullable arrays/hashes. thanks Dan Prince
2539
+ Additions and updates to the OpenStack API tests. thanks Dan Prince
2540
+ Beginning of Dynect::DNS mocking support. thanks Dylan Egan
2541
+ get_record, single. thanks Dylan Egan
2542
+ Tidy up a bit. thanks Dylan Egan
2543
+ Support freeze and thaw. thanks Dylan Egan
2544
+ sleep for 3 seconds when running against Dynect because otherwise there is an operation still in progress. thanks Dylan Egan
2545
+ raise a NotFound if not found. thanks Dylan Egan
2546
+ Fog::DNS::Dynect, not Fog::Dynect::DNS. thanks Dylan Egan
2547
+ InstanceId should have index according to AWS Docs. thanks E.J. Finneran
2548
+ fix indenting to get markdown to recognise the code block properly. thanks Glenn Tweedie
2549
+ Better URL escaping for Rackspace Cloud Files. thanks H. Wade Minter
2550
+ Tweak to escape the Cloud Files filename before passing to public_url. thanks H. Wade Minter
2551
+ Put escaping logic into the collection get_url call. thanks H. Wade Minter
2552
+ (#9241) Add skeleton VMware vSphere platform support. thanks Jeff McCune
2553
+ (#9241) Add SSL verification. thanks Jeff McCune
2554
+ (#9241) Add current_time request. thanks Jeff McCune
2555
+ (#9241) Add model for Fog::Compute[:vsphere].servers. thanks Jeff McCune
2556
+ (#9241) Add test skeleton framework. thanks Jeff McCune
2557
+ (#9241) Add ability to find VMs by UUID. thanks Jeff McCune
2558
+ (#9421) Add start, stop, reboot server model methods. thanks Jeff McCune
2559
+ (#9241) Add destroy API request and model action. thanks Jeff McCune
2560
+ (#9241) Add find_template_by_instance_uuid request. thanks Jeff McCune
2561
+ (#9241) Add vm_clone API request. thanks Jeff McCune
2562
+ (#9241) Don't fail when trying to model a cloning VM. thanks Jeff McCune
2563
+ (#9241) Make the reload action of the server models work. thanks Jeff McCune
2564
+ (#9124) Add ability to reload the model of a cloning VM. thanks Jeff McCune
2565
+ Refactor requests to return simple hashes and add unit tests. thanks Jeff McCune
2566
+ Add vsphere_server connection attribute. thanks Jeff McCune
2567
+ Fix vm clone problem when a Guid instance is passed as the instance_uuid. thanks Jeff McCune
2568
+ Fix documentation. The resulting hash has no entry "PutScalingPolicyResponse", but a "...Result". thanks Jens Braeuer
2569
+ Pass hostname to create_block request if provided. thanks Lee Huffman
2570
+ Added Fog::CurrentMachine#ip_address. thanks Pan Thomakos
2571
+ First cut at libvirt integration. Lots of features missing, but it proves the point. thanks Patrick Debois
2572
+ - 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
2573
+ - Get all pools now by name or by uuid - Create pool by providing xml - Destroy pool. thanks Patrick Debois
2574
+ 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
2575
+ Allow creation of persistent or non persistent volumes. thanks Patrick Debois
2576
+ Again major breakthrough. thanks Patrick Debois
2577
+ Coming along nicely. thanks Patrick Debois
2578
+ - 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
2579
+ 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
2580
+ fixing whitespace. thanks Patrick Debois
2581
+ removed trailing spaces. thanks Patrick Debois
2582
+ indenting the files. thanks Patrick Debois
2583
+ check ip-address that returned from the search in the logfile. thanks Patrick Debois
2584
+ 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
2585
+ renamed ipaddress to ip_address made the .id available and an alias to uuid for server. thanks Patrick Debois
2586
+ Added description on the libvirt environment can be initialized and the requirements for ssh and ipaddress to work. thanks Patrick Debois
2587
+ 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
2588
+ 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
2589
+ Removed the template_options param. thanks Patrick Debois
2590
+ Fixed disk_format_type vs disk_type_format difference and changed disk_format_type in the template as well. thanks Patrick Debois
2591
+ added openauth support thanks to @rubiojr. thanks Patrick Debois
2592
+ changed return code of state to string instead of symbols to be consistent with aws provider. thanks Patrick Debois
2593
+ - 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
2594
+ Added a way to filter the active and the defined servers(domains) using - servers.all(:active => false, :defined=> true). thanks Patrick Debois
2595
+ Fixed empty filter issue, nil filter. thanks Patrick Debois
2596
+ * 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
2597
+ Added libvirt options to credentials error. thanks Patrick Debois
2598
+ Made libvirt username param consistent with other providers libvirt_user -> libvirt_username. thanks Patrick Debois
2599
+ [Libvirt] Provided better solution for ip_command : use shell variable instead of ruby string for mac-address. thanks Patrick Debois
2600
+ vmfusion provider , requires the fission gem (pull request pending). thanks Patrick Debois
2601
+ fixed missing disk-> volume conversion. thanks Patrick Debois
2602
+ another log entry style resused old ethernet. thanks Patrick Debois
2603
+ Fix warning about whitespace before parentheses in dns.rb. thanks Rick Bradley
2604
+ Added support fo canned ACLs in put_object_acl. thanks dblock
2605
+ Updated put_bucket_acl to support canned ACLs. thanks dblock
2606
+ Marking as pending. thanks dblock
2607
+ Refactored specs, mocks, etc. thanks dblock
2608
+ Revert "[core] make sure credentials tests properly reset after completion". thanks geemus
2609
+ Update gemspec description to mention popular services that are supported. thanks watsonian
2610
+
2611
+ [ninefold|compute]
2612
+ fixes for list formats. thanks geemus
2613
+ fix for network formats. thanks geemus
2614
+ add default (ubuntu) image for servers. thanks geemus
2615
+
2616
+ [rackspace|dns]
2617
+ all important domains requests. thanks Brian Hartsock
2618
+ zone models. thanks Brian Hartsock
2619
+ records requests. thanks Brian Hartsock
2620
+ record models. thanks Brian Hartsock
2621
+ minor docs update. thanks Brian Hartsock
2622
+ add mock initializer. thanks geemus
2623
+ consistency fixes and tests and mark pending in mocked. thanks geemus
2624
+ fix mock init to play nice with tests. thanks geemus
2625
+ fixes for updates to beta. thanks geemus
2626
+
2627
+ [rackspace|load_balancers]
2628
+ fix path for tests. thanks geemus
2629
+ fixes for tests. thanks geemus
2630
+
2631
+ [rackspace|storage]
2632
+ fix broken model paths. thanks geemus
2633
+
2634
+ [release]
2635
+ update MVP skip list. thanks geemus
2636
+ add collaborator count to changelog stats. thanks geemus
2637
+
2638
+ [storage]
2639
+ Fixed what appeared to be broken test (I only verified with Rackspace provider). thanks Brian Hartsock
2640
+
2641
+ [storage|aws]
2642
+ Add options to File#copy method. thanks Aaron Suggs
2643
+ move aws storage back with other aws stuff (namespacing should probably be recorrected as well). thanks geemus
2644
+
2645
+ [storage|google]
2646
+ move google storage to shared google stuff (namespacing should probably be corrected). thanks geemus
2647
+
2648
+ [storage|local]
2649
+ move local storage to its own shared area (namespacing should probably be corrected). thanks geemus
2650
+
2651
+ [storage|ninefold]
2652
+ move ninefold storage to its own shared area (namespacing should probably be corrected). thanks geemus
2653
+ use Fog::HMAC. thanks geemus
2654
+
2655
+ [storage|rackspace]
2656
+ Fixed NotFound namespace. thanks Grégory Karékinian
2657
+ move rackspace storage to its own shared area (namespacing should probably be corrected). thanks geemus
2658
+
2659
+ [tests]
2660
+ rearrange to match new lib structure. thanks geemus
2661
+ mark not implemented mocks as pending. thanks geemus
2662
+ more helpful formats helper errors. thanks geemus
2663
+
2664
+ [vmfusion|compute]
2665
+ fixed destroy function. thanks Patrick Debois
2666
+ reworked structure as will be released in 0.4.0a. thanks Patrick Debois
2667
+
2668
+ [vsphere|compute]
2669
+ mark test requiring guid pending, as require can not be found. thanks geemus
2670
+ remove unnecessary mocha require. thanks geemus
2671
+
2672
+
2673
+ 0.11.0 08/18/2011 73bcee507a4732e071c58d85793b7f307eb377dc
2674
+ ==========================================================
2675
+
2676
+ Stats! { 'downloads' => 202791, 'forks' => 237, 'open_issues' => 20, 'watchers' => 1427 }
2677
+
2678
+ MVP! Brian Hartsock
2679
+
2680
+ [aws|cdn]
2681
+ Added commands for streaming distribution lists. thanks Christopher Oliver
2682
+
2683
+ [aws|compute]
2684
+ describe security groups parser was not taking into account ipPermissionsEgress and therefore returning unexpected results when the account had VPC groups. thanks Christopher Oliver
2685
+ Added missing 'platform' attribute to server model and describe instances request. thanks Christopher Oliver
2686
+
2687
+ [aws|iam]
2688
+ fix 'Path' handling for get_group response. thanks Nick Osborn
2689
+ add missing update_server_certificate request. thanks Nick Osborn
2690
+
2691
+ [aws|rds]
2692
+ Allow string or symbol hash keys. thanks Aaron Suggs
2693
+
2694
+ [aws|s3]
2695
+ 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
2696
+ policy should be base64 encoded and not contain new lines. thanks Fujimura Daisuke
2697
+ Require 'multi_json' was lucked. thanks Fujimura Daisuke
2698
+
2699
+ [compute]
2700
+ add server base class to contain shared stuff (scp/ssh). thanks geemus
2701
+
2702
+ [compute|aws]
2703
+ Whitespace removal. thanks Dylan Egan
2704
+ Allow image mocks to support state (except failed). thanks Dylan Egan
2705
+ fix pluralization of modify_image_attribute. thanks geemus
2706
+ update modify image/snapshot attribute to match latest API. thanks geemus
2707
+ add modify_image_attribute. thanks geemus
2708
+ add support for saving assigned tags at server creation time. thanks geemus
2709
+ add docs for new options on run_instances. thanks geemus
2710
+ guard tag creation against empty tag set. thanks geemus
2711
+ fixes for bootstrap and placing attributes json. thanks geemus
2712
+ identity not needed for setup. thanks geemus
2713
+ fix for running nice with mocked test run. thanks geemus
2714
+
2715
+ [compute|brightbox]
2716
+ Updated test for new expected response from server. thanks Paul Thornthwaite
2717
+ Updated Account format test to allow valid_credit_card flag. thanks Paul Thornthwaite
2718
+ Added IPv6 address to format now it is exposed to API. thanks Paul Thornthwaite
2719
+ DRY up request method. thanks Paul Thornthwaite
2720
+ Corrected attribute name. thanks Paul Thornthwaite
2721
+
2722
+ [compute|voxel]
2723
+ position in format is string, not integer. thanks geemus
2724
+
2725
+ [dns]
2726
+ dry generate_unique_domain to tests helper. thanks geemus
2727
+
2728
+ [dns|dynect]
2729
+ cleanup of initial implementation. thanks geemus
2730
+ fixes to play nice with mocked test runs. thanks geemus
2731
+
2732
+ [dns|zerigo]
2733
+ add host/port/scheme to recognizes. thanks geemus
2734
+
2735
+ [docs]
2736
+ add task to build/publish supported services matrix. thanks geemus
2737
+ alphasort doc tasks. thanks geemus
2738
+
2739
+ [misc]
2740
+ 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
2741
+ - 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
2742
+ Fix issue 464, add howto for European Rackspace cloud. thanks Andre Meij
2743
+ Initial support for adding/deleting a load balancer (requests only). thanks Brian Hartsock
2744
+ Complete lifecycle for a load balancer. thanks Brian Hartsock
2745
+ Improved error handling. thanks Brian Hartsock
2746
+ Model and collection for load balancers. thanks Brian Hartsock
2747
+ Fixed issues with loading all LB params. thanks Brian Hartsock
2748
+ Requests for nodes. thanks Brian Hartsock
2749
+ Rackspace Load Balancers: model classes for nodes. thanks Brian Hartsock
2750
+ Rackspace Load Balancers: requests for virtual ips. thanks Brian Hartsock
2751
+ Added virtual IP models. thanks Brian Hartsock
2752
+ Rackspace LB: Made some updates from the pull request. thanks Brian Hartsock
2753
+ Rackspace LB: protocols, algorithms, and connection logging. thanks Brian Hartsock
2754
+ Added access list requests. thanks Brian Hartsock
2755
+ Rackspace LB: Added session persistence requests. thanks Brian Hartsock
2756
+ Rackspace LB: Connection throttling requests. thanks Brian Hartsock
2757
+ Rackspace LB: Fixed issues with connection logging model. thanks Brian Hartsock
2758
+ Rackspace LB: Health Monitor requests. thanks Brian Hartsock
2759
+ Rackspace LB: account usage request. thanks Brian Hartsock
2760
+ Rackspace LB: Load Balancer Usage requests. thanks Brian Hartsock
2761
+ Rackspace LB: Added model capabilities for a lot of additional actions. thanks Brian Hartsock
2762
+ Rackspace LB: models for access lists. thanks Brian Hartsock
2763
+ Rackspace LB: account usage call. thanks Brian Hartsock
2764
+ Rackspace LB: Refactoring and cleanup. thanks Brian Hartsock
2765
+ register_image mocking support. thanks Dylan Egan
2766
+ Remove GENTOO_AMI. thanks Dylan Egan
2767
+ Store it under the ID, not the name. thanks Dylan Egan
2768
+ Allow tag filtering for images. thanks Dylan Egan
2769
+ Set imageOwnerAlias to self. Not 100% on this, but it will allow you to search for images with 'owner-alias' => 'self'. thanks Dylan Egan
2770
+ Back to using Owner. A couple of tests for it too. thanks Dylan Egan
2771
+ Added support for delimiter option in Fog::Storage::AWS::Mock object. thanks Erik Terpstra
2772
+ Link to EBS snapshots blog post. thanks Gavin Sandie
2773
+ Add force stop functionality to AWS Instance. thanks John Ferlito
2774
+ * 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
2775
+ * Fix VirtualBox in compute case statement. thanks Mark A. Miller
2776
+ Update to the latest VirtualBox gem while we're at it for good measure. thanks Mark A. Miller
2777
+ add dynect DNS provider with session request implemented. thanks Michael Hale
2778
+ add dynect provider and cleanup extra requires. thanks Michael Hale
2779
+ enable mocking for dynect. thanks Michael Hale
2780
+ parse session request and fix mock for tests. thanks Michael Hale
2781
+ whoops forgot to add these files. thanks Michael Hale
2782
+ temporary rake task for convenient testing. thanks Michael Hale
2783
+ include /REST in all requests. thanks Michael Hale
2784
+ change API-Token to Auth-Token. thanks Michael Hale
2785
+ add zone request. thanks Michael Hale
2786
+ fix API-Token in mock session request. thanks Michael Hale
2787
+ always run both mock and non-mock tests. thanks Michael Hale
2788
+ parse the list of zones returned. thanks Michael Hale
2789
+ require builder in dynect. thanks Michael Hale
2790
+ WIP: add stub model classes. thanks Michael Hale
2791
+ tests passing. thanks Michael Hale
2792
+ rename zone request to zones. thanks Michael Hale
2793
+ add zone request to show information for a single zone. thanks Michael Hale
2794
+ hook up zones model. thanks Michael Hale
2795
+ hook up zones.get. thanks Michael Hale
2796
+ dynect: add a bunch of stuff: node_list, list_any_records, handle 307 job redirect,. thanks Michael Hale
2797
+ dynect: nicer filter api for records. thanks Michael Hale
2798
+ Escape source object name when copying. thanks Pratik Naik
2799
+ provide #providers for shared services. thanks geemus
2800
+
2801
+ [rackspace|load balancers]
2802
+ fixed broken tests. thanks Brian Hartsock
2803
+
2804
+ [rackspace|load_balancers]
2805
+ fixes to play nice with mock test runs. thanks geemus
2806
+ fix typo in tests. thanks geemus
2807
+
2808
+ [rackspace|loadbalancers]
2809
+ cleanup. thanks geemus
2810
+
2811
+ [release]
2812
+ add newest MVP to changelog task MVP omit list. thanks geemus
2813
+ add stats to changelog. thanks geemus
2814
+ remove un-needed rebuild of gem. thanks geemus
2815
+
2816
+ [storage]
2817
+ fix deprecated get_url usage. thanks geemus
2818
+
2819
+ [storage|aws]
2820
+ simplify region accessor. thanks geemus
2821
+
2822
+ [storage|ninefold]
2823
+ remove debug output. thanks geemus
2824
+
2825
+ [tests]
2826
+ non-destructively generate id for get('fake') == nil tests. thanks geemus
2827
+
2828
+
2829
+ 0.10.0 07/25/2011 9ca8cffc000c417a792235438c12855a277fe1ce
2830
+ ==========================================================
2831
+
2832
+ MVPs! Christopher Oliver, Dylan Egan and Henry Addison
2833
+
2834
+ [AWS Autoscaling]
2835
+ Fixed typo in put scaling policy request. thanks Christopher Oliver
2836
+ Fixed error in describe policies parser. thanks Christopher Oliver
2837
+ Got describe policies returning correctly. thanks Christopher Oliver
2838
+ Removed unnecessary options merge in Delete Policy request. thanks Christopher Oliver
2839
+
2840
+ [AWS IAM]
2841
+ Added Alias related functionality to IAM. Also added get_group_policy. thanks Christopher Oliver
2842
+ Added missing request file for list account aliases. thanks Christopher Oliver
2843
+
2844
+ [AWS RDS]
2845
+ 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
2846
+ Added LicenseModel to the db_parser. thanks Christopher Oliver
2847
+
2848
+ [AWS|ELB]
2849
+ fix bug that was causing availability zones to not parse properly on get/reload. thanks Blake Gentry
2850
+ default values for Listeners. thanks Blake Gentry
2851
+ offload Listener defaults to the Listener model. thanks Blake Gentry
2852
+
2853
+ [AWS|SNS]
2854
+ flesh out basics. thanks geemus
2855
+
2856
+ [AWS|SQS]
2857
+ flesh out basics. thanks geemus
2858
+
2859
+ [aws|auto_scaling]
2860
+ implement 2010-08-01 API. thanks Nick Osborn
2861
+
2862
+ [aws|autoscaling]
2863
+ metrics#get should return nil when not found. thanks geemus
2864
+ mark unimplemented/unsupported tests as pending. thanks geemus
2865
+
2866
+ [aws|cloudwatch]
2867
+ mark overly specific test as pending. thanks geemus
2868
+
2869
+ [aws|compute]
2870
+ improve model and tests. thanks Nick Osborn
2871
+
2872
+ [aws|elb]
2873
+ add test to verify that ListenerDescriptions work when creating an ELB. thanks Blake Gentry
2874
+ make describe_load_balancers parse SSLCertificateId. Verify with test. thanks Blake Gentry
2875
+ Raise proper IAM error for CertificateNotFound when creating an ELB or creating Listeners. thanks Blake Gentry
2876
+ move ELB error handling related to certs to the ELB service instead of duplicating at the request level. thanks Blake Gentry
2877
+ use slurp when raising errors to properly capture exception details. thanks Blake Gentry
2878
+ Add set_load_balancer_listener_ssl_certificate. thanks James Miller
2879
+ fix listener defaults to use merge_attributes and therefore aliases. thanks geemus
2880
+
2881
+ [aws|iam]
2882
+ add error handling for common failures resulting from upload_server_certificate. thanks Blake Gentry
2883
+ fix superclass mismatch. thanks Blake Gentry
2884
+ add get_server_certificate request. thanks Blake Gentry
2885
+ raise correct ValidationError when an empty cert or key is used. thanks Blake Gentry
2886
+ Simplify error handling code for errors with custom classes. thanks Blake Gentry
2887
+ raise EntityAlreadyExists when creating a duplicate cert name. thanks Blake Gentry
2888
+ tests and mocks to support many types of key/cert issues. thanks Blake Gentry
2889
+ add proper error messages. thanks Blake Gentry
2890
+ fix expected error result from login_profile_tests. thanks geemus
2891
+
2892
+ [aws|rds]
2893
+ add LicenseModel to format. thanks geemus
2894
+
2895
+ [aws|simpledb]
2896
+ provide for using ConsistentRead on get_attributes and select. thanks geemus
2897
+ fix get_attributes mock deprecation. thanks geemus
2898
+
2899
+ [compute]
2900
+ fix stormondemand namespace mismatch. thanks geemus
2901
+
2902
+ [compute|aws]
2903
+ cluster compute placement group implementation. thanks geemus
2904
+ add request level support for spot instances. thanks geemus
2905
+ fix describe_instances parser to get group ids correctly. thanks geemus
2906
+ fix compute accessor in tests. thanks geemus
2907
+
2908
+ [compute|bluebox]
2909
+ fixes for ip accessor usage. thanks geemus
2910
+
2911
+ [compute|brightbox]
2912
+ Fixed typo in deprecation warning. thanks Paul Thornthwaite
2913
+ Fixed deprecated use of Brightbox[:compute] to new Compute[:brightbox]. thanks Paul Thornthwaite
2914
+ New preference exposed in API added to format test. thanks Paul Thornthwaite
2915
+
2916
+ [compute|ninefold]
2917
+ add default serviceofferingid (flavor). thanks geemus
2918
+ fix zone format. thanks geemus
2919
+ small consistency fixes for server. thanks geemus
2920
+
2921
+ [compute|rackspace]
2922
+ fix for token expiry/reauth. thanks geemus
2923
+
2924
+ [compute|virtualbox]
2925
+ backwards compatibility for gem availability check. thanks geemus
2926
+
2927
+ [compute|voxel]
2928
+ fix server format. thanks geemus
2929
+
2930
+ [core]
2931
+ avoid ArgumentError with Ruby 1.8.5 on CentOS. thanks Nick Osborn
2932
+ fix to_date_header to use self.utc instead of self.class.now.utc. thanks geemus
2933
+ avoid ||= in timeout lookup. thanks geemus
2934
+
2935
+ [docs]
2936
+ update index to use non-deprecated service accessor. thanks geemus
2937
+
2938
+ [misc]
2939
+ Fix ::AWS[] syntax that's only valid in Fog tests when bin/aws.rb is loaded. thanks Blake Gentry
2940
+ Typos. thanks Blake Gentry
2941
+ Require json needed for both Real and Mock implementation of Rackspace; SSH commands in Mock just print to command line. thanks Brian Hartsock
2942
+ Revert "Require json needed for both Real and Mock implementation of Rackspace; SSH commands in Mock just print to command line". thanks Brian Hartsock
2943
+ require json for rackspace compute mock. thanks Brian Hartsock
2944
+ Fixed #444 - Unable to squash kvp with false values. thanks Brian Hartsock
2945
+ Fix make OpenStack swift working properly. thanks Chmouel Boudjnah
2946
+ Move the timeout to Mock and stop hardcoding. thanks Christopher Meiklejohn
2947
+ Fix failures in the simpledb testing due to attribute array option deprecation. thanks Christopher Meiklejohn
2948
+ Guard against item_name not being a valid key. thanks Christopher Meiklejohn
2949
+ Switch to the has_key? syntax for cleanliness. thanks Christopher Meiklejohn
2950
+ Move timeout up to Fog from Fog::Mock. thanks Christopher Meiklejohn
2951
+ Fix deprecation messages. thanks Claudio Poli
2952
+ Make Rails' respond_with play nice with to_json. thanks Claudio Poli
2953
+ Use multi_json gem. thanks Claudio Poli
2954
+ Public API for force_detach on Fog::Compute::AWS::Volume. thanks Dylan Egan
2955
+ Should actually use the attachment_aliases hash. thanks Dylan Egan
2956
+ server method for Fog::Compute::AWS::Volume to easily get the server instance. thanks Dylan Egan
2957
+ requires_one, allows you to require at least one of the specified attributes. thanks Dylan Egan
2958
+ Remove pending on iam/server_certificate_tests. Start the mocking. thanks Dylan Egan
2959
+ list_server_certificates and delete_server_certificates. thanks Dylan Egan
2960
+ Yes, yes it is better. thanks Dylan Egan
2961
+ Start ELB mocks. Support create_load_balancer and describe_load_balancers. thanks Dylan Egan
2962
+ configure_health_check and create_app_cookie_stickiness_policy. thanks Dylan Egan
2963
+ create_lb_cookie_stickiness_policy and delete_load_balancer_policy. thanks Dylan Egan
2964
+ create_load_balancer_listeneners and set_load_balancer_policies_of_listener. thanks Dylan Egan
2965
+ delete_load_balancer_listeners and delete_load_balancer (with two more tests). thanks Dylan Egan
2966
+ 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
2967
+ Remove requirement of basic parsers. thanks Dylan Egan
2968
+ Move things around a bit. Separate ELB test file per concerns. thanks Dylan Egan
2969
+ SSL for ELB mocking. thanks Dylan Egan
2970
+ Tested against AWS. Needed this. Apparently SSLCertificateId == Arn. thanks Dylan Egan
2971
+ Use available availability_zones. thanks Dylan Egan
2972
+ Wait for volume to be ready again. thanks Dylan Egan
2973
+ AWS instance tests 100% against real. thanks Dylan Egan
2974
+ Make stuff pending if you're mocking. Need to fix spot_price_history_tests, see comment. thanks Dylan Egan
2975
+ Let's just sleep forever. thanks Dylan Egan
2976
+ Reinstate ipAddress and privateIpAddress as they're provided for non-terminated instances. thanks Dylan Egan
2977
+ Reinstate ramdiskId. thanks Dylan Egan
2978
+ Revert "Reinstate ramdiskId." - fuckit! Seems like AWS doesn't return ramdiskId for. thanks Dylan Egan
2979
+ Clean up timeout and add tests. thanks Dylan Egan
2980
+ Quick fix, ith != i. thanks Dylan Egan
2981
+ Begin work on mocking reserved instances. Provide describe_reserved_instances_offerings for mocking and real. REAL TALK. thanks Dylan Egan
2982
+ reserved_instances mocking. I think, it's hard to test against a real AWS account since it costs money. thanks Dylan Egan
2983
+ Default to 1. thanks Dylan Egan
2984
+ add spot instance request models. thanks Edward Middleton
2985
+ fixed spot_requests. thanks Edward Middleton
2986
+ spot instance fixes. thanks Edward Middleton
2987
+ cloud_watch toplevel. thanks Frederick Cheung
2988
+ add get/put/list metrics. thanks Frederick Cheung
2989
+ Corrected a couple of syntax errors in the put and get metric cloudwatch requests. thanks Henry Addison
2990
+ Fixed the parser for list metrics cloudwatch request. thanks Henry Addison
2991
+ Added first test of successful list metrics. thanks Henry Addison
2992
+ simplified a bit the long case statement in end element in list_metrics parser. thanks Henry Addison
2993
+ added a few more cloudwatch request metric tests. thanks Henry Addison
2994
+ added metrics collection and model for cloudwatch with all and get methods. thanks Henry Addison
2995
+ split out and got passing get metric statistics request tests. thanks Henry Addison
2996
+ Added metric statistics model and collection. thanks Henry Addison
2997
+ removed old test file. thanks Henry Addison
2998
+ removed empty test for for metric model (nothing to test at the moment). thanks Henry Addison
2999
+ removed unnecessary attributes from metrics collection (naughty copy and pasting). thanks Henry Addison
3000
+ got put_metric_data request working and tested. thanks Henry Addison
3001
+ added model and collection methods and tests to allow putting of metric data. thanks Henry Addison
3002
+ renamed argument for all method in cloud watch metric_statistics from filters to conditions as filters has a meaning in fog. thanks Henry Addison
3003
+ added a conditions method to all metrics method to help filter all metrics. thanks Henry Addison
3004
+ Added some defaults for StartTime, EndTime and Period to model for MetricStatistics. thanks Henry Addison
3005
+ Begin SQS support. thanks Jon Crosby
3006
+ Continued SQS support. thanks Jon Crosby
3007
+ Add SQS get_queue_attributes. thanks Jon Crosby
3008
+ Fix rubygems warning. thanks Jonas Pfenniger
3009
+ Patch for AWS S3 Metadata problem. thanks Kenji Kabashima
3010
+ Changed number of cores reported for rackspace flavors in order to match current rackspace documentation. thanks Steven Danna
3011
+ Checking path for nil. thanks Timothy Klim
3012
+ Fixed escaping in Fog::AWS.escape. thanks croaker
3013
+ Changed the encoding of the space character. thanks croaker
3014
+ rebuild gemfile during release to include updated changelog. thanks geemus
3015
+ bump excon dep. thanks geemus
3016
+ loosen dependencies to avoid conflicts. thanks geemus
3017
+ bump formatador dep. thanks geemus
3018
+ to_json calls to use MultiJson. thanks geemus
3019
+ make collection class_eval more consistent. thanks geemus
3020
+ update gem deps to latest/greatest. thanks geemus
3021
+ Return nil if HOME is non-absolute. Fixes #397. thanks jc00ke
3022
+ Fix a bunch of paths. thanks phiggins
3023
+ Start of SNS. thanks phiggins
3024
+ Working ListUsers for SNS. thanks phiggins
3025
+ Remove copied-and-pasted documentation. thanks phiggins
3026
+ Add SNS's get_topic_attributes command. thanks phiggins
3027
+ SNS ListSubscriptions. thanks phiggins
3028
+ SNS ListSubscriptionsByTopic. thanks phiggins
3029
+ SNS CreateTopic and DeleteTopic. thanks phiggins
3030
+ SNS Publish. thanks phiggins
3031
+ SNS AddPermission. thanks phiggins
3032
+ SNS RemovePermission. thanks phiggins
3033
+ SNS SetTopicAttributes. thanks phiggins
3034
+ SNS Subscribe. thanks phiggins
3035
+ SNS ConfirmSubscription and Unsubscribe. thanks phiggins
3036
+ Add sns to fog bin. thanks phiggins
3037
+ Start SNS tests. thanks phiggins
3038
+
3039
+ [ninefold|storage]
3040
+ Framework + request method for Ninefold storage. thanks Lincoln Stoll
3041
+ Directories Functionality. thanks Lincoln Stoll
3042
+ Nested directories. thanks Lincoln Stoll
3043
+ File operations. thanks Lincoln Stoll
3044
+ Update an existing file. thanks Lincoln Stoll
3045
+ set content type correctly. thanks Lincoln Stoll
3046
+
3047
+ [release]
3048
+ add mvps and fix fog.io uploader. thanks geemus
3049
+ remove problematic pbcopy from changelog rake task. thanks geemus
3050
+ make changelog build separate from release. thanks geemus
3051
+
3052
+ [storage]
3053
+ provide http/https options for signed urls. thanks geemus
3054
+
3055
+ [storage|aws]
3056
+ properly format modified headers in get_object. thanks geemus
3057
+ fix escaping for file#public_url. thanks geemus
3058
+
3059
+ [storage|google]
3060
+ fix get_object_https_url namespace copy/paste error. thanks geemus
3061
+
3062
+ [storage|ninefold]
3063
+ fix file#destroy and test cleanup. thanks geemus
3064
+
3065
+ [storage|rackspace]
3066
+ add large object support via put_object_manifest. thanks geemus
3067
+ cleanup formatting/style. thanks geemus
3068
+
3069
+ [tests]
3070
+ make unimplemented mock tests pending. thanks geemus
3071
+ fix collection helper to play nice with numeric ids. thanks geemus
3072
+ replace letters with letters and numbers with numbers in collection#get failure test. thanks geemus
3073
+
3074
+ [vcloud|compute]
3075
+ create server now takes :catalog_items_uri as an option. thanks Kunal Parikh
3076
+ now referencing catalog_item_uri from options. thanks Kunal Parikh
3077
+ saving server attributes (uncommented code). thanks Kunal Parikh
3078
+ Revert "saving server attributes (uncommented code)". thanks Kunal Parikh
3079
+ duplicate ecloud code for vcloud, remove obvious terremark specific code. thanks Lincoln Stoll
3080
+ update catalog models for 1.0. thanks Lincoln Stoll
3081
+ make auth work. thanks Lincoln Stoll
3082
+ filter non-server items from server list. thanks Lincoln Stoll
3083
+ update for 1.0 functionality, server operations working. thanks Lincoln Stoll
3084
+ use correct power status ID for 'off'. thanks Lincoln Stoll
3085
+ allow specifying a default VDC uri as 'vcloud_default_vdc'. thanks Lincoln Stoll
3086
+ Add description field to server model. thanks Lincoln Stoll
3087
+ Correct friendly status power off check. thanks Lincoln Stoll
3088
+ correct hardware attribute reading. thanks Lincoln Stoll
3089
+ no longer possible to specify memory & cpu on vapp creation. thanks Lincoln Stoll
3090
+ remove outdated/invalid mocking & specs. thanks Lincoln Stoll
3091
+ fix deleting servers. thanks Lincoln Stoll
3092
+ server creation outside of VDC. thanks Lincoln Stoll
3093
+ undeploy request. thanks Lincoln Stoll
3094
+ memory reconfiguration. thanks Lincoln Stoll
3095
+ make status/ready handling more reliable. thanks Lincoln Stoll
3096
+ server tests. thanks Lincoln Stoll
3097
+ only require template name for tests. thanks Lincoln Stoll
3098
+ add and remove disks. thanks Lincoln Stoll
3099
+ ruby 1.8 compatibility. thanks Lincoln Stoll
3100
+ fix error messages in test helper. thanks Lincoln Stoll
3101
+ Fix setting of description. thanks Lincoln Stoll
3102
+ method to find catalog item by name across all catalogs. thanks Lincoln Stoll
3103
+ correct provider lookup. thanks Lincoln Stoll
3104
+
3105
+
3106
+ 0.9.0 06/24/2011 32960d165a65f12d41785f924e6b6b6d8442516a
3107
+ =========================================================
3108
+
3109
+ MVPs! Lincoln Stoll and Luqman Amjad
3110
+
3111
+ [aws]
3112
+ use AWS.escape instead of CGI.escape. thanks geemus
3113
+
3114
+ [aws|compute]
3115
+ Use #public_ip_address instead of deprecated #ip_address in Server#setup. thanks Martin Emde
3116
+ mock: make address detach others before associating. thanks geemus
3117
+
3118
+ [aws|elb]
3119
+ 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
3120
+ Update ELB API to version 2011-04-05. thanks Blake Gentry
3121
+ Fix typo in usage documentation and add 'ap-northeast-1' to regions list. thanks Blake Gentry
3122
+ Rearrange DescribeLoadBalancersResult contents to alphabetical order to match the official AWS docs and make it easier to update the list. thanks Blake Gentry
3123
+ Add new attributes for 2011-04-05 API. thanks Blake Gentry
3124
+
3125
+ [aws|rds]
3126
+ Add parameter group tests. thanks Aaron Suggs
3127
+ Add server model & collection tests. thanks Aaron Suggs
3128
+ Add security_groups collection and model tests. thanks Aaron Suggs
3129
+ Server#destroy argument is optional. thanks Aaron Suggs
3130
+ Refactor RDS model & collection tests. thanks Aaron Suggs
3131
+
3132
+ [aws|simpledb]
3133
+ recognize :region option in SimpleDB.new(). thanks Nick Osborn
3134
+
3135
+ [aws|storage]
3136
+ Add get/put bucket policy support. thanks Michael Linderman
3137
+ Add options argument to delete_object to set headers. thanks Michael Linderman
3138
+ Add delete bucket policy. thanks Michael Linderman
3139
+ discern between no file and no directory for files.get. thanks geemus
3140
+ fix error type for non-directories in files.get. thanks geemus
3141
+
3142
+ [brightbox|compute]
3143
+ Added missing Image#compatibility_mode attribute. thanks Paul Thornthwaite
3144
+ Fixed Format of Account representation. thanks Paul Thornthwaite
3145
+ Fixed Format of nested CloudIP's server attribute. thanks Paul Thornthwaite
3146
+ New account limits exposed in API, updating format test. thanks Paul Thornthwaite
3147
+ ApiClient revoked time exposed in API. Updated format test. thanks Paul Thornthwaite
3148
+
3149
+ [cdn]
3150
+ refactor provider/service namespacing. thanks geemus
3151
+ fix top level class/module mismatch. thanks geemus
3152
+
3153
+ [compute]
3154
+ first pass at examples. thanks geemus
3155
+ refactor provider/service namespacing. thanks geemus
3156
+ fixes/skips to get examples working. thanks geemus
3157
+
3158
+ [compute|aws]
3159
+ fix helpers to use Fog::AWS. thanks geemus
3160
+ simplify describe_instances parser. thanks geemus
3161
+ fix deprecated compute service accessor usage. thanks geemus
3162
+ improve consistency of waiting for ssh to be ready. thanks geemus
3163
+ remove debug output from last commit. thanks geemus
3164
+
3165
+ [compute|bluebox]
3166
+ fix format and template id in tests. thanks geemus
3167
+
3168
+ [compute|brightbox]
3169
+ Fixed missed lookup in broken tests caused by namespace rename. thanks Paul Thornthwaite
3170
+
3171
+ [compute|ecloud]
3172
+ fix namespace leftovers. thanks geemus
3173
+
3174
+ [compute|ninefold]
3175
+ test cleanup. thanks geemus
3176
+
3177
+ [compute|rackspace]
3178
+ fix nil check for auth token. thanks geemus
3179
+
3180
+ [compute|stormondemand]
3181
+ fix namespace issue. thanks geemus
3182
+
3183
+ [compute|voxel]
3184
+ fix flavor tests to properly skip voxel. thanks geemus
3185
+ fix namespace issue. thanks geemus
3186
+
3187
+ [core]
3188
+ add namespaced errors for better messaging. thanks geemus
3189
+ making collection.new error more idiomatic. thanks geemus
3190
+ fix mock reset to work with new namespaces. thanks geemus
3191
+
3192
+ [dns]
3193
+ rename ip to value for record. thanks geemus
3194
+ refactor provider/service namespacing. thanks geemus
3195
+
3196
+ [dns|dnsmadeeasy]
3197
+ skip model/collection tests for now (timing issue). thanks geemus
3198
+
3199
+ [dns|examples]
3200
+ fix deprecated record#ip= usage. thanks geemus
3201
+
3202
+ [dns|zerigo]
3203
+ fixes for namespacing. thanks geemus
3204
+ namespace related fixes. thanks geemus
3205
+
3206
+ [docs]
3207
+ main index redirects to /latest. thanks geemus
3208
+ fix rdoc link on index. thanks geemus
3209
+ update to match refactorings. thanks geemus
3210
+
3211
+ [examples]
3212
+ fix descriptions. thanks geemus
3213
+
3214
+ [linode|compute]
3215
+ mark format test for stackscripts pending due to inconsistency of string/float for a value. thanks geemus
3216
+
3217
+ [misc]
3218
+ add braces for new into the documents. thanks Chris Mague
3219
+ use correct variable name in test description. thanks Dr Nic Williams
3220
+ Not sure if I'm missing something here, but rake did not work. thanks Dylan Egan
3221
+ You only need either the size or the snapshot_id. thanks Dylan Egan
3222
+ Provide mocked console output if server has been up for over the delay time. thanks Dylan Egan
3223
+ LIES!. thanks Dylan Egan
3224
+ Add support for specifying a CDN CNAME when getting a Rackspace Cloud Files directory. thanks H. Wade Minter
3225
+ add missing comma. thanks Joseph Anthony Pasquale Holsten
3226
+ skip rackspace get_object test when mocking. thanks Joseph Anthony Pasquale Holsten
3227
+ give a more useful error if someone tries to say connection.directories.create('dir'). thanks Joseph Anthony Pasquale Holsten
3228
+ Added my blog post. thanks Larry Wright
3229
+ Add recursive argument to server scp methods. Set to false by default. thanks Luke Robins
3230
+ Add an options hash to scp. Set to {} by default. thanks Luke Robins
3231
+ Added new DNS provider => DNS Made Easy. thanks Luqman Amjad
3232
+ Removed sandbox url for DNS Made Easy. thanks Luqman Amjad
3233
+ Added missing method "delete all domains". thanks Luqman Amjad
3234
+ (DNSMadeEasy) added support for updating records via PUT. thanks Luqman Amjad
3235
+ Added missing reference to delete_all_domains. thanks Luqman Amjad
3236
+ Rescue 404 when fetching zone. thanks Luqman Amjad
3237
+ Added new blog posting about fog and Carrierwave. thanks Mike Gehard
3238
+ Edited docs/about/press.markdown via GitHub. thanks Mike Gehard
3239
+ Typo fix. thanks Oge Nnadi
3240
+ Fixed Fog::AWS::SimpleDB#delete_attributes. thanks Pan Thomakos
3241
+ add Net::SCP options parameter to Fog::SCP proxy. thanks Phil Cohen
3242
+ use a hash not nil for default scp_options. thanks Phil Cohen
3243
+ rackspace auth url only prepend protocol as needed. thanks Todd Willey
3244
+ Allow auth tokens to be shared among connections to rackspace api. thanks Todd Willey
3245
+ OpenStack responds 200 when creating servers. thanks Todd Willey
3246
+ added 0.8.2 changelog contents. thanks geemus
3247
+ separate fog.io and rdoc tasks. thanks geemus
3248
+ remove provider attribute from shared services. thanks geemus
3249
+ [storage][aws] fix leftover namespace mismatch. thanks geemus
3250
+ [storage][google] fix leftover namespace mismatch. thanks geemus
3251
+ Edited lib/fog/storage/rackspace.rb via GitHub. thanks kbockmanrs
3252
+
3253
+ [ninefold|compute]
3254
+ Boilerplate for ninefold. thanks Lincoln Stoll
3255
+ Ninefold List Functionality. thanks Lincoln Stoll
3256
+ VM Operations + dependencies. thanks Lincoln Stoll
3257
+ Fix data formats for virtual machines. thanks Lincoln Stoll
3258
+ IP Address requests. thanks Lincoln Stoll
3259
+ Refactor out job waiting functionality, test correct data. thanks Lincoln Stoll
3260
+ NAT functionality. thanks Lincoln Stoll
3261
+ Core model functionality. thanks Lincoln Stoll
3262
+ Public IPs and Rules. thanks Lincoln Stoll
3263
+ use lowest network ID as default, correct assignment. thanks Lincoln Stoll
3264
+ No mocks, simplify code. thanks Lincoln Stoll
3265
+ Save operations not supported. thanks Lincoln Stoll
3266
+
3267
+ [rake]
3268
+ add examples back into default rake task. thanks geemus
3269
+
3270
+ [release]
3271
+ update changelog during release process. thanks geemus
3272
+
3273
+ [storage]
3274
+ refactor provider/service namespacing. thanks geemus
3275
+
3276
+ [storage|aws]
3277
+ more robust query handling for signed url. thanks geemus
3278
+ make url a bit more robust. thanks geemus
3279
+ fix url to check for query. thanks geemus
3280
+ fix whitespace errors. thanks geemus
3281
+ more precise mocked get_object. thanks geemus
3282
+
3283
+ [storage|rackspace]
3284
+ fix files#get_url. thanks geemus
3285
+
3286
+ [tests]
3287
+ add dnsmadeeasy and ninefold to mock credentials. thanks geemus
3288
+ nuke rake task for test related cleanup. thanks geemus
3289
+ make collection gsub to find nils a bit more resilient/unique. thanks geemus
3290
+ trying again to make collection gsub to get nils more resilient/unique. thanks geemus
3291
+
3292
+
3293
+ 0.8.2 05/26/2011 9e6ebb6f7316273eb489f8cb60eb1642e6df357b
3294
+ =========================================================
3295
+
3296
+ MVP! nightshade427
3297
+
3298
+ [aws|compute]
3299
+ better region/zone handling for mocks. thanks geemus
3300
+ indentation fix for last commit. thanks geemus
3301
+ add class level reset for Fog::AWS::Compute::Mock. thanks geemus
3302
+ make mock delay comparison >= so that delay 0 will work properly. thanks geemus
3303
+ respect security zone choice in mocked run_instances closes #314. thanks geemus
3304
+ respect key_name in mocked run_instances. thanks geemus
3305
+ fix instance format in tests. thanks geemus
3306
+
3307
+ [brightbox|compute]
3308
+ fix format for account in tests. thanks geemus
3309
+
3310
+ [compute]
3311
+ Test server reloading. thanks Aaron Suggs
3312
+ consistency in #state call and mock test fixes. thanks geemus
3313
+
3314
+ [compute|aws]
3315
+ Fix server tests. thanks Aaron Suggs
3316
+ Mock get_password_data request. thanks Aaron Suggs
3317
+ Fix default region when mocking. thanks Aaron Suggs
3318
+ Better key_pair tests. thanks Aaron Suggs
3319
+ Make volumes format more flexible. thanks Aaron Suggs
3320
+
3321
+ [core]
3322
+ Fixed credential tests. thanks Aaron Suggs
3323
+ Fix responds_to test helper. thanks Aaron Suggs
3324
+ omit Release commits from changelog. thanks geemus
3325
+ put changelog in clipboard to finish release. thanks geemus
3326
+ more consistent redirector for fog.io. thanks geemus
3327
+ create Fog.available_providers for bin rather than overriding Fog.providers. thanks geemus
3328
+
3329
+ [dnsimple|dns]
3330
+ add dnsimple_url param to facilitate using https://test.dnsimple.com closes #323. thanks geemus
3331
+
3332
+ [docs]
3333
+ first pass at compute doc. thanks geemus
3334
+ update version in header/layout. thanks geemus
3335
+ also build/deploy rdocs. thanks geemus
3336
+ make fog.io/latest/foo link to newest versioned docs. thanks geemus
3337
+
3338
+ [ecloud]
3339
+ mark bin specs pending unless credentials provided closes #325. thanks geemus
3340
+
3341
+ [local|storage]
3342
+ fixes for pending mocked tests. thanks geemus
3343
+
3344
+ [misc]
3345
+ Flatten list of security groups. thanks Dan Peterson
3346
+ Added an example of the head method. thanks Larry Wright
3347
+ Clarified my example. thanks Larry Wright
3348
+ Add a link to fog's Rubydocs. thanks Mathias Meyer
3349
+ :size should be a number in GB, not an instance size (e.g. t1.micro). thanks Michael Conigliaro
3350
+ tests. thanks Nicholas Ricketts
3351
+ added rdoc comments. thanks Nicholas Ricketts
3352
+ Add Amazon API reference link to requests' documentation. thanks Peter Weldon
3353
+ Add reset method to mock classes. thanks anomalousthought
3354
+ Add a reset method to Fog::Mock that resets all providers/services. thanks anomalousthought
3355
+ Add reset method to other providers in addition to Compute providers. thanks anomalousthought
3356
+ Add a reset method to Fog::Mock that resets all providers/services in addition to Compute providers. thanks anomalousthought
3357
+ Public key results are cached, avoid a bug by using that cache. thanks bigfleet
3358
+ 0.8.1 changelog. thanks geemus
3359
+ messy first pass at parallelization of testing. thanks geemus
3360
+ fix deprecated rdoc rake tasks. thanks geemus
3361
+ add mvp suggestion to changelog task. thanks geemus
3362
+ started linode models. thanks nightshade427
3363
+ added images models. thanks nightshade427
3364
+ added kernel modes. thanks nightshade427
3365
+ added datacenters models. thanks nightshade427
3366
+ server provisioning completed. thanks nightshade427
3367
+ server creation and deletion working. thanks nightshade427
3368
+ generalize code. thanks nightshade427
3369
+ creating via stackscripts with callbacks working. thanks nightshade427
3370
+ added shutdown, reboot, boot. thanks nightshade427
3371
+ made config private. thanks nightshade427
3372
+ tests passing. thanks nightshade427
3373
+ revert tests to proper error codes, waiting on fix from linode to support correct error codes. thanks nightshade427
3374
+ code cleanup, tests passing. thanks nightshade427
3375
+ more passing tests. thanks nightshade427
3376
+ more test passing. thanks nightshade427
3377
+ more test passing. thanks nightshade427
3378
+ more test passing. thanks nightshade427
3379
+ more test passing. thanks nightshade427
3380
+ more test passing. thanks nightshade427
3381
+
3382
+ [mock]
3383
+ fix Fog::Mock.reset. thanks Dan Peterson
3384
+ error sooner for completely unimplemented services. thanks geemus
3385
+ cleanup and reset related fixes. thanks geemus
3386
+
3387
+ [rackspace|compute]
3388
+ make mocks respect Fog::Mock.delay. thanks geemus
3389
+
3390
+ [storage]
3391
+ fix/consolidate content-length for utf8. thanks geemus
3392
+
3393
+ [tests]
3394
+ add additional fake credentials for mocked tests. thanks geemus
3395
+
3396
+ [voxel|compute]
3397
+ fix format for servers in tests. thanks geemus
3398
+
3399
+
3400
+ 0.8.1 05/13/2011 3a452347a396f0ad1fea7f5475fb3c349b10f527
3401
+ =========================================================
3402
+
3403
+ [aws|compute]
3404
+ less confusing explanation comment. thanks geemus
3405
+
3406
+ [compute|aws]
3407
+ Fix describe_instances filtering. thanks ktheory
3408
+ Add get_password_data request. thanks ktheory
3409
+
3410
+ [core]
3411
+ Add test for Fog::Parsers::Base. thanks ktheory
3412
+ handle busted ENV['HOME']. thanks pfalcone closes #301. thanks geemus
3413
+ update fog.io in release task. thanks geemus
3414
+ add hash to changelog. thanks geemus
3415
+ work toward automating changelog. thanks geemus
3416
+
3417
+ 0.8.0 05/12/2011 27bf76d1f881bec0f900cd11d5c2a10dce4856ca
3418
+ =========================================================
3419
+
3420
+ MVP! ktheory
3421
+
3422
+ [aws|cloudformation] tests sleep to avoid throttling error :(
3423
+
3424
+ [aws|elb]
3425
+ Add tests for create, describe, and delete. thanks ktheory
3426
+ Fix Policies in describe_load_balancers parser. thanks ktheory
3427
+ Stub out missing requests. thanks ktheory
3428
+ Add configure_health_check request. thanks ktheory
3429
+ Add support for creating and deleting listeners. thanks ktheory
3430
+ Add requests for creating cookie policies. thanks ktheory
3431
+ Add request ELB#delete_load_balancer_policy. thanks ktheory
3432
+ Add request ELB#set_load_balancer_policies_of_listener. thanks ktheory
3433
+ Create a model and collection for load_balancers. thanks ktheory
3434
+ Create Policies collection and model. thanks ktheory
3435
+ Create Listeners collection and model. thanks ktheory
3436
+ Remove redundant NotFound error class. thanks ktheory
3437
+ reorg model files for consistency
3438
+
3439
+ [aws|iam]
3440
+ Added server certificate tests. thanks ktheory
3441
+ Parse server certificate UploadDate. thanks ktheory
3442
+ Add list_server_certificates request. thanks ktheory
3443
+ fix test description for update_login_profile
3444
+
3445
+ [aws|rds]
3446
+ Fix exception for missing DB security groups. thanks ktheory
3447
+ Remove redundant NotFound class. thanks ktheory
3448
+ Improve instance tests. thanks ktheory
3449
+ reorg model files for consistency
3450
+ change status waits for more consistent testing
3451
+
3452
+ [aws|ses]
3453
+ fix format of Destinations in send_raw_email and correct doc. thanks jhawthorne
3454
+ Make specifying Destinations for send_raw_email work and match amazon docs. thanks jhawthorne
3455
+ fix indent in doc. thanks jhawthorne
3456
+
3457
+ [aws|simpledb]
3458
+ correction for item and attribute counters in encode_batch_attributes. thanks joshounapoli
3459
+ 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
3460
+ Correction to the regular expression for unreserved characters. thanks joshounapoli
3461
+ 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
3462
+
3463
+ [compute]
3464
+ default to Ubuntu 10.04 LTS 64bit for image id
3465
+ [aws]
3466
+ Fix server tests. thanks ktheory
3467
+ Fixes trailing whitespace in attributes. thanks ktheory
3468
+ Fix & improve some tests. thanks ktheory
3469
+ Use default AMI in tests. thanks ktheory
3470
+ Add failing tests for keypair parsing. thanks ktheory
3471
+ Add different availability zones for each region to the mock. thanks smerritt
3472
+ Update docs for Compute::Real#initialize to include ap-* regions. thanks smerritt
3473
+ change default flavor to t1.micro (so it will be 64-bit)
3474
+ use old style, more consistent call to get single instance
3475
+ fix console output format in tests
3476
+ [bluebox]
3477
+ Adding lb_applications, lb_services, lb_backends attributes to the model. thanks cparades
3478
+ Adding in a few more tests for LB's. thanks cparades
3479
+ Rolling back change. thanks cparades
3480
+ Added in some data for testing. thanks cparades
3481
+ Fixed typo in Bluebox test. thanks tokengeek
3482
+ don't use a lb_application I don't own in tests
3483
+ [brightbox]
3484
+ Updated Image identifiers to match latest available Ubuntu Lucid 10.04 LTS 64bit image. thanks tokengeek
3485
+ [ecloud]
3486
+ 1.9.2 compat, String#[] doesn't return nil as we expected. thanks dpiddy
3487
+ [stormondemand]
3488
+ Implement Stormondemand API. thanks seeingidog
3489
+ cleanup
3490
+ fixes for tests
3491
+ [voxel]
3492
+ Prevent voxel tests running if missing credentials. thanks tokengeek
3493
+ minor fixes for voxel tests
3494
+
3495
+ [core]
3496
+ Parser does not concatenates all the strings when parsing. thanks geraud
3497
+ Drop default_executable line from gemspec. thanks mattsa
3498
+ Fix small logic error in Model#wait_for. thanks pvande
3499
+ Make Model#reload more resilient against errors. thanks pvande
3500
+ Simplify dup-ing of @attributes for models. thanks smerritt
3501
+ Make Model#dup copy the attributes too. thanks smerritt
3502
+ Fix typo in spec output. thanks smerritt
3503
+ tighten excon dependency. Closes #250
3504
+ cleanup gemspec. closes #251
3505
+ Fixes error messaging when credentials missing
3506
+ update parser to better handle whitespace
3507
+
3508
+ [docs]
3509
+ Add link to multipart upload and threads article. thanks gsandie
3510
+ restructure toward same organization as rest of repo
3511
+ simplify redirector to just point at directory instead of specifically index.html
3512
+ generalize version subbing in href to catch src too
3513
+ style cleanup for cdn/dns/storage
3514
+ storage shouldn't be all caps
3515
+ link to fog.io more prominently
3516
+ fix new links to properly include version
3517
+ replace getting started link
3518
+ add link to learn_fog
3519
+ remove confusion by linking to fog.io instead of wiki
3520
+ reworking getting started guide
3521
+ add requires
3522
+
3523
+ [dns|aws] fix error handling for getting unknown keys
3524
+
3525
+ [storage]
3526
+ auto-paginate for #each closes #268
3527
+ [aws]
3528
+ Add #each_file method to directory model. thanks smerritt
3529
+ Add documentation for #each_file method. thanks smerritt
3530
+ Emit warning from Files#each. thanks smerritt
3531
+ Make Files#each iterate all files, not just the first page. thanks smerritt
3532
+ Fix docs to say files.each, not each_file. thanks smerritt
3533
+ Issue #283: S3 get_object request doesn't really support the Range header. thanks yalon
3534
+ fix format for multipart upload tests
3535
+ [google]
3536
+ fix format in bucket_tests
3537
+ [rackspace]
3538
+ mark get_object with block test pending when mocked
3539
+
3540
+ 0.7.2 04/05/2011
3541
+ ================
3542
+
3543
+ [aws|cloudformation]
3544
+ enabling region parameter for AWS cloud formation requests. thanks flessa
3545
+
3546
+ [compute]
3547
+ [aws]
3548
+ remove CGI escape from create_security_group. thanks coliver
3549
+ replace remaining specs with shindo tests
3550
+ update #keypairs reference to #key_pairs. thanks pvande
3551
+ Emulate volume unavailability when mocking. thanks mtodd
3552
+ Raise error on non-existent snapshot for create_volume. thanks mtodd
3553
+ Add tag to resource data when creating a mock tag. thanks betamatt
3554
+ Add tag filtering to mocks for snapshots, volumes, instances. thanks betamatt
3555
+ Add delete_tags mock. thanks betamatt
3556
+ Support tag-key, tag-value, tag:key filters. thanks betamatt
3557
+ Correct name of dns-filter filter. thanks betamatt
3558
+ allow key pair to write into properly chmodded files. thanks gerred
3559
+ Making key pair names a little less potentially brittle. thanks gerred
3560
+ [rackspace]
3561
+ fix public_ip_address accessors
3562
+
3563
+ [core]
3564
+ updated base parser to not eagerly strip return data. thanks bdorry
3565
+ don't escape ssh commands. thanks pvande
3566
+ Deal with missing FOG_RC/HOME env vars better. thanks outerim
3567
+ fix push parser block passed to excon > 0.6.0
3568
+
3569
+ [docs]
3570
+ move fog.io stuff into docs directory
3571
+ pull in and format data from README, wiki, blog posts
3572
+
3573
+ [storage|rackspace]
3574
+ head_object should use HEAD. thanks nate
3575
+ Support for serving Rackspace CDN objects via SSL. thanks minter
3576
+ Use URI.escape instead of CGI.escape. thanks minter
3577
+
3578
+ 0.7.1 03/21/2011
3579
+ ================
3580
+
3581
+ [aws|storage] normalize headers. thanks pweldon
3582
+
3583
+ [mock] fix reset_data to not be called in Mock#initialize
3584
+
3585
+ [rackspace] add support for using servicenet. thanks minter
3586
+
3587
+ [storage] provide for non file/string files. thanks pweldon
3588
+
3589
+ 0.7.0 03/14/2011
3590
+ ================
3591
+
3592
+ [aws] added ap-northeast-1 (tokyo) region options
3593
+
3594
+ [aws|cloudformation] add basic support. thanks crazed
3595
+
3596
+ [aws|elb] add support for configuring https
3597
+
3598
+ [aws|iam]
3599
+ add support for server certificates. thanks bensie
3600
+ add support for login profiles. thanks fcheung
3601
+
3602
+ [aws|rds]
3603
+ support basic rds operations. thanks fcheung
3604
+ add support for restoring servers and security groups. thanks ktheory
3605
+
3606
+ [cdn|rackspace] use post_container to update
3607
+
3608
+ [compute]
3609
+ [aws]
3610
+ fix tag.destroy. thanks eabbott
3611
+ allow deleting all tags (instead of just specific ones)
3612
+ fix revoke_security_group method signature
3613
+ FLAVORS is now a constant
3614
+ allow for modifying server monitoring. thanks gilles
3615
+ [brightbox] thanks tokengeek
3616
+ Added listener management (add/remove) requests for Load Balancers
3617
+ Added new Server console activation request
3618
+ Added activate_console method to Brightbox servers
3619
+ Set Server#private_ip_address to be the first interface
3620
+ [rackspace] 'official' workaround for awful caching
3621
+ [virtualbox] rough proof of concept/initial implementation
3622
+
3623
+ [core]
3624
+ fix behavior of slice on collections. thanks eabbott
3625
+ fix reset_data to be instance method on mock connection (and work)
3626
+ [credentials]
3627
+ handle undefined ENV['HOME']
3628
+ Allow string keys in credentials file [issue 179]. thanks ryanlower
3629
+
3630
+ [dns|dnsimple] fix misc bugs in models. thanks ijonas
3631
+
3632
+ [storage]
3633
+ use shared parse_data across providers
3634
+ [rackspace]
3635
+ pass through explicit content-type
3636
+ fix bug preventing file uploads to be streamed
3637
+
3638
+ 0.6.0 02/28/2011
3639
+ ================
3640
+
3641
+ [aws|compute] fix method signature for security group requests. Thanks crazed
3642
+
3643
+ [aws|iam]
3644
+ fleshing out support. Thanks bdorry and coliver
3645
+ fix get_group parser to set Arn on group/member as appropriate
3646
+
3647
+ [bluebox|dns] added support. Thanks ggoodale
3648
+
3649
+ [compute]
3650
+ add basic scp support. Thanks crazed
3651
+ consolidate ip accessors
3652
+
3653
+ [core]
3654
+ added changelog, covering 0.5+
3655
+ reset credentials when changing key or path. Thanks ctennis
3656
+
3657
+ [dnsimple|dns] added support. Thanks dje
3658
+
3659
+ [ecloud|compute] cleaned up and reworked as basis for future ecloud work
3660
+
3661
+ [aws|storage] add static website configuration methods
3662
+
3663
+ [local|storage] rewrite using nested directories (NOTE: not backwards compatible)
3664
+
3665
+ [rackspace|storage] disable cdn when deleting container
3666
+
3667
+ [voxel|compute] added support. Thanks splaspood
3668
+
3669
+ remove long standing deprecations
3670
+
3671
+
3672
+ 0.5.3 02/15/11
3673
+ ==============
3674
+
3675
+ [terremark|ecloud] (thanks freeformz)
3676
+ initial support for Disabled monitor types
3677
+ InternetService#disable_monitor and #enable_ping_monitor
3678
+ spec fixes and tests for the new monitor functions
3679
+ fix logic error which prevented turning off persistent connections
3680
+ fix _dump for collections/models
3681
+ require json for to_json of collection/model
3682
+ add some missing parens to fix warnings
3683
+
3684
+
3685
+ 0.5.2 02/11/11
3686
+ ==============
3687
+
3688
+ [aws|compute] fix delete AWS tags to use proper method. Thanks ody
3689
+ [aws|storage]
3690
+ add sort for multi part upload fields. Thanks gavin
3691
+ better RRS docs. Thanks bensie
3692
+ Temporary redirect should not execute the block. Thanks vivienschillis
3693
+ [tests] fix mock_helper load path to allow test runs in 1.9.2. Thanks aeden
3694
+ [compute] disable password auth for current user, rather than always root
3695
+ [aws&google|storage] properly handle custom headers in mocks
3696
+ [aws&google|storage] make signature public method
3697
+ [aws&google] finish fixing headers in mocks
3698
+ [core] cleanup providers/services setup
3699
+ [README] add contributing section, recommendations for blue shirts, move providers to fog.io, cleanup resources
3700
+ implicitly add not_implemented mocks
3701
+
3702
+
3703
+ 0.5.1 01/31/11
3704
+ ==============
3705
+
3706
+ Bug fixes.
3707
+ [aws|iam] add signing certificate and list groups for user. thanks crazed
3708
+ [gogrid|compute] added support for password api calls. thanks lum
3709
+ [fog|time] add date header formatting that is non-localized
3710
+
3711
+
3712
+ 0.5.0 01/27/11
3713
+ ==============
3714
+
3715
+ [aws|compute] describe reserved instances offerings
3716
+ [aws|dns] Fix variable typo create_hosted_zone. Thanks mitchellh
3717
+ [aws|ses] basic support. Thanks adelcambre
3718
+ [aws|storage] Escape the path for signatures. Thanks croaker
3719
+ [aws&google|storage] mock fixes
3720
+ [local|storage] support file#content_type
3721
+ [ssh] use an agent if available instead of requiring explicit keys. thanks davidx and tomstuart
3722
+ [gogrid|compute] fix several issues. Thanks cardmagic
3723
+ [rackspace|compute] get new auth token when one expires
3724
+ [rackspace|storage] remove nil query params in requests
3725
+ [terremark|ecloud] getting started on ecloud specific implementation
3726
+