ktheory-fog 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2172) hide show
  1. data/.document +3 -0
  2. data/.gitignore +20 -0
  3. data/Gemfile +3 -0
  4. data/README.rdoc +147 -0
  5. data/Rakefile +438 -0
  6. data/benchs/fog_vs.rb +106 -0
  7. data/benchs/params.rb +43 -0
  8. data/benchs/parse_vs_push.rb +69 -0
  9. data/bin/fog +54 -0
  10. data/changelog.txt +1914 -0
  11. data/docs/_config.yml +39 -0
  12. data/docs/_layouts/default.html +111 -0
  13. data/docs/about/contributing.markdown +228 -0
  14. data/docs/about/getting_started.markdown +108 -0
  15. data/docs/about/press.markdown +52 -0
  16. data/docs/about/structure.markdown +78 -0
  17. data/docs/about/users.markdown +33 -0
  18. data/docs/cdn/index.markdown +82 -0
  19. data/docs/compute/index.markdown +122 -0
  20. data/docs/dns/index.markdown +79 -0
  21. data/docs/index.markdown +88 -0
  22. data/docs/public/crossdomain.xml +25 -0
  23. data/docs/public/css/fog.css +142 -0
  24. data/docs/public/css/handheld.css +8 -0
  25. data/docs/public/css/style.css +129 -0
  26. data/docs/public/images/.gitignore +3 -0
  27. data/docs/public/js/libs/dd_belatedpng.js +13 -0
  28. data/docs/public/js/libs/jquery-1.4.2.js +6240 -0
  29. data/docs/public/js/libs/jquery-1.4.2.min.js +154 -0
  30. data/docs/public/js/libs/modernizr-1.6.min.js +30 -0
  31. data/docs/public/js/mylibs/.gitignore +3 -0
  32. data/docs/public/js/plugins.js +34 -0
  33. data/docs/public/js/profiling/config.js +59 -0
  34. data/docs/public/js/profiling/yahoo-profiling.css +7 -0
  35. data/docs/public/js/profiling/yahoo-profiling.min.js +39 -0
  36. data/docs/public/js/script.js +26 -0
  37. data/docs/public/robots.txt +5 -0
  38. data/docs/storage/index.markdown +204 -0
  39. data/fog.gemspec +65 -0
  40. data/lib/fog.rb +18 -0
  41. data/lib/fog/aws.rb +234 -0
  42. data/lib/fog/aws/auto_scaling.rb +212 -0
  43. data/lib/fog/aws/cdn.rb +120 -0
  44. data/lib/fog/aws/cloud_formation.rb +116 -0
  45. data/lib/fog/aws/cloud_watch.rb +115 -0
  46. data/lib/fog/aws/compute.rb +335 -0
  47. data/lib/fog/aws/dns.rb +119 -0
  48. data/lib/fog/aws/dynamodb.rb +162 -0
  49. data/lib/fog/aws/elasticache.rb +121 -0
  50. data/lib/fog/aws/elb.rb +197 -0
  51. data/lib/fog/aws/elb/policy_types.rb +35 -0
  52. data/lib/fog/aws/emr.rb +134 -0
  53. data/lib/fog/aws/iam.rb +196 -0
  54. data/lib/fog/aws/models/auto_scaling/activities.rb +30 -0
  55. data/lib/fog/aws/models/auto_scaling/activity.rb +29 -0
  56. data/lib/fog/aws/models/auto_scaling/configuration.rb +63 -0
  57. data/lib/fog/aws/models/auto_scaling/configurations.rb +35 -0
  58. data/lib/fog/aws/models/auto_scaling/group.rb +140 -0
  59. data/lib/fog/aws/models/auto_scaling/groups.rb +35 -0
  60. data/lib/fog/aws/models/auto_scaling/instance.rb +60 -0
  61. data/lib/fog/aws/models/auto_scaling/instances.rb +30 -0
  62. data/lib/fog/aws/models/cloud_watch/alarm.rb +12 -0
  63. data/lib/fog/aws/models/cloud_watch/alarm_data.rb +39 -0
  64. data/lib/fog/aws/models/cloud_watch/alarm_datum.rb +66 -0
  65. data/lib/fog/aws/models/cloud_watch/alarm_histories.rb +18 -0
  66. data/lib/fog/aws/models/cloud_watch/alarm_history.rb +16 -0
  67. data/lib/fog/aws/models/cloud_watch/alarms.rb +30 -0
  68. data/lib/fog/aws/models/cloud_watch/metric.rb +14 -0
  69. data/lib/fog/aws/models/cloud_watch/metric_statistic.rb +45 -0
  70. data/lib/fog/aws/models/cloud_watch/metric_statistics.rb +23 -0
  71. data/lib/fog/aws/models/cloud_watch/metrics.rb +32 -0
  72. data/lib/fog/aws/models/compute/address.rb +72 -0
  73. data/lib/fog/aws/models/compute/addresses.rb +100 -0
  74. data/lib/fog/aws/models/compute/flavor.rb +21 -0
  75. data/lib/fog/aws/models/compute/flavors.rb +167 -0
  76. data/lib/fog/aws/models/compute/image.rb +48 -0
  77. data/lib/fog/aws/models/compute/images.rb +62 -0
  78. data/lib/fog/aws/models/compute/key_pair.rb +59 -0
  79. data/lib/fog/aws/models/compute/key_pairs.rb +88 -0
  80. data/lib/fog/aws/models/compute/security_group.rb +205 -0
  81. data/lib/fog/aws/models/compute/security_groups.rb +120 -0
  82. data/lib/fog/aws/models/compute/server.rb +272 -0
  83. data/lib/fog/aws/models/compute/servers.rb +158 -0
  84. data/lib/fog/aws/models/compute/snapshot.rb +56 -0
  85. data/lib/fog/aws/models/compute/snapshots.rb +52 -0
  86. data/lib/fog/aws/models/compute/spot_request.rb +110 -0
  87. data/lib/fog/aws/models/compute/spot_requests.rb +92 -0
  88. data/lib/fog/aws/models/compute/tag.rb +34 -0
  89. data/lib/fog/aws/models/compute/tags.rb +34 -0
  90. data/lib/fog/aws/models/compute/volume.rb +112 -0
  91. data/lib/fog/aws/models/compute/volumes.rb +121 -0
  92. data/lib/fog/aws/models/dns/record.rb +78 -0
  93. data/lib/fog/aws/models/dns/records.rb +49 -0
  94. data/lib/fog/aws/models/dns/zone.rb +53 -0
  95. data/lib/fog/aws/models/dns/zones.rb +33 -0
  96. data/lib/fog/aws/models/elasticache/cluster.rb +69 -0
  97. data/lib/fog/aws/models/elasticache/clusters.rb +31 -0
  98. data/lib/fog/aws/models/elasticache/parameter_group.rb +32 -0
  99. data/lib/fog/aws/models/elasticache/parameter_groups.rb +30 -0
  100. data/lib/fog/aws/models/elasticache/security_group.rb +52 -0
  101. data/lib/fog/aws/models/elasticache/security_groups.rb +30 -0
  102. data/lib/fog/aws/models/elb/listener.rb +59 -0
  103. data/lib/fog/aws/models/elb/listeners.rb +32 -0
  104. data/lib/fog/aws/models/elb/load_balancer.rb +141 -0
  105. data/lib/fog/aws/models/elb/load_balancers.rb +28 -0
  106. data/lib/fog/aws/models/elb/policies.rb +40 -0
  107. data/lib/fog/aws/models/elb/policy.rb +52 -0
  108. data/lib/fog/aws/models/rds/parameter.rb +21 -0
  109. data/lib/fog/aws/models/rds/parameter_group.rb +36 -0
  110. data/lib/fog/aws/models/rds/parameter_groups.rb +27 -0
  111. data/lib/fog/aws/models/rds/parameters.rb +37 -0
  112. data/lib/fog/aws/models/rds/security_group.rb +82 -0
  113. data/lib/fog/aws/models/rds/security_groups.rb +43 -0
  114. data/lib/fog/aws/models/rds/server.rb +111 -0
  115. data/lib/fog/aws/models/rds/servers.rb +27 -0
  116. data/lib/fog/aws/models/rds/snapshot.rb +49 -0
  117. data/lib/fog/aws/models/rds/snapshots.rb +45 -0
  118. data/lib/fog/aws/models/storage/directories.rb +43 -0
  119. data/lib/fog/aws/models/storage/directory.rb +119 -0
  120. data/lib/fog/aws/models/storage/file.rb +192 -0
  121. data/lib/fog/aws/models/storage/files.rb +117 -0
  122. data/lib/fog/aws/models/storage/version.rb +36 -0
  123. data/lib/fog/aws/models/storage/versions.rb +38 -0
  124. data/lib/fog/aws/parsers/auto_scaling/basic.rb +28 -0
  125. data/lib/fog/aws/parsers/auto_scaling/describe_adjustment_types.rb +39 -0
  126. data/lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb +126 -0
  127. data/lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_instances.rb +43 -0
  128. data/lib/fog/aws/parsers/auto_scaling/describe_launch_configurations.rb +94 -0
  129. data/lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb +66 -0
  130. data/lib/fog/aws/parsers/auto_scaling/describe_policies.rb +66 -0
  131. data/lib/fog/aws/parsers/auto_scaling/describe_scaling_activities.rb +47 -0
  132. data/lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb +39 -0
  133. data/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb +46 -0
  134. data/lib/fog/aws/parsers/auto_scaling/put_scaling_policy.rb +30 -0
  135. data/lib/fog/aws/parsers/auto_scaling/terminate_instance_in_auto_scaling_group.rb +35 -0
  136. data/lib/fog/aws/parsers/cdn/distribution.rb +59 -0
  137. data/lib/fog/aws/parsers/cdn/get_distribution_list.rb +61 -0
  138. data/lib/fog/aws/parsers/cdn/get_invalidation_list.rb +42 -0
  139. data/lib/fog/aws/parsers/cdn/get_streaming_distribution_list.rb +59 -0
  140. data/lib/fog/aws/parsers/cdn/post_invalidation.rb +28 -0
  141. data/lib/fog/aws/parsers/cdn/streaming_distribution.rb +59 -0
  142. data/lib/fog/aws/parsers/cloud_formation/basic.rb +12 -0
  143. data/lib/fog/aws/parsers/cloud_formation/create_stack.rb +19 -0
  144. data/lib/fog/aws/parsers/cloud_formation/describe_stack_events.rb +31 -0
  145. data/lib/fog/aws/parsers/cloud_formation/describe_stack_resources.rb +31 -0
  146. data/lib/fog/aws/parsers/cloud_formation/describe_stacks.rb +72 -0
  147. data/lib/fog/aws/parsers/cloud_formation/get_template.rb +19 -0
  148. data/lib/fog/aws/parsers/cloud_formation/update_stack.rb +19 -0
  149. data/lib/fog/aws/parsers/cloud_formation/validate_template.rb +52 -0
  150. data/lib/fog/aws/parsers/cloud_watch/delete_alarms.rb +26 -0
  151. data/lib/fog/aws/parsers/cloud_watch/describe_alarm_history.rb +40 -0
  152. data/lib/fog/aws/parsers/cloud_watch/describe_alarms.rb +73 -0
  153. data/lib/fog/aws/parsers/cloud_watch/describe_alarms_for_metric.rb +71 -0
  154. data/lib/fog/aws/parsers/cloud_watch/disable_alarm_actions.rb +26 -0
  155. data/lib/fog/aws/parsers/cloud_watch/enable_alarm_actions.rb +26 -0
  156. data/lib/fog/aws/parsers/cloud_watch/get_metric_statistics.rb +43 -0
  157. data/lib/fog/aws/parsers/cloud_watch/list_metrics.rb +58 -0
  158. data/lib/fog/aws/parsers/cloud_watch/put_metric_alarm.rb +26 -0
  159. data/lib/fog/aws/parsers/cloud_watch/put_metric_data.rb +26 -0
  160. data/lib/fog/aws/parsers/cloud_watch/set_alarm_state.rb +26 -0
  161. data/lib/fog/aws/parsers/compute/allocate_address.rb +19 -0
  162. data/lib/fog/aws/parsers/compute/associate_address.rb +25 -0
  163. data/lib/fog/aws/parsers/compute/attach_volume.rb +22 -0
  164. data/lib/fog/aws/parsers/compute/basic.rb +25 -0
  165. data/lib/fog/aws/parsers/compute/cancel_spot_instance_requests.rb +30 -0
  166. data/lib/fog/aws/parsers/compute/create_image.rb +20 -0
  167. data/lib/fog/aws/parsers/compute/create_key_pair.rb +20 -0
  168. data/lib/fog/aws/parsers/compute/create_snapshot.rb +26 -0
  169. data/lib/fog/aws/parsers/compute/create_volume.rb +24 -0
  170. data/lib/fog/aws/parsers/compute/deregister_image.rb +20 -0
  171. data/lib/fog/aws/parsers/compute/describe_addresses.rb +30 -0
  172. data/lib/fog/aws/parsers/compute/describe_availability_zones.rb +32 -0
  173. data/lib/fog/aws/parsers/compute/describe_images.rb +91 -0
  174. data/lib/fog/aws/parsers/compute/describe_instance_status.rb +97 -0
  175. data/lib/fog/aws/parsers/compute/describe_instances.rb +90 -0
  176. data/lib/fog/aws/parsers/compute/describe_key_pairs.rb +30 -0
  177. data/lib/fog/aws/parsers/compute/describe_placement_groups.rb +30 -0
  178. data/lib/fog/aws/parsers/compute/describe_regions.rb +30 -0
  179. data/lib/fog/aws/parsers/compute/describe_reserved_instances.rb +36 -0
  180. data/lib/fog/aws/parsers/compute/describe_reserved_instances_offerings.rb +34 -0
  181. data/lib/fog/aws/parsers/compute/describe_security_groups.rb +100 -0
  182. data/lib/fog/aws/parsers/compute/describe_snapshots.rb +54 -0
  183. data/lib/fog/aws/parsers/compute/describe_spot_price_history.rb +34 -0
  184. data/lib/fog/aws/parsers/compute/describe_tags.rb +30 -0
  185. data/lib/fog/aws/parsers/compute/describe_volumes.rb +73 -0
  186. data/lib/fog/aws/parsers/compute/detach_volume.rb +22 -0
  187. data/lib/fog/aws/parsers/compute/get_console_output.rb +28 -0
  188. data/lib/fog/aws/parsers/compute/get_password_data.rb +26 -0
  189. data/lib/fog/aws/parsers/compute/import_key_pair.rb +20 -0
  190. data/lib/fog/aws/parsers/compute/monitor_unmonitor_instances.rb +35 -0
  191. data/lib/fog/aws/parsers/compute/purchase_reserved_instances_offering.rb +24 -0
  192. data/lib/fog/aws/parsers/compute/register_image.rb +20 -0
  193. data/lib/fog/aws/parsers/compute/run_instances.rb +82 -0
  194. data/lib/fog/aws/parsers/compute/spot_datafeed_subscription.rb +29 -0
  195. data/lib/fog/aws/parsers/compute/spot_instance_requests.rb +67 -0
  196. data/lib/fog/aws/parsers/compute/start_stop_instances.rb +41 -0
  197. data/lib/fog/aws/parsers/compute/terminate_instances.rb +55 -0
  198. data/lib/fog/aws/parsers/dns/change_resource_record_sets.rb +26 -0
  199. data/lib/fog/aws/parsers/dns/create_hosted_zone.rb +55 -0
  200. data/lib/fog/aws/parsers/dns/delete_hosted_zone.rb +25 -0
  201. data/lib/fog/aws/parsers/dns/get_change.rb +26 -0
  202. data/lib/fog/aws/parsers/dns/get_hosted_zone.rb +43 -0
  203. data/lib/fog/aws/parsers/dns/list_hosted_zones.rb +37 -0
  204. data/lib/fog/aws/parsers/dns/list_resource_record_sets.rb +52 -0
  205. data/lib/fog/aws/parsers/elasticache/authorize_cache_security_group_ingress.rb +26 -0
  206. data/lib/fog/aws/parsers/elasticache/base.rb +34 -0
  207. data/lib/fog/aws/parsers/elasticache/cache_cluster_parser.rb +79 -0
  208. data/lib/fog/aws/parsers/elasticache/describe_cache_clusters.rb +27 -0
  209. data/lib/fog/aws/parsers/elasticache/describe_cache_parameters.rb +22 -0
  210. data/lib/fog/aws/parsers/elasticache/describe_engine_default_parameters.rb +22 -0
  211. data/lib/fog/aws/parsers/elasticache/describe_parameter_groups.rb +27 -0
  212. data/lib/fog/aws/parsers/elasticache/describe_security_groups.rb +27 -0
  213. data/lib/fog/aws/parsers/elasticache/engine_defaults_parser.rb +59 -0
  214. data/lib/fog/aws/parsers/elasticache/event_list.rb +38 -0
  215. data/lib/fog/aws/parsers/elasticache/modify_parameter_group.rb +27 -0
  216. data/lib/fog/aws/parsers/elasticache/parameter_group_parser.rb +30 -0
  217. data/lib/fog/aws/parsers/elasticache/reset_parameter_group.rb +27 -0
  218. data/lib/fog/aws/parsers/elasticache/security_group_parser.rb +40 -0
  219. data/lib/fog/aws/parsers/elasticache/single_cache_cluster.rb +22 -0
  220. data/lib/fog/aws/parsers/elasticache/single_parameter_group.rb +22 -0
  221. data/lib/fog/aws/parsers/elasticache/single_security_group.rb +34 -0
  222. data/lib/fog/aws/parsers/elb/configure_health_check.rb +37 -0
  223. data/lib/fog/aws/parsers/elb/create_load_balancer.rb +26 -0
  224. data/lib/fog/aws/parsers/elb/delete_load_balancer.rb +24 -0
  225. data/lib/fog/aws/parsers/elb/deregister_instances_from_load_balancer.rb +26 -0
  226. data/lib/fog/aws/parsers/elb/describe_instance_health.rb +30 -0
  227. data/lib/fog/aws/parsers/elb/describe_load_balancer_policies.rb +64 -0
  228. data/lib/fog/aws/parsers/elb/describe_load_balancer_policy_types.rb +70 -0
  229. data/lib/fog/aws/parsers/elb/describe_load_balancers.rb +124 -0
  230. data/lib/fog/aws/parsers/elb/disable_availability_zones_for_load_balancer.rb +26 -0
  231. data/lib/fog/aws/parsers/elb/empty.rb +28 -0
  232. data/lib/fog/aws/parsers/elb/enable_availability_zones_for_load_balancer.rb +26 -0
  233. data/lib/fog/aws/parsers/elb/register_instances_with_load_balancer.rb +26 -0
  234. data/lib/fog/aws/parsers/emr/add_instance_groups.rb +28 -0
  235. data/lib/fog/aws/parsers/emr/add_job_flow_steps.rb +17 -0
  236. data/lib/fog/aws/parsers/emr/describe_job_flows.rb +140 -0
  237. data/lib/fog/aws/parsers/emr/modify_instance_groups.rb +17 -0
  238. data/lib/fog/aws/parsers/emr/run_job_flow.rb +19 -0
  239. data/lib/fog/aws/parsers/emr/set_termination_protection.rb +17 -0
  240. data/lib/fog/aws/parsers/emr/terminate_job_flows.rb +17 -0
  241. data/lib/fog/aws/parsers/iam/basic.rb +19 -0
  242. data/lib/fog/aws/parsers/iam/create_access_key.rb +26 -0
  243. data/lib/fog/aws/parsers/iam/create_group.rb +26 -0
  244. data/lib/fog/aws/parsers/iam/create_user.rb +26 -0
  245. data/lib/fog/aws/parsers/iam/get_group.rb +55 -0
  246. data/lib/fog/aws/parsers/iam/get_group_policy.rb +27 -0
  247. data/lib/fog/aws/parsers/iam/get_user.rb +27 -0
  248. data/lib/fog/aws/parsers/iam/get_user_policy.rb +27 -0
  249. data/lib/fog/aws/parsers/iam/list_access_keys.rb +32 -0
  250. data/lib/fog/aws/parsers/iam/list_account_aliases.rb +28 -0
  251. data/lib/fog/aws/parsers/iam/list_groups.rb +32 -0
  252. data/lib/fog/aws/parsers/iam/list_groups_for_user.rb +32 -0
  253. data/lib/fog/aws/parsers/iam/list_policies.rb +28 -0
  254. data/lib/fog/aws/parsers/iam/list_server_certificates.rb +38 -0
  255. data/lib/fog/aws/parsers/iam/list_signing_certificates.rb +32 -0
  256. data/lib/fog/aws/parsers/iam/list_users.rb +32 -0
  257. data/lib/fog/aws/parsers/iam/login_profile.rb +27 -0
  258. data/lib/fog/aws/parsers/iam/update_group.rb +26 -0
  259. data/lib/fog/aws/parsers/iam/update_user.rb +27 -0
  260. data/lib/fog/aws/parsers/iam/upload_server_certificate.rb +28 -0
  261. data/lib/fog/aws/parsers/iam/upload_signing_certificate.rb +26 -0
  262. data/lib/fog/aws/parsers/rds/authorize_db_security_group_ingress.rb +38 -0
  263. data/lib/fog/aws/parsers/rds/create_db_instance.rb +34 -0
  264. data/lib/fog/aws/parsers/rds/create_db_instance_read_replica.rb +34 -0
  265. data/lib/fog/aws/parsers/rds/create_db_parameter_group.rb +35 -0
  266. data/lib/fog/aws/parsers/rds/create_db_security_group.rb +38 -0
  267. data/lib/fog/aws/parsers/rds/create_db_snapshot.rb +35 -0
  268. data/lib/fog/aws/parsers/rds/db_engine_version_parser.rb +35 -0
  269. data/lib/fog/aws/parsers/rds/db_parser.rb +123 -0
  270. data/lib/fog/aws/parsers/rds/delete_db_instance.rb +35 -0
  271. data/lib/fog/aws/parsers/rds/delete_db_parameter_group.rb +27 -0
  272. data/lib/fog/aws/parsers/rds/delete_db_security_group.rb +33 -0
  273. data/lib/fog/aws/parsers/rds/delete_db_snapshot.rb +34 -0
  274. data/lib/fog/aws/parsers/rds/describe_db_engine_versions.rb +39 -0
  275. data/lib/fog/aws/parsers/rds/describe_db_instances.rb +36 -0
  276. data/lib/fog/aws/parsers/rds/describe_db_parameter_groups.rb +38 -0
  277. data/lib/fog/aws/parsers/rds/describe_db_parameters.rb +44 -0
  278. data/lib/fog/aws/parsers/rds/describe_db_reserved_instances.rb +43 -0
  279. data/lib/fog/aws/parsers/rds/describe_db_security_groups.rb +39 -0
  280. data/lib/fog/aws/parsers/rds/describe_db_snapshots.rb +39 -0
  281. data/lib/fog/aws/parsers/rds/modify_db_instance.rb +34 -0
  282. data/lib/fog/aws/parsers/rds/modify_db_parameter_group.rb +28 -0
  283. data/lib/fog/aws/parsers/rds/reboot_db_instance.rb +35 -0
  284. data/lib/fog/aws/parsers/rds/restore_db_instance_from_db_snapshot.rb +34 -0
  285. data/lib/fog/aws/parsers/rds/restore_db_instance_to_point_in_time.rb +35 -0
  286. data/lib/fog/aws/parsers/rds/revoke_db_security_group_ingress.rb +39 -0
  287. data/lib/fog/aws/parsers/rds/security_group_parser.rb +39 -0
  288. data/lib/fog/aws/parsers/rds/snapshot_parser.rb +40 -0
  289. data/lib/fog/aws/parsers/ses/delete_verified_email_address.rb +24 -0
  290. data/lib/fog/aws/parsers/ses/get_send_quota.rb +26 -0
  291. data/lib/fog/aws/parsers/ses/get_send_statistics.rb +29 -0
  292. data/lib/fog/aws/parsers/ses/list_verified_email_addresses.rb +25 -0
  293. data/lib/fog/aws/parsers/ses/send_email.rb +26 -0
  294. data/lib/fog/aws/parsers/ses/send_raw_email.rb +26 -0
  295. data/lib/fog/aws/parsers/ses/verify_email_address.rb +24 -0
  296. data/lib/fog/aws/parsers/simpledb/basic.rb +31 -0
  297. data/lib/fog/aws/parsers/simpledb/domain_metadata.rb +32 -0
  298. data/lib/fog/aws/parsers/simpledb/get_attributes.rb +36 -0
  299. data/lib/fog/aws/parsers/simpledb/list_domains.rb +30 -0
  300. data/lib/fog/aws/parsers/simpledb/select.rb +41 -0
  301. data/lib/fog/aws/parsers/sns/add_permission.rb +24 -0
  302. data/lib/fog/aws/parsers/sns/confirm_subscription.rb +24 -0
  303. data/lib/fog/aws/parsers/sns/create_topic.rb +24 -0
  304. data/lib/fog/aws/parsers/sns/delete_topic.rb +24 -0
  305. data/lib/fog/aws/parsers/sns/get_topic_attributes.rb +32 -0
  306. data/lib/fog/aws/parsers/sns/list_subscriptions.rb +29 -0
  307. data/lib/fog/aws/parsers/sns/list_topics.rb +26 -0
  308. data/lib/fog/aws/parsers/sns/publish.rb +24 -0
  309. data/lib/fog/aws/parsers/sns/remove_permission.rb +24 -0
  310. data/lib/fog/aws/parsers/sns/set_topic_attributes.rb +24 -0
  311. data/lib/fog/aws/parsers/sns/subscribe.rb +24 -0
  312. data/lib/fog/aws/parsers/sns/unsubscribe.rb +24 -0
  313. data/lib/fog/aws/parsers/sqs/basic.rb +23 -0
  314. data/lib/fog/aws/parsers/sqs/create_queue.rb +26 -0
  315. data/lib/fog/aws/parsers/sqs/get_queue_attributes.rb +35 -0
  316. data/lib/fog/aws/parsers/sqs/list_queues.rb +25 -0
  317. data/lib/fog/aws/parsers/sqs/receive_message.rb +41 -0
  318. data/lib/fog/aws/parsers/sqs/send_message.rb +28 -0
  319. data/lib/fog/aws/parsers/storage/access_control_list.rb +46 -0
  320. data/lib/fog/aws/parsers/storage/complete_multipart_upload.rb +24 -0
  321. data/lib/fog/aws/parsers/storage/copy_object.rb +22 -0
  322. data/lib/fog/aws/parsers/storage/get_bucket.rb +62 -0
  323. data/lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb +32 -0
  324. data/lib/fog/aws/parsers/storage/get_bucket_location.rb +20 -0
  325. data/lib/fog/aws/parsers/storage/get_bucket_logging.rb +40 -0
  326. data/lib/fog/aws/parsers/storage/get_bucket_object_versions.rb +88 -0
  327. data/lib/fog/aws/parsers/storage/get_bucket_versioning.rb +24 -0
  328. data/lib/fog/aws/parsers/storage/get_bucket_website.rb +26 -0
  329. data/lib/fog/aws/parsers/storage/get_request_payment.rb +20 -0
  330. data/lib/fog/aws/parsers/storage/get_service.rb +32 -0
  331. data/lib/fog/aws/parsers/storage/initiate_multipart_upload.rb +24 -0
  332. data/lib/fog/aws/parsers/storage/list_multipart_uploads.rb +56 -0
  333. data/lib/fog/aws/parsers/storage/list_parts.rb +40 -0
  334. data/lib/fog/aws/parsers/sts/get_session_token.rb +31 -0
  335. data/lib/fog/aws/rds.rb +193 -0
  336. data/lib/fog/aws/requests/auto_scaling/create_auto_scaling_group.rb +108 -0
  337. data/lib/fog/aws/requests/auto_scaling/create_launch_configuration.rb +105 -0
  338. data/lib/fog/aws/requests/auto_scaling/delete_auto_scaling_group.rb +45 -0
  339. data/lib/fog/aws/requests/auto_scaling/delete_launch_configuration.rb +48 -0
  340. data/lib/fog/aws/requests/auto_scaling/delete_policy.rb +47 -0
  341. data/lib/fog/aws/requests/auto_scaling/delete_scheduled_action.rb +48 -0
  342. data/lib/fog/aws/requests/auto_scaling/describe_adjustment_types.rb +52 -0
  343. data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_groups.rb +128 -0
  344. data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_instances.rb +96 -0
  345. data/lib/fog/aws/requests/auto_scaling/describe_launch_configurations.rb +108 -0
  346. data/lib/fog/aws/requests/auto_scaling/describe_metric_collection_types.rb +60 -0
  347. data/lib/fog/aws/requests/auto_scaling/describe_policies.rb +85 -0
  348. data/lib/fog/aws/requests/auto_scaling/describe_scaling_activities.rb +88 -0
  349. data/lib/fog/aws/requests/auto_scaling/describe_scaling_process_types.rb +54 -0
  350. data/lib/fog/aws/requests/auto_scaling/describe_scheduled_actions.rb +88 -0
  351. data/lib/fog/aws/requests/auto_scaling/disable_metrics_collection.rb +56 -0
  352. data/lib/fog/aws/requests/auto_scaling/enable_metrics_collection.rb +66 -0
  353. data/lib/fog/aws/requests/auto_scaling/execute_policy.rb +50 -0
  354. data/lib/fog/aws/requests/auto_scaling/put_scaling_policy.rb +66 -0
  355. data/lib/fog/aws/requests/auto_scaling/put_scheduled_update_group_action.rb +67 -0
  356. data/lib/fog/aws/requests/auto_scaling/resume_processes.rb +50 -0
  357. data/lib/fog/aws/requests/auto_scaling/set_desired_capacity.rb +87 -0
  358. data/lib/fog/aws/requests/auto_scaling/set_instance_health.rb +55 -0
  359. data/lib/fog/aws/requests/auto_scaling/suspend_processes.rb +57 -0
  360. data/lib/fog/aws/requests/auto_scaling/terminate_instance_in_auto_scaling_group.rb +65 -0
  361. data/lib/fog/aws/requests/auto_scaling/update_auto_scaling_group.rb +79 -0
  362. data/lib/fog/aws/requests/cdn/delete_distribution.rb +28 -0
  363. data/lib/fog/aws/requests/cdn/delete_streaming_distribution.rb +28 -0
  364. data/lib/fog/aws/requests/cdn/get_distribution.rb +57 -0
  365. data/lib/fog/aws/requests/cdn/get_distribution_list.rb +59 -0
  366. data/lib/fog/aws/requests/cdn/get_invalidation_list.rb +42 -0
  367. data/lib/fog/aws/requests/cdn/get_streaming_distribution.rb +50 -0
  368. data/lib/fog/aws/requests/cdn/get_streaming_distribution_list.rb +59 -0
  369. data/lib/fog/aws/requests/cdn/post_distribution.rb +91 -0
  370. data/lib/fog/aws/requests/cdn/post_invalidation.rb +51 -0
  371. data/lib/fog/aws/requests/cdn/post_streaming_distribution.rb +78 -0
  372. data/lib/fog/aws/requests/cdn/put_distribution_config.rb +94 -0
  373. data/lib/fog/aws/requests/cdn/put_streaming_distribution_config.rb +83 -0
  374. data/lib/fog/aws/requests/cloud_formation/create_stack.rb +77 -0
  375. data/lib/fog/aws/requests/cloud_formation/delete_stack.rb +30 -0
  376. data/lib/fog/aws/requests/cloud_formation/describe_stack_events.rb +44 -0
  377. data/lib/fog/aws/requests/cloud_formation/describe_stack_resources.rb +43 -0
  378. data/lib/fog/aws/requests/cloud_formation/describe_stacks.rb +42 -0
  379. data/lib/fog/aws/requests/cloud_formation/get_template.rb +32 -0
  380. data/lib/fog/aws/requests/cloud_formation/update_stack.rb +62 -0
  381. data/lib/fog/aws/requests/cloud_formation/validate_template.rb +34 -0
  382. data/lib/fog/aws/requests/cloud_watch/delete_alarms.rb +30 -0
  383. data/lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb +33 -0
  384. data/lib/fog/aws/requests/cloud_watch/describe_alarms.rb +38 -0
  385. data/lib/fog/aws/requests/cloud_watch/describe_alarms_for_metric.rb +39 -0
  386. data/lib/fog/aws/requests/cloud_watch/disable_alarm_actions.rb +30 -0
  387. data/lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb +30 -0
  388. data/lib/fog/aws/requests/cloud_watch/get_metric_statistics.rb +48 -0
  389. data/lib/fog/aws/requests/cloud_watch/list_metrics.rb +38 -0
  390. data/lib/fog/aws/requests/cloud_watch/put_metric_alarm.rb +84 -0
  391. data/lib/fog/aws/requests/cloud_watch/put_metric_data.rb +73 -0
  392. data/lib/fog/aws/requests/cloud_watch/set_alarm_state.rb +31 -0
  393. data/lib/fog/aws/requests/compute/allocate_address.rb +60 -0
  394. data/lib/fog/aws/requests/compute/associate_address.rb +94 -0
  395. data/lib/fog/aws/requests/compute/attach_volume.rb +87 -0
  396. data/lib/fog/aws/requests/compute/authorize_security_group_ingress.rb +207 -0
  397. data/lib/fog/aws/requests/compute/cancel_spot_instance_requests.rb +34 -0
  398. data/lib/fog/aws/requests/compute/create_image.rb +65 -0
  399. data/lib/fog/aws/requests/compute/create_key_pair.rb +56 -0
  400. data/lib/fog/aws/requests/compute/create_placement_group.rb +34 -0
  401. data/lib/fog/aws/requests/compute/create_security_group.rb +60 -0
  402. data/lib/fog/aws/requests/compute/create_snapshot.rb +72 -0
  403. data/lib/fog/aws/requests/compute/create_spot_datafeed_subscription.rb +41 -0
  404. data/lib/fog/aws/requests/compute/create_tags.rb +87 -0
  405. data/lib/fog/aws/requests/compute/create_volume.rb +86 -0
  406. data/lib/fog/aws/requests/compute/delete_key_pair.rb +47 -0
  407. data/lib/fog/aws/requests/compute/delete_placement_group.rb +32 -0
  408. data/lib/fog/aws/requests/compute/delete_security_group.rb +74 -0
  409. data/lib/fog/aws/requests/compute/delete_snapshot.rb +50 -0
  410. data/lib/fog/aws/requests/compute/delete_spot_datafeed_subscription.rb +28 -0
  411. data/lib/fog/aws/requests/compute/delete_tags.rb +86 -0
  412. data/lib/fog/aws/requests/compute/delete_volume.rb +56 -0
  413. data/lib/fog/aws/requests/compute/deregister_image.rb +53 -0
  414. data/lib/fog/aws/requests/compute/describe_addresses.rb +66 -0
  415. data/lib/fog/aws/requests/compute/describe_availability_zones.rb +94 -0
  416. data/lib/fog/aws/requests/compute/describe_images.rb +130 -0
  417. data/lib/fog/aws/requests/compute/describe_instance_status.rb +36 -0
  418. data/lib/fog/aws/requests/compute/describe_instances.rb +222 -0
  419. data/lib/fog/aws/requests/compute/describe_key_pairs.rb +68 -0
  420. data/lib/fog/aws/requests/compute/describe_placement_groups.rb +35 -0
  421. data/lib/fog/aws/requests/compute/describe_regions.rb +68 -0
  422. data/lib/fog/aws/requests/compute/describe_reserved_instances.rb +60 -0
  423. data/lib/fog/aws/requests/compute/describe_reserved_instances_offerings.rb +64 -0
  424. data/lib/fog/aws/requests/compute/describe_security_groups.rb +99 -0
  425. data/lib/fog/aws/requests/compute/describe_snapshots.rb +122 -0
  426. data/lib/fog/aws/requests/compute/describe_spot_datafeed_subscription.rb +35 -0
  427. data/lib/fog/aws/requests/compute/describe_spot_instance_requests.rb +47 -0
  428. data/lib/fog/aws/requests/compute/describe_spot_price_history.rb +37 -0
  429. data/lib/fog/aws/requests/compute/describe_tags.rb +107 -0
  430. data/lib/fog/aws/requests/compute/describe_volumes.rb +118 -0
  431. data/lib/fog/aws/requests/compute/detach_volume.rb +60 -0
  432. data/lib/fog/aws/requests/compute/disassociate_address.rb +58 -0
  433. data/lib/fog/aws/requests/compute/get_console_output.rb +54 -0
  434. data/lib/fog/aws/requests/compute/get_password_data.rb +56 -0
  435. data/lib/fog/aws/requests/compute/import_key_pair.rb +56 -0
  436. data/lib/fog/aws/requests/compute/modify_image_attribute.rb +74 -0
  437. data/lib/fog/aws/requests/compute/modify_instance_attribute.rb +44 -0
  438. data/lib/fog/aws/requests/compute/modify_snapshot_attribute.rb +37 -0
  439. data/lib/fog/aws/requests/compute/monitor_instances.rb +54 -0
  440. data/lib/fog/aws/requests/compute/purchase_reserved_instances_offering.rb +63 -0
  441. data/lib/fog/aws/requests/compute/reboot_instances.rb +54 -0
  442. data/lib/fog/aws/requests/compute/register_image.rb +133 -0
  443. data/lib/fog/aws/requests/compute/release_address.rb +47 -0
  444. data/lib/fog/aws/requests/compute/request_spot_instances.rb +83 -0
  445. data/lib/fog/aws/requests/compute/revoke_security_group_ingress.rb +104 -0
  446. data/lib/fog/aws/requests/compute/run_instances.rb +176 -0
  447. data/lib/fog/aws/requests/compute/start_instances.rb +32 -0
  448. data/lib/fog/aws/requests/compute/stop_instances.rb +33 -0
  449. data/lib/fog/aws/requests/compute/terminate_instances.rb +96 -0
  450. data/lib/fog/aws/requests/compute/unmonitor_instances.rb +55 -0
  451. data/lib/fog/aws/requests/dns/change_resource_record_sets.rb +97 -0
  452. data/lib/fog/aws/requests/dns/create_hosted_zone.rb +59 -0
  453. data/lib/fog/aws/requests/dns/delete_hosted_zone.rb +39 -0
  454. data/lib/fog/aws/requests/dns/get_change.rb +38 -0
  455. data/lib/fog/aws/requests/dns/get_hosted_zone.rb +42 -0
  456. data/lib/fog/aws/requests/dns/list_hosted_zones.rb +54 -0
  457. data/lib/fog/aws/requests/dns/list_resource_record_sets.rb +63 -0
  458. data/lib/fog/aws/requests/dynamodb/batch_get_item.rb +43 -0
  459. data/lib/fog/aws/requests/dynamodb/create_table.rb +55 -0
  460. data/lib/fog/aws/requests/dynamodb/delete_item.rb +45 -0
  461. data/lib/fog/aws/requests/dynamodb/delete_table.rb +42 -0
  462. data/lib/fog/aws/requests/dynamodb/describe_table.rb +44 -0
  463. data/lib/fog/aws/requests/dynamodb/get_item.rb +43 -0
  464. data/lib/fog/aws/requests/dynamodb/list_tables.rb +29 -0
  465. data/lib/fog/aws/requests/dynamodb/put_item.rb +41 -0
  466. data/lib/fog/aws/requests/dynamodb/query.rb +44 -0
  467. data/lib/fog/aws/requests/dynamodb/scan.rb +45 -0
  468. data/lib/fog/aws/requests/dynamodb/update_item.rb +49 -0
  469. data/lib/fog/aws/requests/dynamodb/update_table.rb +46 -0
  470. data/lib/fog/aws/requests/elasticache/authorize_cache_security_group_ingress.rb +36 -0
  471. data/lib/fog/aws/requests/elasticache/create_cache_cluster.rb +62 -0
  472. data/lib/fog/aws/requests/elasticache/create_cache_parameter_group.rb +37 -0
  473. data/lib/fog/aws/requests/elasticache/create_cache_security_group.rb +33 -0
  474. data/lib/fog/aws/requests/elasticache/delete_cache_cluster.rb +32 -0
  475. data/lib/fog/aws/requests/elasticache/delete_cache_parameter_group.rb +31 -0
  476. data/lib/fog/aws/requests/elasticache/delete_cache_security_group.rb +31 -0
  477. data/lib/fog/aws/requests/elasticache/describe_cache_clusters.rb +39 -0
  478. data/lib/fog/aws/requests/elasticache/describe_cache_parameter_groups.rb +34 -0
  479. data/lib/fog/aws/requests/elasticache/describe_cache_parameters.rb +36 -0
  480. data/lib/fog/aws/requests/elasticache/describe_cache_security_groups.rb +34 -0
  481. data/lib/fog/aws/requests/elasticache/describe_engine_default_parameters.rb +35 -0
  482. data/lib/fog/aws/requests/elasticache/describe_events.rb +46 -0
  483. data/lib/fog/aws/requests/elasticache/modify_cache_cluster.rb +70 -0
  484. data/lib/fog/aws/requests/elasticache/modify_cache_parameter_group.rb +45 -0
  485. data/lib/fog/aws/requests/elasticache/reboot_cache_cluster.rb +44 -0
  486. data/lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb +46 -0
  487. data/lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb +37 -0
  488. data/lib/fog/aws/requests/elb/configure_health_check.rb +65 -0
  489. data/lib/fog/aws/requests/elb/create_app_cookie_stickiness_policy.rb +56 -0
  490. data/lib/fog/aws/requests/elb/create_lb_cookie_stickiness_policy.rb +58 -0
  491. data/lib/fog/aws/requests/elb/create_load_balancer.rb +114 -0
  492. data/lib/fog/aws/requests/elb/create_load_balancer_listeners.rb +88 -0
  493. data/lib/fog/aws/requests/elb/create_load_balancer_policy.rb +79 -0
  494. data/lib/fog/aws/requests/elb/delete_load_balancer.rb +51 -0
  495. data/lib/fog/aws/requests/elb/delete_load_balancer_listeners.rb +50 -0
  496. data/lib/fog/aws/requests/elb/delete_load_balancer_policy.rb +54 -0
  497. data/lib/fog/aws/requests/elb/deregister_instances_from_load_balancer.rb +63 -0
  498. data/lib/fog/aws/requests/elb/describe_instance_health.rb +72 -0
  499. data/lib/fog/aws/requests/elb/describe_load_balancer_policies.rb +71 -0
  500. data/lib/fog/aws/requests/elb/describe_load_balancer_policy_types.rb +68 -0
  501. data/lib/fog/aws/requests/elb/describe_load_balancers.rb +89 -0
  502. data/lib/fog/aws/requests/elb/disable_availability_zones_for_load_balancer.rb +59 -0
  503. data/lib/fog/aws/requests/elb/enable_availability_zones_for_load_balancer.rb +61 -0
  504. data/lib/fog/aws/requests/elb/register_instances_with_load_balancer.rb +64 -0
  505. data/lib/fog/aws/requests/elb/set_load_balancer_listener_ssl_certificate.rb +67 -0
  506. data/lib/fog/aws/requests/elb/set_load_balancer_policies_of_listener.rb +80 -0
  507. data/lib/fog/aws/requests/emr/add_instance_groups.rb +46 -0
  508. data/lib/fog/aws/requests/emr/add_job_flow_steps.rb +49 -0
  509. data/lib/fog/aws/requests/emr/describe_job_flows.rb +108 -0
  510. data/lib/fog/aws/requests/emr/modify_instance_groups.rb +40 -0
  511. data/lib/fog/aws/requests/emr/run_job_flow.rb +108 -0
  512. data/lib/fog/aws/requests/emr/set_termination_protection.rb +39 -0
  513. data/lib/fog/aws/requests/emr/terminate_job_flows.rb +37 -0
  514. data/lib/fog/aws/requests/iam/add_user_to_group.rb +58 -0
  515. data/lib/fog/aws/requests/iam/create_access_key.rb +61 -0
  516. data/lib/fog/aws/requests/iam/create_account_alias.rb +19 -0
  517. data/lib/fog/aws/requests/iam/create_group.rb +60 -0
  518. data/lib/fog/aws/requests/iam/create_login_profile.rb +36 -0
  519. data/lib/fog/aws/requests/iam/create_user.rb +60 -0
  520. data/lib/fog/aws/requests/iam/delete_access_key.rb +51 -0
  521. data/lib/fog/aws/requests/iam/delete_account_alias.rb +19 -0
  522. data/lib/fog/aws/requests/iam/delete_group.rb +51 -0
  523. data/lib/fog/aws/requests/iam/delete_group_policy.rb +34 -0
  524. data/lib/fog/aws/requests/iam/delete_login_profile.rb +31 -0
  525. data/lib/fog/aws/requests/iam/delete_server_certificate.rb +46 -0
  526. data/lib/fog/aws/requests/iam/delete_signing_certificate.rb +33 -0
  527. data/lib/fog/aws/requests/iam/delete_user.rb +49 -0
  528. data/lib/fog/aws/requests/iam/delete_user_policy.rb +50 -0
  529. data/lib/fog/aws/requests/iam/get_group.rb +44 -0
  530. data/lib/fog/aws/requests/iam/get_group_policy.rb +36 -0
  531. data/lib/fog/aws/requests/iam/get_login_profile.rb +35 -0
  532. data/lib/fog/aws/requests/iam/get_server_certificate.rb +48 -0
  533. data/lib/fog/aws/requests/iam/get_user.rb +36 -0
  534. data/lib/fog/aws/requests/iam/get_user_policy.rb +36 -0
  535. data/lib/fog/aws/requests/iam/list_access_keys.rb +61 -0
  536. data/lib/fog/aws/requests/iam/list_account_aliases.rb +18 -0
  537. data/lib/fog/aws/requests/iam/list_group_policies.rb +39 -0
  538. data/lib/fog/aws/requests/iam/list_groups.rb +60 -0
  539. data/lib/fog/aws/requests/iam/list_groups_for_user.rb +67 -0
  540. data/lib/fog/aws/requests/iam/list_server_certificates.rb +56 -0
  541. data/lib/fog/aws/requests/iam/list_signing_certificates.rb +38 -0
  542. data/lib/fog/aws/requests/iam/list_user_policies.rb +57 -0
  543. data/lib/fog/aws/requests/iam/list_users.rb +59 -0
  544. data/lib/fog/aws/requests/iam/put_group_policy.rb +36 -0
  545. data/lib/fog/aws/requests/iam/put_user_policy.rb +54 -0
  546. data/lib/fog/aws/requests/iam/remove_user_from_group.rb +53 -0
  547. data/lib/fog/aws/requests/iam/update_access_key.rb +36 -0
  548. data/lib/fog/aws/requests/iam/update_group.rb +39 -0
  549. data/lib/fog/aws/requests/iam/update_login_profile.rb +33 -0
  550. data/lib/fog/aws/requests/iam/update_server_certificate.rb +37 -0
  551. data/lib/fog/aws/requests/iam/update_signing_certificate.rb +32 -0
  552. data/lib/fog/aws/requests/iam/update_user.rb +39 -0
  553. data/lib/fog/aws/requests/iam/upload_server_certificate.rb +97 -0
  554. data/lib/fog/aws/requests/iam/upload_signing_certificate.rb +38 -0
  555. data/lib/fog/aws/requests/rds/authorize_db_security_group_ingress.rb +72 -0
  556. data/lib/fog/aws/requests/rds/create_db_instance.rb +122 -0
  557. data/lib/fog/aws/requests/rds/create_db_instance_read_replica.rb +42 -0
  558. data/lib/fog/aws/requests/rds/create_db_parameter_group.rb +41 -0
  559. data/lib/fog/aws/requests/rds/create_db_security_group.rb +55 -0
  560. data/lib/fog/aws/requests/rds/create_db_snapshot.rb +72 -0
  561. data/lib/fog/aws/requests/rds/delete_db_instance.rb +55 -0
  562. data/lib/fog/aws/requests/rds/delete_db_parameter_group.rb +36 -0
  563. data/lib/fog/aws/requests/rds/delete_db_security_group.rb +46 -0
  564. data/lib/fog/aws/requests/rds/delete_db_snapshot.rb +47 -0
  565. data/lib/fog/aws/requests/rds/describe_db_engine_versions.rb +34 -0
  566. data/lib/fog/aws/requests/rds/describe_db_instances.rb +97 -0
  567. data/lib/fog/aws/requests/rds/describe_db_parameter_groups.rb +45 -0
  568. data/lib/fog/aws/requests/rds/describe_db_parameters.rb +46 -0
  569. data/lib/fog/aws/requests/rds/describe_db_reserved_instances.rb +42 -0
  570. data/lib/fog/aws/requests/rds/describe_db_security_groups.rb +85 -0
  571. data/lib/fog/aws/requests/rds/describe_db_snapshots.rb +69 -0
  572. data/lib/fog/aws/requests/rds/modify_db_instance.rb +79 -0
  573. data/lib/fog/aws/requests/rds/modify_db_parameter_group.rb +55 -0
  574. data/lib/fog/aws/requests/rds/reboot_db_instance.rb +50 -0
  575. data/lib/fog/aws/requests/rds/restore_db_instance_from_db_snapshot.rb +34 -0
  576. data/lib/fog/aws/requests/rds/restore_db_instance_to_point_in_time.rb +35 -0
  577. data/lib/fog/aws/requests/rds/revoke_db_security_group_ingress.rb +70 -0
  578. data/lib/fog/aws/requests/ses/delete_verified_email_address.rb +28 -0
  579. data/lib/fog/aws/requests/ses/get_send_quota.rb +31 -0
  580. data/lib/fog/aws/requests/ses/get_send_statistics.rb +34 -0
  581. data/lib/fog/aws/requests/ses/list_verified_email_addresses.rb +28 -0
  582. data/lib/fog/aws/requests/ses/send_email.rb +73 -0
  583. data/lib/fog/aws/requests/ses/send_raw_email.rb +41 -0
  584. data/lib/fog/aws/requests/ses/verify_email_address.rb +28 -0
  585. data/lib/fog/aws/requests/simpledb/batch_put_attributes.rb +64 -0
  586. data/lib/fog/aws/requests/simpledb/create_domain.rb +44 -0
  587. data/lib/fog/aws/requests/simpledb/delete_attributes.rb +73 -0
  588. data/lib/fog/aws/requests/simpledb/delete_domain.rb +45 -0
  589. data/lib/fog/aws/requests/simpledb/domain_metadata.rb +76 -0
  590. data/lib/fog/aws/requests/simpledb/get_attributes.rb +84 -0
  591. data/lib/fog/aws/requests/simpledb/list_domains.rb +59 -0
  592. data/lib/fog/aws/requests/simpledb/put_attributes.rb +78 -0
  593. data/lib/fog/aws/requests/simpledb/select.rb +43 -0
  594. data/lib/fog/aws/requests/sns/add_permission.rb +26 -0
  595. data/lib/fog/aws/requests/sns/confirm_subscription.rb +33 -0
  596. data/lib/fog/aws/requests/sns/create_topic.rb +29 -0
  597. data/lib/fog/aws/requests/sns/delete_topic.rb +29 -0
  598. data/lib/fog/aws/requests/sns/get_topic_attributes.rb +29 -0
  599. data/lib/fog/aws/requests/sns/list_subscriptions.rb +29 -0
  600. data/lib/fog/aws/requests/sns/list_subscriptions_by_topic.rb +31 -0
  601. data/lib/fog/aws/requests/sns/list_topics.rb +29 -0
  602. data/lib/fog/aws/requests/sns/publish.rb +34 -0
  603. data/lib/fog/aws/requests/sns/remove_permission.rb +26 -0
  604. data/lib/fog/aws/requests/sns/set_topic_attributes.rb +33 -0
  605. data/lib/fog/aws/requests/sns/subscribe.rb +33 -0
  606. data/lib/fog/aws/requests/sns/unsubscribe.rb +29 -0
  607. data/lib/fog/aws/requests/sqs/change_message_visibility.rb +63 -0
  608. data/lib/fog/aws/requests/sqs/create_queue.rb +65 -0
  609. data/lib/fog/aws/requests/sqs/delete_message.rb +60 -0
  610. data/lib/fog/aws/requests/sqs/delete_queue.rb +52 -0
  611. data/lib/fog/aws/requests/sqs/get_queue_attributes.rb +52 -0
  612. data/lib/fog/aws/requests/sqs/list_queues.rb +42 -0
  613. data/lib/fog/aws/requests/sqs/receive_message.rb +87 -0
  614. data/lib/fog/aws/requests/sqs/send_message.rb +69 -0
  615. data/lib/fog/aws/requests/sqs/set_queue_attributes.rb +51 -0
  616. data/lib/fog/aws/requests/storage/abort_multipart_upload.rb +30 -0
  617. data/lib/fog/aws/requests/storage/acl_utils.rb +62 -0
  618. data/lib/fog/aws/requests/storage/complete_multipart_upload.rb +52 -0
  619. data/lib/fog/aws/requests/storage/copy_object.rb +82 -0
  620. data/lib/fog/aws/requests/storage/delete_bucket.rb +50 -0
  621. data/lib/fog/aws/requests/storage/delete_bucket_lifecycle.rb +30 -0
  622. data/lib/fog/aws/requests/storage/delete_bucket_policy.rb +32 -0
  623. data/lib/fog/aws/requests/storage/delete_bucket_website.rb +32 -0
  624. data/lib/fog/aws/requests/storage/delete_object.rb +121 -0
  625. data/lib/fog/aws/requests/storage/get_bucket.rb +115 -0
  626. data/lib/fog/aws/requests/storage/get_bucket_acl.rb +72 -0
  627. data/lib/fog/aws/requests/storage/get_bucket_lifecycle.rb +41 -0
  628. data/lib/fog/aws/requests/storage/get_bucket_location.rb +61 -0
  629. data/lib/fog/aws/requests/storage/get_bucket_logging.rb +50 -0
  630. data/lib/fog/aws/requests/storage/get_bucket_object_versions.rb +168 -0
  631. data/lib/fog/aws/requests/storage/get_bucket_policy.rb +37 -0
  632. data/lib/fog/aws/requests/storage/get_bucket_versioning.rb +72 -0
  633. data/lib/fog/aws/requests/storage/get_bucket_website.rb +42 -0
  634. data/lib/fog/aws/requests/storage/get_object.rb +144 -0
  635. data/lib/fog/aws/requests/storage/get_object_acl.rb +83 -0
  636. data/lib/fog/aws/requests/storage/get_object_http_url.rb +57 -0
  637. data/lib/fog/aws/requests/storage/get_object_https_url.rb +57 -0
  638. data/lib/fog/aws/requests/storage/get_object_torrent.rb +50 -0
  639. data/lib/fog/aws/requests/storage/get_object_url.rb +37 -0
  640. data/lib/fog/aws/requests/storage/get_request_payment.rb +52 -0
  641. data/lib/fog/aws/requests/storage/get_service.rb +57 -0
  642. data/lib/fog/aws/requests/storage/head_object.rb +69 -0
  643. data/lib/fog/aws/requests/storage/initiate_multipart_upload.rb +47 -0
  644. data/lib/fog/aws/requests/storage/list_multipart_uploads.rb +60 -0
  645. data/lib/fog/aws/requests/storage/list_parts.rb +59 -0
  646. data/lib/fog/aws/requests/storage/post_object_hidden_fields.rb +40 -0
  647. data/lib/fog/aws/requests/storage/put_bucket.rb +77 -0
  648. data/lib/fog/aws/requests/storage/put_bucket_acl.rb +73 -0
  649. data/lib/fog/aws/requests/storage/put_bucket_lifecycle.rb +48 -0
  650. data/lib/fog/aws/requests/storage/put_bucket_logging.rb +83 -0
  651. data/lib/fog/aws/requests/storage/put_bucket_policy.rb +30 -0
  652. data/lib/fog/aws/requests/storage/put_bucket_versioning.rb +77 -0
  653. data/lib/fog/aws/requests/storage/put_bucket_website.rb +66 -0
  654. data/lib/fog/aws/requests/storage/put_object.rb +116 -0
  655. data/lib/fog/aws/requests/storage/put_object_acl.rb +82 -0
  656. data/lib/fog/aws/requests/storage/put_object_url.rb +57 -0
  657. data/lib/fog/aws/requests/storage/put_request_payment.rb +51 -0
  658. data/lib/fog/aws/requests/storage/sync_clock.rb +28 -0
  659. data/lib/fog/aws/requests/storage/upload_part.rb +43 -0
  660. data/lib/fog/aws/requests/sts/get_federation_token.rb +21 -0
  661. data/lib/fog/aws/requests/sts/get_session_token.rb +19 -0
  662. data/lib/fog/aws/ses.rb +108 -0
  663. data/lib/fog/aws/simpledb.rb +187 -0
  664. data/lib/fog/aws/sns.rb +105 -0
  665. data/lib/fog/aws/sqs.rb +145 -0
  666. data/lib/fog/aws/storage.rb +371 -0
  667. data/lib/fog/aws/sts.rb +137 -0
  668. data/lib/fog/bin.rb +84 -0
  669. data/lib/fog/bin/aws.rb +107 -0
  670. data/lib/fog/bin/bluebox.rb +36 -0
  671. data/lib/fog/bin/brightbox.rb +35 -0
  672. data/lib/fog/bin/clodo.rb +31 -0
  673. data/lib/fog/bin/cloudstack.rb +30 -0
  674. data/lib/fog/bin/dnsimple.rb +31 -0
  675. data/lib/fog/bin/dnsmadeeasy.rb +31 -0
  676. data/lib/fog/bin/dynect.rb +30 -0
  677. data/lib/fog/bin/ecloud.rb +31 -0
  678. data/lib/fog/bin/glesys.rb +31 -0
  679. data/lib/fog/bin/go_grid.rb +31 -0
  680. data/lib/fog/bin/google.rb +31 -0
  681. data/lib/fog/bin/joyent.rb +31 -0
  682. data/lib/fog/bin/libvirt.rb +60 -0
  683. data/lib/fog/bin/linode.rb +36 -0
  684. data/lib/fog/bin/local.rb +31 -0
  685. data/lib/fog/bin/new_servers.rb +31 -0
  686. data/lib/fog/bin/ninefold.rb +36 -0
  687. data/lib/fog/bin/openstack.rb +31 -0
  688. data/lib/fog/bin/ovirt.rb +30 -0
  689. data/lib/fog/bin/rackspace.rb +49 -0
  690. data/lib/fog/bin/slicehost.rb +36 -0
  691. data/lib/fog/bin/stormondemand.rb +31 -0
  692. data/lib/fog/bin/terremark.rb +31 -0
  693. data/lib/fog/bin/vcloud.rb +30 -0
  694. data/lib/fog/bin/virtual_box.rb +57 -0
  695. data/lib/fog/bin/vmfusion.rb +60 -0
  696. data/lib/fog/bin/voxel.rb +31 -0
  697. data/lib/fog/bin/vsphere.rb +30 -0
  698. data/lib/fog/bin/zerigo.rb +31 -0
  699. data/lib/fog/bluebox.rb +12 -0
  700. data/lib/fog/bluebox/compute.rb +105 -0
  701. data/lib/fog/bluebox/dns.rb +104 -0
  702. data/lib/fog/bluebox/models/compute/flavor.rb +45 -0
  703. data/lib/fog/bluebox/models/compute/flavors.rb +28 -0
  704. data/lib/fog/bluebox/models/compute/image.rb +34 -0
  705. data/lib/fog/bluebox/models/compute/images.rb +28 -0
  706. data/lib/fog/bluebox/models/compute/location.rb +17 -0
  707. data/lib/fog/bluebox/models/compute/locations.rb +28 -0
  708. data/lib/fog/bluebox/models/compute/server.rb +139 -0
  709. data/lib/fog/bluebox/models/compute/servers.rb +36 -0
  710. data/lib/fog/bluebox/models/dns/record.rb +55 -0
  711. data/lib/fog/bluebox/models/dns/records.rb +36 -0
  712. data/lib/fog/bluebox/models/dns/zone.rb +64 -0
  713. data/lib/fog/bluebox/models/dns/zones.rb +28 -0
  714. data/lib/fog/bluebox/parsers/dns/create_record.rb +26 -0
  715. data/lib/fog/bluebox/parsers/dns/create_zone.rb +26 -0
  716. data/lib/fog/bluebox/parsers/dns/get_record.rb +21 -0
  717. data/lib/fog/bluebox/parsers/dns/get_records.rb +28 -0
  718. data/lib/fog/bluebox/parsers/dns/get_zone.rb +26 -0
  719. data/lib/fog/bluebox/parsers/dns/get_zones.rb +30 -0
  720. data/lib/fog/bluebox/requests/compute/create_block.rb +33 -0
  721. data/lib/fog/bluebox/requests/compute/create_template.rb +27 -0
  722. data/lib/fog/bluebox/requests/compute/destroy_block.rb +26 -0
  723. data/lib/fog/bluebox/requests/compute/destroy_template.rb +26 -0
  724. data/lib/fog/bluebox/requests/compute/get_block.rb +26 -0
  725. data/lib/fog/bluebox/requests/compute/get_blocks.rb +28 -0
  726. data/lib/fog/bluebox/requests/compute/get_location.rb +26 -0
  727. data/lib/fog/bluebox/requests/compute/get_locations.rb +24 -0
  728. data/lib/fog/bluebox/requests/compute/get_product.rb +26 -0
  729. data/lib/fog/bluebox/requests/compute/get_products.rb +25 -0
  730. data/lib/fog/bluebox/requests/compute/get_template.rb +26 -0
  731. data/lib/fog/bluebox/requests/compute/get_templates.rb +26 -0
  732. data/lib/fog/bluebox/requests/compute/reboot_block.rb +27 -0
  733. data/lib/fog/bluebox/requests/dns/create_record.rb +48 -0
  734. data/lib/fog/bluebox/requests/dns/create_zone.rb +52 -0
  735. data/lib/fog/bluebox/requests/dns/delete_record.rb +31 -0
  736. data/lib/fog/bluebox/requests/dns/delete_zone.rb +31 -0
  737. data/lib/fog/bluebox/requests/dns/get_record.rb +40 -0
  738. data/lib/fog/bluebox/requests/dns/get_records.rb +41 -0
  739. data/lib/fog/bluebox/requests/dns/get_zone.rb +44 -0
  740. data/lib/fog/bluebox/requests/dns/get_zones.rb +43 -0
  741. data/lib/fog/bluebox/requests/dns/update_record.rb +34 -0
  742. data/lib/fog/bluebox/requests/dns/update_zone.rb +30 -0
  743. data/lib/fog/brightbox.rb +10 -0
  744. data/lib/fog/brightbox/compute.rb +188 -0
  745. data/lib/fog/brightbox/models/compute/account.rb +63 -0
  746. data/lib/fog/brightbox/models/compute/cloud_ip.rb +57 -0
  747. data/lib/fog/brightbox/models/compute/cloud_ips.rb +34 -0
  748. data/lib/fog/brightbox/models/compute/firewall_policies.rb +29 -0
  749. data/lib/fog/brightbox/models/compute/firewall_policy.rb +65 -0
  750. data/lib/fog/brightbox/models/compute/firewall_rule.rb +54 -0
  751. data/lib/fog/brightbox/models/compute/firewall_rules.rb +24 -0
  752. data/lib/fog/brightbox/models/compute/flavor.rb +32 -0
  753. data/lib/fog/brightbox/models/compute/flavors.rb +28 -0
  754. data/lib/fog/brightbox/models/compute/image.rb +65 -0
  755. data/lib/fog/brightbox/models/compute/images.rb +28 -0
  756. data/lib/fog/brightbox/models/compute/load_balancer.rb +59 -0
  757. data/lib/fog/brightbox/models/compute/load_balancers.rb +28 -0
  758. data/lib/fog/brightbox/models/compute/server.rb +156 -0
  759. data/lib/fog/brightbox/models/compute/server_group.rb +96 -0
  760. data/lib/fog/brightbox/models/compute/server_groups.rb +29 -0
  761. data/lib/fog/brightbox/models/compute/servers.rb +29 -0
  762. data/lib/fog/brightbox/models/compute/user.rb +43 -0
  763. data/lib/fog/brightbox/models/compute/users.rb +29 -0
  764. data/lib/fog/brightbox/models/compute/zone.rb +22 -0
  765. data/lib/fog/brightbox/models/compute/zones.rb +29 -0
  766. data/lib/fog/brightbox/requests/compute/activate_console_server.rb +14 -0
  767. data/lib/fog/brightbox/requests/compute/add_listeners_load_balancer.rb +14 -0
  768. data/lib/fog/brightbox/requests/compute/add_nodes_load_balancer.rb +14 -0
  769. data/lib/fog/brightbox/requests/compute/add_servers_server_group.rb +28 -0
  770. data/lib/fog/brightbox/requests/compute/apply_to_firewall_policy.rb +14 -0
  771. data/lib/fog/brightbox/requests/compute/create_api_client.rb +13 -0
  772. data/lib/fog/brightbox/requests/compute/create_cloud_ip.rb +13 -0
  773. data/lib/fog/brightbox/requests/compute/create_firewall_policy.rb +13 -0
  774. data/lib/fog/brightbox/requests/compute/create_firewall_rule.rb +13 -0
  775. data/lib/fog/brightbox/requests/compute/create_image.rb +13 -0
  776. data/lib/fog/brightbox/requests/compute/create_load_balancer.rb +13 -0
  777. data/lib/fog/brightbox/requests/compute/create_server.rb +13 -0
  778. data/lib/fog/brightbox/requests/compute/create_server_group.rb +13 -0
  779. data/lib/fog/brightbox/requests/compute/destroy_api_client.rb +14 -0
  780. data/lib/fog/brightbox/requests/compute/destroy_cloud_ip.rb +14 -0
  781. data/lib/fog/brightbox/requests/compute/destroy_firewall_policy.rb +14 -0
  782. data/lib/fog/brightbox/requests/compute/destroy_firewall_rule.rb +14 -0
  783. data/lib/fog/brightbox/requests/compute/destroy_image.rb +14 -0
  784. data/lib/fog/brightbox/requests/compute/destroy_load_balancer.rb +14 -0
  785. data/lib/fog/brightbox/requests/compute/destroy_server.rb +14 -0
  786. data/lib/fog/brightbox/requests/compute/destroy_server_group.rb +14 -0
  787. data/lib/fog/brightbox/requests/compute/get_account.rb +13 -0
  788. data/lib/fog/brightbox/requests/compute/get_api_client.rb +14 -0
  789. data/lib/fog/brightbox/requests/compute/get_cloud_ip.rb +14 -0
  790. data/lib/fog/brightbox/requests/compute/get_firewall_policy.rb +14 -0
  791. data/lib/fog/brightbox/requests/compute/get_firewall_rule.rb +14 -0
  792. data/lib/fog/brightbox/requests/compute/get_image.rb +14 -0
  793. data/lib/fog/brightbox/requests/compute/get_interface.rb +14 -0
  794. data/lib/fog/brightbox/requests/compute/get_load_balancer.rb +14 -0
  795. data/lib/fog/brightbox/requests/compute/get_server.rb +14 -0
  796. data/lib/fog/brightbox/requests/compute/get_server_group.rb +14 -0
  797. data/lib/fog/brightbox/requests/compute/get_server_type.rb +14 -0
  798. data/lib/fog/brightbox/requests/compute/get_user.rb +14 -0
  799. data/lib/fog/brightbox/requests/compute/get_zone.rb +14 -0
  800. data/lib/fog/brightbox/requests/compute/list_api_clients.rb +13 -0
  801. data/lib/fog/brightbox/requests/compute/list_cloud_ips.rb +13 -0
  802. data/lib/fog/brightbox/requests/compute/list_firewall_policies.rb +13 -0
  803. data/lib/fog/brightbox/requests/compute/list_images.rb +13 -0
  804. data/lib/fog/brightbox/requests/compute/list_load_balancers.rb +13 -0
  805. data/lib/fog/brightbox/requests/compute/list_server_groups.rb +13 -0
  806. data/lib/fog/brightbox/requests/compute/list_server_types.rb +13 -0
  807. data/lib/fog/brightbox/requests/compute/list_servers.rb +13 -0
  808. data/lib/fog/brightbox/requests/compute/list_users.rb +13 -0
  809. data/lib/fog/brightbox/requests/compute/list_zones.rb +13 -0
  810. data/lib/fog/brightbox/requests/compute/map_cloud_ip.rb +14 -0
  811. data/lib/fog/brightbox/requests/compute/move_servers_server_group.rb +29 -0
  812. data/lib/fog/brightbox/requests/compute/remove_firewall_policy.rb +14 -0
  813. data/lib/fog/brightbox/requests/compute/remove_listeners_load_balancer.rb +14 -0
  814. data/lib/fog/brightbox/requests/compute/remove_nodes_load_balancer.rb +14 -0
  815. data/lib/fog/brightbox/requests/compute/remove_servers_server_group.rb +27 -0
  816. data/lib/fog/brightbox/requests/compute/reset_ftp_password_account.rb +13 -0
  817. data/lib/fog/brightbox/requests/compute/reset_secret_api_client.rb +14 -0
  818. data/lib/fog/brightbox/requests/compute/resize_server.rb +19 -0
  819. data/lib/fog/brightbox/requests/compute/shutdown_server.rb +14 -0
  820. data/lib/fog/brightbox/requests/compute/snapshot_server.rb +14 -0
  821. data/lib/fog/brightbox/requests/compute/start_server.rb +14 -0
  822. data/lib/fog/brightbox/requests/compute/stop_server.rb +14 -0
  823. data/lib/fog/brightbox/requests/compute/unmap_cloud_ip.rb +14 -0
  824. data/lib/fog/brightbox/requests/compute/update_account.rb +14 -0
  825. data/lib/fog/brightbox/requests/compute/update_api_client.rb +15 -0
  826. data/lib/fog/brightbox/requests/compute/update_cloud_ip.rb +15 -0
  827. data/lib/fog/brightbox/requests/compute/update_firewall_rule.rb +13 -0
  828. data/lib/fog/brightbox/requests/compute/update_image.rb +15 -0
  829. data/lib/fog/brightbox/requests/compute/update_load_balancer.rb +15 -0
  830. data/lib/fog/brightbox/requests/compute/update_server.rb +15 -0
  831. data/lib/fog/brightbox/requests/compute/update_server_group.rb +15 -0
  832. data/lib/fog/brightbox/requests/compute/update_user.rb +15 -0
  833. data/lib/fog/cdn.rb +27 -0
  834. data/lib/fog/clodo.rb +34 -0
  835. data/lib/fog/clodo/compute.rb +152 -0
  836. data/lib/fog/clodo/models/compute/image.rb +31 -0
  837. data/lib/fog/clodo/models/compute/images.rb +28 -0
  838. data/lib/fog/clodo/models/compute/server.rb +163 -0
  839. data/lib/fog/clodo/models/compute/servers.rb +36 -0
  840. data/lib/fog/clodo/requests/compute/add_ip_address.rb +49 -0
  841. data/lib/fog/clodo/requests/compute/create_server.rb +112 -0
  842. data/lib/fog/clodo/requests/compute/delete_ip_address.rb +47 -0
  843. data/lib/fog/clodo/requests/compute/delete_server.rb +44 -0
  844. data/lib/fog/clodo/requests/compute/get_image_details.rb +20 -0
  845. data/lib/fog/clodo/requests/compute/get_server_details.rb +49 -0
  846. data/lib/fog/clodo/requests/compute/list_images.rb +48 -0
  847. data/lib/fog/clodo/requests/compute/list_images_detail.rb +61 -0
  848. data/lib/fog/clodo/requests/compute/list_servers.rb +50 -0
  849. data/lib/fog/clodo/requests/compute/list_servers_detail.rb +51 -0
  850. data/lib/fog/clodo/requests/compute/move_ip_address.rb +34 -0
  851. data/lib/fog/clodo/requests/compute/reboot_server.rb +19 -0
  852. data/lib/fog/clodo/requests/compute/rebuild_server.rb +21 -0
  853. data/lib/fog/clodo/requests/compute/server_action.rb +25 -0
  854. data/lib/fog/clodo/requests/compute/start_server.rb +19 -0
  855. data/lib/fog/clodo/requests/compute/stop_server.rb +19 -0
  856. data/lib/fog/cloudstack.rb +28 -0
  857. data/lib/fog/cloudstack/compute.rb +254 -0
  858. data/lib/fog/cloudstack/requests/compute/acquire_ip_address.rb +21 -0
  859. data/lib/fog/cloudstack/requests/compute/assign_to_load_balancer_rule.rb +25 -0
  860. data/lib/fog/cloudstack/requests/compute/attach_volume.rb +23 -0
  861. data/lib/fog/cloudstack/requests/compute/authorize_security_group_ingress.rb +22 -0
  862. data/lib/fog/cloudstack/requests/compute/change_service_for_virtual_machine.rb +20 -0
  863. data/lib/fog/cloudstack/requests/compute/create_account.rb +20 -0
  864. data/lib/fog/cloudstack/requests/compute/create_domain.rb +20 -0
  865. data/lib/fog/cloudstack/requests/compute/create_load_balancer_rule.rb +20 -0
  866. data/lib/fog/cloudstack/requests/compute/create_network.rb +20 -0
  867. data/lib/fog/cloudstack/requests/compute/create_port_forwarding_rule.rb +20 -0
  868. data/lib/fog/cloudstack/requests/compute/create_security_group.rb +20 -0
  869. data/lib/fog/cloudstack/requests/compute/create_snapshot.rb +20 -0
  870. data/lib/fog/cloudstack/requests/compute/create_snapshot_policy.rb +20 -0
  871. data/lib/fog/cloudstack/requests/compute/create_ssh_key_pair.rb +22 -0
  872. data/lib/fog/cloudstack/requests/compute/create_user.rb +20 -0
  873. data/lib/fog/cloudstack/requests/compute/create_volume.rb +20 -0
  874. data/lib/fog/cloudstack/requests/compute/delete_account.rb +20 -0
  875. data/lib/fog/cloudstack/requests/compute/delete_domain.rb +20 -0
  876. data/lib/fog/cloudstack/requests/compute/delete_load_balancer_rule.rb +20 -0
  877. data/lib/fog/cloudstack/requests/compute/delete_port_forwarding_rule.rb +20 -0
  878. data/lib/fog/cloudstack/requests/compute/delete_security_group.rb +20 -0
  879. data/lib/fog/cloudstack/requests/compute/delete_snapshot.rb +20 -0
  880. data/lib/fog/cloudstack/requests/compute/delete_snapshot_policies.rb +20 -0
  881. data/lib/fog/cloudstack/requests/compute/delete_ssh_key_pair.rb +21 -0
  882. data/lib/fog/cloudstack/requests/compute/delete_user.rb +20 -0
  883. data/lib/fog/cloudstack/requests/compute/delete_volume.rb +20 -0
  884. data/lib/fog/cloudstack/requests/compute/deploy_virtual_machine.rb +33 -0
  885. data/lib/fog/cloudstack/requests/compute/destroy_virtual_machine.rb +20 -0
  886. data/lib/fog/cloudstack/requests/compute/detach_volume.rb +21 -0
  887. data/lib/fog/cloudstack/requests/compute/disable_account.rb +20 -0
  888. data/lib/fog/cloudstack/requests/compute/disable_user.rb +20 -0
  889. data/lib/fog/cloudstack/requests/compute/enable_account.rb +20 -0
  890. data/lib/fog/cloudstack/requests/compute/enable_user.rb +20 -0
  891. data/lib/fog/cloudstack/requests/compute/generate_usage_records.rb +28 -0
  892. data/lib/fog/cloudstack/requests/compute/get_vm_password.rb +21 -0
  893. data/lib/fog/cloudstack/requests/compute/list_accounts.rb +20 -0
  894. data/lib/fog/cloudstack/requests/compute/list_alerts.rb +20 -0
  895. data/lib/fog/cloudstack/requests/compute/list_async_jobs.rb +20 -0
  896. data/lib/fog/cloudstack/requests/compute/list_capabilities.rb +20 -0
  897. data/lib/fog/cloudstack/requests/compute/list_capacity.rb +20 -0
  898. data/lib/fog/cloudstack/requests/compute/list_clusters.rb +20 -0
  899. data/lib/fog/cloudstack/requests/compute/list_configurations.rb +20 -0
  900. data/lib/fog/cloudstack/requests/compute/list_disk_offerings.rb +20 -0
  901. data/lib/fog/cloudstack/requests/compute/list_domain_children.rb +20 -0
  902. data/lib/fog/cloudstack/requests/compute/list_domains.rb +20 -0
  903. data/lib/fog/cloudstack/requests/compute/list_events.rb +20 -0
  904. data/lib/fog/cloudstack/requests/compute/list_external_firewalls.rb +20 -0
  905. data/lib/fog/cloudstack/requests/compute/list_external_load_balancers.rb +20 -0
  906. data/lib/fog/cloudstack/requests/compute/list_hosts.rb +20 -0
  907. data/lib/fog/cloudstack/requests/compute/list_hypervisors.rb +20 -0
  908. data/lib/fog/cloudstack/requests/compute/list_instance_groups.rb +20 -0
  909. data/lib/fog/cloudstack/requests/compute/list_isos.rb +20 -0
  910. data/lib/fog/cloudstack/requests/compute/list_load_balancer_rule_instances.rb +23 -0
  911. data/lib/fog/cloudstack/requests/compute/list_load_balancer_rules.rb +22 -0
  912. data/lib/fog/cloudstack/requests/compute/list_network_offerings.rb +20 -0
  913. data/lib/fog/cloudstack/requests/compute/list_networks.rb +20 -0
  914. data/lib/fog/cloudstack/requests/compute/list_os_categories.rb +22 -0
  915. data/lib/fog/cloudstack/requests/compute/list_os_types.rb +22 -0
  916. data/lib/fog/cloudstack/requests/compute/list_pods.rb +20 -0
  917. data/lib/fog/cloudstack/requests/compute/list_port_forwarding_rules.rb +22 -0
  918. data/lib/fog/cloudstack/requests/compute/list_public_ip_addresses.rb +22 -0
  919. data/lib/fog/cloudstack/requests/compute/list_resource_limits.rb +20 -0
  920. data/lib/fog/cloudstack/requests/compute/list_security_groups.rb +20 -0
  921. data/lib/fog/cloudstack/requests/compute/list_service_offerings.rb +20 -0
  922. data/lib/fog/cloudstack/requests/compute/list_snapshot_policies.rb +20 -0
  923. data/lib/fog/cloudstack/requests/compute/list_snapshots.rb +20 -0
  924. data/lib/fog/cloudstack/requests/compute/list_ssh_key_pairs.rb +20 -0
  925. data/lib/fog/cloudstack/requests/compute/list_storage_pools.rb +20 -0
  926. data/lib/fog/cloudstack/requests/compute/list_templates.rb +20 -0
  927. data/lib/fog/cloudstack/requests/compute/list_usage_records.rb +28 -0
  928. data/lib/fog/cloudstack/requests/compute/list_users.rb +20 -0
  929. data/lib/fog/cloudstack/requests/compute/list_virtual_machines.rb +20 -0
  930. data/lib/fog/cloudstack/requests/compute/list_volumes.rb +20 -0
  931. data/lib/fog/cloudstack/requests/compute/list_zones.rb +20 -0
  932. data/lib/fog/cloudstack/requests/compute/migrate_virtual_machine.rb +20 -0
  933. data/lib/fog/cloudstack/requests/compute/query_async_job_result.rb +20 -0
  934. data/lib/fog/cloudstack/requests/compute/reboot_virtual_machine.rb +20 -0
  935. data/lib/fog/cloudstack/requests/compute/recover_virtual_machine.rb +20 -0
  936. data/lib/fog/cloudstack/requests/compute/register_ssh_key_pair.rb +20 -0
  937. data/lib/fog/cloudstack/requests/compute/register_user_keys.rb +20 -0
  938. data/lib/fog/cloudstack/requests/compute/remove_from_load_balancer_rule.rb +25 -0
  939. data/lib/fog/cloudstack/requests/compute/reset_password_for_virtual_machine.rb +21 -0
  940. data/lib/fog/cloudstack/requests/compute/revoke_security_group_ingress.rb +21 -0
  941. data/lib/fog/cloudstack/requests/compute/start_virtual_machine.rb +20 -0
  942. data/lib/fog/cloudstack/requests/compute/stop_virtual_machine.rb +20 -0
  943. data/lib/fog/cloudstack/requests/compute/update_account.rb +20 -0
  944. data/lib/fog/cloudstack/requests/compute/update_domain.rb +20 -0
  945. data/lib/fog/cloudstack/requests/compute/update_resource_count.rb +20 -0
  946. data/lib/fog/cloudstack/requests/compute/update_user.rb +20 -0
  947. data/lib/fog/cloudstack/requests/compute/update_virtual_machine.rb +20 -0
  948. data/lib/fog/compute.rb +101 -0
  949. data/lib/fog/compute/models/server.rb +37 -0
  950. data/lib/fog/core.rb +37 -0
  951. data/lib/fog/core/attributes.rb +204 -0
  952. data/lib/fog/core/collection.rb +135 -0
  953. data/lib/fog/core/connection.rb +35 -0
  954. data/lib/fog/core/credentials.rb +63 -0
  955. data/lib/fog/core/current_machine.rb +38 -0
  956. data/lib/fog/core/deprecation.rb +23 -0
  957. data/lib/fog/core/errors.rb +96 -0
  958. data/lib/fog/core/hmac.rb +48 -0
  959. data/lib/fog/core/json.rb +20 -0
  960. data/lib/fog/core/logger.rb +43 -0
  961. data/lib/fog/core/mock.rb +92 -0
  962. data/lib/fog/core/model.rb +62 -0
  963. data/lib/fog/core/parser.rb +103 -0
  964. data/lib/fog/core/provider.rb +35 -0
  965. data/lib/fog/core/scp.rb +79 -0
  966. data/lib/fog/core/service.rb +202 -0
  967. data/lib/fog/core/ssh.rb +115 -0
  968. data/lib/fog/core/time.rb +26 -0
  969. data/lib/fog/core/timeout.rb +11 -0
  970. data/lib/fog/core/wait_for.rb +17 -0
  971. data/lib/fog/dns.rb +59 -0
  972. data/lib/fog/dnsimple.rb +11 -0
  973. data/lib/fog/dnsimple/dns.rb +97 -0
  974. data/lib/fog/dnsimple/models/dns/record.rb +67 -0
  975. data/lib/fog/dnsimple/models/dns/records.rb +38 -0
  976. data/lib/fog/dnsimple/models/dns/zone.rb +50 -0
  977. data/lib/fog/dnsimple/models/dns/zones.rb +29 -0
  978. data/lib/fog/dnsimple/requests/dns/create_domain.rb +27 -0
  979. data/lib/fog/dnsimple/requests/dns/create_record.rb +48 -0
  980. data/lib/fog/dnsimple/requests/dns/delete_domain.rb +26 -0
  981. data/lib/fog/dnsimple/requests/dns/delete_record.rb +21 -0
  982. data/lib/fog/dnsimple/requests/dns/get_domain.rb +37 -0
  983. data/lib/fog/dnsimple/requests/dns/get_record.rb +34 -0
  984. data/lib/fog/dnsimple/requests/dns/list_domains.rb +35 -0
  985. data/lib/fog/dnsimple/requests/dns/list_records.rb +32 -0
  986. data/lib/fog/dnsimple/requests/dns/update_record.rb +42 -0
  987. data/lib/fog/dnsmadeeasy.rb +11 -0
  988. data/lib/fog/dnsmadeeasy/dns.rb +136 -0
  989. data/lib/fog/dnsmadeeasy/models/dns/record.rb +80 -0
  990. data/lib/fog/dnsmadeeasy/models/dns/records.rb +36 -0
  991. data/lib/fog/dnsmadeeasy/models/dns/zone.rb +42 -0
  992. data/lib/fog/dnsmadeeasy/models/dns/zones.rb +30 -0
  993. data/lib/fog/dnsmadeeasy/requests/dns/create_domain.rb +29 -0
  994. data/lib/fog/dnsmadeeasy/requests/dns/create_record.rb +62 -0
  995. data/lib/fog/dnsmadeeasy/requests/dns/create_secondary.rb +36 -0
  996. data/lib/fog/dnsmadeeasy/requests/dns/delete_all_domains.rb +23 -0
  997. data/lib/fog/dnsmadeeasy/requests/dns/delete_all_secondary.rb +22 -0
  998. data/lib/fog/dnsmadeeasy/requests/dns/delete_domain.rb +25 -0
  999. data/lib/fog/dnsmadeeasy/requests/dns/delete_record.rb +26 -0
  1000. data/lib/fog/dnsmadeeasy/requests/dns/delete_secondary.rb +25 -0
  1001. data/lib/fog/dnsmadeeasy/requests/dns/get_domain.rb +29 -0
  1002. data/lib/fog/dnsmadeeasy/requests/dns/get_record.rb +38 -0
  1003. data/lib/fog/dnsmadeeasy/requests/dns/get_secondary.rb +29 -0
  1004. data/lib/fog/dnsmadeeasy/requests/dns/list_domains.rb +24 -0
  1005. data/lib/fog/dnsmadeeasy/requests/dns/list_records.rb +42 -0
  1006. data/lib/fog/dnsmadeeasy/requests/dns/list_secondary.rb +24 -0
  1007. data/lib/fog/dnsmadeeasy/requests/dns/update_record.rb +56 -0
  1008. data/lib/fog/dnsmadeeasy/requests/dns/update_secondary.rb +36 -0
  1009. data/lib/fog/dynect.rb +26 -0
  1010. data/lib/fog/dynect/dns.rb +132 -0
  1011. data/lib/fog/dynect/models/dns/record.rb +66 -0
  1012. data/lib/fog/dynect/models/dns/records.rb +53 -0
  1013. data/lib/fog/dynect/models/dns/zone.rb +60 -0
  1014. data/lib/fog/dynect/models/dns/zones.rb +29 -0
  1015. data/lib/fog/dynect/requests/dns/delete_record.rb +55 -0
  1016. data/lib/fog/dynect/requests/dns/delete_zone.rb +42 -0
  1017. data/lib/fog/dynect/requests/dns/get_node_list.rb +55 -0
  1018. data/lib/fog/dynect/requests/dns/get_record.rb +83 -0
  1019. data/lib/fog/dynect/requests/dns/get_zone.rb +57 -0
  1020. data/lib/fog/dynect/requests/dns/post_record.rb +72 -0
  1021. data/lib/fog/dynect/requests/dns/post_session.rb +43 -0
  1022. data/lib/fog/dynect/requests/dns/post_zone.rb +71 -0
  1023. data/lib/fog/dynect/requests/dns/put_zone.rb +76 -0
  1024. data/lib/fog/ecloud.rb +11 -0
  1025. data/lib/fog/ecloud/compute.rb +1307 -0
  1026. data/lib/fog/ecloud/models/compute/backup_internet_service.rb +56 -0
  1027. data/lib/fog/ecloud/models/compute/backup_internet_services.rb +33 -0
  1028. data/lib/fog/ecloud/models/compute/catalog.rb +28 -0
  1029. data/lib/fog/ecloud/models/compute/catalog_item.rb +29 -0
  1030. data/lib/fog/ecloud/models/compute/firewall_acl.rb +24 -0
  1031. data/lib/fog/ecloud/models/compute/firewall_acls.rb +31 -0
  1032. data/lib/fog/ecloud/models/compute/internet_service.rb +117 -0
  1033. data/lib/fog/ecloud/models/compute/internet_services.rb +33 -0
  1034. data/lib/fog/ecloud/models/compute/ip.rb +49 -0
  1035. data/lib/fog/ecloud/models/compute/ips.rb +32 -0
  1036. data/lib/fog/ecloud/models/compute/network.rb +75 -0
  1037. data/lib/fog/ecloud/models/compute/networks.rb +33 -0
  1038. data/lib/fog/ecloud/models/compute/node.rb +43 -0
  1039. data/lib/fog/ecloud/models/compute/nodes.rb +31 -0
  1040. data/lib/fog/ecloud/models/compute/public_ip.rb +22 -0
  1041. data/lib/fog/ecloud/models/compute/public_ips.rb +36 -0
  1042. data/lib/fog/ecloud/models/compute/server.rb +209 -0
  1043. data/lib/fog/ecloud/models/compute/servers.rb +57 -0
  1044. data/lib/fog/ecloud/models/compute/task.rb +21 -0
  1045. data/lib/fog/ecloud/models/compute/tasks.rb +31 -0
  1046. data/lib/fog/ecloud/models/compute/vdc.rb +81 -0
  1047. data/lib/fog/ecloud/models/compute/vdcs.rb +40 -0
  1048. data/lib/fog/ecloud/requests/compute/add_backup_internet_service.rb +109 -0
  1049. data/lib/fog/ecloud/requests/compute/add_internet_service.rb +149 -0
  1050. data/lib/fog/ecloud/requests/compute/add_node.rb +62 -0
  1051. data/lib/fog/ecloud/requests/compute/clone_vapp.rb +40 -0
  1052. data/lib/fog/ecloud/requests/compute/configure_internet_service.rb +112 -0
  1053. data/lib/fog/ecloud/requests/compute/configure_network.rb +44 -0
  1054. data/lib/fog/ecloud/requests/compute/configure_network_ip.rb +66 -0
  1055. data/lib/fog/ecloud/requests/compute/configure_node.rb +56 -0
  1056. data/lib/fog/ecloud/requests/compute/configure_vapp.rb +144 -0
  1057. data/lib/fog/ecloud/requests/compute/delete_internet_service.rb +22 -0
  1058. data/lib/fog/ecloud/requests/compute/delete_node.rb +22 -0
  1059. data/lib/fog/ecloud/requests/compute/delete_vapp.rb +29 -0
  1060. data/lib/fog/ecloud/requests/compute/get_catalog.rb +44 -0
  1061. data/lib/fog/ecloud/requests/compute/get_catalog_item.rb +47 -0
  1062. data/lib/fog/ecloud/requests/compute/get_customization_options.rb +22 -0
  1063. data/lib/fog/ecloud/requests/compute/get_firewall_acl.rb +11 -0
  1064. data/lib/fog/ecloud/requests/compute/get_firewall_acls.rb +11 -0
  1065. data/lib/fog/ecloud/requests/compute/get_internet_services.rb +82 -0
  1066. data/lib/fog/ecloud/requests/compute/get_network.rb +44 -0
  1067. data/lib/fog/ecloud/requests/compute/get_network_extensions.rb +33 -0
  1068. data/lib/fog/ecloud/requests/compute/get_network_ip.rb +43 -0
  1069. data/lib/fog/ecloud/requests/compute/get_network_ips.rb +35 -0
  1070. data/lib/fog/ecloud/requests/compute/get_node.rb +40 -0
  1071. data/lib/fog/ecloud/requests/compute/get_nodes.rb +41 -0
  1072. data/lib/fog/ecloud/requests/compute/get_organization.rb +49 -0
  1073. data/lib/fog/ecloud/requests/compute/get_public_ip.rb +34 -0
  1074. data/lib/fog/ecloud/requests/compute/get_public_ips.rb +38 -0
  1075. data/lib/fog/ecloud/requests/compute/get_task.rb +11 -0
  1076. data/lib/fog/ecloud/requests/compute/get_task_list.rb +11 -0
  1077. data/lib/fog/ecloud/requests/compute/get_vapp.rb +99 -0
  1078. data/lib/fog/ecloud/requests/compute/get_vapp_template.rb +11 -0
  1079. data/lib/fog/ecloud/requests/compute/get_vdc.rb +84 -0
  1080. data/lib/fog/ecloud/requests/compute/get_versions.rb +37 -0
  1081. data/lib/fog/ecloud/requests/compute/instantiate_vapp_template.rb +142 -0
  1082. data/lib/fog/ecloud/requests/compute/login.rb +48 -0
  1083. data/lib/fog/ecloud/requests/compute/power_off.rb +23 -0
  1084. data/lib/fog/ecloud/requests/compute/power_on.rb +23 -0
  1085. data/lib/fog/ecloud/requests/compute/power_reset.rb +11 -0
  1086. data/lib/fog/ecloud/requests/compute/power_shutdown.rb +11 -0
  1087. data/lib/fog/glesys.rb +11 -0
  1088. data/lib/fog/glesys/compute.rb +130 -0
  1089. data/lib/fog/glesys/models/compute/ip.rb +75 -0
  1090. data/lib/fog/glesys/models/compute/ips.rb +39 -0
  1091. data/lib/fog/glesys/models/compute/server.rb +71 -0
  1092. data/lib/fog/glesys/models/compute/servers.rb +34 -0
  1093. data/lib/fog/glesys/models/compute/template.rb +25 -0
  1094. data/lib/fog/glesys/models/compute/templates.rb +22 -0
  1095. data/lib/fog/glesys/requests/compute/create.rb +15 -0
  1096. data/lib/fog/glesys/requests/compute/destroy.rb +18 -0
  1097. data/lib/fog/glesys/requests/compute/ip_add.rb +14 -0
  1098. data/lib/fog/glesys/requests/compute/ip_details.rb +14 -0
  1099. data/lib/fog/glesys/requests/compute/ip_list_free.rb +14 -0
  1100. data/lib/fog/glesys/requests/compute/ip_list_own.rb +14 -0
  1101. data/lib/fog/glesys/requests/compute/ip_release.rb +14 -0
  1102. data/lib/fog/glesys/requests/compute/ip_remove.rb +14 -0
  1103. data/lib/fog/glesys/requests/compute/ip_take.rb +14 -0
  1104. data/lib/fog/glesys/requests/compute/list_servers.rb +19 -0
  1105. data/lib/fog/glesys/requests/compute/server_details.rb +14 -0
  1106. data/lib/fog/glesys/requests/compute/server_status.rb +14 -0
  1107. data/lib/fog/glesys/requests/compute/start.rb +14 -0
  1108. data/lib/fog/glesys/requests/compute/stop.rb +14 -0
  1109. data/lib/fog/glesys/requests/compute/template_list.rb +14 -0
  1110. data/lib/fog/go_grid.rb +11 -0
  1111. data/lib/fog/go_grid/compute.rb +117 -0
  1112. data/lib/fog/go_grid/models/compute/image.rb +60 -0
  1113. data/lib/fog/go_grid/models/compute/images.rb +33 -0
  1114. data/lib/fog/go_grid/models/compute/password.rb +50 -0
  1115. data/lib/fog/go_grid/models/compute/passwords.rb +36 -0
  1116. data/lib/fog/go_grid/models/compute/server.rb +102 -0
  1117. data/lib/fog/go_grid/models/compute/servers.rb +36 -0
  1118. data/lib/fog/go_grid/requests/compute/common_lookup_list.rb +28 -0
  1119. data/lib/fog/go_grid/requests/compute/grid_image_get.rb +41 -0
  1120. data/lib/fog/go_grid/requests/compute/grid_image_list.rb +44 -0
  1121. data/lib/fog/go_grid/requests/compute/grid_ip_list.rb +30 -0
  1122. data/lib/fog/go_grid/requests/compute/grid_loadbalancer_list.rb +28 -0
  1123. data/lib/fog/go_grid/requests/compute/grid_server_add.rb +36 -0
  1124. data/lib/fog/go_grid/requests/compute/grid_server_delete.rb +25 -0
  1125. data/lib/fog/go_grid/requests/compute/grid_server_get.rb +25 -0
  1126. data/lib/fog/go_grid/requests/compute/grid_server_list.rb +30 -0
  1127. data/lib/fog/go_grid/requests/compute/grid_server_power.rb +26 -0
  1128. data/lib/fog/go_grid/requests/compute/support_password_get.rb +28 -0
  1129. data/lib/fog/go_grid/requests/compute/support_password_list.rb +30 -0
  1130. data/lib/fog/google.rb +23 -0
  1131. data/lib/fog/google/models/storage/directories.rb +43 -0
  1132. data/lib/fog/google/models/storage/directory.rb +78 -0
  1133. data/lib/fog/google/models/storage/file.rb +141 -0
  1134. data/lib/fog/google/models/storage/files.rb +103 -0
  1135. data/lib/fog/google/parsers/storage/access_control_list.rb +48 -0
  1136. data/lib/fog/google/parsers/storage/copy_object.rb +22 -0
  1137. data/lib/fog/google/parsers/storage/get_bucket.rb +62 -0
  1138. data/lib/fog/google/parsers/storage/get_bucket_logging.rb +40 -0
  1139. data/lib/fog/google/parsers/storage/get_bucket_object_versions.rb +88 -0
  1140. data/lib/fog/google/parsers/storage/get_bucket_versioning.rb +24 -0
  1141. data/lib/fog/google/parsers/storage/get_request_payment.rb +20 -0
  1142. data/lib/fog/google/parsers/storage/get_service.rb +32 -0
  1143. data/lib/fog/google/requests/storage/copy_object.rb +72 -0
  1144. data/lib/fog/google/requests/storage/delete_bucket.rb +46 -0
  1145. data/lib/fog/google/requests/storage/delete_object.rb +50 -0
  1146. data/lib/fog/google/requests/storage/get_bucket.rb +111 -0
  1147. data/lib/fog/google/requests/storage/get_bucket_acl.rb +63 -0
  1148. data/lib/fog/google/requests/storage/get_object.rb +104 -0
  1149. data/lib/fog/google/requests/storage/get_object_acl.rb +74 -0
  1150. data/lib/fog/google/requests/storage/get_object_http_url.rb +51 -0
  1151. data/lib/fog/google/requests/storage/get_object_https_url.rb +51 -0
  1152. data/lib/fog/google/requests/storage/get_object_torrent.rb +47 -0
  1153. data/lib/fog/google/requests/storage/get_object_url.rb +37 -0
  1154. data/lib/fog/google/requests/storage/get_service.rb +53 -0
  1155. data/lib/fog/google/requests/storage/head_object.rb +64 -0
  1156. data/lib/fog/google/requests/storage/put_bucket.rb +75 -0
  1157. data/lib/fog/google/requests/storage/put_bucket_acl.rb +73 -0
  1158. data/lib/fog/google/requests/storage/put_object.rb +94 -0
  1159. data/lib/fog/google/requests/storage/put_object_url.rb +54 -0
  1160. data/lib/fog/google/storage.rb +271 -0
  1161. data/lib/fog/joyent.rb +8 -0
  1162. data/lib/fog/joyent/compute.rb +228 -0
  1163. data/lib/fog/joyent/errors.rb +90 -0
  1164. data/lib/fog/joyent/models/compute/flavor.rb +17 -0
  1165. data/lib/fog/joyent/models/compute/flavors.rb +25 -0
  1166. data/lib/fog/joyent/models/compute/image.rb +18 -0
  1167. data/lib/fog/joyent/models/compute/images.rb +25 -0
  1168. data/lib/fog/joyent/models/compute/key.rb +19 -0
  1169. data/lib/fog/joyent/models/compute/keys.rb +34 -0
  1170. data/lib/fog/joyent/models/compute/server.rb +117 -0
  1171. data/lib/fog/joyent/models/compute/servers.rb +35 -0
  1172. data/lib/fog/joyent/models/compute/snapshot.rb +45 -0
  1173. data/lib/fog/joyent/models/compute/snapshots.rb +37 -0
  1174. data/lib/fog/joyent/requests/compute/add_machine_tags.rb +20 -0
  1175. data/lib/fog/joyent/requests/compute/create_key.rb +56 -0
  1176. data/lib/fog/joyent/requests/compute/create_machine.rb +16 -0
  1177. data/lib/fog/joyent/requests/compute/create_machine_snapshot.rb +18 -0
  1178. data/lib/fog/joyent/requests/compute/delete_all_machine_metadata.rb +16 -0
  1179. data/lib/fog/joyent/requests/compute/delete_all_machine_tags.rb +15 -0
  1180. data/lib/fog/joyent/requests/compute/delete_key.rb +29 -0
  1181. data/lib/fog/joyent/requests/compute/delete_machine.rb +15 -0
  1182. data/lib/fog/joyent/requests/compute/delete_machine_metadata.rb +18 -0
  1183. data/lib/fog/joyent/requests/compute/delete_machine_snapshot.rb +21 -0
  1184. data/lib/fog/joyent/requests/compute/delete_machine_tag.rb +15 -0
  1185. data/lib/fog/joyent/requests/compute/get_dataset.rb +28 -0
  1186. data/lib/fog/joyent/requests/compute/get_key.rb +29 -0
  1187. data/lib/fog/joyent/requests/compute/get_machine.rb +29 -0
  1188. data/lib/fog/joyent/requests/compute/get_machine_metadata.rb +25 -0
  1189. data/lib/fog/joyent/requests/compute/get_machine_snapshot.rb +14 -0
  1190. data/lib/fog/joyent/requests/compute/get_machine_tag.rb +19 -0
  1191. data/lib/fog/joyent/requests/compute/get_package.rb +33 -0
  1192. data/lib/fog/joyent/requests/compute/list_datasets.rb +24 -0
  1193. data/lib/fog/joyent/requests/compute/list_keys.rb +25 -0
  1194. data/lib/fog/joyent/requests/compute/list_machine_snapshots.rb +14 -0
  1195. data/lib/fog/joyent/requests/compute/list_machine_tags.rb +20 -0
  1196. data/lib/fog/joyent/requests/compute/list_machines.rb +25 -0
  1197. data/lib/fog/joyent/requests/compute/list_packages.rb +36 -0
  1198. data/lib/fog/joyent/requests/compute/reboot_machine.rb +15 -0
  1199. data/lib/fog/joyent/requests/compute/resize_machine.rb +13 -0
  1200. data/lib/fog/joyent/requests/compute/start_machine.rb +16 -0
  1201. data/lib/fog/joyent/requests/compute/start_machine_from_snapshot.rb +15 -0
  1202. data/lib/fog/joyent/requests/compute/stop_machine.rb +16 -0
  1203. data/lib/fog/joyent/requests/compute/update_machine_metadata.rb +15 -0
  1204. data/lib/fog/libvirt.rb +11 -0
  1205. data/lib/fog/libvirt/compute.rb +108 -0
  1206. data/lib/fog/libvirt/models/compute/README.md +76 -0
  1207. data/lib/fog/libvirt/models/compute/interface.rb +48 -0
  1208. data/lib/fog/libvirt/models/compute/interfaces.rb +62 -0
  1209. data/lib/fog/libvirt/models/compute/network.rb +65 -0
  1210. data/lib/fog/libvirt/models/compute/networks.rb +61 -0
  1211. data/lib/fog/libvirt/models/compute/node.rb +45 -0
  1212. data/lib/fog/libvirt/models/compute/nodes.rb +38 -0
  1213. data/lib/fog/libvirt/models/compute/pool.rb +200 -0
  1214. data/lib/fog/libvirt/models/compute/pools.rb +60 -0
  1215. data/lib/fog/libvirt/models/compute/server.rb +526 -0
  1216. data/lib/fog/libvirt/models/compute/servers.rb +79 -0
  1217. data/lib/fog/libvirt/models/compute/templates/network.xml.erb +6 -0
  1218. data/lib/fog/libvirt/models/compute/templates/pool.xml.erb +6 -0
  1219. data/lib/fog/libvirt/models/compute/templates/server.xml.erb +57 -0
  1220. data/lib/fog/libvirt/models/compute/templates/volume.xml.erb +14 -0
  1221. data/lib/fog/libvirt/models/compute/uri.rb +146 -0
  1222. data/lib/fog/libvirt/models/compute/util.rb +24 -0
  1223. data/lib/fog/libvirt/models/compute/volume.rb +176 -0
  1224. data/lib/fog/libvirt/models/compute/volumes.rb +87 -0
  1225. data/lib/fog/linode.rb +10 -0
  1226. data/lib/fog/linode/compute.rb +119 -0
  1227. data/lib/fog/linode/dns.rb +94 -0
  1228. data/lib/fog/linode/models/compute/data_center.rb +12 -0
  1229. data/lib/fog/linode/models/compute/data_centers.rb +26 -0
  1230. data/lib/fog/linode/models/compute/disk.rb +62 -0
  1231. data/lib/fog/linode/models/compute/disks.rb +40 -0
  1232. data/lib/fog/linode/models/compute/flavor.rb +23 -0
  1233. data/lib/fog/linode/models/compute/flavors.rb +32 -0
  1234. data/lib/fog/linode/models/compute/image.rb +14 -0
  1235. data/lib/fog/linode/models/compute/images.rb +33 -0
  1236. data/lib/fog/linode/models/compute/ip.rb +30 -0
  1237. data/lib/fog/linode/models/compute/ips.rb +40 -0
  1238. data/lib/fog/linode/models/compute/kernel.rb +12 -0
  1239. data/lib/fog/linode/models/compute/kernels.rb +32 -0
  1240. data/lib/fog/linode/models/compute/server.rb +98 -0
  1241. data/lib/fog/linode/models/compute/servers.rb +32 -0
  1242. data/lib/fog/linode/models/compute/stack_script.rb +13 -0
  1243. data/lib/fog/linode/models/compute/stack_scripts.rb +32 -0
  1244. data/lib/fog/linode/models/dns/record.rb +72 -0
  1245. data/lib/fog/linode/models/dns/records.rb +37 -0
  1246. data/lib/fog/linode/models/dns/zone.rb +84 -0
  1247. data/lib/fog/linode/models/dns/zones.rb +29 -0
  1248. data/lib/fog/linode/requests/compute/avail_datacenters.rb +23 -0
  1249. data/lib/fog/linode/requests/compute/avail_distributions.rb +30 -0
  1250. data/lib/fog/linode/requests/compute/avail_kernels.rb +30 -0
  1251. data/lib/fog/linode/requests/compute/avail_linodeplans.rb +34 -0
  1252. data/lib/fog/linode/requests/compute/avail_stackscripts.rb +19 -0
  1253. data/lib/fog/linode/requests/compute/linode_boot.rb +17 -0
  1254. data/lib/fog/linode/requests/compute/linode_config_create.rb +23 -0
  1255. data/lib/fog/linode/requests/compute/linode_config_list.rb +20 -0
  1256. data/lib/fog/linode/requests/compute/linode_create.rb +33 -0
  1257. data/lib/fog/linode/requests/compute/linode_delete.rb +28 -0
  1258. data/lib/fog/linode/requests/compute/linode_disk_create.rb +23 -0
  1259. data/lib/fog/linode/requests/compute/linode_disk_createfromdistribution.rb +24 -0
  1260. data/lib/fog/linode/requests/compute/linode_disk_createfromstackscript.rb +26 -0
  1261. data/lib/fog/linode/requests/compute/linode_disk_delete.rb +21 -0
  1262. data/lib/fog/linode/requests/compute/linode_disk_list.rb +21 -0
  1263. data/lib/fog/linode/requests/compute/linode_ip_addprivate.rb +17 -0
  1264. data/lib/fog/linode/requests/compute/linode_ip_list.rb +21 -0
  1265. data/lib/fog/linode/requests/compute/linode_list.rb +30 -0
  1266. data/lib/fog/linode/requests/compute/linode_reboot.rb +28 -0
  1267. data/lib/fog/linode/requests/compute/linode_shutdown.rb +17 -0
  1268. data/lib/fog/linode/requests/compute/linode_update.rb +17 -0
  1269. data/lib/fog/linode/requests/compute/stackscript_list.rb +32 -0
  1270. data/lib/fog/linode/requests/dns/domain_create.rb +43 -0
  1271. data/lib/fog/linode/requests/dns/domain_delete.rb +27 -0
  1272. data/lib/fog/linode/requests/dns/domain_list.rb +42 -0
  1273. data/lib/fog/linode/requests/dns/domain_resource_create.rb +44 -0
  1274. data/lib/fog/linode/requests/dns/domain_resource_delete.rb +28 -0
  1275. data/lib/fog/linode/requests/dns/domain_resource_list.rb +43 -0
  1276. data/lib/fog/linode/requests/dns/domain_resource_update.rb +46 -0
  1277. data/lib/fog/linode/requests/dns/domain_update.rb +40 -0
  1278. data/lib/fog/local.rb +11 -0
  1279. data/lib/fog/local/models/storage/directories.rb +33 -0
  1280. data/lib/fog/local/models/storage/directory.rb +57 -0
  1281. data/lib/fog/local/models/storage/file.rb +120 -0
  1282. data/lib/fog/local/models/storage/files.rb +87 -0
  1283. data/lib/fog/local/storage.rb +79 -0
  1284. data/lib/fog/new_servers.rb +11 -0
  1285. data/lib/fog/new_servers/compute.rb +98 -0
  1286. data/lib/fog/new_servers/requests/compute/add_server.rb +33 -0
  1287. data/lib/fog/new_servers/requests/compute/cancel_server.rb +30 -0
  1288. data/lib/fog/new_servers/requests/compute/get_server.rb +36 -0
  1289. data/lib/fog/new_servers/requests/compute/list_images.rb +27 -0
  1290. data/lib/fog/new_servers/requests/compute/list_plans.rb +30 -0
  1291. data/lib/fog/new_servers/requests/compute/list_servers.rb +36 -0
  1292. data/lib/fog/new_servers/requests/compute/reboot_server.rb +24 -0
  1293. data/lib/fog/ninefold.rb +12 -0
  1294. data/lib/fog/ninefold/compute.rb +143 -0
  1295. data/lib/fog/ninefold/models/compute/address.rb +103 -0
  1296. data/lib/fog/ninefold/models/compute/addresses.rb +31 -0
  1297. data/lib/fog/ninefold/models/compute/flavor.rb +29 -0
  1298. data/lib/fog/ninefold/models/compute/flavors.rb +30 -0
  1299. data/lib/fog/ninefold/models/compute/image.rb +42 -0
  1300. data/lib/fog/ninefold/models/compute/images.rb +30 -0
  1301. data/lib/fog/ninefold/models/compute/ip_forwarding_rule.rb +79 -0
  1302. data/lib/fog/ninefold/models/compute/ip_forwarding_rules.rb +31 -0
  1303. data/lib/fog/ninefold/models/compute/server.rb +185 -0
  1304. data/lib/fog/ninefold/models/compute/servers.rb +31 -0
  1305. data/lib/fog/ninefold/models/storage/directories.rb +48 -0
  1306. data/lib/fog/ninefold/models/storage/directory.rb +53 -0
  1307. data/lib/fog/ninefold/models/storage/file.rb +108 -0
  1308. data/lib/fog/ninefold/models/storage/files.rb +73 -0
  1309. data/lib/fog/ninefold/requests/compute/associate_ip_address.rb +14 -0
  1310. data/lib/fog/ninefold/requests/compute/change_service_for_virtual_machine.rb +14 -0
  1311. data/lib/fog/ninefold/requests/compute/create_ip_forwarding_rule.rb +14 -0
  1312. data/lib/fog/ninefold/requests/compute/delete_ip_forwarding_rule.rb +14 -0
  1313. data/lib/fog/ninefold/requests/compute/deploy_virtual_machine.rb +14 -0
  1314. data/lib/fog/ninefold/requests/compute/destroy_virtual_machine.rb +14 -0
  1315. data/lib/fog/ninefold/requests/compute/disable_static_nat.rb +14 -0
  1316. data/lib/fog/ninefold/requests/compute/disassociate_ip_address.rb +14 -0
  1317. data/lib/fog/ninefold/requests/compute/enable_static_nat.rb +14 -0
  1318. data/lib/fog/ninefold/requests/compute/list_accounts.rb +14 -0
  1319. data/lib/fog/ninefold/requests/compute/list_async_jobs.rb +14 -0
  1320. data/lib/fog/ninefold/requests/compute/list_capabilities.rb +14 -0
  1321. data/lib/fog/ninefold/requests/compute/list_disk_offerings.rb +14 -0
  1322. data/lib/fog/ninefold/requests/compute/list_events.rb +14 -0
  1323. data/lib/fog/ninefold/requests/compute/list_hypervisors.rb +14 -0
  1324. data/lib/fog/ninefold/requests/compute/list_ip_forwarding_rules.rb +14 -0
  1325. data/lib/fog/ninefold/requests/compute/list_network_offerings.rb +14 -0
  1326. data/lib/fog/ninefold/requests/compute/list_networks.rb +14 -0
  1327. data/lib/fog/ninefold/requests/compute/list_public_ip_addresses.rb +14 -0
  1328. data/lib/fog/ninefold/requests/compute/list_resource_limits.rb +14 -0
  1329. data/lib/fog/ninefold/requests/compute/list_service_offerings.rb +14 -0
  1330. data/lib/fog/ninefold/requests/compute/list_templates.rb +14 -0
  1331. data/lib/fog/ninefold/requests/compute/list_virtual_machines.rb +14 -0
  1332. data/lib/fog/ninefold/requests/compute/list_zones.rb +14 -0
  1333. data/lib/fog/ninefold/requests/compute/query_async_job_result.rb +14 -0
  1334. data/lib/fog/ninefold/requests/compute/reboot_virtual_machine.rb +14 -0
  1335. data/lib/fog/ninefold/requests/compute/reset_password_for_virtual_machine.rb +14 -0
  1336. data/lib/fog/ninefold/requests/compute/start_virtual_machine.rb +14 -0
  1337. data/lib/fog/ninefold/requests/compute/stop_virtual_machine.rb +14 -0
  1338. data/lib/fog/ninefold/requests/compute/update_virtual_machine.rb +14 -0
  1339. data/lib/fog/ninefold/requests/storage/delete_namespace.rb +19 -0
  1340. data/lib/fog/ninefold/requests/storage/get_namespace.rb +20 -0
  1341. data/lib/fog/ninefold/requests/storage/head_namespace.rb +20 -0
  1342. data/lib/fog/ninefold/requests/storage/post_namespace.rb +20 -0
  1343. data/lib/fog/ninefold/requests/storage/put_namespace.rb +20 -0
  1344. data/lib/fog/ninefold/storage.rb +154 -0
  1345. data/lib/fog/openstack.rb +115 -0
  1346. data/lib/fog/openstack/compute.rb +196 -0
  1347. data/lib/fog/openstack/models/compute/flavor.rb +20 -0
  1348. data/lib/fog/openstack/models/compute/flavors.rb +28 -0
  1349. data/lib/fog/openstack/models/compute/image.rb +57 -0
  1350. data/lib/fog/openstack/models/compute/images.rb +33 -0
  1351. data/lib/fog/openstack/models/compute/meta.rb +29 -0
  1352. data/lib/fog/openstack/models/compute/metadata.rb +69 -0
  1353. data/lib/fog/openstack/models/compute/server.rb +201 -0
  1354. data/lib/fog/openstack/models/compute/servers.rb +36 -0
  1355. data/lib/fog/openstack/models/meta_parent.rb +33 -0
  1356. data/lib/fog/openstack/requests/compute/change_password_server.rb +24 -0
  1357. data/lib/fog/openstack/requests/compute/confirm_resized_server.rb +24 -0
  1358. data/lib/fog/openstack/requests/compute/create_image.rb +49 -0
  1359. data/lib/fog/openstack/requests/compute/create_server.rb +70 -0
  1360. data/lib/fog/openstack/requests/compute/delete_image.rb +40 -0
  1361. data/lib/fog/openstack/requests/compute/delete_meta.rb +28 -0
  1362. data/lib/fog/openstack/requests/compute/delete_server.rb +38 -0
  1363. data/lib/fog/openstack/requests/compute/get_flavor_details.rb +43 -0
  1364. data/lib/fog/openstack/requests/compute/get_image_details.rb +33 -0
  1365. data/lib/fog/openstack/requests/compute/get_meta.rb +29 -0
  1366. data/lib/fog/openstack/requests/compute/get_server_details.rb +32 -0
  1367. data/lib/fog/openstack/requests/compute/list_addresses.rb +32 -0
  1368. data/lib/fog/openstack/requests/compute/list_flavors.rb +38 -0
  1369. data/lib/fog/openstack/requests/compute/list_flavors_detail.rb +38 -0
  1370. data/lib/fog/openstack/requests/compute/list_images.rb +33 -0
  1371. data/lib/fog/openstack/requests/compute/list_images_detail.rb +39 -0
  1372. data/lib/fog/openstack/requests/compute/list_metadata.rb +28 -0
  1373. data/lib/fog/openstack/requests/compute/list_private_addresses.rb +32 -0
  1374. data/lib/fog/openstack/requests/compute/list_public_addresses.rb +32 -0
  1375. data/lib/fog/openstack/requests/compute/list_servers.rb +33 -0
  1376. data/lib/fog/openstack/requests/compute/list_servers_detail.rb +39 -0
  1377. data/lib/fog/openstack/requests/compute/reboot_server.rb +24 -0
  1378. data/lib/fog/openstack/requests/compute/rebuild_server.rb +31 -0
  1379. data/lib/fog/openstack/requests/compute/resize_server.rb +24 -0
  1380. data/lib/fog/openstack/requests/compute/revert_resized_server.rb +30 -0
  1381. data/lib/fog/openstack/requests/compute/server_action.rb +18 -0
  1382. data/lib/fog/openstack/requests/compute/set_metadata.rb +45 -0
  1383. data/lib/fog/openstack/requests/compute/update_meta.rb +45 -0
  1384. data/lib/fog/openstack/requests/compute/update_metadata.rb +46 -0
  1385. data/lib/fog/openstack/requests/compute/update_server.rb +35 -0
  1386. data/lib/fog/ovirt.rb +17 -0
  1387. data/lib/fog/ovirt/compute.rb +93 -0
  1388. data/lib/fog/ovirt/models/compute/cluster.rb +26 -0
  1389. data/lib/fog/ovirt/models/compute/clusters.rb +23 -0
  1390. data/lib/fog/ovirt/models/compute/server.rb +85 -0
  1391. data/lib/fog/ovirt/models/compute/servers.rb +30 -0
  1392. data/lib/fog/ovirt/models/compute/template.rb +42 -0
  1393. data/lib/fog/ovirt/models/compute/templates.rb +23 -0
  1394. data/lib/fog/ovirt/requests/compute/create_vm.rb +20 -0
  1395. data/lib/fog/ovirt/requests/compute/datacenters.rb +22 -0
  1396. data/lib/fog/ovirt/requests/compute/destroy_vm.rb +22 -0
  1397. data/lib/fog/ovirt/requests/compute/get_cluster.rb +18 -0
  1398. data/lib/fog/ovirt/requests/compute/get_template.rb +18 -0
  1399. data/lib/fog/ovirt/requests/compute/get_virtual_machine.rb +18 -0
  1400. data/lib/fog/ovirt/requests/compute/list_clusters.rb +20 -0
  1401. data/lib/fog/ovirt/requests/compute/list_templates.rb +20 -0
  1402. data/lib/fog/ovirt/requests/compute/list_virtual_machines.rb +20 -0
  1403. data/lib/fog/ovirt/requests/compute/mock_files/cluster.xml +20 -0
  1404. data/lib/fog/ovirt/requests/compute/mock_files/clusters.xml +39 -0
  1405. data/lib/fog/ovirt/requests/compute/mock_files/data_centers.xml +17 -0
  1406. data/lib/fog/ovirt/requests/compute/mock_files/storage_domains.xml +36 -0
  1407. data/lib/fog/ovirt/requests/compute/mock_files/template.xml +39 -0
  1408. data/lib/fog/ovirt/requests/compute/mock_files/templates.xml +110 -0
  1409. data/lib/fog/ovirt/requests/compute/mock_files/vm.xml +54 -0
  1410. data/lib/fog/ovirt/requests/compute/mock_files/vms.xml +152 -0
  1411. data/lib/fog/ovirt/requests/compute/storage_domains.rb +22 -0
  1412. data/lib/fog/ovirt/requests/compute/update_vm.rb +20 -0
  1413. data/lib/fog/ovirt/requests/compute/vm_action.rb +26 -0
  1414. data/lib/fog/providers.rb +29 -0
  1415. data/lib/fog/rackspace.rb +81 -0
  1416. data/lib/fog/rackspace/cdn.rb +101 -0
  1417. data/lib/fog/rackspace/compute.rb +158 -0
  1418. data/lib/fog/rackspace/dns.rb +140 -0
  1419. data/lib/fog/rackspace/load_balancers.rb +159 -0
  1420. data/lib/fog/rackspace/models/compute/flavor.rb +46 -0
  1421. data/lib/fog/rackspace/models/compute/flavors.rb +28 -0
  1422. data/lib/fog/rackspace/models/compute/image.rb +48 -0
  1423. data/lib/fog/rackspace/models/compute/images.rb +33 -0
  1424. data/lib/fog/rackspace/models/compute/server.rb +130 -0
  1425. data/lib/fog/rackspace/models/compute/servers.rb +36 -0
  1426. data/lib/fog/rackspace/models/dns/callback.rb +30 -0
  1427. data/lib/fog/rackspace/models/dns/record.rb +82 -0
  1428. data/lib/fog/rackspace/models/dns/records.rb +38 -0
  1429. data/lib/fog/rackspace/models/dns/zone.rb +67 -0
  1430. data/lib/fog/rackspace/models/dns/zones.rb +33 -0
  1431. data/lib/fog/rackspace/models/load_balancers/access_rule.rb +39 -0
  1432. data/lib/fog/rackspace/models/load_balancers/access_rules.rb +29 -0
  1433. data/lib/fog/rackspace/models/load_balancers/load_balancer.rb +226 -0
  1434. data/lib/fog/rackspace/models/load_balancers/load_balancers.rb +27 -0
  1435. data/lib/fog/rackspace/models/load_balancers/node.rb +58 -0
  1436. data/lib/fog/rackspace/models/load_balancers/nodes.rb +29 -0
  1437. data/lib/fog/rackspace/models/load_balancers/virtual_ip.rb +35 -0
  1438. data/lib/fog/rackspace/models/load_balancers/virtual_ips.rb +32 -0
  1439. data/lib/fog/rackspace/models/storage/directories.rb +43 -0
  1440. data/lib/fog/rackspace/models/storage/directory.rb +80 -0
  1441. data/lib/fog/rackspace/models/storage/file.rb +82 -0
  1442. data/lib/fog/rackspace/models/storage/files.rb +94 -0
  1443. data/lib/fog/rackspace/requests/cdn/get_containers.rb +31 -0
  1444. data/lib/fog/rackspace/requests/cdn/head_container.rb +33 -0
  1445. data/lib/fog/rackspace/requests/cdn/post_container.rb +30 -0
  1446. data/lib/fog/rackspace/requests/cdn/put_container.rb +30 -0
  1447. data/lib/fog/rackspace/requests/compute/confirm_resized_server.rb +34 -0
  1448. data/lib/fog/rackspace/requests/compute/create_image.rb +60 -0
  1449. data/lib/fog/rackspace/requests/compute/create_server.rb +94 -0
  1450. data/lib/fog/rackspace/requests/compute/delete_image.rb +45 -0
  1451. data/lib/fog/rackspace/requests/compute/delete_server.rb +43 -0
  1452. data/lib/fog/rackspace/requests/compute/get_flavor_details.rb +52 -0
  1453. data/lib/fog/rackspace/requests/compute/get_image_details.rb +27 -0
  1454. data/lib/fog/rackspace/requests/compute/get_server_details.rb +52 -0
  1455. data/lib/fog/rackspace/requests/compute/list_addresses.rb +43 -0
  1456. data/lib/fog/rackspace/requests/compute/list_flavors.rb +45 -0
  1457. data/lib/fog/rackspace/requests/compute/list_flavors_detail.rb +47 -0
  1458. data/lib/fog/rackspace/requests/compute/list_images.rb +40 -0
  1459. data/lib/fog/rackspace/requests/compute/list_images_detail.rb +49 -0
  1460. data/lib/fog/rackspace/requests/compute/list_private_addresses.rb +41 -0
  1461. data/lib/fog/rackspace/requests/compute/list_public_addresses.rb +41 -0
  1462. data/lib/fog/rackspace/requests/compute/list_servers.rb +41 -0
  1463. data/lib/fog/rackspace/requests/compute/list_servers_detail.rb +56 -0
  1464. data/lib/fog/rackspace/requests/compute/reboot_server.rb +30 -0
  1465. data/lib/fog/rackspace/requests/compute/resize_server.rb +39 -0
  1466. data/lib/fog/rackspace/requests/compute/revert_resized_server.rb +35 -0
  1467. data/lib/fog/rackspace/requests/compute/server_action.rb +25 -0
  1468. data/lib/fog/rackspace/requests/compute/update_server.rb +45 -0
  1469. data/lib/fog/rackspace/requests/dns/add_records.rb +34 -0
  1470. data/lib/fog/rackspace/requests/dns/callback.rb +19 -0
  1471. data/lib/fog/rackspace/requests/dns/create_domains.rb +48 -0
  1472. data/lib/fog/rackspace/requests/dns/list_domain_details.rb +32 -0
  1473. data/lib/fog/rackspace/requests/dns/list_domains.rb +21 -0
  1474. data/lib/fog/rackspace/requests/dns/list_record_details.rb +21 -0
  1475. data/lib/fog/rackspace/requests/dns/list_records.rb +23 -0
  1476. data/lib/fog/rackspace/requests/dns/list_subdomains.rb +23 -0
  1477. data/lib/fog/rackspace/requests/dns/modify_domain.rb +36 -0
  1478. data/lib/fog/rackspace/requests/dns/modify_record.rb +37 -0
  1479. data/lib/fog/rackspace/requests/dns/remove_domain.rb +29 -0
  1480. data/lib/fog/rackspace/requests/dns/remove_domains.rb +27 -0
  1481. data/lib/fog/rackspace/requests/dns/remove_record.rb +21 -0
  1482. data/lib/fog/rackspace/requests/dns/remove_records.rb +20 -0
  1483. data/lib/fog/rackspace/requests/load_balancers/create_access_rule.rb +24 -0
  1484. data/lib/fog/rackspace/requests/load_balancers/create_load_balancer.rb +26 -0
  1485. data/lib/fog/rackspace/requests/load_balancers/create_node.rb +27 -0
  1486. data/lib/fog/rackspace/requests/load_balancers/create_virtual_ip.rb +20 -0
  1487. data/lib/fog/rackspace/requests/load_balancers/delete_access_rule.rb +15 -0
  1488. data/lib/fog/rackspace/requests/load_balancers/delete_all_access_rules.rb +15 -0
  1489. data/lib/fog/rackspace/requests/load_balancers/delete_load_balancer.rb +15 -0
  1490. data/lib/fog/rackspace/requests/load_balancers/delete_node.rb +15 -0
  1491. data/lib/fog/rackspace/requests/load_balancers/delete_nodes.rb +16 -0
  1492. data/lib/fog/rackspace/requests/load_balancers/delete_virtual_ip.rb +15 -0
  1493. data/lib/fog/rackspace/requests/load_balancers/get_connection_logging.rb +15 -0
  1494. data/lib/fog/rackspace/requests/load_balancers/get_connection_throttling.rb +15 -0
  1495. data/lib/fog/rackspace/requests/load_balancers/get_error_page.rb +15 -0
  1496. data/lib/fog/rackspace/requests/load_balancers/get_load_balancer.rb +15 -0
  1497. data/lib/fog/rackspace/requests/load_balancers/get_load_balancer_usage.rb +21 -0
  1498. data/lib/fog/rackspace/requests/load_balancers/get_monitor.rb +15 -0
  1499. data/lib/fog/rackspace/requests/load_balancers/get_node.rb +15 -0
  1500. data/lib/fog/rackspace/requests/load_balancers/get_session_persistence.rb +15 -0
  1501. data/lib/fog/rackspace/requests/load_balancers/get_usage.rb +20 -0
  1502. data/lib/fog/rackspace/requests/load_balancers/list_access_rules.rb +15 -0
  1503. data/lib/fog/rackspace/requests/load_balancers/list_algorithms.rb +15 -0
  1504. data/lib/fog/rackspace/requests/load_balancers/list_load_balancers.rb +21 -0
  1505. data/lib/fog/rackspace/requests/load_balancers/list_nodes.rb +15 -0
  1506. data/lib/fog/rackspace/requests/load_balancers/list_protocols.rb +15 -0
  1507. data/lib/fog/rackspace/requests/load_balancers/list_virtual_ips.rb +15 -0
  1508. data/lib/fog/rackspace/requests/load_balancers/remove_connection_throttling.rb +15 -0
  1509. data/lib/fog/rackspace/requests/load_balancers/remove_error_page.rb +15 -0
  1510. data/lib/fog/rackspace/requests/load_balancers/remove_monitor.rb +15 -0
  1511. data/lib/fog/rackspace/requests/load_balancers/remove_session_persistence.rb +15 -0
  1512. data/lib/fog/rackspace/requests/load_balancers/set_connection_logging.rb +21 -0
  1513. data/lib/fog/rackspace/requests/load_balancers/set_connection_throttling.rb +22 -0
  1514. data/lib/fog/rackspace/requests/load_balancers/set_error_page.rb +21 -0
  1515. data/lib/fog/rackspace/requests/load_balancers/set_monitor.rb +31 -0
  1516. data/lib/fog/rackspace/requests/load_balancers/set_session_persistence.rb +21 -0
  1517. data/lib/fog/rackspace/requests/load_balancers/update_load_balancer.rb +24 -0
  1518. data/lib/fog/rackspace/requests/load_balancers/update_node.rb +26 -0
  1519. data/lib/fog/rackspace/requests/storage/copy_object.rb +27 -0
  1520. data/lib/fog/rackspace/requests/storage/delete_container.rb +22 -0
  1521. data/lib/fog/rackspace/requests/storage/delete_object.rb +23 -0
  1522. data/lib/fog/rackspace/requests/storage/get_container.rb +44 -0
  1523. data/lib/fog/rackspace/requests/storage/get_containers.rb +33 -0
  1524. data/lib/fog/rackspace/requests/storage/get_object.rb +24 -0
  1525. data/lib/fog/rackspace/requests/storage/head_container.rb +28 -0
  1526. data/lib/fog/rackspace/requests/storage/head_containers.rb +25 -0
  1527. data/lib/fog/rackspace/requests/storage/head_object.rb +23 -0
  1528. data/lib/fog/rackspace/requests/storage/put_container.rb +22 -0
  1529. data/lib/fog/rackspace/requests/storage/put_object.rb +30 -0
  1530. data/lib/fog/rackspace/requests/storage/put_object_manifest.rb +25 -0
  1531. data/lib/fog/rackspace/storage.rb +132 -0
  1532. data/lib/fog/slicehost.rb +12 -0
  1533. data/lib/fog/slicehost/compute.rb +104 -0
  1534. data/lib/fog/slicehost/dns.rb +101 -0
  1535. data/lib/fog/slicehost/models/compute/flavor.rb +45 -0
  1536. data/lib/fog/slicehost/models/compute/flavors.rb +28 -0
  1537. data/lib/fog/slicehost/models/compute/image.rb +17 -0
  1538. data/lib/fog/slicehost/models/compute/images.rb +27 -0
  1539. data/lib/fog/slicehost/models/compute/server.rb +113 -0
  1540. data/lib/fog/slicehost/models/compute/servers.rb +38 -0
  1541. data/lib/fog/slicehost/models/dns/record.rb +73 -0
  1542. data/lib/fog/slicehost/models/dns/records.rb +36 -0
  1543. data/lib/fog/slicehost/models/dns/zone.rb +69 -0
  1544. data/lib/fog/slicehost/models/dns/zones.rb +28 -0
  1545. data/lib/fog/slicehost/parsers/compute/create_slice.rb +31 -0
  1546. data/lib/fog/slicehost/parsers/compute/get_backups.rb +32 -0
  1547. data/lib/fog/slicehost/parsers/compute/get_flavor.rb +26 -0
  1548. data/lib/fog/slicehost/parsers/compute/get_flavors.rb +30 -0
  1549. data/lib/fog/slicehost/parsers/compute/get_image.rb +26 -0
  1550. data/lib/fog/slicehost/parsers/compute/get_images.rb +30 -0
  1551. data/lib/fog/slicehost/parsers/compute/get_slice.rb +31 -0
  1552. data/lib/fog/slicehost/parsers/compute/get_slices.rb +35 -0
  1553. data/lib/fog/slicehost/parsers/dns/create_record.rb +32 -0
  1554. data/lib/fog/slicehost/parsers/dns/create_zone.rb +26 -0
  1555. data/lib/fog/slicehost/parsers/dns/get_record.rb +38 -0
  1556. data/lib/fog/slicehost/parsers/dns/get_records.rb +38 -0
  1557. data/lib/fog/slicehost/parsers/dns/get_zone.rb +26 -0
  1558. data/lib/fog/slicehost/parsers/dns/get_zones.rb +30 -0
  1559. data/lib/fog/slicehost/requests/compute/create_slice.rb +41 -0
  1560. data/lib/fog/slicehost/requests/compute/delete_slice.rb +23 -0
  1561. data/lib/fog/slicehost/requests/compute/get_backups.rb +29 -0
  1562. data/lib/fog/slicehost/requests/compute/get_flavor.rb +32 -0
  1563. data/lib/fog/slicehost/requests/compute/get_flavors.rb +29 -0
  1564. data/lib/fog/slicehost/requests/compute/get_image.rb +30 -0
  1565. data/lib/fog/slicehost/requests/compute/get_images.rb +27 -0
  1566. data/lib/fog/slicehost/requests/compute/get_slice.rb +38 -0
  1567. data/lib/fog/slicehost/requests/compute/get_slices.rb +35 -0
  1568. data/lib/fog/slicehost/requests/compute/reboot_slice.rb +36 -0
  1569. data/lib/fog/slicehost/requests/dns/create_record.rb +52 -0
  1570. data/lib/fog/slicehost/requests/dns/create_zone.rb +46 -0
  1571. data/lib/fog/slicehost/requests/dns/delete_record.rb +23 -0
  1572. data/lib/fog/slicehost/requests/dns/delete_zone.rb +23 -0
  1573. data/lib/fog/slicehost/requests/dns/get_record.rb +32 -0
  1574. data/lib/fog/slicehost/requests/dns/get_records.rb +32 -0
  1575. data/lib/fog/slicehost/requests/dns/get_zone.rb +32 -0
  1576. data/lib/fog/slicehost/requests/dns/get_zones.rb +30 -0
  1577. data/lib/fog/slicehost/requests/dns/update_record.rb +43 -0
  1578. data/lib/fog/storage.rb +81 -0
  1579. data/lib/fog/storm_on_demand.rb +12 -0
  1580. data/lib/fog/storm_on_demand/compute.rb +137 -0
  1581. data/lib/fog/storm_on_demand/models/compute/balancer.rb +38 -0
  1582. data/lib/fog/storm_on_demand/models/compute/balancers.rb +21 -0
  1583. data/lib/fog/storm_on_demand/models/compute/config.rb +25 -0
  1584. data/lib/fog/storm_on_demand/models/compute/configs.rb +22 -0
  1585. data/lib/fog/storm_on_demand/models/compute/image.rb +20 -0
  1586. data/lib/fog/storm_on_demand/models/compute/images.rb +21 -0
  1587. data/lib/fog/storm_on_demand/models/compute/private_ip.rb +19 -0
  1588. data/lib/fog/storm_on_demand/models/compute/private_ips.rb +31 -0
  1589. data/lib/fog/storm_on_demand/models/compute/server.rb +74 -0
  1590. data/lib/fog/storm_on_demand/models/compute/servers.rb +26 -0
  1591. data/lib/fog/storm_on_demand/models/compute/stat.rb +23 -0
  1592. data/lib/fog/storm_on_demand/models/compute/stats.rb +22 -0
  1593. data/lib/fog/storm_on_demand/models/compute/template.rb +22 -0
  1594. data/lib/fog/storm_on_demand/models/compute/templates.rb +21 -0
  1595. data/lib/fog/storm_on_demand/requests/compute/add_balancer_node.rb +16 -0
  1596. data/lib/fog/storm_on_demand/requests/compute/clone_server.rb +16 -0
  1597. data/lib/fog/storm_on_demand/requests/compute/create_server.rb +16 -0
  1598. data/lib/fog/storm_on_demand/requests/compute/delete_server.rb +16 -0
  1599. data/lib/fog/storm_on_demand/requests/compute/get_server.rb +16 -0
  1600. data/lib/fog/storm_on_demand/requests/compute/get_stats.rb +16 -0
  1601. data/lib/fog/storm_on_demand/requests/compute/list_balancers.rb +16 -0
  1602. data/lib/fog/storm_on_demand/requests/compute/list_configs.rb +16 -0
  1603. data/lib/fog/storm_on_demand/requests/compute/list_images.rb +16 -0
  1604. data/lib/fog/storm_on_demand/requests/compute/list_private_ips.rb +16 -0
  1605. data/lib/fog/storm_on_demand/requests/compute/list_servers.rb +16 -0
  1606. data/lib/fog/storm_on_demand/requests/compute/list_templates.rb +16 -0
  1607. data/lib/fog/storm_on_demand/requests/compute/reboot_server.rb +16 -0
  1608. data/lib/fog/storm_on_demand/requests/compute/remove_balancer_node.rb +16 -0
  1609. data/lib/fog/storm_on_demand/requests/compute/resize_server.rb +16 -0
  1610. data/lib/fog/terremark.rb +11 -0
  1611. data/lib/fog/terremark/models/shared/address.rb +29 -0
  1612. data/lib/fog/terremark/models/shared/addresses.rb +49 -0
  1613. data/lib/fog/terremark/models/shared/network.rb +35 -0
  1614. data/lib/fog/terremark/models/shared/networks.rb +52 -0
  1615. data/lib/fog/terremark/models/shared/server.rb +110 -0
  1616. data/lib/fog/terremark/models/shared/servers.rb +55 -0
  1617. data/lib/fog/terremark/models/shared/task.rb +50 -0
  1618. data/lib/fog/terremark/models/shared/tasks.rb +58 -0
  1619. data/lib/fog/terremark/models/shared/vdc.rb +39 -0
  1620. data/lib/fog/terremark/models/shared/vdcs.rb +52 -0
  1621. data/lib/fog/terremark/parser.rb +19 -0
  1622. data/lib/fog/terremark/parsers/shared/get_catalog.rb +46 -0
  1623. data/lib/fog/terremark/parsers/shared/get_catalog_item.rb +46 -0
  1624. data/lib/fog/terremark/parsers/shared/get_internet_services.rb +60 -0
  1625. data/lib/fog/terremark/parsers/shared/get_network_ips.rb +29 -0
  1626. data/lib/fog/terremark/parsers/shared/get_node_services.rb +36 -0
  1627. data/lib/fog/terremark/parsers/shared/get_organization.rb +52 -0
  1628. data/lib/fog/terremark/parsers/shared/get_organizations.rb +32 -0
  1629. data/lib/fog/terremark/parsers/shared/get_public_ips.rb +30 -0
  1630. data/lib/fog/terremark/parsers/shared/get_tasks_list.rb +52 -0
  1631. data/lib/fog/terremark/parsers/shared/get_vapp_template.rb +46 -0
  1632. data/lib/fog/terremark/parsers/shared/get_vdc.rb +123 -0
  1633. data/lib/fog/terremark/parsers/shared/instantiate_vapp_template.rb +41 -0
  1634. data/lib/fog/terremark/parsers/shared/internet_service.rb +65 -0
  1635. data/lib/fog/terremark/parsers/shared/network.rb +51 -0
  1636. data/lib/fog/terremark/parsers/shared/node_service.rb +32 -0
  1637. data/lib/fog/terremark/parsers/shared/public_ip.rb +26 -0
  1638. data/lib/fog/terremark/parsers/shared/task.rb +40 -0
  1639. data/lib/fog/terremark/parsers/shared/vapp.rb +77 -0
  1640. data/lib/fog/terremark/requests/shared/add_internet_service.rb +55 -0
  1641. data/lib/fog/terremark/requests/shared/add_node_service.rb +55 -0
  1642. data/lib/fog/terremark/requests/shared/create_internet_service.rb +55 -0
  1643. data/lib/fog/terremark/requests/shared/delete_internet_service.rb +22 -0
  1644. data/lib/fog/terremark/requests/shared/delete_node_service.rb +22 -0
  1645. data/lib/fog/terremark/requests/shared/delete_public_ip.rb +22 -0
  1646. data/lib/fog/terremark/requests/shared/delete_vapp.rb +22 -0
  1647. data/lib/fog/terremark/requests/shared/deploy_vapp.rb +35 -0
  1648. data/lib/fog/terremark/requests/shared/get_catalog.rb +32 -0
  1649. data/lib/fog/terremark/requests/shared/get_catalog_item.rb +35 -0
  1650. data/lib/fog/terremark/requests/shared/get_internet_services.rb +35 -0
  1651. data/lib/fog/terremark/requests/shared/get_network.rb +73 -0
  1652. data/lib/fog/terremark/requests/shared/get_network_ips.rb +32 -0
  1653. data/lib/fog/terremark/requests/shared/get_node_services.rb +30 -0
  1654. data/lib/fog/terremark/requests/shared/get_organization.rb +86 -0
  1655. data/lib/fog/terremark/requests/shared/get_organizations.rb +49 -0
  1656. data/lib/fog/terremark/requests/shared/get_public_ip.rb +33 -0
  1657. data/lib/fog/terremark/requests/shared/get_public_ips.rb +72 -0
  1658. data/lib/fog/terremark/requests/shared/get_task.rb +39 -0
  1659. data/lib/fog/terremark/requests/shared/get_tasks_list.rb +33 -0
  1660. data/lib/fog/terremark/requests/shared/get_vapp.rb +42 -0
  1661. data/lib/fog/terremark/requests/shared/get_vapp_template.rb +35 -0
  1662. data/lib/fog/terremark/requests/shared/get_vdc.rb +125 -0
  1663. data/lib/fog/terremark/requests/shared/instantiate_vapp_template.rb +71 -0
  1664. data/lib/fog/terremark/requests/shared/power_off.rb +35 -0
  1665. data/lib/fog/terremark/requests/shared/power_on.rb +35 -0
  1666. data/lib/fog/terremark/requests/shared/power_reset.rb +35 -0
  1667. data/lib/fog/terremark/requests/shared/power_shutdown.rb +24 -0
  1668. data/lib/fog/terremark/shared.rb +293 -0
  1669. data/lib/fog/terremark/vcloud.rb +126 -0
  1670. data/lib/fog/vcloud.rb +11 -0
  1671. data/lib/fog/vcloud/compute.rb +372 -0
  1672. data/lib/fog/vcloud/models/compute/catalog.rb +22 -0
  1673. data/lib/fog/vcloud/models/compute/catalog_item.rb +29 -0
  1674. data/lib/fog/vcloud/models/compute/catalog_items.rb +32 -0
  1675. data/lib/fog/vcloud/models/compute/catalogs.rb +38 -0
  1676. data/lib/fog/vcloud/models/compute/helpers/status.rb +37 -0
  1677. data/lib/fog/vcloud/models/compute/ip.rb +42 -0
  1678. data/lib/fog/vcloud/models/compute/ips.rb +33 -0
  1679. data/lib/fog/vcloud/models/compute/network.rb +23 -0
  1680. data/lib/fog/vcloud/models/compute/networks.rb +48 -0
  1681. data/lib/fog/vcloud/models/compute/organization.rb +43 -0
  1682. data/lib/fog/vcloud/models/compute/organizations.rb +32 -0
  1683. data/lib/fog/vcloud/models/compute/server.rb +271 -0
  1684. data/lib/fog/vcloud/models/compute/servers.rb +52 -0
  1685. data/lib/fog/vcloud/models/compute/task.rb +21 -0
  1686. data/lib/fog/vcloud/models/compute/tasks.rb +30 -0
  1687. data/lib/fog/vcloud/models/compute/vapp.rb +43 -0
  1688. data/lib/fog/vcloud/models/compute/vapps.rb +28 -0
  1689. data/lib/fog/vcloud/models/compute/vdc.rb +41 -0
  1690. data/lib/fog/vcloud/models/compute/vdcs.rb +35 -0
  1691. data/lib/fog/vcloud/requests/compute/clone_vapp.rb +40 -0
  1692. data/lib/fog/vcloud/requests/compute/configure_network.rb +43 -0
  1693. data/lib/fog/vcloud/requests/compute/configure_network_ip.rb +46 -0
  1694. data/lib/fog/vcloud/requests/compute/configure_node.rb +38 -0
  1695. data/lib/fog/vcloud/requests/compute/configure_vapp.rb +112 -0
  1696. data/lib/fog/vcloud/requests/compute/configure_vm.rb +247 -0
  1697. data/lib/fog/vcloud/requests/compute/configure_vm_disks.rb +100 -0
  1698. data/lib/fog/vcloud/requests/compute/configure_vm_memory.rb +40 -0
  1699. data/lib/fog/vcloud/requests/compute/configure_vm_name_description.rb +30 -0
  1700. data/lib/fog/vcloud/requests/compute/delete_node.rb +10 -0
  1701. data/lib/fog/vcloud/requests/compute/delete_vapp.rb +10 -0
  1702. data/lib/fog/vcloud/requests/compute/get_catalog.rb +10 -0
  1703. data/lib/fog/vcloud/requests/compute/get_catalog_item.rb +10 -0
  1704. data/lib/fog/vcloud/requests/compute/get_customization_options.rb +10 -0
  1705. data/lib/fog/vcloud/requests/compute/get_network.rb +10 -0
  1706. data/lib/fog/vcloud/requests/compute/get_network_extensions.rb +11 -0
  1707. data/lib/fog/vcloud/requests/compute/get_network_ip.rb +15 -0
  1708. data/lib/fog/vcloud/requests/compute/get_network_ips.rb +15 -0
  1709. data/lib/fog/vcloud/requests/compute/get_organization.rb +11 -0
  1710. data/lib/fog/vcloud/requests/compute/get_server.rb +10 -0
  1711. data/lib/fog/vcloud/requests/compute/get_task.rb +11 -0
  1712. data/lib/fog/vcloud/requests/compute/get_task_list.rb +11 -0
  1713. data/lib/fog/vcloud/requests/compute/get_vapp.rb +10 -0
  1714. data/lib/fog/vcloud/requests/compute/get_vapp_template.rb +11 -0
  1715. data/lib/fog/vcloud/requests/compute/get_vdc.rb +10 -0
  1716. data/lib/fog/vcloud/requests/compute/get_vm_disks.rb +16 -0
  1717. data/lib/fog/vcloud/requests/compute/get_vm_memory.rb +16 -0
  1718. data/lib/fog/vcloud/requests/compute/instantiate_vapp_template.rb +83 -0
  1719. data/lib/fog/vcloud/requests/compute/login.rb +27 -0
  1720. data/lib/fog/vcloud/requests/compute/power_off.rb +10 -0
  1721. data/lib/fog/vcloud/requests/compute/power_on.rb +11 -0
  1722. data/lib/fog/vcloud/requests/compute/power_reset.rb +11 -0
  1723. data/lib/fog/vcloud/requests/compute/power_shutdown.rb +11 -0
  1724. data/lib/fog/vcloud/requests/compute/undeploy.rb +23 -0
  1725. data/lib/fog/virtual_box.rb +11 -0
  1726. data/lib/fog/virtual_box/compute.rb +53 -0
  1727. data/lib/fog/virtual_box/models/compute/medium.rb +87 -0
  1728. data/lib/fog/virtual_box/models/compute/medium_format.rb +34 -0
  1729. data/lib/fog/virtual_box/models/compute/mediums.rb +32 -0
  1730. data/lib/fog/virtual_box/models/compute/nat_engine.rb +65 -0
  1731. data/lib/fog/virtual_box/models/compute/nat_redirect.rb +91 -0
  1732. data/lib/fog/virtual_box/models/compute/nat_redirects.rb +41 -0
  1733. data/lib/fog/virtual_box/models/compute/network_adapter.rb +82 -0
  1734. data/lib/fog/virtual_box/models/compute/network_adapters.rb +42 -0
  1735. data/lib/fog/virtual_box/models/compute/server.rb +241 -0
  1736. data/lib/fog/virtual_box/models/compute/servers.rb +41 -0
  1737. data/lib/fog/virtual_box/models/compute/storage_controller.rb +83 -0
  1738. data/lib/fog/virtual_box/models/compute/storage_controllers.rb +38 -0
  1739. data/lib/fog/vmfusion.rb +11 -0
  1740. data/lib/fog/vmfusion/compute.rb +29 -0
  1741. data/lib/fog/vmfusion/models/compute/server.rb +291 -0
  1742. data/lib/fog/vmfusion/models/compute/servers.rb +41 -0
  1743. data/lib/fog/voxel.rb +16 -0
  1744. data/lib/fog/voxel/compute.rb +125 -0
  1745. data/lib/fog/voxel/models/compute/image.rb +15 -0
  1746. data/lib/fog/voxel/models/compute/images.rb +30 -0
  1747. data/lib/fog/voxel/models/compute/server.rb +78 -0
  1748. data/lib/fog/voxel/models/compute/servers.rb +32 -0
  1749. data/lib/fog/voxel/parsers/compute/basic.rb +31 -0
  1750. data/lib/fog/voxel/parsers/compute/devices_list.rb +111 -0
  1751. data/lib/fog/voxel/parsers/compute/images_list.rb +59 -0
  1752. data/lib/fog/voxel/parsers/compute/voxcloud_create.rb +40 -0
  1753. data/lib/fog/voxel/parsers/compute/voxcloud_delete.rb +31 -0
  1754. data/lib/fog/voxel/parsers/compute/voxcloud_status.rb +42 -0
  1755. data/lib/fog/voxel/requests/compute/devices_list.rb +24 -0
  1756. data/lib/fog/voxel/requests/compute/devices_power.rb +22 -0
  1757. data/lib/fog/voxel/requests/compute/images_list.rb +31 -0
  1758. data/lib/fog/voxel/requests/compute/voxcloud_create.rb +22 -0
  1759. data/lib/fog/voxel/requests/compute/voxcloud_delete.rb +20 -0
  1760. data/lib/fog/voxel/requests/compute/voxcloud_status.rb +24 -0
  1761. data/lib/fog/vsphere.rb +17 -0
  1762. data/lib/fog/vsphere/compute.rb +180 -0
  1763. data/lib/fog/vsphere/models/compute/server.rb +100 -0
  1764. data/lib/fog/vsphere/models/compute/servers.rb +43 -0
  1765. data/lib/fog/vsphere/requests/compute/current_time.rb +22 -0
  1766. data/lib/fog/vsphere/requests/compute/datacenters.rb +34 -0
  1767. data/lib/fog/vsphere/requests/compute/find_vm_by_ref.rb +41 -0
  1768. data/lib/fog/vsphere/requests/compute/list_virtual_machines.rb +236 -0
  1769. data/lib/fog/vsphere/requests/compute/vm_clone.rb +171 -0
  1770. data/lib/fog/vsphere/requests/compute/vm_create.rb +97 -0
  1771. data/lib/fog/vsphere/requests/compute/vm_destroy.rb +34 -0
  1772. data/lib/fog/vsphere/requests/compute/vm_power_off.rb +41 -0
  1773. data/lib/fog/vsphere/requests/compute/vm_power_on.rb +30 -0
  1774. data/lib/fog/vsphere/requests/compute/vm_reboot.rb +35 -0
  1775. data/lib/fog/vsphere/requests/compute/vm_reconfig_cpus.rb +23 -0
  1776. data/lib/fog/vsphere/requests/compute/vm_reconfig_hardware.rb +25 -0
  1777. data/lib/fog/vsphere/requests/compute/vm_reconfig_memory.rb +23 -0
  1778. data/lib/fog/zerigo.rb +11 -0
  1779. data/lib/fog/zerigo/dns.rb +120 -0
  1780. data/lib/fog/zerigo/models/dns/record.rb +70 -0
  1781. data/lib/fog/zerigo/models/dns/records.rb +46 -0
  1782. data/lib/fog/zerigo/models/dns/zone.rb +88 -0
  1783. data/lib/fog/zerigo/models/dns/zones.rb +30 -0
  1784. data/lib/fog/zerigo/parsers/dns/count_hosts.rb +24 -0
  1785. data/lib/fog/zerigo/parsers/dns/count_zones.rb +24 -0
  1786. data/lib/fog/zerigo/parsers/dns/create_host.rb +28 -0
  1787. data/lib/fog/zerigo/parsers/dns/create_zone.rb +26 -0
  1788. data/lib/fog/zerigo/parsers/dns/find_hosts.rb +32 -0
  1789. data/lib/fog/zerigo/parsers/dns/get_host.rb +28 -0
  1790. data/lib/fog/zerigo/parsers/dns/get_zone.rb +58 -0
  1791. data/lib/fog/zerigo/parsers/dns/get_zone_stats.rb +26 -0
  1792. data/lib/fog/zerigo/parsers/dns/list_hosts.rb +32 -0
  1793. data/lib/fog/zerigo/parsers/dns/list_zones.rb +30 -0
  1794. data/lib/fog/zerigo/requests/dns/count_hosts.rb +47 -0
  1795. data/lib/fog/zerigo/requests/dns/count_zones.rb +39 -0
  1796. data/lib/fog/zerigo/requests/dns/create_host.rb +128 -0
  1797. data/lib/fog/zerigo/requests/dns/create_zone.rb +132 -0
  1798. data/lib/fog/zerigo/requests/dns/delete_host.rb +43 -0
  1799. data/lib/fog/zerigo/requests/dns/delete_zone.rb +42 -0
  1800. data/lib/fog/zerigo/requests/dns/find_hosts.rb +76 -0
  1801. data/lib/fog/zerigo/requests/dns/get_host.rb +56 -0
  1802. data/lib/fog/zerigo/requests/dns/get_zone.rb +66 -0
  1803. data/lib/fog/zerigo/requests/dns/get_zone_stats.rb +59 -0
  1804. data/lib/fog/zerigo/requests/dns/list_hosts.rb +59 -0
  1805. data/lib/fog/zerigo/requests/dns/list_zones.rb +60 -0
  1806. data/lib/fog/zerigo/requests/dns/update_host.rb +71 -0
  1807. data/lib/fog/zerigo/requests/dns/update_zone.rb +89 -0
  1808. data/spec/core/current_machine_spec.rb +22 -0
  1809. data/spec/ecloud/bin_spec.rb +28 -0
  1810. data/spec/ecloud/models/backup_internet_service_spec.rb +48 -0
  1811. data/spec/ecloud/models/backup_internet_services_spec.rb +28 -0
  1812. data/spec/ecloud/models/internet_service_spec.rb +104 -0
  1813. data/spec/ecloud/models/internet_services_spec.rb +29 -0
  1814. data/spec/ecloud/models/ip_spec.rb +33 -0
  1815. data/spec/ecloud/models/ips_spec.rb +28 -0
  1816. data/spec/ecloud/models/network_spec.rb +71 -0
  1817. data/spec/ecloud/models/networks_spec.rb +27 -0
  1818. data/spec/ecloud/models/node_spec.rb +38 -0
  1819. data/spec/ecloud/models/nodes_spec.rb +28 -0
  1820. data/spec/ecloud/models/public_ip_spec.rb +36 -0
  1821. data/spec/ecloud/models/public_ips_spec.rb +27 -0
  1822. data/spec/ecloud/models/server_spec.rb +62 -0
  1823. data/spec/ecloud/models/vdc_spec.rb +63 -0
  1824. data/spec/ecloud/models/vdcs_spec.rb +28 -0
  1825. data/spec/ecloud/requests/add_backup_internet_service_spec.rb +60 -0
  1826. data/spec/ecloud/requests/add_internet_service_spec.rb +65 -0
  1827. data/spec/ecloud/requests/add_node_spec.rb +56 -0
  1828. data/spec/ecloud/requests/configure_internet_service_spec.rb +61 -0
  1829. data/spec/ecloud/requests/configure_network_ip_spec.rb +55 -0
  1830. data/spec/ecloud/requests/configure_node_spec.rb +52 -0
  1831. data/spec/ecloud/requests/configure_vapp_spec.rb +71 -0
  1832. data/spec/ecloud/requests/delete_internet_service_spec.rb +34 -0
  1833. data/spec/ecloud/requests/delete_node_spec.rb +30 -0
  1834. data/spec/ecloud/requests/delete_vapp_spec.rb +92 -0
  1835. data/spec/ecloud/requests/get_catalog_item_spec.rb +62 -0
  1836. data/spec/ecloud/requests/get_catalog_spec.rb +44 -0
  1837. data/spec/ecloud/requests/get_customization_options_spec.rb +39 -0
  1838. data/spec/ecloud/requests/get_internet_services_spec.rb +150 -0
  1839. data/spec/ecloud/requests/get_network_ip_spec.rb +40 -0
  1840. data/spec/ecloud/requests/get_network_ips_spec.rb +58 -0
  1841. data/spec/ecloud/requests/get_network_spec.rb +49 -0
  1842. data/spec/ecloud/requests/get_node_spec.rb +41 -0
  1843. data/spec/ecloud/requests/get_nodes_spec.rb +58 -0
  1844. data/spec/ecloud/requests/get_organization_spec.rb +52 -0
  1845. data/spec/ecloud/requests/get_public_ip_spec.rb +38 -0
  1846. data/spec/ecloud/requests/get_public_ips_spec.rb +52 -0
  1847. data/spec/ecloud/requests/get_vapp_spec.rb +125 -0
  1848. data/spec/ecloud/requests/get_vdc_spec.rb +112 -0
  1849. data/spec/ecloud/requests/get_versions_spec.rb +57 -0
  1850. data/spec/ecloud/requests/instantiate_vapp_template_spec.rb +95 -0
  1851. data/spec/ecloud/requests/login_spec.rb +10 -0
  1852. data/spec/ecloud/requests/power_off_spec.rb +34 -0
  1853. data/spec/ecloud/requests/power_on_spec.rb +34 -0
  1854. data/spec/ecloud/spec_helper.rb +387 -0
  1855. data/spec/ecloud/vcloud_spec.rb +18 -0
  1856. data/spec/lib/fog/aws/parsers/sqs/receive_message_spec.rb +58 -0
  1857. data/spec/spec_helper.rb +8 -0
  1858. data/tests/aws/models/auto_scaling/activities_tests.rb +6 -0
  1859. data/tests/aws/models/auto_scaling/configuration_test.rb +13 -0
  1860. data/tests/aws/models/auto_scaling/configurations_tests.rb +11 -0
  1861. data/tests/aws/models/auto_scaling/helper.rb +0 -0
  1862. data/tests/aws/models/auto_scaling/instances_tests.rb +6 -0
  1863. data/tests/aws/models/cloud_watch/alarm_data_tests.rb +42 -0
  1864. data/tests/aws/models/cloud_watch/alarm_history_tests.rb +22 -0
  1865. data/tests/aws/models/cloud_watch/metric_statistics_tests.rb +51 -0
  1866. data/tests/aws/models/cloud_watch/metrics_tests.rb +17 -0
  1867. data/tests/aws/models/compute/address_tests.rb +16 -0
  1868. data/tests/aws/models/compute/addresses_tests.rb +5 -0
  1869. data/tests/aws/models/compute/key_pair_tests.rb +27 -0
  1870. data/tests/aws/models/compute/key_pairs_tests.rb +5 -0
  1871. data/tests/aws/models/compute/security_group_tests.rb +37 -0
  1872. data/tests/aws/models/compute/security_groups_tests.rb +5 -0
  1873. data/tests/aws/models/compute/server_tests.rb +63 -0
  1874. data/tests/aws/models/compute/snapshot_tests.rb +10 -0
  1875. data/tests/aws/models/compute/snapshots_tests.rb +10 -0
  1876. data/tests/aws/models/compute/volume_tests.rb +39 -0
  1877. data/tests/aws/models/compute/volumes_tests.rb +5 -0
  1878. data/tests/aws/models/dns/record_tests.rb +23 -0
  1879. data/tests/aws/models/dns/records_tests.rb +23 -0
  1880. data/tests/aws/models/dns/zone_tests.rb +4 -0
  1881. data/tests/aws/models/dns/zones_tests.rb +4 -0
  1882. data/tests/aws/models/elasticache/cluster_tests.rb +30 -0
  1883. data/tests/aws/models/elasticache/parameter_groups_tests.rb +17 -0
  1884. data/tests/aws/models/elasticache/security_groups_tests.rb +52 -0
  1885. data/tests/aws/models/elb/model_tests.rb +262 -0
  1886. data/tests/aws/models/rds/helper.rb +5 -0
  1887. data/tests/aws/models/rds/parameter_group_tests.rb +24 -0
  1888. data/tests/aws/models/rds/parameter_groups_tests.rb +8 -0
  1889. data/tests/aws/models/rds/security_group_tests.rb +53 -0
  1890. data/tests/aws/models/rds/security_groups_tests.rb +5 -0
  1891. data/tests/aws/models/rds/server_tests.rb +106 -0
  1892. data/tests/aws/models/rds/servers_tests.rb +6 -0
  1893. data/tests/aws/models/rds/snapshot_tests.rb +13 -0
  1894. data/tests/aws/models/rds/snapshots_tests.rb +13 -0
  1895. data/tests/aws/models/storage/directory_tests.rb +51 -0
  1896. data/tests/aws/models/storage/file_tests.rb +78 -0
  1897. data/tests/aws/models/storage/files_tests.rb +56 -0
  1898. data/tests/aws/models/storage/version_tests.rb +52 -0
  1899. data/tests/aws/models/storage/versions_tests.rb +56 -0
  1900. data/tests/aws/requests/auto_scaling/auto_scaling_tests.rb +80 -0
  1901. data/tests/aws/requests/auto_scaling/helper.rb +185 -0
  1902. data/tests/aws/requests/auto_scaling/model_tests.rb +235 -0
  1903. data/tests/aws/requests/cloud_formation/stack_tests.rb +157 -0
  1904. data/tests/aws/requests/cloud_watch/get_metric_statistics_tests.rb +28 -0
  1905. data/tests/aws/requests/cloud_watch/list_metrics_test.rb +64 -0
  1906. data/tests/aws/requests/cloud_watch/put_metric_data_tests.rb +36 -0
  1907. data/tests/aws/requests/compute/address_tests.rb +78 -0
  1908. data/tests/aws/requests/compute/availability_zone_tests.rb +25 -0
  1909. data/tests/aws/requests/compute/helper.rb +16 -0
  1910. data/tests/aws/requests/compute/image_tests.rb +107 -0
  1911. data/tests/aws/requests/compute/instance_tests.rb +286 -0
  1912. data/tests/aws/requests/compute/key_pair_tests.rb +67 -0
  1913. data/tests/aws/requests/compute/placement_group_tests.rb +48 -0
  1914. data/tests/aws/requests/compute/region_tests.rb +23 -0
  1915. data/tests/aws/requests/compute/security_group_tests.rb +363 -0
  1916. data/tests/aws/requests/compute/snapshot_tests.rb +57 -0
  1917. data/tests/aws/requests/compute/spot_datafeed_subscription_tests.rb +47 -0
  1918. data/tests/aws/requests/compute/spot_instance_tests.rb +53 -0
  1919. data/tests/aws/requests/compute/spot_price_history_tests.rb +24 -0
  1920. data/tests/aws/requests/compute/tag_tests.rb +77 -0
  1921. data/tests/aws/requests/compute/volume_tests.rb +122 -0
  1922. data/tests/aws/requests/dns/dns_tests.rb +289 -0
  1923. data/tests/aws/requests/dynamodb/item_tests.rb +117 -0
  1924. data/tests/aws/requests/dynamodb/table_tests.rb +99 -0
  1925. data/tests/aws/requests/elasticache/cache_cluster_tests.rb +137 -0
  1926. data/tests/aws/requests/elasticache/describe_events.rb +17 -0
  1927. data/tests/aws/requests/elasticache/helper.rb +68 -0
  1928. data/tests/aws/requests/elasticache/parameter_group_tests.rb +105 -0
  1929. data/tests/aws/requests/elasticache/security_group_tests.rb +107 -0
  1930. data/tests/aws/requests/elb/helper.rb +80 -0
  1931. data/tests/aws/requests/elb/listener_tests.rb +68 -0
  1932. data/tests/aws/requests/elb/load_balancer_tests.rb +61 -0
  1933. data/tests/aws/requests/elb/policy_tests.rb +54 -0
  1934. data/tests/aws/requests/emr/helper.rb +172 -0
  1935. data/tests/aws/requests/emr/instance_group_tests.rb +106 -0
  1936. data/tests/aws/requests/emr/job_flow_tests.rb +88 -0
  1937. data/tests/aws/requests/iam/access_key_tests.rb +55 -0
  1938. data/tests/aws/requests/iam/group_policy_tests.rb +42 -0
  1939. data/tests/aws/requests/iam/group_tests.rb +44 -0
  1940. data/tests/aws/requests/iam/helper.rb +104 -0
  1941. data/tests/aws/requests/iam/login_profile_tests.rb +64 -0
  1942. data/tests/aws/requests/iam/server_certificate_tests.rb +95 -0
  1943. data/tests/aws/requests/iam/user_policy_tests.rb +35 -0
  1944. data/tests/aws/requests/iam/user_tests.rb +72 -0
  1945. data/tests/aws/requests/rds/helper.rb +204 -0
  1946. data/tests/aws/requests/rds/instance_tests.rb +127 -0
  1947. data/tests/aws/requests/rds/parameter_group_tests.rb +68 -0
  1948. data/tests/aws/requests/rds/parameter_request_tests.rb +35 -0
  1949. data/tests/aws/requests/rds/security_group_tests.rb +101 -0
  1950. data/tests/aws/requests/ses/helper.rb +15 -0
  1951. data/tests/aws/requests/ses/verified_email_address_tests.rb +27 -0
  1952. data/tests/aws/requests/simpledb/attributes_tests.rb +86 -0
  1953. data/tests/aws/requests/simpledb/domain_tests.rb +51 -0
  1954. data/tests/aws/requests/simpledb/helper.rb +16 -0
  1955. data/tests/aws/requests/sns/helper.rb +9 -0
  1956. data/tests/aws/requests/sns/subscription_tests.rb +86 -0
  1957. data/tests/aws/requests/sns/topic_tests.rb +50 -0
  1958. data/tests/aws/requests/sqs/helper.rb +15 -0
  1959. data/tests/aws/requests/sqs/message_tests.rb +51 -0
  1960. data/tests/aws/requests/sqs/queue_tests.rb +50 -0
  1961. data/tests/aws/requests/storage/acl_utils_tests.rb +209 -0
  1962. data/tests/aws/requests/storage/bucket_tests.rb +294 -0
  1963. data/tests/aws/requests/storage/multipart_upload_tests.rb +132 -0
  1964. data/tests/aws/requests/storage/object_tests.rb +135 -0
  1965. data/tests/aws/requests/storage/versioning_tests.rb +188 -0
  1966. data/tests/aws/requests/sts/get_federation_token_tests.rb +21 -0
  1967. data/tests/aws/requests/sts/session_token_tests.rb +16 -0
  1968. data/tests/aws/signed_params_tests.rb +5 -0
  1969. data/tests/bluebox/requests/compute/block_tests.rb +82 -0
  1970. data/tests/bluebox/requests/compute/helper.rb +22 -0
  1971. data/tests/bluebox/requests/compute/location_tests.rb +32 -0
  1972. data/tests/bluebox/requests/compute/product_tests.rb +34 -0
  1973. data/tests/bluebox/requests/compute/template_tests.rb +37 -0
  1974. data/tests/bluebox/requests/dns/dns_tests.rb +259 -0
  1975. data/tests/brightbox/requests/compute/account_tests.rb +37 -0
  1976. data/tests/brightbox/requests/compute/api_client_tests.rb +64 -0
  1977. data/tests/brightbox/requests/compute/cloud_ip_tests.rb +86 -0
  1978. data/tests/brightbox/requests/compute/helper.rb +597 -0
  1979. data/tests/brightbox/requests/compute/image_tests.rb +60 -0
  1980. data/tests/brightbox/requests/compute/interface_tests.rb +31 -0
  1981. data/tests/brightbox/requests/compute/load_balancer_tests.rb +121 -0
  1982. data/tests/brightbox/requests/compute/server_group_tests.rb +96 -0
  1983. data/tests/brightbox/requests/compute/server_tests.rb +96 -0
  1984. data/tests/brightbox/requests/compute/server_type_tests.rb +34 -0
  1985. data/tests/brightbox/requests/compute/user_tests.rb +36 -0
  1986. data/tests/brightbox/requests/compute/zone_tests.rb +34 -0
  1987. data/tests/clodo/requests/compute/image_tests.rb +36 -0
  1988. data/tests/clodo/requests/compute/server_tests.rb +152 -0
  1989. data/tests/cloudstack/requests/disk_offering_tests.rb +29 -0
  1990. data/tests/cloudstack/requests/os_type_tests.rb +38 -0
  1991. data/tests/cloudstack/requests/security_group_tests.rb +29 -0
  1992. data/tests/cloudstack/requests/service_offering_tests.rb +38 -0
  1993. data/tests/cloudstack/requests/snapshot_tests.rb +32 -0
  1994. data/tests/cloudstack/requests/ssh_key_pair_tests.rb +23 -0
  1995. data/tests/cloudstack/requests/template_tests.rb +53 -0
  1996. data/tests/cloudstack/requests/virtual_machine_tests.rb +71 -0
  1997. data/tests/cloudstack/requests/volume_tests.rb +48 -0
  1998. data/tests/cloudstack/requests/zone_tests.rb +33 -0
  1999. data/tests/cloudstack/signed_params_tests.rb +12 -0
  2000. data/tests/compute/helper.rb +56 -0
  2001. data/tests/compute/models/flavors_tests.rb +11 -0
  2002. data/tests/compute/models/server_tests.rb +20 -0
  2003. data/tests/compute/models/servers_tests.rb +9 -0
  2004. data/tests/core/attribute_tests.rb +83 -0
  2005. data/tests/core/credential_tests.rb +66 -0
  2006. data/tests/core/mocking_tests.rb +60 -0
  2007. data/tests/core/parser_tests.rb +67 -0
  2008. data/tests/core/timeout_tests.rb +10 -0
  2009. data/tests/dns/helper.rb +55 -0
  2010. data/tests/dns/models/record_tests.rb +30 -0
  2011. data/tests/dns/models/records_tests.rb +30 -0
  2012. data/tests/dns/models/zone_tests.rb +18 -0
  2013. data/tests/dns/models/zones_tests.rb +18 -0
  2014. data/tests/dnsimple/requests/dns/dns_tests.rb +118 -0
  2015. data/tests/dnsmadeeasy/requests/dns/dns_tests.rb +138 -0
  2016. data/tests/dynect/requests/dns/dns_tests.rb +193 -0
  2017. data/tests/glesys/requests/compute/helper.rb +261 -0
  2018. data/tests/glesys/requests/compute/ip_tests.rb +67 -0
  2019. data/tests/glesys/requests/compute/server_tests.rb +125 -0
  2020. data/tests/glesys/requests/compute/template_tests.rb +12 -0
  2021. data/tests/go_grid/requests/compute/image_tests.rb +0 -0
  2022. data/tests/google/requests/storage/bucket_tests.rb +78 -0
  2023. data/tests/google/requests/storage/object_tests.rb +81 -0
  2024. data/tests/helper.rb +20 -0
  2025. data/tests/helpers/collection_helper.rb +59 -0
  2026. data/tests/helpers/compute/flavors_helper.rb +34 -0
  2027. data/tests/helpers/compute/server_helper.rb +26 -0
  2028. data/tests/helpers/compute/servers_helper.rb +11 -0
  2029. data/tests/helpers/formats_helper.rb +84 -0
  2030. data/tests/helpers/formats_helper_tests.rb +51 -0
  2031. data/tests/helpers/mock_helper.rb +72 -0
  2032. data/tests/helpers/model_helper.rb +38 -0
  2033. data/tests/helpers/responds_to_helper.rb +13 -0
  2034. data/tests/helpers/succeeds_helper.rb +12 -0
  2035. data/tests/joyent/requests/compute/datasets_tests.rb +49 -0
  2036. data/tests/joyent/requests/compute/keys_tests.rb +47 -0
  2037. data/tests/joyent/requests/compute/machines_tests.rb +67 -0
  2038. data/tests/joyent/requests/compute/packages_tests.rb +68 -0
  2039. data/tests/linode/requests/compute/datacenter_tests.rb +19 -0
  2040. data/tests/linode/requests/compute/distribution_tests.rb +32 -0
  2041. data/tests/linode/requests/compute/helper.rb +16 -0
  2042. data/tests/linode/requests/compute/kernel_tests.rb +27 -0
  2043. data/tests/linode/requests/compute/linode_tests.rb +143 -0
  2044. data/tests/linode/requests/compute/linodeplans_tests.rb +40 -0
  2045. data/tests/linode/requests/compute/stackscripts_tests.rb +36 -0
  2046. data/tests/linode/requests/dns/dns_tests.rb +250 -0
  2047. data/tests/lorem.txt +1 -0
  2048. data/tests/ninefold/models/storage/file_update_tests.rb +19 -0
  2049. data/tests/ninefold/models/storage/nested_directories_tests.rb +23 -0
  2050. data/tests/ninefold/requests/compute/address_tests.rb +42 -0
  2051. data/tests/ninefold/requests/compute/async_job_tests.rb +33 -0
  2052. data/tests/ninefold/requests/compute/helper.rb +317 -0
  2053. data/tests/ninefold/requests/compute/list_tests.rb +56 -0
  2054. data/tests/ninefold/requests/compute/nat_tests.rb +92 -0
  2055. data/tests/ninefold/requests/compute/network_tests.rb +21 -0
  2056. data/tests/ninefold/requests/compute/template_tests.rb +21 -0
  2057. data/tests/ninefold/requests/compute/virtual_machine_tests.rb +69 -0
  2058. data/tests/openstack/requests/compute/flavor_tests.rb +35 -0
  2059. data/tests/openstack/requests/compute/helper.rb +17 -0
  2060. data/tests/openstack/requests/compute/image_tests.rb +59 -0
  2061. data/tests/openstack/requests/compute/server_tests.rb +142 -0
  2062. data/tests/ovirt/compute_tests.rb +22 -0
  2063. data/tests/ovirt/models/compute/cluster_tests.rb +31 -0
  2064. data/tests/ovirt/models/compute/clusters_tests.rb +9 -0
  2065. data/tests/ovirt/models/compute/server_tests.rb +51 -0
  2066. data/tests/ovirt/models/compute/servers_tests.rb +14 -0
  2067. data/tests/ovirt/models/compute/template_tests.rb +28 -0
  2068. data/tests/ovirt/models/compute/templates_tests.rb +9 -0
  2069. data/tests/ovirt/requests/compute/create_vm_tests.rb +26 -0
  2070. data/tests/ovirt/requests/compute/destroy_vm_tests.rb +18 -0
  2071. data/tests/ovirt/requests/compute/list_datacenters_tests.rb +13 -0
  2072. data/tests/ovirt/requests/compute/list_storage_domains_tests.rb +13 -0
  2073. data/tests/ovirt/requests/compute/update_vm_tests.rb +18 -0
  2074. data/tests/rackspace/helper.rb +24 -0
  2075. data/tests/rackspace/load_balancer_tests.rb +21 -0
  2076. data/tests/rackspace/models/dns/zone_tests.rb +14 -0
  2077. data/tests/rackspace/models/load_balancers/access_list_tests.rb +12 -0
  2078. data/tests/rackspace/models/load_balancers/access_lists_tests.rb +12 -0
  2079. data/tests/rackspace/models/load_balancers/load_balancer_tests.rb +141 -0
  2080. data/tests/rackspace/models/load_balancers/load_balancers_tests.rb +19 -0
  2081. data/tests/rackspace/models/load_balancers/node_tests.rb +19 -0
  2082. data/tests/rackspace/models/load_balancers/nodes_tests.rb +12 -0
  2083. data/tests/rackspace/models/load_balancers/virtual_ip_tests.rb +16 -0
  2084. data/tests/rackspace/models/load_balancers/virtual_ips_tests.rb +12 -0
  2085. data/tests/rackspace/requests/compute/address_tests.rb +40 -0
  2086. data/tests/rackspace/requests/compute/flavor_tests.rb +38 -0
  2087. data/tests/rackspace/requests/compute/helper.rb +16 -0
  2088. data/tests/rackspace/requests/compute/image_tests.rb +68 -0
  2089. data/tests/rackspace/requests/compute/resize_tests.rb +33 -0
  2090. data/tests/rackspace/requests/compute/server_tests.rb +92 -0
  2091. data/tests/rackspace/requests/dns/dns_tests.rb +125 -0
  2092. data/tests/rackspace/requests/dns/helper.rb +140 -0
  2093. data/tests/rackspace/requests/dns/records_tests.rb +83 -0
  2094. data/tests/rackspace/requests/load_balancers/access_list_tests.rb +56 -0
  2095. data/tests/rackspace/requests/load_balancers/algorithm_tests.rb +19 -0
  2096. data/tests/rackspace/requests/load_balancers/connection_logging_tests.rb +25 -0
  2097. data/tests/rackspace/requests/load_balancers/connection_throttling_tests.rb +37 -0
  2098. data/tests/rackspace/requests/load_balancers/error_page_tests.rb +31 -0
  2099. data/tests/rackspace/requests/load_balancers/helper.rb +139 -0
  2100. data/tests/rackspace/requests/load_balancers/load_balancer_tests.rb +66 -0
  2101. data/tests/rackspace/requests/load_balancers/load_balancer_usage_tests.rb +19 -0
  2102. data/tests/rackspace/requests/load_balancers/monitor_tests.rb +46 -0
  2103. data/tests/rackspace/requests/load_balancers/node_tests.rb +86 -0
  2104. data/tests/rackspace/requests/load_balancers/protocol_tests.rb +21 -0
  2105. data/tests/rackspace/requests/load_balancers/session_persistence_tests.rb +33 -0
  2106. data/tests/rackspace/requests/load_balancers/usage_tests.rb +17 -0
  2107. data/tests/rackspace/requests/load_balancers/virtual_ip_tests.rb +40 -0
  2108. data/tests/rackspace/requests/storage/container_tests.rb +64 -0
  2109. data/tests/rackspace/requests/storage/large_object_tests.rb +47 -0
  2110. data/tests/rackspace/requests/storage/object_tests.rb +78 -0
  2111. data/tests/rackspace/url_encoding_tests.rb +3 -0
  2112. data/tests/slicehost/requests/compute/backup_tests.rb +18 -0
  2113. data/tests/slicehost/requests/compute/flavor_tests.rb +33 -0
  2114. data/tests/slicehost/requests/compute/image_tests.rb +31 -0
  2115. data/tests/slicehost/requests/compute/slice_tests.rb +75 -0
  2116. data/tests/slicehost/requests/dns/dns_tests.rb +314 -0
  2117. data/tests/storage/helper.rb +19 -0
  2118. data/tests/storage/models/directories_tests.rb +17 -0
  2119. data/tests/storage/models/directory_test.rb +29 -0
  2120. data/tests/storage/models/file_tests.rb +41 -0
  2121. data/tests/storage/models/files_tests.rb +26 -0
  2122. data/tests/storm_on_demand/requests/compute/server_tests.rb +64 -0
  2123. data/tests/vcloud/data/api_+_admin_+_network_+_2 +110 -0
  2124. data/tests/vcloud/data/api_+_network_+_1 +44 -0
  2125. data/tests/vcloud/data/api_+_org_+_ +5 -0
  2126. data/tests/vcloud/data/api_+_org_+_1 +17 -0
  2127. data/tests/vcloud/data/api_+_sessions +8 -0
  2128. data/tests/vcloud/data/api_+_v1.0_+_admin_+_network_+_2 +110 -0
  2129. data/tests/vcloud/data/api_+_v1.0_+_login +5 -0
  2130. data/tests/vcloud/data/api_+_v1.0_+_network_+_1 +44 -0
  2131. data/tests/vcloud/data/api_+_v1.0_+_network_+_2 +31 -0
  2132. data/tests/vcloud/data/api_+_v1.0_+_org_+_1 +17 -0
  2133. data/tests/vcloud/data/api_+_v1.0_+_vApp_+_vapp-1 +369 -0
  2134. data/tests/vcloud/data/api_+_v1.0_+_vApp_+_vm-1 +139 -0
  2135. data/tests/vcloud/data/api_+_v1.0_+_vApp_+_vm-2 +155 -0
  2136. data/tests/vcloud/data/api_+_v1.0_+_vdc_+_1 +61 -0
  2137. data/tests/vcloud/data/api_+_vApp_+_vapp-1 +369 -0
  2138. data/tests/vcloud/data/api_+_vApp_+_vm-2 +155 -0
  2139. data/tests/vcloud/data/api_+_vdc_+_1 +61 -0
  2140. data/tests/vcloud/models/compute/conn_helper.rb +20 -0
  2141. data/tests/vcloud/models/compute/helper.rb +25 -0
  2142. data/tests/vcloud/models/compute/network_tests.rb +67 -0
  2143. data/tests/vcloud/models/compute/networks_tests.rb +61 -0
  2144. data/tests/vcloud/models/compute/organization_tests.rb +20 -0
  2145. data/tests/vcloud/models/compute/organizations_tests.rb +16 -0
  2146. data/tests/vcloud/models/compute/server_tests.rb +142 -0
  2147. data/tests/vcloud/models/compute/servers_tests.rb +23 -0
  2148. data/tests/vcloud/models/compute/vapp_tests.rb +32 -0
  2149. data/tests/vcloud/models/compute/vapps_tests.rb +19 -0
  2150. data/tests/vcloud/models/compute/vdc_tests.rb +48 -0
  2151. data/tests/vcloud/models/compute/vdcs_tests.rb +24 -0
  2152. data/tests/vcloud/requests/compute/disk_configure_tests.rb +114 -0
  2153. data/tests/voxel/requests/compute/image_tests.rb +52 -0
  2154. data/tests/voxel/requests/compute/server_tests.rb +123 -0
  2155. data/tests/vsphere/compute_tests.rb +55 -0
  2156. data/tests/vsphere/models/compute/server_tests.rb +45 -0
  2157. data/tests/vsphere/models/compute/servers_tests.rb +15 -0
  2158. data/tests/vsphere/requests/compute/current_time_tests.rb +12 -0
  2159. data/tests/vsphere/requests/compute/find_vm_by_ref_tests.rb +26 -0
  2160. data/tests/vsphere/requests/compute/list_virtual_machines_tests.rb +46 -0
  2161. data/tests/vsphere/requests/compute/vm_clone_tests.rb +32 -0
  2162. data/tests/vsphere/requests/compute/vm_create_tests.rb +20 -0
  2163. data/tests/vsphere/requests/compute/vm_destroy_tests.rb +17 -0
  2164. data/tests/vsphere/requests/compute/vm_power_off_tests.rb +26 -0
  2165. data/tests/vsphere/requests/compute/vm_power_on_tests.rb +17 -0
  2166. data/tests/vsphere/requests/compute/vm_reboot_tests.rb +26 -0
  2167. data/tests/vsphere/requests/compute/vm_reconfig_cpus_tests.rb +19 -0
  2168. data/tests/vsphere/requests/compute/vm_reconfig_hardware_tests.rb +19 -0
  2169. data/tests/vsphere/requests/compute/vm_reconfig_memory_tests.rb +19 -0
  2170. data/tests/watchr.rb +22 -0
  2171. data/tests/zerigo/requests/dns/dns_tests.rb +373 -0
  2172. metadata +2795 -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,54 @@
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
+ require 'multi_json'
27
+
28
+ result = instance_eval(ARGV[1..-1].join(' '))
29
+ puts(MultiJson.encode(result))
30
+
31
+ else
32
+
33
+ ARGV.clear # Avoid passing args to IRB
34
+ IRB.setup(nil)
35
+ @irb = IRB::Irb.new(nil)
36
+ IRB.conf[:MAIN_CONTEXT] = @irb.context
37
+ IRB.conf[:PROMPT][:FOG] = IRB.conf[:PROMPT][:SIMPLE].dup
38
+ IRB.conf[:PROMPT][:FOG][:RETURN] = "%s\n"
39
+ @irb.context.prompt_mode = :FOG
40
+ @irb.context.workspace = IRB::WorkSpace.new(binding)
41
+
42
+ Formatador.display_line('Welcome to fog interactive!')
43
+ Formatador.display_line(":#{Fog.credential} provides #{providers}")
44
+ providers = Fog.providers
45
+
46
+ # FIXME: hacks until we can `include Fog` in bin
47
+ CDN = Fog::CDN
48
+ Compute = Fog::Compute
49
+ DNS = Fog::DNS
50
+ Storage = Fog::Storage
51
+
52
+ catch(:IRB_EXIT) { @irb.eval_input }
53
+
54
+ end
@@ -0,0 +1,1914 @@
1
+ 1.1.2 12/18/2011 c1873e37e76af83e9de3f3308f3baa0664dd8dc2
2
+ =========================================================
3
+
4
+ Stats! { 'collaborators' => 20, 'downloads' => 351821, 'forks' => 332, 'open_issues' => 21, 'watchers' => 1731 }
5
+
6
+ MVP! Stepan G. Fedorov
7
+
8
+ [Brightbox]
9
+ Fix zone_id/flavour_id getter/setter for Server. thanks Hemant Kumar
10
+ Add zone/server_type attribute for Server. thanks Hemant Kumar
11
+ Add username to Image. thanks Hemant Kumar
12
+ Add request for remove_firewall_policy. thanks Hemant Kumar
13
+ Add model method for remove. thanks Hemant Kumar
14
+ Change logic of fetching zone and flavour_id. thanks Hemant Kumar
15
+ Remove name as mandatory parameter for creating server group. thanks Hemant Kumar
16
+ Add created_at attribute for server_group,policy and firewall rule. thanks Hemant Kumar
17
+ Updated Image format tests for username. thanks Paul Thornthwaite
18
+ Updated ServerGroup format for created_at time. thanks Paul Thornthwaite
19
+
20
+ [aws|autoscaling]
21
+ allow sa-east-1 region in mocks. thanks Nick Osborn
22
+
23
+ [aws|compute]
24
+ fix security_group format for mock tests. thanks geemus
25
+
26
+ [aws|dns]
27
+ fix capitilization for records#all options. thanks geemus
28
+
29
+ [aws|elb]
30
+ update SSL certificates on listeners. :christmas_tree:. thanks Dylan Egan
31
+
32
+ [aws|storage]
33
+ Support ACL on copy_object. :v:. thanks Dylan Egan
34
+
35
+ [brightbox]
36
+ Adding *_server actions to ServerGroup model. thanks Caius Durling
37
+ Pass along server_groups when creating a server. thanks Caius Durling
38
+ Make update_cloud_ip request work. thanks Caius Durling
39
+ Firewall models. thanks Paul Thornthwaite
40
+ Added missing requirement and request arg. thanks Paul Thornthwaite
41
+ Corrected deprecated argument. thanks Paul Thornthwaite
42
+ Dynamically select testing image. thanks Paul Thornthwaite
43
+ Helper to get a test server ready. thanks Paul Thornthwaite
44
+ Revised tests structure. thanks Paul Thornthwaite
45
+ Test and fix for API client secret reset. thanks Paul Thornthwaite
46
+ Test update of reverse DNS for CIP. thanks Paul Thornthwaite
47
+ Updated default Ubuntu image. thanks Paul Thornthwaite
48
+ Make Cloud IP model's map nicer to use. thanks Paul Thornthwaite
49
+ Correctly get Server's IP addresses as strings. thanks Paul Thornthwaite
50
+ ServerGroup association to Servers. thanks Paul Thornthwaite
51
+ Replace duplicate remove with move test. thanks Paul Thornthwaite
52
+ Load balancer request tests expanded. thanks Paul Thornthwaite
53
+ Request test for snapshotting a server. thanks Paul Thornthwaite
54
+ fix mock tests. thanks geemus
55
+
56
+ [clodo]
57
+ : Added missing field. thanks NomadRain
58
+ Some cleanup before pool request. thanks NomadRain
59
+ add fake credentials for mock tests. thanks geemus
60
+
61
+ [clodo|compute]
62
+ Bug fixes. thanks NomadRain
63
+ I don't know what is ignore_awful_caching, so i removed it. thanks Stepan G Fedorov
64
+ server.ssh with password. Not only with key. thanks Stepan G Fedorov
65
+ Fix Mocks. thanks Stepan G Fedorov
66
+ Enable get_image_details. thanks Stepan G Fedorov
67
+ Actualize Mocks. thanks Stepan G. Fedorov
68
+ Enable :get_image_details. thanks Stepan G. Fedorov
69
+ Add tests. thanks Stepan G. Fedorov
70
+ Remove ddosprotect field from Mock. thanks Stepan G. Fedorov
71
+ Add ip-address management. thanks Stepan G. Fedorov
72
+ Rename moveip to move_ip_address. thanks Stepan G. Fedorov
73
+ Enable ip-management. thanks Stepan G. Fedorov
74
+ Fix delete_server mock. thanks Stepan G. Fedorov
75
+ Fix move_ip_address behaviour. thanks Stepan G. Fedorov
76
+ Add ip-address management. thanks Stepan G. Fedorov
77
+ Rename moveip to move_ip_address. thanks Stepan G. Fedorov
78
+ Enable ip-management. thanks Stepan G. Fedorov
79
+ Fix delete_server mock. thanks Stepan G. Fedorov
80
+ Fix move_ip_address behaviour. thanks Stepan G. Fedorov
81
+ Added missing field (server.type). thanks Обоев Рулон ибн Хаттаб
82
+
83
+ [core]
84
+ Cast Fog.wait_for interval to float. thanks Aaron Suggs
85
+ fix exceptions from nil credential value. thanks Blake Gentry
86
+ `@credential` should always be a symbol. thanks Hunter Haugen
87
+
88
+ [docs]
89
+ note in title that multiple keys is an EC2 thing. thanks geemus
90
+
91
+ [glesys|compute]
92
+ fixed tests due to changes in the api. thanks Anton Lindström
93
+ fix test formats and whitespaces. thanks Anton Lindström
94
+
95
+ [misc]
96
+ parse SQS timestamps as milliseconds. thanks Andrew Bruce
97
+ Allow use of sa-east-1 in the ec2 mock as well. thanks Andy Delcambre
98
+ Enabled tests for setting S3 ACL by id and uri on buckets and objects when mocking. thanks Arvid Andersson
99
+ Added acl_to_hash helper method to Fog::Storage::AWS. thanks Arvid Andersson
100
+ Ensuring that get_object_acl and get_bucket_acl mock methods returns a hash representation of the ACL. thanks Arvid Andersson
101
+ Created Rackspace LB models folder. thanks Brian Hartsock
102
+ 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
103
+ indentation change. thanks Eric Stonfer
104
+ Add the ability to return the security group ID when requesting a SecurityGroupData object. thanks Eric Stonfer
105
+ fix tests to accomodate the new SecurityGroupId. thanks Eric Stonfer
106
+ Revert "fix tests to accomodate the new SecurityGroupId". thanks Eric Stonfer
107
+ fix tests to accomodate the addition of security_group_id. thanks Eric Stonfer
108
+ indentation fix. thanks Eric Stonfer
109
+ indentation fix. thanks Eric Stonfer
110
+ [Brightbox]Add remove_firewall_policy to computer.rb. thanks Hemant Kumar
111
+ [Brightbox]Protocol is no longer required parameter for firewall. thanks Hemant Kumar
112
+ Add implementation of DescribeInstanceStatus. thanks JD Huntington & Jason Hansen
113
+ fixed type-o in rdoc on Fog::DNS:DNSMadeEasy. thanks John Dyer
114
+ add query options to Fog::Storage::AWS#get_object_https_url. thanks Mateusz Juraszek
115
+ 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
116
+ add query param to get_object_http_url for consistency. thanks Mateusz Juraszek
117
+ Fix regression in Rakefile introduced in 70e7ea13. thanks Michael Brodhead
118
+ add são paulo/brasil region. thanks Raphael Costa
119
+ mock create_db_instance. thanks Rodrigo Estebanez
120
+ mocking describe_db_instance. Fix hash structure in create_db_instance. thanks Rodrigo Estebanez
121
+ mocking delete_db_instance. thanks Rodrigo Estebanez
122
+ mocking wait_for through describe_db_instances. thanks Rodrigo Estebanez
123
+ mocking modify_db_instance and reboot_db_instance. thanks Rodrigo Estebanez
124
+ raise exception instead of excon response. thanks Rodrigo Estebanez
125
+ Fixing bug: It always showed the first instance when using get. thanks Rodrigo Estebanez
126
+ Fixes for issues 616 and 617. thanks Sergio Rubio
127
+ * remove unnecessary debugging. thanks Sergio Rubio
128
+ * Add missing recognized :libvirt_ip_command. thanks Sergio Rubio
129
+ * Add server_name environment variable to ip_command. thanks Sergio Rubio
130
+ * implement :destroy_volumes in Server.destroy (libvirt provider). thanks Sergio Rubio
131
+ Add documentation for using multiple ssh keys on AWS. thanks Sven Pfleiderer
132
+ Update bootstrap description. thanks Sven Pfleiderer
133
+ Escape underscore charakters. thanks Sven Pfleiderer
134
+ implement STS support. thanks Thom May
135
+ Allow use of session tokens in AWS Compute. thanks Thom May
136
+ handle session tokens for SQS and SimpleDB. thanks Thom May
137
+ Split [AWS|STS] tests into separate files per #609. thanks Thom May
138
+ Bug fix, metric_statistic#save would always fail. thanks bmiller
139
+ bump excon dep. thanks geemus
140
+ bump excon dep. thanks geemus
141
+ Fixing Rackspace's lack of integer-as-string support as per https://github.com/fog/fog/pull/657#issuecomment-3145337. thanks jimworm
142
+ add current set of elasticache endpoints. thanks lostboy
143
+ added sa-east-1 region. thanks thattommyhall
144
+ Add clodo support. thanks Обоев Рулон ибн Хаттаб
145
+ Enable clodo support. thanks Обоев Рулон ибн Хаттаб
146
+
147
+ [rackspace|dns]
148
+ error state callbacks now return an error. thanks Brian Hartsock
149
+ fixed broken test. thanks Brian Hartsock
150
+ should recognize rackspace_dns_endpoint argument. thanks geemus
151
+ record should pass priority. thanks geemus
152
+ mark tests for models pending in mocked mode. thanks geemus
153
+
154
+ [rackspace|lb]
155
+ Fixed bug #644 with HTTP health monitors. thanks Brian Hartsock
156
+ fix for #650 - Connection logging now loads appropriately. thanks Brian Hartsock
157
+ added error page requests. thanks Brian Hartsock
158
+ Added error pages to the model. thanks Brian Hartsock
159
+ Added list parameter for nodeddress. thanks Brian Hartsock
160
+ fixed broken test; cleaned up some tests. thanks Brian Hartsock
161
+
162
+ [rackspace|load balancers]
163
+ fixed broken tests. thanks Brian Hartsock
164
+
165
+ [rackspace|loadbalancers]
166
+ Fixed bug in deleting multiple nodes. thanks Brian Hartsock
167
+
168
+ [slicehost|compute]
169
+ update image id in tests. thanks geemus
170
+
171
+ [storm_on_demand]
172
+ fixes for formats in tests. thanks geemus
173
+
174
+ [tests | clodo]
175
+ Added ip-management tests. thanks Stepan G. Fedorov
176
+ Added ip-management tests. thanks Stepan G. Fedorov
177
+
178
+ [tests | clodo ]
179
+ ddosprotect field must not exist. thanks Stepan G. Fedorov
180
+
181
+ [tests | clodo | compute]
182
+ Add most tests. thanks Stepan G Fedorov
183
+ Add image tests. thanks Stepan G Fedorov
184
+
185
+ [tests | clodo | compute ]
186
+ create_server - First try. thanks Stepan G Fedorov
187
+
188
+ [vcloud]
189
+ mark tests pending in mocked mode. thanks geemus
190
+
191
+ [vcloud|compute]
192
+ introduce organizations. thanks Peter Meier
193
+ make networks working also in organizations. thanks Peter Meier
194
+ remove server from organizations as they are within vApps of vDC. thanks Peter Meier
195
+ add catalogs to an organization. thanks Peter Meier
196
+ a vdc does not have a tasklist. thanks Peter Meier
197
+ introduce vapps. thanks Peter Meier
198
+ More work on getting server in a useable shape. thanks Peter Meier
199
+ fix network to the minimum. thanks Peter Meier
200
+ a vapp might not have any childrens attached. thanks Peter Meier
201
+ improve models add tests. thanks Peter Meier
202
+ improve disk info access. thanks Peter Meier
203
+ improve network. thanks Peter Meier
204
+ introduce link on a network to parent network. thanks Peter Meier
205
+ fix an issue if this is not parsed as an array. thanks Peter Meier
206
+ stopgap fix for test data files. thanks geemus
207
+ properly namespace vcloud test to prevent breaking others. thanks geemus
208
+
209
+ [vsphere]
210
+ (#10644) Add servers filter to improve clone performance. thanks Jeff McCune
211
+ fix whitespace issue in yaml for mocks. thanks geemus
212
+
213
+
214
+ 1.1.1 11/11/2011 a468aa9a3445aae4f496b1a51e26572b8379c3da
215
+ =========================================================
216
+
217
+ Stats! { 'collaborators' => 19, 'downloads' => 300403, 'forks' => 300, 'open_issues' => 14, 'watchers' => 1667 }
218
+
219
+ [core]
220
+ loosen net-ssh dependency to avoid chef conflict. thanks geemus
221
+
222
+ [misc]
223
+ 1.1.0 changelog. thanks geemus
224
+
225
+
226
+ 1.1.0 11/11/2011 b706c7ed66c2e760fdd6222e38c68768575483b2
227
+ =========================================================
228
+
229
+ Stats! { 'collaborators' => 19, 'downloads' => 300383, 'forks' => 300, 'open_issues' => 16, 'watchers' => 1667 }
230
+
231
+ MVP! Michael Zeng
232
+
233
+ [Compute|Libvirt]
234
+ Take into account a query string can be empty, different on some rubies it gives nil, on some empty string. thanks Patrick Debois
235
+
236
+ [OpenStack|compute]
237
+ fix v2.0 auth endpoints. thanks Todd Willey
238
+ default metadata to empy hash. thanks Todd Willey
239
+ add zone awareness. thanks Todd Willey
240
+
241
+ [aws]
242
+ add us-west-2 region. thanks geemus
243
+
244
+ [aws|cloud_watch]
245
+ mark tests pending when mocked. thanks geemus
246
+
247
+ [aws|cloudwatch]
248
+ Add support for put-metric-alarm call. thanks Jens Braeuer
249
+ Remove duplicate RequestId from response. thanks Jens Braeuer
250
+ Add mocked implementation of put_metric_alarm. thanks Jens Braeuer
251
+ Fix whitespace. thanks Jens Braeuer
252
+ Fix merge error. thanks Jens Braeuer
253
+ Add mocked version of put_metric_alarm. thanks Jens Braeuer
254
+
255
+ [aws|compute]
256
+ Mock modify_image_attribute add/remove users. thanks Dan Peterson
257
+ Allow mock tagging to work across accounts. thanks Dan Peterson
258
+ Fix new instance eventual consistency for the non-filtered case. thanks Dan Peterson
259
+ Update security group operations. thanks Dan Peterson
260
+ Test for more invalid security group request input when mocking. thanks Dan Peterson
261
+ 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
262
+ tags are reset when reloading. #570. thanks Dylan Egan
263
+ fixed sopt_instance_request reply parsing when the original request contained a device mapping. thanks MaF
264
+ wait_for reload then add server tags. thanks geemus
265
+ spot request fixes. thanks geemus
266
+ tweaks for spot request bootstrap. thanks geemus
267
+ save tags for spot_requests#bootstrap. thanks geemus
268
+ update ami for windows. thanks geemus
269
+
270
+ [aws|elb]
271
+ Missed a change as part of #545. thanks Dan Peterson
272
+ use a set union to register new instances. thanks Dylan Egan
273
+ return only the instance IDs on describe. Use only available availability zones. :v:. thanks Dylan Egan
274
+ attribute aliases for CanonicalHostedZoneName(ID). :v:. thanks Dylan Egan
275
+ eventually consistent, like me getting a haircut. :v:. thanks Dylan Egan
276
+
277
+ [aws|emr]
278
+ mark tests pending when mocked. thanks geemus
279
+
280
+ [aws|iam]
281
+ slight cleanup and test with a certificate chain. :cake:. thanks Dylan Egan
282
+
283
+ [aws|mock]
284
+ Dig into mock data instead of instantiating new service objects. thanks Dan Peterson
285
+
286
+ [aws|storage]
287
+ ensure path isn't empty when specifying endpoint. thanks geemus
288
+
289
+ [brightbox]
290
+ Fixed incorrect call to reset_ftp_password. thanks Paul Thornthwaite
291
+
292
+ [brightbox|compute]
293
+ format fixes for tests. thanks geemus
294
+
295
+ [core]
296
+ treat boolean values as a boolean. thanks Peter Meier
297
+ fix attribute squashing with : in key. thanks Peter Meier
298
+ all services should recognize :connection_options. thanks geemus
299
+ separate loggers for deprecations/warnings. thanks geemus
300
+ avoid duplicates in Fog.providers. thanks geemus
301
+ more useful structure for Fog.providers. thanks geemus
302
+ add newlines to logger messages. thanks geemus
303
+ update stats raketask to point to org. thanks geemus
304
+ toss out nil-value keys when checking required credentials. thanks geemus
305
+
306
+ [dns]
307
+ Made model tests use uniq domain names. thanks Brian Hartsock
308
+
309
+ [dnsmadeeasy|dns]
310
+ Fix Fog::DNS::DNSMadeEasy::Record#save to handle updating a record correctly. thanks Peter Weldon
311
+
312
+ [docs]
313
+ update links to point to http://github.com/fog/fog. thanks geemus
314
+
315
+ [dynect|dns]
316
+ Automatically poll jobs if we get them. Closes #575. thanks Dan Peterson
317
+
318
+ [misc]
319
+ Change response parameter. thanks Alan Ivey
320
+ Missing HEAD method. thanks Andrew Newman
321
+ Missing HEAD method. thanks Andrew Newman
322
+ Putting version back. thanks Andrew Newman
323
+ Reformatting and making consistent with other classes. thanks Andrew Newman
324
+ Missed renam to head_namespace. thanks Andrew Newman
325
+ Reverting version and date in gemspec. thanks Andrew Newman
326
+ Formatting. thanks Andrew Newman
327
+ Removed puts of element name. thanks Arvid Andersson
328
+ Changes to allow EMR control through fog. thanks Bob Briski
329
+ Added EMR functions for AWS. thanks Bob Briski
330
+ Adding tests. thanks Bob Briski
331
+ merge EMR changes with upstream repo. thanks Bob Briski
332
+ (#10055) Search vmFolder inventory vs children. thanks Carl Caum
333
+ Adding a path attribute to the vm_mob_ref hash. thanks Carl Caum
334
+ Cleanup Attributes#merge_attributes. thanks Hemant Kumar
335
+ Update S3 doc example to show current API. thanks Jason Roelofs
336
+ Restructure main website's navigation. thanks Jason Roelofs
337
+ Add CloudFormation UpdateStack call. thanks Jason Roelofs
338
+ Minor whitespace change. thanks Jens Braeuer
339
+ Trailing whitespace cleanup. thanks Jens Braeuer
340
+ Whitespace cleanup. thanks Jens Braeuer
341
+ Fix merge error. thanks Jens Braeuer
342
+ Removed statement about @geemus being only member of collaborators list since it's not true anymore. thanks John Wang
343
+ Fixes Fog::AWS::Storage#put_(bucket|object)_acl. thanks Jonas Pfenniger
344
+ Randomize bucket names in tests. thanks Jonas Pfenniger
345
+ Fix AWS S3 bucket and object tests. thanks Jonas Pfenniger
346
+ (#10570) Use nil in-place of missing attributes. thanks Kelsey Hightower
347
+ (#10570) Update `Fog::Compute::Vsphere` tests. thanks Kelsey Hightower
348
+ We use 'Key' for all S3 objects now. thanks Kevin Menard
349
+ Implemented mocks for Zerigo. thanks Kevin Menard
350
+ Updated docs to use newer arg, rather than the old deprecated one. thanks Kevin Menard
351
+ Added the ability to search Zerigo records for a particular zone. thanks Kevin Menard
352
+ Return the only element of the array, not the array itself. thanks Kevin Menard
353
+ Fixed an issue whereby saving an existing record in Zerigo would nil out its value. thanks Kevin Menard
354
+ added DeleteAlarms, DescribeAlarms and PutMetricAlarms. thanks Michael Zeng
355
+ re-adding files. thanks Michael Zeng
356
+ adding describe_alarm_history. thanks Michael Zeng
357
+ adding diable/enable alarm actions. thanks Michael Zeng
358
+ added DescribeAlarmHistory request and parser. thanks Michael Zeng
359
+ fixing describe_alarms and describe_alarms_for_metric requests. thanks Michael Zeng
360
+ cleaned up requesters and parsers. thanks Michael Zeng
361
+ added SetAlarmState. thanks Michael Zeng
362
+ included more response elements, request parameters should now be complete. Included model and collection classes. thanks Michael Zeng
363
+ bug fixes. thanks Michael Zeng
364
+ fixed models and added tests. thanks Michael Zeng
365
+ no need to add rake dep. thanks Michael Zeng
366
+ revert gempspec date change. thanks Michael Zeng
367
+ reverting cloud_watch.rb. thanks Michael Zeng
368
+ reverting cloud_watch.rb. thanks Michael Zeng
369
+ reverting cloud_watch.rb. thanks Michael Zeng
370
+ reverting cloud_watch.rb. thanks Michael Zeng
371
+ reverting cloud_watch.rb. thanks Michael Zeng
372
+ added newline to the end of file. thanks Michael Zeng
373
+ removed all tabs. thanks Michael Zeng
374
+ added alarm_data_tests. thanks Michael Zeng
375
+ spacing change. thanks Michael Zeng
376
+ AWS#hash_to_acl - add support for EmailAddress and URI grantee types. thanks Nathan Sutton
377
+ Test and improve Fog::Storage::AWS.hash_to_acl. thanks Nathan Sutton
378
+ Adding a method to unmock Fog. Addresses issue #594. thanks Nathan Sutton
379
+ Adding documentation for Fog.unmock! and Fog::Mock.reset. thanks Nathan Sutton
380
+ added linode ssh support. thanks Nicholas Ricketts
381
+ added linode ssh support with proper public ip address. thanks Nicholas Ricketts
382
+ cleaned up code to use att_XX methods. thanks Nicholas Ricketts
383
+ clean up public_ip_address code for linode. thanks Nicholas Ricketts
384
+ Seems like rackspace might have changed this. thanks Nik Wakelin
385
+ Sends power parameter in GoGrid's grid_server_power request. thanks Pablo Baños López
386
+ 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
387
+ Did this do anything?. thanks Patrick McKenzie
388
+ 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
389
+ Not having the best of days with git. Revert the reversion of the commit that I really do want to make. thanks Patrick McKenzie
390
+ 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
391
+ Do not touch .gitignore. thanks Patrick McKenzie
392
+ 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
393
+ 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
394
+ Allow updates of DNS records. Updates on zones not supported yet. thanks Patrick McKenzie
395
+ 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
396
+ Getting it so zone.records works as expected (loads all records, for that zone only). thanks Patrick McKenzie
397
+ simplification. thanks Peter Meier
398
+ Optimize vSphere convert_vm_mob_ref_to_attr_hash. thanks Rich Lane
399
+ Compact the way options are mapped to request. thanks Todd Willey
400
+ Allow setting userdata as plain ascii or b64. thanks Todd Willey
401
+ bump excon dep. thanks geemus
402
+ [rackspace][dns] fixes for job request format. thanks geemus
403
+ bump net-ssh dependency. thanks geemus
404
+ tshirt offer should be implicit, rather than explicit. thanks geemus
405
+ add region option to aws sns service recognizes method. thanks lostboy
406
+ add capabilities support to cloudformation createstack request. thanks lostboy
407
+
408
+ [ninefold|storage]
409
+ omit signature in stringtosign. thanks geemus
410
+ check objectid for existence. thanks geemus
411
+ allow overwriting files for consistency. thanks geemus
412
+
413
+ [rackspace|dns]
414
+ Fixed request tests that need unique domain name. thanks Brian Hartsock
415
+ Adapted to changes in callback mechanism. thanks Brian Hartsock
416
+
417
+ [rackspace|load_balancers]
418
+ made lb endpoint configurable. thanks Brian Hartsock
419
+
420
+ [release]
421
+ omit Patrick Debois from future MVP status. thanks geemus
422
+
423
+ [vsphere|compute]
424
+ test fixes. thanks geemus
425
+
426
+
427
+ 1.0.0 09/29/2011 a81be08ef2473af91f16f4926e5b3dfa962a34ae
428
+ =========================================================
429
+
430
+ Stats! { 'collaborators' => 16, 'downloads' => 245745, 'forks' => 260, 'open_issues' => 13, 'watchers' => 1521 }
431
+
432
+ MVP! Patrick Debois
433
+
434
+ [Libvirt]
435
+ if transport is empty, ssh can't be enabled. thanks Patrick Debois
436
+ 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
437
+ corrected typo for appending string output to IO.popen. thanks Patrick Debois
438
+ initialize the ip_address as an empty string. thanks Patrick Debois
439
+ more specific error if the ip_command results in string that has no ip-address format. thanks Patrick Debois
440
+ Remove the newlines after running the local ip_command. thanks Patrick Debois
441
+ rename xml_desc to xml as an attribute and hide all non_dynamic attributes from fog console. thanks Patrick Debois
442
+ added blocked state and corrected crashed to shutoff state. thanks Patrick Debois
443
+ renamed 'raw' connection to raw in the Fog Connection. thanks Patrick Debois
444
+
445
+ [Libvirt|Compute]
446
+ renamed all disk_ params for server creation to volume_ to make it consistent with the object type volume. thanks Patrick Debois
447
+
448
+ [aws]
449
+ remove base64 require (duplicates require in fog/core). thanks geemus
450
+
451
+ [aws/sqs]
452
+ Adding SQS mocking support. thanks Istvan Hoka
453
+
454
+ [aws|acs]
455
+ Create ACS security_group model and collection. thanks Aaron Suggs
456
+ Improve security group tests. thanks Aaron Suggs
457
+ Adds ACS#delete_cache_security_group. thanks Benton Roberts
458
+ Added security group methods. thanks Benton Roberts
459
+ Update CacheSecurityGroup API to public beta 2011-07-15. thanks Benton Roberts
460
+
461
+ [aws|cloudwatch]
462
+ Fix whitespace. thanks Jens Braeuer
463
+
464
+ [aws|compute]
465
+ add snapshot method to volume model. thanks Andrei Serdeliuc
466
+ Correct path. thanks Dylan Egan
467
+ raise an ArgumentError if image_id is nil, otherwise an ugly InternalError is returned from AWS. thanks Dylan Egan
468
+ wait for ready before testing tags. thanks geemus
469
+ fixes for mocks tests. thanks geemus
470
+ fix formatting for mock security groups. thanks geemus
471
+
472
+ [aws|dns]
473
+ fix parser path. thanks geemus
474
+
475
+ [aws|elasticache]
476
+ refactor acs->elasticache. thanks Benton Roberts
477
+ refactor for whitespace / readability. thanks Benton Roberts
478
+ fix typo in Elasticache Security Group tests. thanks Benton Roberts
479
+ rename test file for shindo. thanks Benton Roberts
480
+ create and describe cache clusters. thanks Benton Roberts
481
+ delete cache clusters. thanks Benton Roberts
482
+ add Cache Cluster model and collection. thanks Benton Roberts
483
+ Fix bug in AWS::Elasticache::Cluster.get. thanks Benton Roberts
484
+ randomize cache cluster IDs in testing. thanks Benton Roberts
485
+ return nil on CacheClusterNotFound. thanks Benton Roberts
486
+ use Formatador for testing output. thanks Benton Roberts
487
+ move ClusterNotFound rescue code into Elasticache service definition. thanks Benton Roberts
488
+ change method profile for create_cache_cluster, delete_cache_cluster, and describe_cache_clusters. thanks Benton Roberts
489
+ change parameters for describe_cache_security_groups to ruby-friendly values. thanks Benton Roberts
490
+ remove port attribute from cluster model. thanks Benton Roberts
491
+ fix Elasticahce::Cluster.security_groups attribute. thanks Benton Roberts
492
+ implement modify_cache_cluster request. thanks Benton Roberts
493
+ cluster port number cannot be modified. thanks Benton Roberts
494
+ add cache node info to describe_cache_clusters. thanks Benton Roberts
495
+ add InvalidInstace error class. thanks Benton Roberts
496
+ remove optional parameters from Elasticache::Cluster. thanks Benton Roberts
497
+ show cluster node details by default in model. thanks Benton Roberts
498
+ add test for removing a cache node. thanks Benton Roberts
499
+ add pending_values to modified nodes. thanks Benton Roberts
500
+ implement RebootCacheCluster. thanks Benton Roberts
501
+ implement DescribeEvents. thanks Benton Roberts
502
+ implement basic parameter group requests. thanks Benton Roberts
503
+ implement describe_engine_default_parameters request. thanks Benton Roberts
504
+ implement Elasticache::ParameterGroup model and collection. thanks Benton Roberts
505
+ implement modify_cache_parameter_group request. thanks Benton Roberts
506
+ implement reset_cache_parameter_group request. thanks Benton Roberts
507
+ implement describe_cache_groups request. thanks Benton Roberts
508
+ test fix: change DESCRIBE_SECURITY_GROUPS helper format. thanks Benton Roberts
509
+ delete outdated test file. thanks Benton Roberts
510
+
511
+ [aws|elb]
512
+ Raise a custom exception for Throttling. thanks Dylan Egan
513
+ wait_for server to be ready? before register. thanks geemus
514
+
515
+ [aws|iam]
516
+ implement correct path behaviour in mocking. thanks Dylan Egan
517
+
518
+ [aws|simpledb]
519
+ fix tests to use proper accessor. thanks geemus
520
+
521
+ [aws|storage]
522
+ fix acl mocking. thanks geemus
523
+
524
+ [bluebox|compute]
525
+ Fixed instance state. thanks Lee Huffman
526
+ Create and destroy images. thanks Lee Huffman
527
+ Fix for setting hostname on server save. thanks Lee Huffman
528
+ Expect correct status code for template create. thanks Lee Huffman
529
+
530
+ [cdn|aws]
531
+ move aws cdn to its own shared area (namespacing should probably be corrected). thanks geemus
532
+
533
+ [cdn|rackspace]
534
+ move rackspace cdn to its own shared area (namespacing should probably be corrected). thanks geemus
535
+
536
+ [compute]
537
+ fix service calls I missed in recent rearrange. thanks geemus
538
+
539
+ [compute|aws]
540
+ - Change modify_instance_attribute name to match EC2 API method, and actually make it do something. thanks Caleb Tennis
541
+ Include ids of things we're modifying in requests. thanks Dan Peterson
542
+ Fix create_volume mock when creating from a snapshot. thanks Dan Peterson
543
+ Make get_bucket_location mock return LocationConstraint as API doc describes. thanks Dan Peterson
544
+ Fix associate_address mock to detach/revert previous addresses properly. thanks Dan Peterson
545
+ Don't warn in mock describe_snapshots if RestorableBy is 'self'. thanks Dan Peterson
546
+ When mocking, instances don't show up right away. thanks Dan Peterson
547
+ Suffix with _tests.rb. thanks Dylan Egan
548
+ IpPermissionsEgress is returned from AWS. thanks Dylan Egan
549
+ Simple test to verify revoke_group_and_owner behaviour. thanks Dylan Egan
550
+ Apparently passing a nil value works against live AWS. Only use SourceSecurityGroupOwnerId in mocks if supplied. thanks Dylan Egan
551
+ Since this is really proving the use of nil, let's just not pretend there's a value for owner_id. thanks Dylan Egan
552
+ sometimes the platform string is returned. thanks Dylan Egan
553
+ enable tests for mocked tags. thanks Dylan Egan
554
+ Fix NameError. thanks Jens Braeuer
555
+ Fix bug in tag mocking preventing servers from being updated with new tags. thanks Matt Griffin
556
+ Add mocking for describe_tags. thanks Matt Griffin
557
+ move aws compute to its own shared area (namespacing should probably be corrected). thanks geemus
558
+
559
+ [compute|bluebox]
560
+ move bluebox compute to its own shared area (namespacing should probably be corrected). thanks geemus
561
+
562
+ [compute|brightbox]
563
+ Allow persistent option to be passed to Brightbox::Compute. thanks Caius Durling
564
+ Updated test for new behaviour. thanks Paul Thornthwaite
565
+ Picking up more attributes from Account. thanks Paul Thornthwaite
566
+ No need to hardcode a server type. thanks Paul Thornthwaite
567
+ Updated and reordered model attributes. thanks Paul Thornthwaite
568
+ Updates to tests. thanks Paul Thornthwaite
569
+ Added resave warning to a few Brightbox models. thanks Paul Thornthwaite
570
+ Requests for server group management. thanks Paul Thornthwaite
571
+ Merge in test updates and server groups. thanks Paul Thornthwaite
572
+ Corrected require missed in update. thanks Paul Thornthwaite
573
+ Reset times to the correct type so not string attributes. thanks Paul Thornthwaite
574
+ Updated Format test to remove gone fields. thanks Paul Thornthwaite
575
+ Fixed typo in connection options. thanks Paul Thornthwaite
576
+ Added missing requests. thanks Paul Thornthwaite
577
+ Added requests for firewall management. thanks Paul Thornthwaite
578
+ Added ServerGroup model and collections. thanks Paul Thornthwaite
579
+ Passing options to server group update. thanks Paul Thornthwaite
580
+ Fixed server_groups.get. thanks Paul Thornthwaite
581
+ move brightbox compute to its own shared area (namespacing should probably be corrected). thanks geemus
582
+
583
+ [compute|ecloud]
584
+ move ecloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
585
+
586
+ [compute|glesys]
587
+ added glesys as provider. thanks Anton Lindstrom
588
+ added tests. thanks Anton Lindström
589
+ fixed logical error for default values. thanks Anton Lindström
590
+ fixed an invalid character. thanks Anton Lindström
591
+ consistency/cleanup. thanks geemus
592
+ fix format for start vs stop. thanks geemus
593
+ rearrange to match current naming conventions. thanks geemus
594
+
595
+ [compute|go_grid]
596
+ move go_grid compute to its own shared area (namespacing should probably be corrected). thanks geemus
597
+
598
+ [compute|libvirt]
599
+ merge jedi4ever/libvirt. thanks geemus
600
+ move libvirt compute to its own shared area (namespacing should probably be corrected). thanks geemus
601
+
602
+ [compute|linode]
603
+ move linode compute to its own shared area (namespacing should probably be corrected). thanks geemus
604
+
605
+ [compute|new_servers]
606
+ move new_servers compute to its own shared area (namespacing should probably be corrected). thanks geemus
607
+
608
+ [compute|ninefold]
609
+ move ninefold compute to its own shared area (namespacing should probably be corrected). thanks geemus
610
+
611
+ [compute|rackspace]
612
+ move rackspace compute to its own shared area (namespacing should probably be corrected). thanks geemus
613
+
614
+ [compute|slicehost]
615
+ move slicehost compute to its own shared area (namespacing should probably be corrected). thanks geemus
616
+
617
+ [compute|storm_on_demand]
618
+ move storm_on_demand compute to its own shared area (namespacing should probably be corrected). thanks geemus
619
+
620
+ [compute|vcloud]
621
+ move vcloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
622
+
623
+ [compute|virtual_box]
624
+ move virtual_box compute to its own shared area (namespacing should probably be corrected). thanks geemus
625
+
626
+ [compute|voxel]
627
+ move voxel compute to its own shared area (namespacing should probably be corrected). thanks geemus
628
+
629
+ [core]
630
+ Allow FOG_CREDENTIAL env variable for config. thanks Aaron Suggs
631
+ add collection#destroy(identity). thanks geemus
632
+ move openssl to more central location. thanks geemus
633
+ first steps toward seperately requirable bits. thanks geemus
634
+ move providers to lib/fog/. thanks geemus
635
+ work toward separate requires. thanks geemus
636
+ prototype logger. thanks geemus
637
+ add get/set methods for logger channels. thanks geemus
638
+ use logger throughout for warnings. thanks geemus
639
+ coerce service credentials. thanks geemus
640
+ delete nil valued keys from config. thanks geemus
641
+ pass connection_options through service init. thanks geemus
642
+ don't rely on bin stuff for service init in tests. thanks geemus
643
+ dedup services listings. thanks geemus
644
+ more convenient accessors. thanks geemus
645
+ fixing more paths after rearrange. thanks geemus
646
+ add credentials setter. thanks geemus
647
+ make sure credentials tests properly reset after completion. thanks geemus
648
+ bump excon dep. thanks geemus
649
+ properly fix credentials tests. thanks geemus
650
+ skip vmfusion in rake nuke. thanks geemus
651
+ bump excon. thanks geemus
652
+ kill dns stuff in nuke as well. thanks geemus
653
+
654
+ [dns]
655
+ update dns constructor to match recent file moves. thanks geemus
656
+
657
+ [dns|aws]
658
+ move aws dns to its own shared area (namespacing should probably be corrected). thanks geemus
659
+
660
+ [dns|bluebox]
661
+ move bluebox dns to its own shared area (namespacing should probably be corrected). thanks geemus
662
+
663
+ [dns|dnsimple]
664
+ move dnsimple dns to its own shared area (namespacing should probably be corrected). thanks geemus
665
+
666
+ [dns|dnsmadeeasy]
667
+ move dnsmadeeasy dns to its own shared area (namespacing should probably be corrected). thanks geemus
668
+
669
+ [dns|dynect]
670
+ move dynect dns to its own shared area (namespacing should probably be corrected). thanks geemus
671
+
672
+ [dns|linode]
673
+ move linode dns to its own shared area (namespacing should probably be corrected). thanks geemus
674
+
675
+ [dns|rackspace]
676
+ initial commit. thanks Brian Hartsock
677
+ list_domains request. thanks Brian Hartsock
678
+ added attributes to list_domains; refactored rackspace errors to be shared with load balancers. thanks Brian Hartsock
679
+ move rackspace dns to its own shared area (namespacing should probably be corrected). thanks geemus
680
+
681
+ [dns|slicehost]
682
+ move slicehost dns to its own shared area (namespacing should probably be corrected). thanks geemus
683
+
684
+ [dns|zerigo]
685
+ move zerigo dns to its own shared area (namespacing should probably be corrected). thanks geemus
686
+
687
+ [doc]
688
+ Added blogpost about libvirt into fog to the press page. thanks Patrick Debois
689
+ corrected the link to the actual blogpost instead of the github markdown page :). thanks Patrick Debois
690
+
691
+ [docs]
692
+ add note about ec2 default username. thanks geemus
693
+
694
+ [dynect|dns]
695
+ use a string for now. #362 is open for accepting symbols in mocks. thanks Dylan Egan
696
+ return the zone name. thanks Dylan Egan
697
+ accidentally hardcoded the record type in the mocked data. thanks Dylan Egan
698
+ support ANY record results. thanks Dylan Egan
699
+ Don't use address as different records have different arguments, just send rdata. Remove value. Add CNAME test. thanks Dylan Egan
700
+ find, not first. thanks Dylan Egan
701
+ always ensure it's an integer. thanks Dylan Egan
702
+ retry if auth_token was previously set and error message includes possible login expiration. thanks Dylan Egan
703
+ support reauth for inactivity logout too. thanks Dylan Egan
704
+
705
+ [glesys|compute]
706
+ fixes to play nice with mock tests. thanks geemus
707
+ skip flavor tests. thanks geemus
708
+
709
+ [gleysys]
710
+ fixes for mocked test setup. thanks geemus
711
+
712
+ [libvirt]
713
+ Added option libvirt_ip_command to the credentials error page. thanks Patrick Debois
714
+ Corrected template variable from interface_nat_network to network_nat_network. thanks Patrick Debois
715
+
716
+ [linode|compute]
717
+ update format for plans. thanks geemus
718
+
719
+ [load balancer|rackspace]
720
+ fixed some minor bugs i noticed in the tests. thanks Brian Hartsock
721
+
722
+ [misc]
723
+ Fixed a couple of errors in the examples. thanks Bobby Wilson
724
+ 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
725
+ Add create_image to server model. thanks Dan Prince
726
+ Add support for non-strict validations, and nullable arrays/hashes. thanks Dan Prince
727
+ Additions and updates to the OpenStack API tests. thanks Dan Prince
728
+ Beginning of Dynect::DNS mocking support. thanks Dylan Egan
729
+ get_record, single. thanks Dylan Egan
730
+ Tidy up a bit. thanks Dylan Egan
731
+ Support freeze and thaw. thanks Dylan Egan
732
+ sleep for 3 seconds when running against Dynect because otherwise there is an operation still in progress. thanks Dylan Egan
733
+ raise a NotFound if not found. thanks Dylan Egan
734
+ Fog::DNS::Dynect, not Fog::Dynect::DNS. thanks Dylan Egan
735
+ InstanceId should have index according to AWS Docs. thanks E.J. Finneran
736
+ fix indenting to get markdown to recognise the code block properly. thanks Glenn Tweedie
737
+ Better URL escaping for Rackspace Cloud Files. thanks H. Wade Minter
738
+ Tweak to escape the Cloud Files filename before passing to public_url. thanks H. Wade Minter
739
+ Put escaping logic into the collection get_url call. thanks H. Wade Minter
740
+ (#9241) Add skeleton VMware vSphere platform support. thanks Jeff McCune
741
+ (#9241) Add SSL verification. thanks Jeff McCune
742
+ (#9241) Add current_time request. thanks Jeff McCune
743
+ (#9241) Add model for Fog::Compute[:vsphere].servers. thanks Jeff McCune
744
+ (#9241) Add test skeleton framework. thanks Jeff McCune
745
+ (#9241) Add ability to find VMs by UUID. thanks Jeff McCune
746
+ (#9421) Add start, stop, reboot server model methods. thanks Jeff McCune
747
+ (#9241) Add destroy API request and model action. thanks Jeff McCune
748
+ (#9241) Add find_template_by_instance_uuid request. thanks Jeff McCune
749
+ (#9241) Add vm_clone API request. thanks Jeff McCune
750
+ (#9241) Don't fail when trying to model a cloning VM. thanks Jeff McCune
751
+ (#9241) Make the reload action of the server models work. thanks Jeff McCune
752
+ (#9124) Add ability to reload the model of a cloning VM. thanks Jeff McCune
753
+ Refactor requests to return simple hashes and add unit tests. thanks Jeff McCune
754
+ Add vsphere_server connection attribute. thanks Jeff McCune
755
+ Fix vm clone problem when a Guid instance is passed as the instance_uuid. thanks Jeff McCune
756
+ Fix documentation. The resulting hash has no entry "PutScalingPolicyResponse", but a "...Result". thanks Jens Braeuer
757
+ Pass hostname to create_block request if provided. thanks Lee Huffman
758
+ Added Fog::CurrentMachine#ip_address. thanks Pan Thomakos
759
+ First cut at libvirt integration. Lots of features missing, but it proves the point. thanks Patrick Debois
760
+ - 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
761
+ - Get all pools now by name or by uuid - Create pool by providing xml - Destroy pool. thanks Patrick Debois
762
+ 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
763
+ Allow creation of persistent or non persistent volumes. thanks Patrick Debois
764
+ Again major breakthrough. thanks Patrick Debois
765
+ Coming along nicely. thanks Patrick Debois
766
+ - 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
767
+ 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
768
+ fixing whitespace. thanks Patrick Debois
769
+ removed trailing spaces. thanks Patrick Debois
770
+ indenting the files. thanks Patrick Debois
771
+ check ip-address that returned from the search in the logfile. thanks Patrick Debois
772
+ 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
773
+ renamed ipaddress to ip_address made the .id available and an alias to uuid for server. thanks Patrick Debois
774
+ Added description on the libvirt environment can be initialized and the requirements for ssh and ipaddress to work. thanks Patrick Debois
775
+ 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
776
+ 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
777
+ Removed the template_options param. thanks Patrick Debois
778
+ Fixed disk_format_type vs disk_type_format difference and changed disk_format_type in the template as well. thanks Patrick Debois
779
+ added openauth support thanks to @rubiojr. thanks Patrick Debois
780
+ changed return code of state to string instead of symbols to be consistent with aws provider. thanks Patrick Debois
781
+ - 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
782
+ Added a way to filter the active and the defined servers(domains) using - servers.all(:active => false, :defined=> true). thanks Patrick Debois
783
+ Fixed empty filter issue, nil filter. thanks Patrick Debois
784
+ * 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
785
+ Added libvirt options to credentials error. thanks Patrick Debois
786
+ Made libvirt username param consistent with other providers libvirt_user -> libvirt_username. thanks Patrick Debois
787
+ [Libvirt] Provided better solution for ip_command : use shell variable instead of ruby string for mac-address. thanks Patrick Debois
788
+ vmfusion provider , requires the fission gem (pull request pending). thanks Patrick Debois
789
+ fixed missing disk-> volume conversion. thanks Patrick Debois
790
+ another log entry style resused old ethernet. thanks Patrick Debois
791
+ Fix warning about whitespace before parentheses in dns.rb. thanks Rick Bradley
792
+ Added support fo canned ACLs in put_object_acl. thanks dblock
793
+ Updated put_bucket_acl to support canned ACLs. thanks dblock
794
+ Marking as pending. thanks dblock
795
+ Refactored specs, mocks, etc. thanks dblock
796
+ Revert "[core] make sure credentials tests properly reset after completion". thanks geemus
797
+ Update gemspec description to mention popular services that are supported. thanks watsonian
798
+
799
+ [ninefold|compute]
800
+ fixes for list formats. thanks geemus
801
+ fix for network formats. thanks geemus
802
+ add default (ubuntu) image for servers. thanks geemus
803
+
804
+ [rackspace|dns]
805
+ all important domains requests. thanks Brian Hartsock
806
+ zone models. thanks Brian Hartsock
807
+ records requests. thanks Brian Hartsock
808
+ record models. thanks Brian Hartsock
809
+ minor docs update. thanks Brian Hartsock
810
+ add mock initializer. thanks geemus
811
+ consistency fixes and tests and mark pending in mocked. thanks geemus
812
+ fix mock init to play nice with tests. thanks geemus
813
+ fixes for updates to beta. thanks geemus
814
+
815
+ [rackspace|load_balancers]
816
+ fix path for tests. thanks geemus
817
+ fixes for tests. thanks geemus
818
+
819
+ [rackspace|storage]
820
+ fix broken model paths. thanks geemus
821
+
822
+ [release]
823
+ update MVP skip list. thanks geemus
824
+ add collaborator count to changelog stats. thanks geemus
825
+
826
+ [storage]
827
+ Fixed what appeared to be broken test (I only verified with Rackspace provider). thanks Brian Hartsock
828
+
829
+ [storage|aws]
830
+ Add options to File#copy method. thanks Aaron Suggs
831
+ move aws storage back with other aws stuff (namespacing should probably be recorrected as well). thanks geemus
832
+
833
+ [storage|google]
834
+ move google storage to shared google stuff (namespacing should probably be corrected). thanks geemus
835
+
836
+ [storage|local]
837
+ move local storage to its own shared area (namespacing should probably be corrected). thanks geemus
838
+
839
+ [storage|ninefold]
840
+ move ninefold storage to its own shared area (namespacing should probably be corrected). thanks geemus
841
+ use Fog::HMAC. thanks geemus
842
+
843
+ [storage|rackspace]
844
+ Fixed NotFound namespace. thanks Grégory Karékinian
845
+ move rackspace storage to its own shared area (namespacing should probably be corrected). thanks geemus
846
+
847
+ [tests]
848
+ rearrange to match new lib structure. thanks geemus
849
+ mark not implemented mocks as pending. thanks geemus
850
+ more helpful formats helper errors. thanks geemus
851
+
852
+ [vmfusion|compute]
853
+ fixed destroy function. thanks Patrick Debois
854
+ reworked structure as will be released in 0.4.0a. thanks Patrick Debois
855
+
856
+ [vsphere|compute]
857
+ mark test requiring guid pending, as require can not be found. thanks geemus
858
+ remove unnecessary mocha require. thanks geemus
859
+
860
+
861
+ 0.11.0 08/18/2011 73bcee507a4732e071c58d85793b7f307eb377dc
862
+ ==========================================================
863
+
864
+ Stats! { 'downloads' => 202791, 'forks' => 237, 'open_issues' => 20, 'watchers' => 1427 }
865
+
866
+ MVP! Brian Hartsock
867
+
868
+ [aws|cdn]
869
+ Added commands for streaming distribution lists. thanks Christopher Oliver
870
+
871
+ [aws|compute]
872
+ describe security groups parser was not taking into account ipPermissionsEgress and therefore returning unexpected results when the account had VPC groups. thanks Christopher Oliver
873
+ Added missing 'platform' attribute to server model and describe instances request. thanks Christopher Oliver
874
+
875
+ [aws|iam]
876
+ fix 'Path' handling for get_group response. thanks Nick Osborn
877
+ add missing update_server_certificate request. thanks Nick Osborn
878
+
879
+ [aws|rds]
880
+ Allow string or symbol hash keys. thanks Aaron Suggs
881
+
882
+ [aws|s3]
883
+ 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
884
+ policy should be base64 encoded and not contain new lines. thanks Fujimura Daisuke
885
+ Require 'multi_json' was lucked. thanks Fujimura Daisuke
886
+
887
+ [compute]
888
+ add server base class to contain shared stuff (scp/ssh). thanks geemus
889
+
890
+ [compute|aws]
891
+ Whitespace removal. thanks Dylan Egan
892
+ Allow image mocks to support state (except failed). thanks Dylan Egan
893
+ fix pluralization of modify_image_attribute. thanks geemus
894
+ update modify image/snapshot attribute to match latest API. thanks geemus
895
+ add modify_image_attribute. thanks geemus
896
+ add support for saving assigned tags at server creation time. thanks geemus
897
+ add docs for new options on run_instances. thanks geemus
898
+ guard tag creation against empty tag set. thanks geemus
899
+ fixes for bootstrap and placing attributes json. thanks geemus
900
+ identity not needed for setup. thanks geemus
901
+ fix for running nice with mocked test run. thanks geemus
902
+
903
+ [compute|brightbox]
904
+ Updated test for new expected response from server. thanks Paul Thornthwaite
905
+ Updated Account format test to allow valid_credit_card flag. thanks Paul Thornthwaite
906
+ Added IPv6 address to format now it is exposed to API. thanks Paul Thornthwaite
907
+ DRY up request method. thanks Paul Thornthwaite
908
+ Corrected attribute name. thanks Paul Thornthwaite
909
+
910
+ [compute|voxel]
911
+ position in format is string, not integer. thanks geemus
912
+
913
+ [dns]
914
+ dry generate_unique_domain to tests helper. thanks geemus
915
+
916
+ [dns|dynect]
917
+ cleanup of initial implementation. thanks geemus
918
+ fixes to play nice with mocked test runs. thanks geemus
919
+
920
+ [dns|zerigo]
921
+ add host/port/scheme to recognizes. thanks geemus
922
+
923
+ [docs]
924
+ add task to build/publish supported services matrix. thanks geemus
925
+ alphasort doc tasks. thanks geemus
926
+
927
+ [misc]
928
+ 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
929
+ - 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
930
+ Fix issue 464, add howto for European Rackspace cloud. thanks Andre Meij
931
+ Initial support for adding/deleting a load balancer (requests only). thanks Brian Hartsock
932
+ Complete lifecycle for a load balancer. thanks Brian Hartsock
933
+ Improved error handling. thanks Brian Hartsock
934
+ Model and collection for load balancers. thanks Brian Hartsock
935
+ Fixed issues with loading all LB params. thanks Brian Hartsock
936
+ Requests for nodes. thanks Brian Hartsock
937
+ Rackspace Load Balancers: model classes for nodes. thanks Brian Hartsock
938
+ Rackspace Load Balancers: requests for virtual ips. thanks Brian Hartsock
939
+ Added virtual IP models. thanks Brian Hartsock
940
+ Rackspace LB: Made some updates from the pull request. thanks Brian Hartsock
941
+ Rackspace LB: protocols, algorithms, and connection logging. thanks Brian Hartsock
942
+ Added access list requests. thanks Brian Hartsock
943
+ Rackspace LB: Added session persistence requests. thanks Brian Hartsock
944
+ Rackspace LB: Connection throttling requests. thanks Brian Hartsock
945
+ Rackspace LB: Fixed issues with connection logging model. thanks Brian Hartsock
946
+ Rackspace LB: Health Monitor requests. thanks Brian Hartsock
947
+ Rackspace LB: account usage request. thanks Brian Hartsock
948
+ Rackspace LB: Load Balancer Usage requests. thanks Brian Hartsock
949
+ Rackspace LB: Added model capabilities for a lot of additional actions. thanks Brian Hartsock
950
+ Rackspace LB: models for access lists. thanks Brian Hartsock
951
+ Rackspace LB: account usage call. thanks Brian Hartsock
952
+ Rackspace LB: Refactoring and cleanup. thanks Brian Hartsock
953
+ register_image mocking support. thanks Dylan Egan
954
+ Remove GENTOO_AMI. thanks Dylan Egan
955
+ Store it under the ID, not the name. thanks Dylan Egan
956
+ Allow tag filtering for images. thanks Dylan Egan
957
+ Set imageOwnerAlias to self. Not 100% on this, but it will allow you to search for images with 'owner-alias' => 'self'. thanks Dylan Egan
958
+ Back to using Owner. A couple of tests for it too. thanks Dylan Egan
959
+ Added support for delimiter option in Fog::Storage::AWS::Mock object. thanks Erik Terpstra
960
+ Link to EBS snapshots blog post. thanks Gavin Sandie
961
+ Add force stop functionality to AWS Instance. thanks John Ferlito
962
+ * 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
963
+ * Fix VirtualBox in compute case statement. thanks Mark A. Miller
964
+ Update to the latest VirtualBox gem while we're at it for good measure. thanks Mark A. Miller
965
+ add dynect DNS provider with session request implemented. thanks Michael Hale
966
+ add dynect provider and cleanup extra requires. thanks Michael Hale
967
+ enable mocking for dynect. thanks Michael Hale
968
+ parse session request and fix mock for tests. thanks Michael Hale
969
+ whoops forgot to add these files. thanks Michael Hale
970
+ temporary rake task for convenient testing. thanks Michael Hale
971
+ include /REST in all requests. thanks Michael Hale
972
+ change API-Token to Auth-Token. thanks Michael Hale
973
+ add zone request. thanks Michael Hale
974
+ fix API-Token in mock session request. thanks Michael Hale
975
+ always run both mock and non-mock tests. thanks Michael Hale
976
+ parse the list of zones returned. thanks Michael Hale
977
+ require builder in dynect. thanks Michael Hale
978
+ WIP: add stub model classes. thanks Michael Hale
979
+ tests passing. thanks Michael Hale
980
+ rename zone request to zones. thanks Michael Hale
981
+ add zone request to show information for a single zone. thanks Michael Hale
982
+ hook up zones model. thanks Michael Hale
983
+ hook up zones.get. thanks Michael Hale
984
+ dynect: add a bunch of stuff: node_list, list_any_records, handle 307 job redirect,. thanks Michael Hale
985
+ dynect: nicer filter api for records. thanks Michael Hale
986
+ Escape source object name when copying. thanks Pratik Naik
987
+ provide #providers for shared services. thanks geemus
988
+
989
+ [rackspace|load balancers]
990
+ fixed broken tests. thanks Brian Hartsock
991
+
992
+ [rackspace|load_balancers]
993
+ fixes to play nice with mock test runs. thanks geemus
994
+ fix typo in tests. thanks geemus
995
+
996
+ [rackspace|loadbalancers]
997
+ cleanup. thanks geemus
998
+
999
+ [release]
1000
+ add newest MVP to changelog task MVP omit list. thanks geemus
1001
+ add stats to changelog. thanks geemus
1002
+ remove un-needed rebuild of gem. thanks geemus
1003
+
1004
+ [storage]
1005
+ fix deprecated get_url usage. thanks geemus
1006
+
1007
+ [storage|aws]
1008
+ simplify region accessor. thanks geemus
1009
+
1010
+ [storage|ninefold]
1011
+ remove debug output. thanks geemus
1012
+
1013
+ [tests]
1014
+ non-destructively generate id for get('fake') == nil tests. thanks geemus
1015
+
1016
+
1017
+ 0.10.0 07/25/2011 9ca8cffc000c417a792235438c12855a277fe1ce
1018
+ ==========================================================
1019
+
1020
+ MVPs! Christopher Oliver, Dylan Egan and Henry Addison
1021
+
1022
+ [AWS Autoscaling]
1023
+ Fixed typo in put scaling policy request. thanks Christopher Oliver
1024
+ Fixed error in describe policies parser. thanks Christopher Oliver
1025
+ Got describe policies returning correctly. thanks Christopher Oliver
1026
+ Removed unnecessary options merge in Delete Policy request. thanks Christopher Oliver
1027
+
1028
+ [AWS IAM]
1029
+ Added Alias related functionality to IAM. Also added get_group_policy. thanks Christopher Oliver
1030
+ Added missing request file for list account aliases. thanks Christopher Oliver
1031
+
1032
+ [AWS RDS]
1033
+ 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
1034
+ Added LicenseModel to the db_parser. thanks Christopher Oliver
1035
+
1036
+ [AWS|ELB]
1037
+ fix bug that was causing availability zones to not parse properly on get/reload. thanks Blake Gentry
1038
+ default values for Listeners. thanks Blake Gentry
1039
+ offload Listener defaults to the Listener model. thanks Blake Gentry
1040
+
1041
+ [AWS|SNS]
1042
+ flesh out basics. thanks geemus
1043
+
1044
+ [AWS|SQS]
1045
+ flesh out basics. thanks geemus
1046
+
1047
+ [aws|auto_scaling]
1048
+ implement 2010-08-01 API. thanks Nick Osborn
1049
+
1050
+ [aws|autoscaling]
1051
+ metrics#get should return nil when not found. thanks geemus
1052
+ mark unimplemented/unsupported tests as pending. thanks geemus
1053
+
1054
+ [aws|cloudwatch]
1055
+ mark overly specific test as pending. thanks geemus
1056
+
1057
+ [aws|compute]
1058
+ improve model and tests. thanks Nick Osborn
1059
+
1060
+ [aws|elb]
1061
+ add test to verify that ListenerDescriptions work when creating an ELB. thanks Blake Gentry
1062
+ make describe_load_balancers parse SSLCertificateId. Verify with test. thanks Blake Gentry
1063
+ Raise proper IAM error for CertificateNotFound when creating an ELB or creating Listeners. thanks Blake Gentry
1064
+ move ELB error handling related to certs to the ELB service instead of duplicating at the request level. thanks Blake Gentry
1065
+ use slurp when raising errors to properly capture exception details. thanks Blake Gentry
1066
+ Add set_load_balancer_listener_ssl_certificate. thanks James Miller
1067
+ fix listener defaults to use merge_attributes and therefore aliases. thanks geemus
1068
+
1069
+ [aws|iam]
1070
+ add error handling for common failures resulting from upload_server_certificate. thanks Blake Gentry
1071
+ fix superclass mismatch. thanks Blake Gentry
1072
+ add get_server_certificate request. thanks Blake Gentry
1073
+ raise correct ValidationError when an empty cert or key is used. thanks Blake Gentry
1074
+ Simplify error handling code for errors with custom classes. thanks Blake Gentry
1075
+ raise EntityAlreadyExists when creating a duplicate cert name. thanks Blake Gentry
1076
+ tests and mocks to support many types of key/cert issues. thanks Blake Gentry
1077
+ add proper error messages. thanks Blake Gentry
1078
+ fix expected error result from login_profile_tests. thanks geemus
1079
+
1080
+ [aws|rds]
1081
+ add LicenseModel to format. thanks geemus
1082
+
1083
+ [aws|simpledb]
1084
+ provide for using ConsistentRead on get_attributes and select. thanks geemus
1085
+ fix get_attributes mock deprecation. thanks geemus
1086
+
1087
+ [compute]
1088
+ fix stormondemand namespace mismatch. thanks geemus
1089
+
1090
+ [compute|aws]
1091
+ cluster compute placement group implementation. thanks geemus
1092
+ add request level support for spot instances. thanks geemus
1093
+ fix describe_instances parser to get group ids correctly. thanks geemus
1094
+ fix compute accessor in tests. thanks geemus
1095
+
1096
+ [compute|bluebox]
1097
+ fixes for ip accessor usage. thanks geemus
1098
+
1099
+ [compute|brightbox]
1100
+ Fixed typo in deprecation warning. thanks Paul Thornthwaite
1101
+ Fixed deprecated use of Brightbox[:compute] to new Compute[:brightbox]. thanks Paul Thornthwaite
1102
+ New preference exposed in API added to format test. thanks Paul Thornthwaite
1103
+
1104
+ [compute|ninefold]
1105
+ add default serviceofferingid (flavor). thanks geemus
1106
+ fix zone format. thanks geemus
1107
+ small consistency fixes for server. thanks geemus
1108
+
1109
+ [compute|rackspace]
1110
+ fix for token expiry/reauth. thanks geemus
1111
+
1112
+ [compute|virtualbox]
1113
+ backwards compatibility for gem availability check. thanks geemus
1114
+
1115
+ [compute|voxel]
1116
+ fix server format. thanks geemus
1117
+
1118
+ [core]
1119
+ avoid ArgumentError with Ruby 1.8.5 on CentOS. thanks Nick Osborn
1120
+ fix to_date_header to use self.utc instead of self.class.now.utc. thanks geemus
1121
+ avoid ||= in timeout lookup. thanks geemus
1122
+
1123
+ [docs]
1124
+ update index to use non-deprecated service accessor. thanks geemus
1125
+
1126
+ [misc]
1127
+ Fix ::AWS[] syntax that's only valid in Fog tests when bin/aws.rb is loaded. thanks Blake Gentry
1128
+ Typos. thanks Blake Gentry
1129
+ Require json needed for both Real and Mock implementation of Rackspace; SSH commands in Mock just print to command line. thanks Brian Hartsock
1130
+ Revert "Require json needed for both Real and Mock implementation of Rackspace; SSH commands in Mock just print to command line". thanks Brian Hartsock
1131
+ require json for rackspace compute mock. thanks Brian Hartsock
1132
+ Fixed #444 - Unable to squash kvp with false values. thanks Brian Hartsock
1133
+ Fix make OpenStack swift working properly. thanks Chmouel Boudjnah
1134
+ Move the timeout to Mock and stop hardcoding. thanks Christopher Meiklejohn
1135
+ Fix failures in the simpledb testing due to attribute array option deprecation. thanks Christopher Meiklejohn
1136
+ Guard against item_name not being a valid key. thanks Christopher Meiklejohn
1137
+ Switch to the has_key? syntax for cleanliness. thanks Christopher Meiklejohn
1138
+ Move timeout up to Fog from Fog::Mock. thanks Christopher Meiklejohn
1139
+ Fix deprecation messages. thanks Claudio Poli
1140
+ Make Rails' respond_with play nice with to_json. thanks Claudio Poli
1141
+ Use multi_json gem. thanks Claudio Poli
1142
+ Public API for force_detach on Fog::Compute::AWS::Volume. thanks Dylan Egan
1143
+ Should actually use the attachment_aliases hash. thanks Dylan Egan
1144
+ server method for Fog::Compute::AWS::Volume to easily get the server instance. thanks Dylan Egan
1145
+ requires_one, allows you to require at least one of the specified attributes. thanks Dylan Egan
1146
+ Remove pending on iam/server_certificate_tests. Start the mocking. thanks Dylan Egan
1147
+ list_server_certificates and delete_server_certificates. thanks Dylan Egan
1148
+ Yes, yes it is better. thanks Dylan Egan
1149
+ Start ELB mocks. Support create_load_balancer and describe_load_balancers. thanks Dylan Egan
1150
+ configure_health_check and create_app_cookie_stickiness_policy. thanks Dylan Egan
1151
+ create_lb_cookie_stickiness_policy and delete_load_balancer_policy. thanks Dylan Egan
1152
+ create_load_balancer_listeneners and set_load_balancer_policies_of_listener. thanks Dylan Egan
1153
+ delete_load_balancer_listeners and delete_load_balancer (with two more tests). thanks Dylan Egan
1154
+ 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
1155
+ Remove requirement of basic parsers. thanks Dylan Egan
1156
+ Move things around a bit. Separate ELB test file per concerns. thanks Dylan Egan
1157
+ SSL for ELB mocking. thanks Dylan Egan
1158
+ Tested against AWS. Needed this. Apparently SSLCertificateId == Arn. thanks Dylan Egan
1159
+ Use available availability_zones. thanks Dylan Egan
1160
+ Wait for volume to be ready again. thanks Dylan Egan
1161
+ AWS instance tests 100% against real. thanks Dylan Egan
1162
+ Make stuff pending if you're mocking. Need to fix spot_price_history_tests, see comment. thanks Dylan Egan
1163
+ Let's just sleep forever. thanks Dylan Egan
1164
+ Reinstate ipAddress and privateIpAddress as they're provided for non-terminated instances. thanks Dylan Egan
1165
+ Reinstate ramdiskId. thanks Dylan Egan
1166
+ Revert "Reinstate ramdiskId." - fuckit! Seems like AWS doesn't return ramdiskId for. thanks Dylan Egan
1167
+ Clean up timeout and add tests. thanks Dylan Egan
1168
+ Quick fix, ith != i. thanks Dylan Egan
1169
+ Begin work on mocking reserved instances. Provide describe_reserved_instances_offerings for mocking and real. REAL TALK. thanks Dylan Egan
1170
+ reserved_instances mocking. I think, it's hard to test against a real AWS account since it costs money. thanks Dylan Egan
1171
+ Default to 1. thanks Dylan Egan
1172
+ add spot instance request models. thanks Edward Middleton
1173
+ fixed spot_requests. thanks Edward Middleton
1174
+ spot instance fixes. thanks Edward Middleton
1175
+ cloud_watch toplevel. thanks Frederick Cheung
1176
+ add get/put/list metrics. thanks Frederick Cheung
1177
+ Corrected a couple of syntax errors in the put and get metric cloudwatch requests. thanks Henry Addison
1178
+ Fixed the parser for list metrics cloudwatch request. thanks Henry Addison
1179
+ Added first test of successful list metrics. thanks Henry Addison
1180
+ simplified a bit the long case statement in end element in list_metrics parser. thanks Henry Addison
1181
+ added a few more cloudwatch request metric tests. thanks Henry Addison
1182
+ added metrics collection and model for cloudwatch with all and get methods. thanks Henry Addison
1183
+ split out and got passing get metric statistics request tests. thanks Henry Addison
1184
+ Added metric statistics model and collection. thanks Henry Addison
1185
+ removed old test file. thanks Henry Addison
1186
+ removed empty test for for metric model (nothing to test at the moment). thanks Henry Addison
1187
+ removed unnecessary attributes from metrics collection (naughty copy and pasting). thanks Henry Addison
1188
+ got put_metric_data request working and tested. thanks Henry Addison
1189
+ added model and collection methods and tests to allow putting of metric data. thanks Henry Addison
1190
+ renamed argument for all method in cloud watch metric_statistics from filters to conditions as filters has a meaning in fog. thanks Henry Addison
1191
+ added a conditions method to all metrics method to help filter all metrics. thanks Henry Addison
1192
+ Added some defaults for StartTime, EndTime and Period to model for MetricStatistics. thanks Henry Addison
1193
+ Begin SQS support. thanks Jon Crosby
1194
+ Continued SQS support. thanks Jon Crosby
1195
+ Add SQS get_queue_attributes. thanks Jon Crosby
1196
+ Fix rubygems warning. thanks Jonas Pfenniger
1197
+ Patch for AWS S3 Metadata problem. thanks Kenji Kabashima
1198
+ Changed number of cores reported for rackspace flavors in order to match current rackspace documentation. thanks Steven Danna
1199
+ Checking path for nil. thanks Timothy Klim
1200
+ Fixed escaping in Fog::AWS.escape. thanks croaker
1201
+ Changed the encoding of the space character. thanks croaker
1202
+ rebuild gemfile during release to include updated changelog. thanks geemus
1203
+ bump excon dep. thanks geemus
1204
+ loosen dependencies to avoid conflicts. thanks geemus
1205
+ bump formatador dep. thanks geemus
1206
+ to_json calls to use MultiJson. thanks geemus
1207
+ make collection class_eval more consistent. thanks geemus
1208
+ update gem deps to latest/greatest. thanks geemus
1209
+ Return nil if HOME is non-absolute. Fixes #397. thanks jc00ke
1210
+ Fix a bunch of paths. thanks phiggins
1211
+ Start of SNS. thanks phiggins
1212
+ Working ListUsers for SNS. thanks phiggins
1213
+ Remove copied-and-pasted documentation. thanks phiggins
1214
+ Add SNS's get_topic_attributes command. thanks phiggins
1215
+ SNS ListSubscriptions. thanks phiggins
1216
+ SNS ListSubscriptionsByTopic. thanks phiggins
1217
+ SNS CreateTopic and DeleteTopic. thanks phiggins
1218
+ SNS Publish. thanks phiggins
1219
+ SNS AddPermission. thanks phiggins
1220
+ SNS RemovePermission. thanks phiggins
1221
+ SNS SetTopicAttributes. thanks phiggins
1222
+ SNS Subscribe. thanks phiggins
1223
+ SNS ConfirmSubscription and Unsubscribe. thanks phiggins
1224
+ Add sns to fog bin. thanks phiggins
1225
+ Start SNS tests. thanks phiggins
1226
+
1227
+ [ninefold|storage]
1228
+ Framework + request method for Ninefold storage. thanks Lincoln Stoll
1229
+ Directories Functionality. thanks Lincoln Stoll
1230
+ Nested directories. thanks Lincoln Stoll
1231
+ File operations. thanks Lincoln Stoll
1232
+ Update an existing file. thanks Lincoln Stoll
1233
+ set content type correctly. thanks Lincoln Stoll
1234
+
1235
+ [release]
1236
+ add mvps and fix fog.io uploader. thanks geemus
1237
+ remove problematic pbcopy from changelog rake task. thanks geemus
1238
+ make changelog build separate from release. thanks geemus
1239
+
1240
+ [storage]
1241
+ provide http/https options for signed urls. thanks geemus
1242
+
1243
+ [storage|aws]
1244
+ properly format modified headers in get_object. thanks geemus
1245
+ fix escaping for file#public_url. thanks geemus
1246
+
1247
+ [storage|google]
1248
+ fix get_object_https_url namespace copy/paste error. thanks geemus
1249
+
1250
+ [storage|ninefold]
1251
+ fix file#destroy and test cleanup. thanks geemus
1252
+
1253
+ [storage|rackspace]
1254
+ add large object support via put_object_manifest. thanks geemus
1255
+ cleanup formatting/style. thanks geemus
1256
+
1257
+ [tests]
1258
+ make unimplemented mock tests pending. thanks geemus
1259
+ fix collection helper to play nice with numeric ids. thanks geemus
1260
+ replace letters with letters and numbers with numbers in collection#get failure test. thanks geemus
1261
+
1262
+ [vcloud|compute]
1263
+ create server now takes :catalog_items_uri as an option. thanks Kunal Parikh
1264
+ now referencing catalog_item_uri from options. thanks Kunal Parikh
1265
+ saving server attributes (uncommented code). thanks Kunal Parikh
1266
+ Revert "saving server attributes (uncommented code)". thanks Kunal Parikh
1267
+ duplicate ecloud code for vcloud, remove obvious terremark specific code. thanks Lincoln Stoll
1268
+ update catalog models for 1.0. thanks Lincoln Stoll
1269
+ make auth work. thanks Lincoln Stoll
1270
+ filter non-server items from server list. thanks Lincoln Stoll
1271
+ update for 1.0 functionality, server operations working. thanks Lincoln Stoll
1272
+ use correct power status ID for 'off'. thanks Lincoln Stoll
1273
+ allow specifying a default VDC uri as 'vcloud_default_vdc'. thanks Lincoln Stoll
1274
+ Add description field to server model. thanks Lincoln Stoll
1275
+ Correct friendly status power off check. thanks Lincoln Stoll
1276
+ correct hardware attribute reading. thanks Lincoln Stoll
1277
+ no longer possible to specify memory & cpu on vapp creation. thanks Lincoln Stoll
1278
+ remove outdated/invalid mocking & specs. thanks Lincoln Stoll
1279
+ fix deleting servers. thanks Lincoln Stoll
1280
+ server creation outside of VDC. thanks Lincoln Stoll
1281
+ undeploy request. thanks Lincoln Stoll
1282
+ memory reconfiguration. thanks Lincoln Stoll
1283
+ make status/ready handling more reliable. thanks Lincoln Stoll
1284
+ server tests. thanks Lincoln Stoll
1285
+ only require template name for tests. thanks Lincoln Stoll
1286
+ add and remove disks. thanks Lincoln Stoll
1287
+ ruby 1.8 compatibility. thanks Lincoln Stoll
1288
+ fix error messages in test helper. thanks Lincoln Stoll
1289
+ Fix setting of description. thanks Lincoln Stoll
1290
+ method to find catalog item by name across all catalogs. thanks Lincoln Stoll
1291
+ correct provider lookup. thanks Lincoln Stoll
1292
+
1293
+
1294
+ 0.9.0 06/24/2011 32960d165a65f12d41785f924e6b6b6d8442516a
1295
+ =========================================================
1296
+
1297
+ MVPs! Lincoln Stoll and Luqman Amjad
1298
+
1299
+ [aws]
1300
+ use AWS.escape instead of CGI.escape. thanks geemus
1301
+
1302
+ [aws|compute]
1303
+ Use #public_ip_address instead of deprecated #ip_address in Server#setup. thanks Martin Emde
1304
+ mock: make address detach others before associating. thanks geemus
1305
+
1306
+ [aws|elb]
1307
+ 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
1308
+ Update ELB API to version 2011-04-05. thanks Blake Gentry
1309
+ Fix typo in usage documentation and add 'ap-northeast-1' to regions list. thanks Blake Gentry
1310
+ Rearrange DescribeLoadBalancersResult contents to alphabetical order to match the official AWS docs and make it easier to update the list. thanks Blake Gentry
1311
+ Add new attributes for 2011-04-05 API. thanks Blake Gentry
1312
+
1313
+ [aws|rds]
1314
+ Add parameter group tests. thanks Aaron Suggs
1315
+ Add server model & collection tests. thanks Aaron Suggs
1316
+ Add security_groups collection and model tests. thanks Aaron Suggs
1317
+ Server#destroy argument is optional. thanks Aaron Suggs
1318
+ Refactor RDS model & collection tests. thanks Aaron Suggs
1319
+
1320
+ [aws|simpledb]
1321
+ recognize :region option in SimpleDB.new(). thanks Nick Osborn
1322
+
1323
+ [aws|storage]
1324
+ Add get/put bucket policy support. thanks Michael Linderman
1325
+ Add options argument to delete_object to set headers. thanks Michael Linderman
1326
+ Add delete bucket policy. thanks Michael Linderman
1327
+ discern between no file and no directory for files.get. thanks geemus
1328
+ fix error type for non-directories in files.get. thanks geemus
1329
+
1330
+ [brightbox|compute]
1331
+ Added missing Image#compatibility_mode attribute. thanks Paul Thornthwaite
1332
+ Fixed Format of Account representation. thanks Paul Thornthwaite
1333
+ Fixed Format of nested CloudIP's server attribute. thanks Paul Thornthwaite
1334
+ New account limits exposed in API, updating format test. thanks Paul Thornthwaite
1335
+ ApiClient revoked time exposed in API. Updated format test. thanks Paul Thornthwaite
1336
+
1337
+ [cdn]
1338
+ refactor provider/service namespacing. thanks geemus
1339
+ fix top level class/module mismatch. thanks geemus
1340
+
1341
+ [compute]
1342
+ first pass at examples. thanks geemus
1343
+ refactor provider/service namespacing. thanks geemus
1344
+ fixes/skips to get examples working. thanks geemus
1345
+
1346
+ [compute|aws]
1347
+ fix helpers to use Fog::AWS. thanks geemus
1348
+ simplify describe_instances parser. thanks geemus
1349
+ fix deprecated compute service accessor usage. thanks geemus
1350
+ improve consistency of waiting for ssh to be ready. thanks geemus
1351
+ remove debug output from last commit. thanks geemus
1352
+
1353
+ [compute|bluebox]
1354
+ fix format and template id in tests. thanks geemus
1355
+
1356
+ [compute|brightbox]
1357
+ Fixed missed lookup in broken tests caused by namespace rename. thanks Paul Thornthwaite
1358
+
1359
+ [compute|ecloud]
1360
+ fix namespace leftovers. thanks geemus
1361
+
1362
+ [compute|ninefold]
1363
+ test cleanup. thanks geemus
1364
+
1365
+ [compute|rackspace]
1366
+ fix nil check for auth token. thanks geemus
1367
+
1368
+ [compute|stormondemand]
1369
+ fix namespace issue. thanks geemus
1370
+
1371
+ [compute|voxel]
1372
+ fix flavor tests to properly skip voxel. thanks geemus
1373
+ fix namespace issue. thanks geemus
1374
+
1375
+ [core]
1376
+ add namespaced errors for better messaging. thanks geemus
1377
+ making collection.new error more idiomatic. thanks geemus
1378
+ fix mock reset to work with new namespaces. thanks geemus
1379
+
1380
+ [dns]
1381
+ rename ip to value for record. thanks geemus
1382
+ refactor provider/service namespacing. thanks geemus
1383
+
1384
+ [dns|dnsmadeeasy]
1385
+ skip model/collection tests for now (timing issue). thanks geemus
1386
+
1387
+ [dns|examples]
1388
+ fix deprecated record#ip= usage. thanks geemus
1389
+
1390
+ [dns|zerigo]
1391
+ fixes for namespacing. thanks geemus
1392
+ namespace related fixes. thanks geemus
1393
+
1394
+ [docs]
1395
+ main index redirects to /latest. thanks geemus
1396
+ fix rdoc link on index. thanks geemus
1397
+ update to match refactorings. thanks geemus
1398
+
1399
+ [examples]
1400
+ fix descriptions. thanks geemus
1401
+
1402
+ [linode|compute]
1403
+ mark format test for stackscripts pending due to inconsistency of string/float for a value. thanks geemus
1404
+
1405
+ [misc]
1406
+ add braces for new into the documents. thanks Chris Mague
1407
+ use correct variable name in test description. thanks Dr Nic Williams
1408
+ Not sure if I'm missing something here, but rake did not work. thanks Dylan Egan
1409
+ You only need either the size or the snapshot_id. thanks Dylan Egan
1410
+ Provide mocked console output if server has been up for over the delay time. thanks Dylan Egan
1411
+ LIES!. thanks Dylan Egan
1412
+ Add support for specifying a CDN CNAME when getting a Rackspace Cloud Files directory. thanks H. Wade Minter
1413
+ add missing comma. thanks Joseph Anthony Pasquale Holsten
1414
+ skip rackspace get_object test when mocking. thanks Joseph Anthony Pasquale Holsten
1415
+ give a more useful error if someone tries to say connection.directories.create('dir'). thanks Joseph Anthony Pasquale Holsten
1416
+ Added my blog post. thanks Larry Wright
1417
+ Add recursive argument to server scp methods. Set to false by default. thanks Luke Robins
1418
+ Add an options hash to scp. Set to {} by default. thanks Luke Robins
1419
+ Added new DNS provider => DNS Made Easy. thanks Luqman Amjad
1420
+ Removed sandbox url for DNS Made Easy. thanks Luqman Amjad
1421
+ Added missing method "delete all domains". thanks Luqman Amjad
1422
+ (DNSMadeEasy) added support for updating records via PUT. thanks Luqman Amjad
1423
+ Added missing reference to delete_all_domains. thanks Luqman Amjad
1424
+ Rescue 404 when fetching zone. thanks Luqman Amjad
1425
+ Added new blog posting about fog and Carrierwave. thanks Mike Gehard
1426
+ Edited docs/about/press.markdown via GitHub. thanks Mike Gehard
1427
+ Typo fix. thanks Oge Nnadi
1428
+ Fixed Fog::AWS::SimpleDB#delete_attributes. thanks Pan Thomakos
1429
+ add Net::SCP options parameter to Fog::SCP proxy. thanks Phil Cohen
1430
+ use a hash not nil for default scp_options. thanks Phil Cohen
1431
+ rackspace auth url only prepend protocol as needed. thanks Todd Willey
1432
+ Allow auth tokens to be shared among connections to rackspace api. thanks Todd Willey
1433
+ OpenStack responds 200 when creating servers. thanks Todd Willey
1434
+ added 0.8.2 changelog contents. thanks geemus
1435
+ separate fog.io and rdoc tasks. thanks geemus
1436
+ remove provider attribute from shared services. thanks geemus
1437
+ [storage][aws] fix leftover namespace mismatch. thanks geemus
1438
+ [storage][google] fix leftover namespace mismatch. thanks geemus
1439
+ Edited lib/fog/storage/rackspace.rb via GitHub. thanks kbockmanrs
1440
+
1441
+ [ninefold|compute]
1442
+ Boilerplate for ninefold. thanks Lincoln Stoll
1443
+ Ninefold List Functionality. thanks Lincoln Stoll
1444
+ VM Operations + dependencies. thanks Lincoln Stoll
1445
+ Fix data formats for virtual machines. thanks Lincoln Stoll
1446
+ IP Address requests. thanks Lincoln Stoll
1447
+ Refactor out job waiting functionality, test correct data. thanks Lincoln Stoll
1448
+ NAT functionality. thanks Lincoln Stoll
1449
+ Core model functionality. thanks Lincoln Stoll
1450
+ Public IPs and Rules. thanks Lincoln Stoll
1451
+ use lowest network ID as default, correct assignment. thanks Lincoln Stoll
1452
+ No mocks, simplify code. thanks Lincoln Stoll
1453
+ Save operations not supported. thanks Lincoln Stoll
1454
+
1455
+ [rake]
1456
+ add examples back into default rake task. thanks geemus
1457
+
1458
+ [release]
1459
+ update changelog during release process. thanks geemus
1460
+
1461
+ [storage]
1462
+ refactor provider/service namespacing. thanks geemus
1463
+
1464
+ [storage|aws]
1465
+ more robust query handling for signed url. thanks geemus
1466
+ make url a bit more robust. thanks geemus
1467
+ fix url to check for query. thanks geemus
1468
+ fix whitespace errors. thanks geemus
1469
+ more precise mocked get_object. thanks geemus
1470
+
1471
+ [storage|rackspace]
1472
+ fix files#get_url. thanks geemus
1473
+
1474
+ [tests]
1475
+ add dnsmadeeasy and ninefold to mock credentials. thanks geemus
1476
+ nuke rake task for test related cleanup. thanks geemus
1477
+ make collection gsub to find nils a bit more resilient/unique. thanks geemus
1478
+ trying again to make collection gsub to get nils more resilient/unique. thanks geemus
1479
+
1480
+
1481
+ 0.8.2 05/26/2011 9e6ebb6f7316273eb489f8cb60eb1642e6df357b
1482
+ =========================================================
1483
+
1484
+ MVP! nightshade427
1485
+
1486
+ [aws|compute]
1487
+ better region/zone handling for mocks. thanks geemus
1488
+ indentation fix for last commit. thanks geemus
1489
+ add class level reset for Fog::AWS::Compute::Mock. thanks geemus
1490
+ make mock delay comparison >= so that delay 0 will work properly. thanks geemus
1491
+ respect security zone choice in mocked run_instances closes #314. thanks geemus
1492
+ respect key_name in mocked run_instances. thanks geemus
1493
+ fix instance format in tests. thanks geemus
1494
+
1495
+ [brightbox|compute]
1496
+ fix format for account in tests. thanks geemus
1497
+
1498
+ [compute]
1499
+ Test server reloading. thanks Aaron Suggs
1500
+ consistency in #state call and mock test fixes. thanks geemus
1501
+
1502
+ [compute|aws]
1503
+ Fix server tests. thanks Aaron Suggs
1504
+ Mock get_password_data request. thanks Aaron Suggs
1505
+ Fix default region when mocking. thanks Aaron Suggs
1506
+ Better key_pair tests. thanks Aaron Suggs
1507
+ Make volumes format more flexible. thanks Aaron Suggs
1508
+
1509
+ [core]
1510
+ Fixed credential tests. thanks Aaron Suggs
1511
+ Fix responds_to test helper. thanks Aaron Suggs
1512
+ omit Release commits from changelog. thanks geemus
1513
+ put changelog in clipboard to finish release. thanks geemus
1514
+ more consistent redirector for fog.io. thanks geemus
1515
+ create Fog.available_providers for bin rather than overriding Fog.providers. thanks geemus
1516
+
1517
+ [dnsimple|dns]
1518
+ add dnsimple_url param to facilitate using https://test.dnsimple.com closes #323. thanks geemus
1519
+
1520
+ [docs]
1521
+ first pass at compute doc. thanks geemus
1522
+ update version in header/layout. thanks geemus
1523
+ also build/deploy rdocs. thanks geemus
1524
+ make fog.io/latest/foo link to newest versioned docs. thanks geemus
1525
+
1526
+ [ecloud]
1527
+ mark bin specs pending unless credentials provided closes #325. thanks geemus
1528
+
1529
+ [local|storage]
1530
+ fixes for pending mocked tests. thanks geemus
1531
+
1532
+ [misc]
1533
+ Flatten list of security groups. thanks Dan Peterson
1534
+ Added an example of the head method. thanks Larry Wright
1535
+ Clarified my example. thanks Larry Wright
1536
+ Add a link to fog's Rubydocs. thanks Mathias Meyer
1537
+ :size should be a number in GB, not an instance size (e.g. t1.micro). thanks Michael Conigliaro
1538
+ tests. thanks Nicholas Ricketts
1539
+ added rdoc comments. thanks Nicholas Ricketts
1540
+ Add Amazon API reference link to requests' documentation. thanks Peter Weldon
1541
+ Add reset method to mock classes. thanks anomalousthought
1542
+ Add a reset method to Fog::Mock that resets all providers/services. thanks anomalousthought
1543
+ Add reset method to other providers in addition to Compute providers. thanks anomalousthought
1544
+ Add a reset method to Fog::Mock that resets all providers/services in addition to Compute providers. thanks anomalousthought
1545
+ Public key results are cached, avoid a bug by using that cache. thanks bigfleet
1546
+ 0.8.1 changelog. thanks geemus
1547
+ messy first pass at parallelization of testing. thanks geemus
1548
+ fix deprecated rdoc rake tasks. thanks geemus
1549
+ add mvp suggestion to changelog task. thanks geemus
1550
+ started linode models. thanks nightshade427
1551
+ added images models. thanks nightshade427
1552
+ added kernel modes. thanks nightshade427
1553
+ added datacenters models. thanks nightshade427
1554
+ server provisioning completed. thanks nightshade427
1555
+ server creation and deletion working. thanks nightshade427
1556
+ generalize code. thanks nightshade427
1557
+ creating via stackscripts with callbacks working. thanks nightshade427
1558
+ added shutdown, reboot, boot. thanks nightshade427
1559
+ made config private. thanks nightshade427
1560
+ tests passing. thanks nightshade427
1561
+ revert tests to proper error codes, waiting on fix from linode to support correct error codes. thanks nightshade427
1562
+ code cleanup, tests passing. thanks nightshade427
1563
+ more passing tests. thanks nightshade427
1564
+ more test passing. thanks nightshade427
1565
+ more test passing. thanks nightshade427
1566
+ more test passing. thanks nightshade427
1567
+ more test passing. thanks nightshade427
1568
+ more test passing. thanks nightshade427
1569
+
1570
+ [mock]
1571
+ fix Fog::Mock.reset. thanks Dan Peterson
1572
+ error sooner for completely unimplemented services. thanks geemus
1573
+ cleanup and reset related fixes. thanks geemus
1574
+
1575
+ [rackspace|compute]
1576
+ make mocks respect Fog::Mock.delay. thanks geemus
1577
+
1578
+ [storage]
1579
+ fix/consolidate content-length for utf8. thanks geemus
1580
+
1581
+ [tests]
1582
+ add additional fake credentials for mocked tests. thanks geemus
1583
+
1584
+ [voxel|compute]
1585
+ fix format for servers in tests. thanks geemus
1586
+
1587
+
1588
+ 0.8.1 05/13/2011 3a452347a396f0ad1fea7f5475fb3c349b10f527
1589
+ =========================================================
1590
+
1591
+ [aws|compute]
1592
+ less confusing explanation comment. thanks geemus
1593
+
1594
+ [compute|aws]
1595
+ Fix describe_instances filtering. thanks ktheory
1596
+ Add get_password_data request. thanks ktheory
1597
+
1598
+ [core]
1599
+ Add test for Fog::Parsers::Base. thanks ktheory
1600
+ handle busted ENV['HOME']. thanks pfalcone closes #301. thanks geemus
1601
+ update fog.io in release task. thanks geemus
1602
+ add hash to changelog. thanks geemus
1603
+ work toward automating changelog. thanks geemus
1604
+
1605
+ 0.8.0 05/12/2011 27bf76d1f881bec0f900cd11d5c2a10dce4856ca
1606
+ =========================================================
1607
+
1608
+ MVP! ktheory
1609
+
1610
+ [aws|cloudformation] tests sleep to avoid throttling error :(
1611
+
1612
+ [aws|elb]
1613
+ Add tests for create, describe, and delete. thanks ktheory
1614
+ Fix Policies in describe_load_balancers parser. thanks ktheory
1615
+ Stub out missing requests. thanks ktheory
1616
+ Add configure_health_check request. thanks ktheory
1617
+ Add support for creating and deleting listeners. thanks ktheory
1618
+ Add requests for creating cookie policies. thanks ktheory
1619
+ Add request ELB#delete_load_balancer_policy. thanks ktheory
1620
+ Add request ELB#set_load_balancer_policies_of_listener. thanks ktheory
1621
+ Create a model and collection for load_balancers. thanks ktheory
1622
+ Create Policies collection and model. thanks ktheory
1623
+ Create Listeners collection and model. thanks ktheory
1624
+ Remove redundant NotFound error class. thanks ktheory
1625
+ reorg model files for consistency
1626
+
1627
+ [aws|iam]
1628
+ Added server certificate tests. thanks ktheory
1629
+ Parse server certificate UploadDate. thanks ktheory
1630
+ Add list_server_certificates request. thanks ktheory
1631
+ fix test description for update_login_profile
1632
+
1633
+ [aws|rds]
1634
+ Fix exception for missing DB security groups. thanks ktheory
1635
+ Remove redundant NotFound class. thanks ktheory
1636
+ Improve instance tests. thanks ktheory
1637
+ reorg model files for consistency
1638
+ change status waits for more consistent testing
1639
+
1640
+ [aws|ses]
1641
+ fix format of Destinations in send_raw_email and correct doc. thanks jhawthorne
1642
+ Make specifying Destinations for send_raw_email work and match amazon docs. thanks jhawthorne
1643
+ fix indent in doc. thanks jhawthorne
1644
+
1645
+ [aws|simpledb]
1646
+ correction for item and attribute counters in encode_batch_attributes. thanks joshounapoli
1647
+ 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
1648
+ Correction to the regular expression for unreserved characters. thanks joshounapoli
1649
+ 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
1650
+
1651
+ [compute]
1652
+ default to Ubuntu 10.04 LTS 64bit for image id
1653
+ [aws]
1654
+ Fix server tests. thanks ktheory
1655
+ Fixes trailing whitespace in attributes. thanks ktheory
1656
+ Fix & improve some tests. thanks ktheory
1657
+ Use default AMI in tests. thanks ktheory
1658
+ Add failing tests for keypair parsing. thanks ktheory
1659
+ Add different availability zones for each region to the mock. thanks smerritt
1660
+ Update docs for Compute::Real#initialize to include ap-* regions. thanks smerritt
1661
+ change default flavor to t1.micro (so it will be 64-bit)
1662
+ use old style, more consistent call to get single instance
1663
+ fix console output format in tests
1664
+ [bluebox]
1665
+ Adding lb_applications, lb_services, lb_backends attributes to the model. thanks cparades
1666
+ Adding in a few more tests for LB's. thanks cparades
1667
+ Rolling back change. thanks cparades
1668
+ Added in some data for testing. thanks cparades
1669
+ Fixed typo in Bluebox test. thanks tokengeek
1670
+ don't use a lb_application I don't own in tests
1671
+ [brightbox]
1672
+ Updated Image identifiers to match latest available Ubuntu Lucid 10.04 LTS 64bit image. thanks tokengeek
1673
+ [ecloud]
1674
+ 1.9.2 compat, String#[] doesn't return nil as we expected. thanks dpiddy
1675
+ [stormondemand]
1676
+ Implement Stormondemand API. thanks seeingidog
1677
+ cleanup
1678
+ fixes for tests
1679
+ [voxel]
1680
+ Prevent voxel tests running if missing credentials. thanks tokengeek
1681
+ minor fixes for voxel tests
1682
+
1683
+ [core]
1684
+ Parser does not concatenates all the strings when parsing. thanks geraud
1685
+ Drop default_executable line from gemspec. thanks mattsa
1686
+ Fix small logic error in Model#wait_for. thanks pvande
1687
+ Make Model#reload more resilient against errors. thanks pvande
1688
+ Simplify dup-ing of @attributes for models. thanks smerritt
1689
+ Make Model#dup copy the attributes too. thanks smerritt
1690
+ Fix typo in spec output. thanks smerritt
1691
+ tighten excon dependency. Closes #250
1692
+ cleanup gemspec. closes #251
1693
+ Fixes error messaging when credentials missing
1694
+ update parser to better handle whitespace
1695
+
1696
+ [docs]
1697
+ Add link to multipart upload and threads article. thanks gsandie
1698
+ restructure toward same organization as rest of repo
1699
+ simplify redirector to just point at directory instead of specifically index.html
1700
+ generalize version subbing in href to catch src too
1701
+ style cleanup for cdn/dns/storage
1702
+ storage shouldn't be all caps
1703
+ link to fog.io more prominently
1704
+ fix new links to properly include version
1705
+ replace getting started link
1706
+ add link to learn_fog
1707
+ remove confusion by linking to fog.io instead of wiki
1708
+ reworking getting started guide
1709
+ add requires
1710
+
1711
+ [dns|aws] fix error handling for getting unknown keys
1712
+
1713
+ [storage]
1714
+ auto-paginate for #each closes #268
1715
+ [aws]
1716
+ Add #each_file method to directory model. thanks smerritt
1717
+ Add documentation for #each_file method. thanks smerritt
1718
+ Emit warning from Files#each. thanks smerritt
1719
+ Make Files#each iterate all files, not just the first page. thanks smerritt
1720
+ Fix docs to say files.each, not each_file. thanks smerritt
1721
+ Issue #283: S3 get_object request doesn't really support the Range header. thanks yalon
1722
+ fix format for multipart upload tests
1723
+ [google]
1724
+ fix format in bucket_tests
1725
+ [rackspace]
1726
+ mark get_object with block test pending when mocked
1727
+
1728
+ 0.7.2 04/05/2011
1729
+ ================
1730
+
1731
+ [aws|cloudformation]
1732
+ enabling region parameter for AWS cloud formation requests. thanks flessa
1733
+
1734
+ [compute]
1735
+ [aws]
1736
+ remove CGI escape from create_security_group. thanks coliver
1737
+ replace remaining specs with shindo tests
1738
+ update #keypairs reference to #key_pairs. thanks pvande
1739
+ Emulate volume unavailability when mocking. thanks mtodd
1740
+ Raise error on non-existent snapshot for create_volume. thanks mtodd
1741
+ Add tag to resource data when creating a mock tag. thanks betamatt
1742
+ Add tag filtering to mocks for snapshots, volumes, instances. thanks betamatt
1743
+ Add delete_tags mock. thanks betamatt
1744
+ Support tag-key, tag-value, tag:key filters. thanks betamatt
1745
+ Correct name of dns-filter filter. thanks betamatt
1746
+ allow key pair to write into properly chmodded files. thanks gerred
1747
+ Making key pair names a little less potentially brittle. thanks gerred
1748
+ [rackspace]
1749
+ fix public_ip_address accessors
1750
+
1751
+ [core]
1752
+ updated base parser to not eagerly strip return data. thanks bdorry
1753
+ don't escape ssh commands. thanks pvande
1754
+ Deal with missing FOG_RC/HOME env vars better. thanks outerim
1755
+ fix push parser block passed to excon > 0.6.0
1756
+
1757
+ [docs]
1758
+ move fog.io stuff into docs directory
1759
+ pull in and format data from README, wiki, blog posts
1760
+
1761
+ [storage|rackspace]
1762
+ head_object should use HEAD. thanks nate
1763
+ Support for serving Rackspace CDN objects via SSL. thanks minter
1764
+ Use URI.escape instead of CGI.escape. thanks minter
1765
+
1766
+ 0.7.1 03/21/2011
1767
+ ================
1768
+
1769
+ [aws|storage] normalize headers. thanks pweldon
1770
+
1771
+ [mock] fix reset_data to not be called in Mock#initialize
1772
+
1773
+ [rackspace] add support for using servicenet. thanks minter
1774
+
1775
+ [storage] provide for non file/string files. thanks pweldon
1776
+
1777
+ 0.7.0 03/14/2011
1778
+ ================
1779
+
1780
+ [aws] added ap-northeast-1 (tokyo) region options
1781
+
1782
+ [aws|cloudformation] add basic support. thanks crazed
1783
+
1784
+ [aws|elb] add support for configuring https
1785
+
1786
+ [aws|iam]
1787
+ add support for server certificates. thanks bensie
1788
+ add support for login profiles. thanks fcheung
1789
+
1790
+ [aws|rds]
1791
+ support basic rds operations. thanks fcheung
1792
+ add support for restoring servers and security groups. thanks ktheory
1793
+
1794
+ [cdn|rackspace] use post_container to update
1795
+
1796
+ [compute]
1797
+ [aws]
1798
+ fix tag.destroy. thanks eabbott
1799
+ allow deleting all tags (instead of just specific ones)
1800
+ fix revoke_security_group method signature
1801
+ FLAVORS is now a constant
1802
+ allow for modifying server monitoring. thanks gilles
1803
+ [brightbox] thanks tokengeek
1804
+ Added listener management (add/remove) requests for Load Balancers
1805
+ Added new Server console activation request
1806
+ Added activate_console method to Brightbox servers
1807
+ Set Server#private_ip_address to be the first interface
1808
+ [rackspace] 'official' workaround for awful caching
1809
+ [virtualbox] rough proof of concept/initial implementation
1810
+
1811
+ [core]
1812
+ fix behavior of slice on collections. thanks eabbott
1813
+ fix reset_data to be instance method on mock connection (and work)
1814
+ [credentials]
1815
+ handle undefined ENV['HOME']
1816
+ Allow string keys in credentials file [issue 179]. thanks ryanlower
1817
+
1818
+ [dns|dnsimple] fix misc bugs in models. thanks ijonas
1819
+
1820
+ [storage]
1821
+ use shared parse_data across providers
1822
+ [rackspace]
1823
+ pass through explicit content-type
1824
+ fix bug preventing file uploads to be streamed
1825
+
1826
+ 0.6.0 02/28/2011
1827
+ ================
1828
+
1829
+ [aws|compute] fix method signature for security group requests. Thanks crazed
1830
+
1831
+ [aws|iam]
1832
+ fleshing out support. Thanks bdorry and coliver
1833
+ fix get_group parser to set Arn on group/member as appropriate
1834
+
1835
+ [bluebox|dns] added support. Thanks ggoodale
1836
+
1837
+ [compute]
1838
+ add basic scp support. Thanks crazed
1839
+ consolidate ip accessors
1840
+
1841
+ [core]
1842
+ added changelog, covering 0.5+
1843
+ reset credentials when changing key or path. Thanks ctennis
1844
+
1845
+ [dnsimple|dns] added support. Thanks dje
1846
+
1847
+ [ecloud|compute] cleaned up and reworked as basis for future ecloud work
1848
+
1849
+ [aws|storage] add static website configuration methods
1850
+
1851
+ [local|storage] rewrite using nested directories (NOTE: not backwards compatible)
1852
+
1853
+ [rackspace|storage] disable cdn when deleting container
1854
+
1855
+ [voxel|compute] added support. Thanks splaspood
1856
+
1857
+ remove long standing deprecations
1858
+
1859
+
1860
+ 0.5.3 02/15/11
1861
+ ==============
1862
+
1863
+ [terremark|ecloud] (thanks freeformz)
1864
+ initial support for Disabled monitor types
1865
+ InternetService#disable_monitor and #enable_ping_monitor
1866
+ spec fixes and tests for the new monitor functions
1867
+ fix logic error which prevented turning off persistent connections
1868
+ fix _dump for collections/models
1869
+ require json for to_json of collection/model
1870
+ add some missing parens to fix warnings
1871
+
1872
+
1873
+ 0.5.2 02/11/11
1874
+ ==============
1875
+
1876
+ [aws|compute] fix delete AWS tags to use proper method. Thanks ody
1877
+ [aws|storage]
1878
+ add sort for multi part upload fields. Thanks gavin
1879
+ better RRS docs. Thanks bensie
1880
+ Temporary redirect should not execute the block. Thanks vivienschillis
1881
+ [tests] fix mock_helper load path to allow test runs in 1.9.2. Thanks aeden
1882
+ [compute] disable password auth for current user, rather than always root
1883
+ [aws&google|storage] properly handle custom headers in mocks
1884
+ [aws&google|storage] make signature public method
1885
+ [aws&google] finish fixing headers in mocks
1886
+ [core] cleanup providers/services setup
1887
+ [README] add contributing section, recommendations for blue shirts, move providers to fog.io, cleanup resources
1888
+ implicitly add not_implemented mocks
1889
+
1890
+
1891
+ 0.5.1 01/31/11
1892
+ ==============
1893
+
1894
+ Bug fixes.
1895
+ [aws|iam] add signing certificate and list groups for user. thanks crazed
1896
+ [gogrid|compute] added support for password api calls. thanks lum
1897
+ [fog|time] add date header formatting that is non-localized
1898
+
1899
+
1900
+ 0.5.0 01/27/11
1901
+ ==============
1902
+
1903
+ [aws|compute] describe reserved instances offerings
1904
+ [aws|dns] Fix variable typo create_hosted_zone. Thanks mitchellh
1905
+ [aws|ses] basic support. Thanks adelcambre
1906
+ [aws|storage] Escape the path for signatures. Thanks croaker
1907
+ [aws&google|storage] mock fixes
1908
+ [local|storage] support file#content_type
1909
+ [ssh] use an agent if available instead of requiring explicit keys. thanks davidx and tomstuart
1910
+ [gogrid|compute] fix several issues. Thanks cardmagic
1911
+ [rackspace|compute] get new auth token when one expires
1912
+ [rackspace|storage] remove nil query params in requests
1913
+ [terremark|ecloud] getting started on ecloud specific implementation
1914
+