fog-test-again 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3148) hide show
  1. data/.document +3 -0
  2. data/.gitignore +21 -0
  3. data/.irbrc +82 -0
  4. data/.travis.yml +21 -0
  5. data/Gemfile +3 -0
  6. data/README.md +154 -0
  7. data/Rakefile +441 -0
  8. data/benchs/fog_vs.rb +106 -0
  9. data/benchs/params.rb +43 -0
  10. data/benchs/parse_vs_push.rb +69 -0
  11. data/bin/fog +52 -0
  12. data/changelog.txt +3389 -0
  13. data/docs/_config.yml +39 -0
  14. data/docs/_layouts/default.html +111 -0
  15. data/docs/about/contributing.markdown +228 -0
  16. data/docs/about/getting_started.markdown +108 -0
  17. data/docs/about/press.markdown +52 -0
  18. data/docs/about/structure.markdown +78 -0
  19. data/docs/about/users.markdown +34 -0
  20. data/docs/cdn/index.markdown +82 -0
  21. data/docs/compute/index.markdown +122 -0
  22. data/docs/dns/index.markdown +79 -0
  23. data/docs/index.markdown +88 -0
  24. data/docs/public/crossdomain.xml +25 -0
  25. data/docs/public/css/fog.css +142 -0
  26. data/docs/public/css/handheld.css +8 -0
  27. data/docs/public/css/style.css +129 -0
  28. data/docs/public/images/.gitignore +3 -0
  29. data/docs/public/js/libs/dd_belatedpng.js +289 -0
  30. data/docs/public/js/libs/dd_belatedpng.min.js +13 -0
  31. data/docs/public/js/libs/jquery-1.4.2.js +6240 -0
  32. data/docs/public/js/libs/jquery-1.4.2.min.js +154 -0
  33. data/docs/public/js/libs/modernizr-1.6.js +892 -0
  34. data/docs/public/js/libs/modernizr-1.6.min.js +30 -0
  35. data/docs/public/js/mylibs/.gitignore +3 -0
  36. data/docs/public/js/plugins.js +34 -0
  37. data/docs/public/js/profiling/config.js +59 -0
  38. data/docs/public/js/profiling/yahoo-profiling.css +7 -0
  39. data/docs/public/js/profiling/yahoo-profiling.js +1028 -0
  40. data/docs/public/js/profiling/yahoo-profiling.min.js +39 -0
  41. data/docs/public/js/script.js +26 -0
  42. data/docs/public/robots.txt +5 -0
  43. data/docs/storage/index.markdown +204 -0
  44. data/fog.gemspec +71 -0
  45. data/lib/fog.rb +21 -0
  46. data/lib/fog/atmos.rb +11 -0
  47. data/lib/fog/atmos/models/storage/directories.rb +48 -0
  48. data/lib/fog/atmos/models/storage/directory.rb +53 -0
  49. data/lib/fog/atmos/models/storage/file.rb +107 -0
  50. data/lib/fog/atmos/models/storage/files.rb +73 -0
  51. data/lib/fog/atmos/requests/storage/delete_namespace.rb +19 -0
  52. data/lib/fog/atmos/requests/storage/get_namespace.rb +20 -0
  53. data/lib/fog/atmos/requests/storage/head_namespace.rb +20 -0
  54. data/lib/fog/atmos/requests/storage/post_namespace.rb +20 -0
  55. data/lib/fog/atmos/requests/storage/put_namespace.rb +20 -0
  56. data/lib/fog/atmos/storage.rb +186 -0
  57. data/lib/fog/aws.rb +305 -0
  58. data/lib/fog/aws/auto_scaling.rb +244 -0
  59. data/lib/fog/aws/beanstalk.rb +152 -0
  60. data/lib/fog/aws/cdn.rb +136 -0
  61. data/lib/fog/aws/cloud_formation.rb +127 -0
  62. data/lib/fog/aws/cloud_watch.rb +153 -0
  63. data/lib/fog/aws/compute.rb +405 -0
  64. data/lib/fog/aws/credential_fetcher.rb +64 -0
  65. data/lib/fog/aws/dns.rb +139 -0
  66. data/lib/fog/aws/dynamodb.rb +176 -0
  67. data/lib/fog/aws/elasticache.rb +192 -0
  68. data/lib/fog/aws/elb.rb +229 -0
  69. data/lib/fog/aws/elb/policy_types.rb +466 -0
  70. data/lib/fog/aws/emr.rb +134 -0
  71. data/lib/fog/aws/glacier.rb +172 -0
  72. data/lib/fog/aws/iam.rb +225 -0
  73. data/lib/fog/aws/models/auto_scaling/activities.rb +30 -0
  74. data/lib/fog/aws/models/auto_scaling/activity.rb +29 -0
  75. data/lib/fog/aws/models/auto_scaling/configuration.rb +65 -0
  76. data/lib/fog/aws/models/auto_scaling/configurations.rb +35 -0
  77. data/lib/fog/aws/models/auto_scaling/group.rb +141 -0
  78. data/lib/fog/aws/models/auto_scaling/groups.rb +35 -0
  79. data/lib/fog/aws/models/auto_scaling/instance.rb +60 -0
  80. data/lib/fog/aws/models/auto_scaling/instances.rb +30 -0
  81. data/lib/fog/aws/models/auto_scaling/policies.rb +33 -0
  82. data/lib/fog/aws/models/auto_scaling/policy.rb +46 -0
  83. data/lib/fog/aws/models/beanstalk/application.rb +62 -0
  84. data/lib/fog/aws/models/beanstalk/applications.rb +25 -0
  85. data/lib/fog/aws/models/beanstalk/environment.rb +145 -0
  86. data/lib/fog/aws/models/beanstalk/environments.rb +29 -0
  87. data/lib/fog/aws/models/beanstalk/event.rb +20 -0
  88. data/lib/fog/aws/models/beanstalk/events.rb +19 -0
  89. data/lib/fog/aws/models/beanstalk/template.rb +78 -0
  90. data/lib/fog/aws/models/beanstalk/templates.rb +70 -0
  91. data/lib/fog/aws/models/beanstalk/version.rb +79 -0
  92. data/lib/fog/aws/models/beanstalk/versions.rb +31 -0
  93. data/lib/fog/aws/models/cloud_watch/alarm.rb +60 -0
  94. data/lib/fog/aws/models/cloud_watch/alarm_data.rb +39 -0
  95. data/lib/fog/aws/models/cloud_watch/alarm_datum.rb +66 -0
  96. data/lib/fog/aws/models/cloud_watch/alarm_histories.rb +18 -0
  97. data/lib/fog/aws/models/cloud_watch/alarm_history.rb +16 -0
  98. data/lib/fog/aws/models/cloud_watch/alarms.rb +47 -0
  99. data/lib/fog/aws/models/cloud_watch/metric.rb +14 -0
  100. data/lib/fog/aws/models/cloud_watch/metric_statistic.rb +45 -0
  101. data/lib/fog/aws/models/cloud_watch/metric_statistics.rb +23 -0
  102. data/lib/fog/aws/models/cloud_watch/metrics.rb +32 -0
  103. data/lib/fog/aws/models/compute/address.rb +76 -0
  104. data/lib/fog/aws/models/compute/addresses.rb +100 -0
  105. data/lib/fog/aws/models/compute/dhcp_option.rb +68 -0
  106. data/lib/fog/aws/models/compute/dhcp_options.rb +91 -0
  107. data/lib/fog/aws/models/compute/flavor.rb +21 -0
  108. data/lib/fog/aws/models/compute/flavors.rb +187 -0
  109. data/lib/fog/aws/models/compute/image.rb +48 -0
  110. data/lib/fog/aws/models/compute/images.rb +62 -0
  111. data/lib/fog/aws/models/compute/internet_gateway.rb +81 -0
  112. data/lib/fog/aws/models/compute/internet_gateways.rb +91 -0
  113. data/lib/fog/aws/models/compute/key_pair.rb +59 -0
  114. data/lib/fog/aws/models/compute/key_pairs.rb +88 -0
  115. data/lib/fog/aws/models/compute/network_interface.rb +70 -0
  116. data/lib/fog/aws/models/compute/network_interfaces.rb +136 -0
  117. data/lib/fog/aws/models/compute/security_group.rb +285 -0
  118. data/lib/fog/aws/models/compute/security_groups.rb +120 -0
  119. data/lib/fog/aws/models/compute/server.rb +275 -0
  120. data/lib/fog/aws/models/compute/servers.rb +158 -0
  121. data/lib/fog/aws/models/compute/snapshot.rb +56 -0
  122. data/lib/fog/aws/models/compute/snapshots.rb +52 -0
  123. data/lib/fog/aws/models/compute/spot_request.rb +142 -0
  124. data/lib/fog/aws/models/compute/spot_requests.rb +91 -0
  125. data/lib/fog/aws/models/compute/subnet.rb +57 -0
  126. data/lib/fog/aws/models/compute/subnets.rb +99 -0
  127. data/lib/fog/aws/models/compute/tag.rb +34 -0
  128. data/lib/fog/aws/models/compute/tags.rb +34 -0
  129. data/lib/fog/aws/models/compute/volume.rb +131 -0
  130. data/lib/fog/aws/models/compute/volumes.rb +121 -0
  131. data/lib/fog/aws/models/compute/vpc.rb +63 -0
  132. data/lib/fog/aws/models/compute/vpcs.rb +93 -0
  133. data/lib/fog/aws/models/dns/record.rb +106 -0
  134. data/lib/fog/aws/models/dns/records.rb +126 -0
  135. data/lib/fog/aws/models/dns/zone.rb +53 -0
  136. data/lib/fog/aws/models/dns/zones.rb +33 -0
  137. data/lib/fog/aws/models/elasticache/cluster.rb +69 -0
  138. data/lib/fog/aws/models/elasticache/clusters.rb +31 -0
  139. data/lib/fog/aws/models/elasticache/parameter_group.rb +32 -0
  140. data/lib/fog/aws/models/elasticache/parameter_groups.rb +30 -0
  141. data/lib/fog/aws/models/elasticache/security_group.rb +52 -0
  142. data/lib/fog/aws/models/elasticache/security_groups.rb +30 -0
  143. data/lib/fog/aws/models/elb/listener.rb +59 -0
  144. data/lib/fog/aws/models/elb/listeners.rb +32 -0
  145. data/lib/fog/aws/models/elb/load_balancer.rb +173 -0
  146. data/lib/fog/aws/models/elb/load_balancers.rb +38 -0
  147. data/lib/fog/aws/models/elb/policies.rb +40 -0
  148. data/lib/fog/aws/models/elb/policy.rb +52 -0
  149. data/lib/fog/aws/models/glacier/archive.rb +70 -0
  150. data/lib/fog/aws/models/glacier/archives.rb +30 -0
  151. data/lib/fog/aws/models/glacier/job.rb +65 -0
  152. data/lib/fog/aws/models/glacier/jobs.rb +45 -0
  153. data/lib/fog/aws/models/glacier/vault.rb +53 -0
  154. data/lib/fog/aws/models/glacier/vaults.rb +28 -0
  155. data/lib/fog/aws/models/iam/access_key.rb +38 -0
  156. data/lib/fog/aws/models/iam/access_keys.rb +36 -0
  157. data/lib/fog/aws/models/iam/policies.rb +44 -0
  158. data/lib/fog/aws/models/iam/policy.rb +39 -0
  159. data/lib/fog/aws/models/iam/user.rb +40 -0
  160. data/lib/fog/aws/models/iam/users.rb +49 -0
  161. data/lib/fog/aws/models/rds/parameter.rb +21 -0
  162. data/lib/fog/aws/models/rds/parameter_group.rb +36 -0
  163. data/lib/fog/aws/models/rds/parameter_groups.rb +27 -0
  164. data/lib/fog/aws/models/rds/parameters.rb +37 -0
  165. data/lib/fog/aws/models/rds/security_group.rb +82 -0
  166. data/lib/fog/aws/models/rds/security_groups.rb +43 -0
  167. data/lib/fog/aws/models/rds/server.rb +113 -0
  168. data/lib/fog/aws/models/rds/servers.rb +27 -0
  169. data/lib/fog/aws/models/rds/snapshot.rb +50 -0
  170. data/lib/fog/aws/models/rds/snapshots.rb +48 -0
  171. data/lib/fog/aws/models/storage/directories.rb +43 -0
  172. data/lib/fog/aws/models/storage/directory.rb +126 -0
  173. data/lib/fog/aws/models/storage/file.rb +194 -0
  174. data/lib/fog/aws/models/storage/files.rb +122 -0
  175. data/lib/fog/aws/models/storage/version.rb +36 -0
  176. data/lib/fog/aws/models/storage/versions.rb +38 -0
  177. data/lib/fog/aws/parsers/auto_scaling/basic.rb +28 -0
  178. data/lib/fog/aws/parsers/auto_scaling/describe_adjustment_types.rb +39 -0
  179. data/lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb +133 -0
  180. data/lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_instances.rb +43 -0
  181. data/lib/fog/aws/parsers/auto_scaling/describe_launch_configurations.rb +94 -0
  182. data/lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb +66 -0
  183. data/lib/fog/aws/parsers/auto_scaling/describe_policies.rb +68 -0
  184. data/lib/fog/aws/parsers/auto_scaling/describe_scaling_activities.rb +47 -0
  185. data/lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb +39 -0
  186. data/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb +46 -0
  187. data/lib/fog/aws/parsers/auto_scaling/put_notification_configuration.rb +27 -0
  188. data/lib/fog/aws/parsers/auto_scaling/put_scaling_policy.rb +30 -0
  189. data/lib/fog/aws/parsers/auto_scaling/terminate_instance_in_auto_scaling_group.rb +35 -0
  190. data/lib/fog/aws/parsers/beanstalk/check_dns_availability.rb +19 -0
  191. data/lib/fog/aws/parsers/beanstalk/create_application.rb +24 -0
  192. data/lib/fog/aws/parsers/beanstalk/create_application_version.rb +26 -0
  193. data/lib/fog/aws/parsers/beanstalk/create_configuration_template.rb +29 -0
  194. data/lib/fog/aws/parsers/beanstalk/create_environment.rb +37 -0
  195. data/lib/fog/aws/parsers/beanstalk/create_storage_location.rb +18 -0
  196. data/lib/fog/aws/parsers/beanstalk/describe_application_versions.rb +26 -0
  197. data/lib/fog/aws/parsers/beanstalk/describe_applications.rb +24 -0
  198. data/lib/fog/aws/parsers/beanstalk/describe_configuration_options.rb +32 -0
  199. data/lib/fog/aws/parsers/beanstalk/describe_configuration_settings.rb +30 -0
  200. data/lib/fog/aws/parsers/beanstalk/describe_environment_resources.rb +26 -0
  201. data/lib/fog/aws/parsers/beanstalk/describe_environments.rb +38 -0
  202. data/lib/fog/aws/parsers/beanstalk/describe_events.rb +27 -0
  203. data/lib/fog/aws/parsers/beanstalk/empty.rb +27 -0
  204. data/lib/fog/aws/parsers/beanstalk/list_available_solution_stacks.rb +21 -0
  205. data/lib/fog/aws/parsers/beanstalk/parser.rb +93 -0
  206. data/lib/fog/aws/parsers/beanstalk/retrieve_environment_info.rb +22 -0
  207. data/lib/fog/aws/parsers/beanstalk/terminate_environment.rb +37 -0
  208. data/lib/fog/aws/parsers/beanstalk/update_application.rb +24 -0
  209. data/lib/fog/aws/parsers/beanstalk/update_application_version.rb +26 -0
  210. data/lib/fog/aws/parsers/beanstalk/update_configuration_template.rb +29 -0
  211. data/lib/fog/aws/parsers/beanstalk/update_environment.rb +37 -0
  212. data/lib/fog/aws/parsers/beanstalk/validate_configuration_settings.rb +22 -0
  213. data/lib/fog/aws/parsers/cdn/distribution.rb +59 -0
  214. data/lib/fog/aws/parsers/cdn/get_distribution_list.rb +61 -0
  215. data/lib/fog/aws/parsers/cdn/get_invalidation_list.rb +42 -0
  216. data/lib/fog/aws/parsers/cdn/get_streaming_distribution_list.rb +59 -0
  217. data/lib/fog/aws/parsers/cdn/post_invalidation.rb +28 -0
  218. data/lib/fog/aws/parsers/cdn/streaming_distribution.rb +59 -0
  219. data/lib/fog/aws/parsers/cloud_formation/basic.rb +12 -0
  220. data/lib/fog/aws/parsers/cloud_formation/create_stack.rb +19 -0
  221. data/lib/fog/aws/parsers/cloud_formation/describe_stack_events.rb +31 -0
  222. data/lib/fog/aws/parsers/cloud_formation/describe_stack_resources.rb +31 -0
  223. data/lib/fog/aws/parsers/cloud_formation/describe_stacks.rb +81 -0
  224. data/lib/fog/aws/parsers/cloud_formation/get_template.rb +19 -0
  225. data/lib/fog/aws/parsers/cloud_formation/update_stack.rb +19 -0
  226. data/lib/fog/aws/parsers/cloud_formation/validate_template.rb +52 -0
  227. data/lib/fog/aws/parsers/cloud_watch/delete_alarms.rb +26 -0
  228. data/lib/fog/aws/parsers/cloud_watch/describe_alarm_history.rb +40 -0
  229. data/lib/fog/aws/parsers/cloud_watch/describe_alarms.rb +73 -0
  230. data/lib/fog/aws/parsers/cloud_watch/describe_alarms_for_metric.rb +71 -0
  231. data/lib/fog/aws/parsers/cloud_watch/disable_alarm_actions.rb +26 -0
  232. data/lib/fog/aws/parsers/cloud_watch/enable_alarm_actions.rb +26 -0
  233. data/lib/fog/aws/parsers/cloud_watch/get_metric_statistics.rb +43 -0
  234. data/lib/fog/aws/parsers/cloud_watch/list_metrics.rb +58 -0
  235. data/lib/fog/aws/parsers/cloud_watch/put_metric_alarm.rb +26 -0
  236. data/lib/fog/aws/parsers/cloud_watch/put_metric_data.rb +26 -0
  237. data/lib/fog/aws/parsers/cloud_watch/set_alarm_state.rb +26 -0
  238. data/lib/fog/aws/parsers/compute/allocate_address.rb +19 -0
  239. data/lib/fog/aws/parsers/compute/associate_address.rb +25 -0
  240. data/lib/fog/aws/parsers/compute/associate_dhcp_options.rb +24 -0
  241. data/lib/fog/aws/parsers/compute/attach_internet_gateway.rb +24 -0
  242. data/lib/fog/aws/parsers/compute/attach_network_interface.rb +18 -0
  243. data/lib/fog/aws/parsers/compute/attach_volume.rb +22 -0
  244. data/lib/fog/aws/parsers/compute/basic.rb +25 -0
  245. data/lib/fog/aws/parsers/compute/cancel_spot_instance_requests.rb +30 -0
  246. data/lib/fog/aws/parsers/compute/create_dhcp_options.rb +75 -0
  247. data/lib/fog/aws/parsers/compute/create_image.rb +20 -0
  248. data/lib/fog/aws/parsers/compute/create_internet_gateway.rb +65 -0
  249. data/lib/fog/aws/parsers/compute/create_key_pair.rb +20 -0
  250. data/lib/fog/aws/parsers/compute/create_network_interface.rb +28 -0
  251. data/lib/fog/aws/parsers/compute/create_security_group.rb +24 -0
  252. data/lib/fog/aws/parsers/compute/create_snapshot.rb +26 -0
  253. data/lib/fog/aws/parsers/compute/create_subnet.rb +51 -0
  254. data/lib/fog/aws/parsers/compute/create_volume.rb +24 -0
  255. data/lib/fog/aws/parsers/compute/create_vpc.rb +51 -0
  256. data/lib/fog/aws/parsers/compute/delete_dhcp_options.rb +24 -0
  257. data/lib/fog/aws/parsers/compute/delete_internet_gateway.rb +24 -0
  258. data/lib/fog/aws/parsers/compute/delete_network_interface.rb +24 -0
  259. data/lib/fog/aws/parsers/compute/delete_subnet.rb +24 -0
  260. data/lib/fog/aws/parsers/compute/delete_vpc.rb +24 -0
  261. data/lib/fog/aws/parsers/compute/deregister_image.rb +20 -0
  262. data/lib/fog/aws/parsers/compute/describe_addresses.rb +30 -0
  263. data/lib/fog/aws/parsers/compute/describe_availability_zones.rb +32 -0
  264. data/lib/fog/aws/parsers/compute/describe_dhcp_options.rb +75 -0
  265. data/lib/fog/aws/parsers/compute/describe_images.rb +91 -0
  266. data/lib/fog/aws/parsers/compute/describe_instance_status.rb +74 -0
  267. data/lib/fog/aws/parsers/compute/describe_instances.rb +110 -0
  268. data/lib/fog/aws/parsers/compute/describe_internet_gateways.rb +65 -0
  269. data/lib/fog/aws/parsers/compute/describe_key_pairs.rb +30 -0
  270. data/lib/fog/aws/parsers/compute/describe_network_interface_attribute.rb +79 -0
  271. data/lib/fog/aws/parsers/compute/describe_network_interfaces.rb +43 -0
  272. data/lib/fog/aws/parsers/compute/describe_placement_groups.rb +30 -0
  273. data/lib/fog/aws/parsers/compute/describe_regions.rb +30 -0
  274. data/lib/fog/aws/parsers/compute/describe_reserved_instances.rb +36 -0
  275. data/lib/fog/aws/parsers/compute/describe_reserved_instances_offerings.rb +34 -0
  276. data/lib/fog/aws/parsers/compute/describe_security_groups.rb +100 -0
  277. data/lib/fog/aws/parsers/compute/describe_snapshots.rb +54 -0
  278. data/lib/fog/aws/parsers/compute/describe_spot_price_history.rb +34 -0
  279. data/lib/fog/aws/parsers/compute/describe_subnets.rb +49 -0
  280. data/lib/fog/aws/parsers/compute/describe_tags.rb +30 -0
  281. data/lib/fog/aws/parsers/compute/describe_volume_status.rb +87 -0
  282. data/lib/fog/aws/parsers/compute/describe_volumes.rb +71 -0
  283. data/lib/fog/aws/parsers/compute/describe_vpcs.rb +49 -0
  284. data/lib/fog/aws/parsers/compute/detach_internet_gateway.rb +24 -0
  285. data/lib/fog/aws/parsers/compute/detach_network_interface.rb +24 -0
  286. data/lib/fog/aws/parsers/compute/detach_volume.rb +22 -0
  287. data/lib/fog/aws/parsers/compute/get_console_output.rb +28 -0
  288. data/lib/fog/aws/parsers/compute/get_password_data.rb +26 -0
  289. data/lib/fog/aws/parsers/compute/import_key_pair.rb +20 -0
  290. data/lib/fog/aws/parsers/compute/monitor_unmonitor_instances.rb +35 -0
  291. data/lib/fog/aws/parsers/compute/network_interface_parser.rb +89 -0
  292. data/lib/fog/aws/parsers/compute/purchase_reserved_instances_offering.rb +24 -0
  293. data/lib/fog/aws/parsers/compute/register_image.rb +20 -0
  294. data/lib/fog/aws/parsers/compute/run_instances.rb +84 -0
  295. data/lib/fog/aws/parsers/compute/spot_datafeed_subscription.rb +29 -0
  296. data/lib/fog/aws/parsers/compute/spot_instance_requests.rb +67 -0
  297. data/lib/fog/aws/parsers/compute/start_stop_instances.rb +41 -0
  298. data/lib/fog/aws/parsers/compute/terminate_instances.rb +55 -0
  299. data/lib/fog/aws/parsers/dns/change_resource_record_sets.rb +26 -0
  300. data/lib/fog/aws/parsers/dns/create_hosted_zone.rb +55 -0
  301. data/lib/fog/aws/parsers/dns/delete_hosted_zone.rb +25 -0
  302. data/lib/fog/aws/parsers/dns/get_change.rb +26 -0
  303. data/lib/fog/aws/parsers/dns/get_hosted_zone.rb +43 -0
  304. data/lib/fog/aws/parsers/dns/list_hosted_zones.rb +37 -0
  305. data/lib/fog/aws/parsers/dns/list_resource_record_sets.rb +56 -0
  306. data/lib/fog/aws/parsers/elasticache/authorize_cache_security_group_ingress.rb +26 -0
  307. data/lib/fog/aws/parsers/elasticache/base.rb +34 -0
  308. data/lib/fog/aws/parsers/elasticache/cache_cluster_parser.rb +79 -0
  309. data/lib/fog/aws/parsers/elasticache/describe_cache_clusters.rb +27 -0
  310. data/lib/fog/aws/parsers/elasticache/describe_cache_parameters.rb +22 -0
  311. data/lib/fog/aws/parsers/elasticache/describe_engine_default_parameters.rb +22 -0
  312. data/lib/fog/aws/parsers/elasticache/describe_parameter_groups.rb +27 -0
  313. data/lib/fog/aws/parsers/elasticache/describe_security_groups.rb +27 -0
  314. data/lib/fog/aws/parsers/elasticache/engine_defaults_parser.rb +59 -0
  315. data/lib/fog/aws/parsers/elasticache/event_list.rb +38 -0
  316. data/lib/fog/aws/parsers/elasticache/modify_parameter_group.rb +27 -0
  317. data/lib/fog/aws/parsers/elasticache/parameter_group_parser.rb +30 -0
  318. data/lib/fog/aws/parsers/elasticache/reset_parameter_group.rb +27 -0
  319. data/lib/fog/aws/parsers/elasticache/security_group_parser.rb +40 -0
  320. data/lib/fog/aws/parsers/elasticache/single_cache_cluster.rb +22 -0
  321. data/lib/fog/aws/parsers/elasticache/single_parameter_group.rb +22 -0
  322. data/lib/fog/aws/parsers/elasticache/single_security_group.rb +34 -0
  323. data/lib/fog/aws/parsers/elb/apply_security_groups_to_load_balancer.rb +26 -0
  324. data/lib/fog/aws/parsers/elb/attach_load_balancer_to_subnets.rb +26 -0
  325. data/lib/fog/aws/parsers/elb/configure_health_check.rb +37 -0
  326. data/lib/fog/aws/parsers/elb/create_load_balancer.rb +26 -0
  327. data/lib/fog/aws/parsers/elb/delete_load_balancer.rb +24 -0
  328. data/lib/fog/aws/parsers/elb/deregister_instances_from_load_balancer.rb +26 -0
  329. data/lib/fog/aws/parsers/elb/describe_instance_health.rb +30 -0
  330. data/lib/fog/aws/parsers/elb/describe_load_balancer_policies.rb +64 -0
  331. data/lib/fog/aws/parsers/elb/describe_load_balancer_policy_types.rb +70 -0
  332. data/lib/fog/aws/parsers/elb/describe_load_balancers.rb +140 -0
  333. data/lib/fog/aws/parsers/elb/detach_load_balancer_from_subnets.rb +26 -0
  334. data/lib/fog/aws/parsers/elb/disable_availability_zones_for_load_balancer.rb +26 -0
  335. data/lib/fog/aws/parsers/elb/empty.rb +28 -0
  336. data/lib/fog/aws/parsers/elb/enable_availability_zones_for_load_balancer.rb +26 -0
  337. data/lib/fog/aws/parsers/elb/register_instances_with_load_balancer.rb +26 -0
  338. data/lib/fog/aws/parsers/emr/add_instance_groups.rb +28 -0
  339. data/lib/fog/aws/parsers/emr/add_job_flow_steps.rb +17 -0
  340. data/lib/fog/aws/parsers/emr/describe_job_flows.rb +140 -0
  341. data/lib/fog/aws/parsers/emr/modify_instance_groups.rb +17 -0
  342. data/lib/fog/aws/parsers/emr/run_job_flow.rb +19 -0
  343. data/lib/fog/aws/parsers/emr/set_termination_protection.rb +17 -0
  344. data/lib/fog/aws/parsers/emr/terminate_job_flows.rb +17 -0
  345. data/lib/fog/aws/parsers/iam/base_instance_profile.rb +79 -0
  346. data/lib/fog/aws/parsers/iam/basic.rb +19 -0
  347. data/lib/fog/aws/parsers/iam/create_access_key.rb +26 -0
  348. data/lib/fog/aws/parsers/iam/create_group.rb +26 -0
  349. data/lib/fog/aws/parsers/iam/create_user.rb +26 -0
  350. data/lib/fog/aws/parsers/iam/get_group.rb +55 -0
  351. data/lib/fog/aws/parsers/iam/get_group_policy.rb +27 -0
  352. data/lib/fog/aws/parsers/iam/get_role_policy.rb +32 -0
  353. data/lib/fog/aws/parsers/iam/get_user.rb +27 -0
  354. data/lib/fog/aws/parsers/iam/get_user_policy.rb +33 -0
  355. data/lib/fog/aws/parsers/iam/instance_profile.rb +34 -0
  356. data/lib/fog/aws/parsers/iam/list_access_keys.rb +32 -0
  357. data/lib/fog/aws/parsers/iam/list_account_aliases.rb +28 -0
  358. data/lib/fog/aws/parsers/iam/list_groups.rb +32 -0
  359. data/lib/fog/aws/parsers/iam/list_groups_for_user.rb +32 -0
  360. data/lib/fog/aws/parsers/iam/list_instance_profiles.rb +34 -0
  361. data/lib/fog/aws/parsers/iam/list_policies.rb +28 -0
  362. data/lib/fog/aws/parsers/iam/list_roles.rb +31 -0
  363. data/lib/fog/aws/parsers/iam/list_server_certificates.rb +38 -0
  364. data/lib/fog/aws/parsers/iam/list_signing_certificates.rb +32 -0
  365. data/lib/fog/aws/parsers/iam/list_users.rb +32 -0
  366. data/lib/fog/aws/parsers/iam/login_profile.rb +27 -0
  367. data/lib/fog/aws/parsers/iam/role_parser.rb +53 -0
  368. data/lib/fog/aws/parsers/iam/single_role.rb +29 -0
  369. data/lib/fog/aws/parsers/iam/update_group.rb +26 -0
  370. data/lib/fog/aws/parsers/iam/update_user.rb +27 -0
  371. data/lib/fog/aws/parsers/iam/upload_server_certificate.rb +28 -0
  372. data/lib/fog/aws/parsers/iam/upload_signing_certificate.rb +26 -0
  373. data/lib/fog/aws/parsers/rds/authorize_db_security_group_ingress.rb +38 -0
  374. data/lib/fog/aws/parsers/rds/create_db_instance.rb +34 -0
  375. data/lib/fog/aws/parsers/rds/create_db_instance_read_replica.rb +34 -0
  376. data/lib/fog/aws/parsers/rds/create_db_parameter_group.rb +35 -0
  377. data/lib/fog/aws/parsers/rds/create_db_security_group.rb +38 -0
  378. data/lib/fog/aws/parsers/rds/create_db_snapshot.rb +35 -0
  379. data/lib/fog/aws/parsers/rds/db_engine_version_parser.rb +35 -0
  380. data/lib/fog/aws/parsers/rds/db_parser.rb +125 -0
  381. data/lib/fog/aws/parsers/rds/delete_db_instance.rb +35 -0
  382. data/lib/fog/aws/parsers/rds/delete_db_parameter_group.rb +27 -0
  383. data/lib/fog/aws/parsers/rds/delete_db_security_group.rb +33 -0
  384. data/lib/fog/aws/parsers/rds/delete_db_snapshot.rb +34 -0
  385. data/lib/fog/aws/parsers/rds/describe_db_engine_versions.rb +39 -0
  386. data/lib/fog/aws/parsers/rds/describe_db_instances.rb +36 -0
  387. data/lib/fog/aws/parsers/rds/describe_db_parameter_groups.rb +38 -0
  388. data/lib/fog/aws/parsers/rds/describe_db_parameters.rb +44 -0
  389. data/lib/fog/aws/parsers/rds/describe_db_reserved_instances.rb +43 -0
  390. data/lib/fog/aws/parsers/rds/describe_db_security_groups.rb +39 -0
  391. data/lib/fog/aws/parsers/rds/describe_db_snapshots.rb +39 -0
  392. data/lib/fog/aws/parsers/rds/modify_db_instance.rb +34 -0
  393. data/lib/fog/aws/parsers/rds/modify_db_parameter_group.rb +28 -0
  394. data/lib/fog/aws/parsers/rds/reboot_db_instance.rb +35 -0
  395. data/lib/fog/aws/parsers/rds/restore_db_instance_from_db_snapshot.rb +34 -0
  396. data/lib/fog/aws/parsers/rds/restore_db_instance_to_point_in_time.rb +35 -0
  397. data/lib/fog/aws/parsers/rds/revoke_db_security_group_ingress.rb +39 -0
  398. data/lib/fog/aws/parsers/rds/security_group_parser.rb +39 -0
  399. data/lib/fog/aws/parsers/rds/snapshot_parser.rb +41 -0
  400. data/lib/fog/aws/parsers/ses/delete_verified_email_address.rb +24 -0
  401. data/lib/fog/aws/parsers/ses/get_send_quota.rb +26 -0
  402. data/lib/fog/aws/parsers/ses/get_send_statistics.rb +29 -0
  403. data/lib/fog/aws/parsers/ses/list_verified_email_addresses.rb +25 -0
  404. data/lib/fog/aws/parsers/ses/send_email.rb +26 -0
  405. data/lib/fog/aws/parsers/ses/send_raw_email.rb +26 -0
  406. data/lib/fog/aws/parsers/ses/verify_email_address.rb +24 -0
  407. data/lib/fog/aws/parsers/simpledb/basic.rb +31 -0
  408. data/lib/fog/aws/parsers/simpledb/domain_metadata.rb +32 -0
  409. data/lib/fog/aws/parsers/simpledb/get_attributes.rb +36 -0
  410. data/lib/fog/aws/parsers/simpledb/list_domains.rb +30 -0
  411. data/lib/fog/aws/parsers/simpledb/select.rb +41 -0
  412. data/lib/fog/aws/parsers/sns/add_permission.rb +24 -0
  413. data/lib/fog/aws/parsers/sns/confirm_subscription.rb +24 -0
  414. data/lib/fog/aws/parsers/sns/create_topic.rb +24 -0
  415. data/lib/fog/aws/parsers/sns/delete_topic.rb +24 -0
  416. data/lib/fog/aws/parsers/sns/get_topic_attributes.rb +32 -0
  417. data/lib/fog/aws/parsers/sns/list_subscriptions.rb +29 -0
  418. data/lib/fog/aws/parsers/sns/list_topics.rb +26 -0
  419. data/lib/fog/aws/parsers/sns/publish.rb +24 -0
  420. data/lib/fog/aws/parsers/sns/remove_permission.rb +24 -0
  421. data/lib/fog/aws/parsers/sns/set_topic_attributes.rb +24 -0
  422. data/lib/fog/aws/parsers/sns/subscribe.rb +24 -0
  423. data/lib/fog/aws/parsers/sns/unsubscribe.rb +24 -0
  424. data/lib/fog/aws/parsers/sqs/basic.rb +23 -0
  425. data/lib/fog/aws/parsers/sqs/create_queue.rb +26 -0
  426. data/lib/fog/aws/parsers/sqs/get_queue_attributes.rb +35 -0
  427. data/lib/fog/aws/parsers/sqs/list_queues.rb +25 -0
  428. data/lib/fog/aws/parsers/sqs/receive_message.rb +41 -0
  429. data/lib/fog/aws/parsers/sqs/send_message.rb +28 -0
  430. data/lib/fog/aws/parsers/storage/access_control_list.rb +46 -0
  431. data/lib/fog/aws/parsers/storage/complete_multipart_upload.rb +24 -0
  432. data/lib/fog/aws/parsers/storage/copy_object.rb +22 -0
  433. data/lib/fog/aws/parsers/storage/get_bucket.rb +62 -0
  434. data/lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb +32 -0
  435. data/lib/fog/aws/parsers/storage/get_bucket_location.rb +20 -0
  436. data/lib/fog/aws/parsers/storage/get_bucket_logging.rb +40 -0
  437. data/lib/fog/aws/parsers/storage/get_bucket_object_versions.rb +88 -0
  438. data/lib/fog/aws/parsers/storage/get_bucket_versioning.rb +24 -0
  439. data/lib/fog/aws/parsers/storage/get_bucket_website.rb +26 -0
  440. data/lib/fog/aws/parsers/storage/get_request_payment.rb +20 -0
  441. data/lib/fog/aws/parsers/storage/get_service.rb +32 -0
  442. data/lib/fog/aws/parsers/storage/initiate_multipart_upload.rb +24 -0
  443. data/lib/fog/aws/parsers/storage/list_multipart_uploads.rb +56 -0
  444. data/lib/fog/aws/parsers/storage/list_parts.rb +40 -0
  445. data/lib/fog/aws/parsers/sts/get_session_token.rb +31 -0
  446. data/lib/fog/aws/rds.rb +214 -0
  447. data/lib/fog/aws/requests/auto_scaling/create_auto_scaling_group.rb +117 -0
  448. data/lib/fog/aws/requests/auto_scaling/create_launch_configuration.rb +105 -0
  449. data/lib/fog/aws/requests/auto_scaling/delete_auto_scaling_group.rb +53 -0
  450. data/lib/fog/aws/requests/auto_scaling/delete_launch_configuration.rb +57 -0
  451. data/lib/fog/aws/requests/auto_scaling/delete_notification_configuration.rb +47 -0
  452. data/lib/fog/aws/requests/auto_scaling/delete_policy.rb +56 -0
  453. data/lib/fog/aws/requests/auto_scaling/delete_scheduled_action.rb +48 -0
  454. data/lib/fog/aws/requests/auto_scaling/describe_adjustment_types.rb +52 -0
  455. data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_groups.rb +128 -0
  456. data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_instances.rb +95 -0
  457. data/lib/fog/aws/requests/auto_scaling/describe_launch_configurations.rb +117 -0
  458. data/lib/fog/aws/requests/auto_scaling/describe_metric_collection_types.rb +60 -0
  459. data/lib/fog/aws/requests/auto_scaling/describe_policies.rb +97 -0
  460. data/lib/fog/aws/requests/auto_scaling/describe_scaling_activities.rb +88 -0
  461. data/lib/fog/aws/requests/auto_scaling/describe_scaling_process_types.rb +54 -0
  462. data/lib/fog/aws/requests/auto_scaling/describe_scheduled_actions.rb +88 -0
  463. data/lib/fog/aws/requests/auto_scaling/disable_metrics_collection.rb +56 -0
  464. data/lib/fog/aws/requests/auto_scaling/enable_metrics_collection.rb +66 -0
  465. data/lib/fog/aws/requests/auto_scaling/execute_policy.rb +50 -0
  466. data/lib/fog/aws/requests/auto_scaling/put_notification_configuration.rb +51 -0
  467. data/lib/fog/aws/requests/auto_scaling/put_scaling_policy.rb +85 -0
  468. data/lib/fog/aws/requests/auto_scaling/put_scheduled_update_group_action.rb +67 -0
  469. data/lib/fog/aws/requests/auto_scaling/resume_processes.rb +50 -0
  470. data/lib/fog/aws/requests/auto_scaling/set_desired_capacity.rb +87 -0
  471. data/lib/fog/aws/requests/auto_scaling/set_instance_health.rb +55 -0
  472. data/lib/fog/aws/requests/auto_scaling/suspend_processes.rb +57 -0
  473. data/lib/fog/aws/requests/auto_scaling/terminate_instance_in_auto_scaling_group.rb +65 -0
  474. data/lib/fog/aws/requests/auto_scaling/update_auto_scaling_group.rb +79 -0
  475. data/lib/fog/aws/requests/beanstalk/check_dns_availability.rb +27 -0
  476. data/lib/fog/aws/requests/beanstalk/create_application.rb +29 -0
  477. data/lib/fog/aws/requests/beanstalk/create_application_version.rb +41 -0
  478. data/lib/fog/aws/requests/beanstalk/create_configuration_template.rb +47 -0
  479. data/lib/fog/aws/requests/beanstalk/create_environment.rb +50 -0
  480. data/lib/fog/aws/requests/beanstalk/create_storage_location.rb +27 -0
  481. data/lib/fog/aws/requests/beanstalk/delete_application.rb +29 -0
  482. data/lib/fog/aws/requests/beanstalk/delete_application_version.rb +36 -0
  483. data/lib/fog/aws/requests/beanstalk/delete_configuration_template.rb +34 -0
  484. data/lib/fog/aws/requests/beanstalk/delete_environment_configuration.rb +34 -0
  485. data/lib/fog/aws/requests/beanstalk/describe_application_versions.rb +34 -0
  486. data/lib/fog/aws/requests/beanstalk/describe_applications.rb +30 -0
  487. data/lib/fog/aws/requests/beanstalk/describe_configuration_options.rb +40 -0
  488. data/lib/fog/aws/requests/beanstalk/describe_configuration_settings.rb +31 -0
  489. data/lib/fog/aws/requests/beanstalk/describe_environment_resources.rb +29 -0
  490. data/lib/fog/aws/requests/beanstalk/describe_environments.rb +40 -0
  491. data/lib/fog/aws/requests/beanstalk/describe_events.rb +29 -0
  492. data/lib/fog/aws/requests/beanstalk/list_available_solution_stacks.rb +27 -0
  493. data/lib/fog/aws/requests/beanstalk/rebuild_environment.rb +30 -0
  494. data/lib/fog/aws/requests/beanstalk/request_environment_info.rb +29 -0
  495. data/lib/fog/aws/requests/beanstalk/restart_app_server.rb +29 -0
  496. data/lib/fog/aws/requests/beanstalk/retrieve_environment_info.rb +29 -0
  497. data/lib/fog/aws/requests/beanstalk/swap_environment_cnames.rb +29 -0
  498. data/lib/fog/aws/requests/beanstalk/terminate_environment.rb +31 -0
  499. data/lib/fog/aws/requests/beanstalk/update_application.rb +30 -0
  500. data/lib/fog/aws/requests/beanstalk/update_application_version.rb +30 -0
  501. data/lib/fog/aws/requests/beanstalk/update_configuration_template.rb +36 -0
  502. data/lib/fog/aws/requests/beanstalk/update_environment.rb +42 -0
  503. data/lib/fog/aws/requests/beanstalk/validate_configuration_settings.rb +33 -0
  504. data/lib/fog/aws/requests/cdn/delete_distribution.rb +28 -0
  505. data/lib/fog/aws/requests/cdn/delete_streaming_distribution.rb +28 -0
  506. data/lib/fog/aws/requests/cdn/get_distribution.rb +57 -0
  507. data/lib/fog/aws/requests/cdn/get_distribution_list.rb +59 -0
  508. data/lib/fog/aws/requests/cdn/get_invalidation_list.rb +42 -0
  509. data/lib/fog/aws/requests/cdn/get_streaming_distribution.rb +50 -0
  510. data/lib/fog/aws/requests/cdn/get_streaming_distribution_list.rb +59 -0
  511. data/lib/fog/aws/requests/cdn/post_distribution.rb +91 -0
  512. data/lib/fog/aws/requests/cdn/post_invalidation.rb +51 -0
  513. data/lib/fog/aws/requests/cdn/post_streaming_distribution.rb +78 -0
  514. data/lib/fog/aws/requests/cdn/put_distribution_config.rb +94 -0
  515. data/lib/fog/aws/requests/cdn/put_streaming_distribution_config.rb +83 -0
  516. data/lib/fog/aws/requests/cloud_formation/create_stack.rb +77 -0
  517. data/lib/fog/aws/requests/cloud_formation/delete_stack.rb +30 -0
  518. data/lib/fog/aws/requests/cloud_formation/describe_stack_events.rb +44 -0
  519. data/lib/fog/aws/requests/cloud_formation/describe_stack_resources.rb +43 -0
  520. data/lib/fog/aws/requests/cloud_formation/describe_stacks.rb +42 -0
  521. data/lib/fog/aws/requests/cloud_formation/get_template.rb +32 -0
  522. data/lib/fog/aws/requests/cloud_formation/update_stack.rb +62 -0
  523. data/lib/fog/aws/requests/cloud_formation/validate_template.rb +34 -0
  524. data/lib/fog/aws/requests/cloud_watch/delete_alarms.rb +48 -0
  525. data/lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb +33 -0
  526. data/lib/fog/aws/requests/cloud_watch/describe_alarms.rb +56 -0
  527. data/lib/fog/aws/requests/cloud_watch/describe_alarms_for_metric.rb +39 -0
  528. data/lib/fog/aws/requests/cloud_watch/disable_alarm_actions.rb +30 -0
  529. data/lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb +30 -0
  530. data/lib/fog/aws/requests/cloud_watch/get_metric_statistics.rb +48 -0
  531. data/lib/fog/aws/requests/cloud_watch/list_metrics.rb +38 -0
  532. data/lib/fog/aws/requests/cloud_watch/put_metric_alarm.rb +93 -0
  533. data/lib/fog/aws/requests/cloud_watch/put_metric_data.rb +73 -0
  534. data/lib/fog/aws/requests/cloud_watch/set_alarm_state.rb +31 -0
  535. data/lib/fog/aws/requests/compute/allocate_address.rb +59 -0
  536. data/lib/fog/aws/requests/compute/associate_address.rb +94 -0
  537. data/lib/fog/aws/requests/compute/associate_dhcp_options.rb +57 -0
  538. data/lib/fog/aws/requests/compute/attach_internet_gateway.rb +56 -0
  539. data/lib/fog/aws/requests/compute/attach_network_interface.rb +57 -0
  540. data/lib/fog/aws/requests/compute/attach_volume.rb +87 -0
  541. data/lib/fog/aws/requests/compute/authorize_security_group_ingress.rb +213 -0
  542. data/lib/fog/aws/requests/compute/cancel_spot_instance_requests.rb +34 -0
  543. data/lib/fog/aws/requests/compute/create_dhcp_options.rb +76 -0
  544. data/lib/fog/aws/requests/compute/create_image.rb +65 -0
  545. data/lib/fog/aws/requests/compute/create_internet_gateway.rb +52 -0
  546. data/lib/fog/aws/requests/compute/create_key_pair.rb +56 -0
  547. data/lib/fog/aws/requests/compute/create_network_interface.rb +118 -0
  548. data/lib/fog/aws/requests/compute/create_placement_group.rb +34 -0
  549. data/lib/fog/aws/requests/compute/create_security_group.rb +64 -0
  550. data/lib/fog/aws/requests/compute/create_snapshot.rb +72 -0
  551. data/lib/fog/aws/requests/compute/create_spot_datafeed_subscription.rb +41 -0
  552. data/lib/fog/aws/requests/compute/create_subnet.rb +80 -0
  553. data/lib/fog/aws/requests/compute/create_tags.rb +87 -0
  554. data/lib/fog/aws/requests/compute/create_volume.rb +125 -0
  555. data/lib/fog/aws/requests/compute/create_vpc.rb +72 -0
  556. data/lib/fog/aws/requests/compute/delete_dhcp_options.rb +51 -0
  557. data/lib/fog/aws/requests/compute/delete_internet_gateway.rb +49 -0
  558. data/lib/fog/aws/requests/compute/delete_key_pair.rb +47 -0
  559. data/lib/fog/aws/requests/compute/delete_network_interface.rb +52 -0
  560. data/lib/fog/aws/requests/compute/delete_placement_group.rb +32 -0
  561. data/lib/fog/aws/requests/compute/delete_security_group.rb +92 -0
  562. data/lib/fog/aws/requests/compute/delete_snapshot.rb +50 -0
  563. data/lib/fog/aws/requests/compute/delete_spot_datafeed_subscription.rb +28 -0
  564. data/lib/fog/aws/requests/compute/delete_subnet.rb +50 -0
  565. data/lib/fog/aws/requests/compute/delete_tags.rb +86 -0
  566. data/lib/fog/aws/requests/compute/delete_volume.rb +56 -0
  567. data/lib/fog/aws/requests/compute/delete_vpc.rb +53 -0
  568. data/lib/fog/aws/requests/compute/deregister_image.rb +53 -0
  569. data/lib/fog/aws/requests/compute/describe_addresses.rb +66 -0
  570. data/lib/fog/aws/requests/compute/describe_availability_zones.rb +95 -0
  571. data/lib/fog/aws/requests/compute/describe_dhcp_options.rb +55 -0
  572. data/lib/fog/aws/requests/compute/describe_images.rb +130 -0
  573. data/lib/fog/aws/requests/compute/describe_instance_status.rb +48 -0
  574. data/lib/fog/aws/requests/compute/describe_instances.rb +229 -0
  575. data/lib/fog/aws/requests/compute/describe_internet_gateways.rb +60 -0
  576. data/lib/fog/aws/requests/compute/describe_key_pairs.rb +68 -0
  577. data/lib/fog/aws/requests/compute/describe_network_interface_attribute.rb +67 -0
  578. data/lib/fog/aws/requests/compute/describe_network_interfaces.rb +85 -0
  579. data/lib/fog/aws/requests/compute/describe_placement_groups.rb +35 -0
  580. data/lib/fog/aws/requests/compute/describe_regions.rb +68 -0
  581. data/lib/fog/aws/requests/compute/describe_reserved_instances.rb +60 -0
  582. data/lib/fog/aws/requests/compute/describe_reserved_instances_offerings.rb +64 -0
  583. data/lib/fog/aws/requests/compute/describe_security_groups.rb +101 -0
  584. data/lib/fog/aws/requests/compute/describe_snapshots.rb +122 -0
  585. data/lib/fog/aws/requests/compute/describe_spot_datafeed_subscription.rb +35 -0
  586. data/lib/fog/aws/requests/compute/describe_spot_instance_requests.rb +48 -0
  587. data/lib/fog/aws/requests/compute/describe_spot_price_history.rb +37 -0
  588. data/lib/fog/aws/requests/compute/describe_subnets.rb +64 -0
  589. data/lib/fog/aws/requests/compute/describe_tags.rb +107 -0
  590. data/lib/fog/aws/requests/compute/describe_volume_status.rb +45 -0
  591. data/lib/fog/aws/requests/compute/describe_volumes.rb +120 -0
  592. data/lib/fog/aws/requests/compute/describe_vpcs.rb +61 -0
  593. data/lib/fog/aws/requests/compute/detach_internet_gateway.rb +56 -0
  594. data/lib/fog/aws/requests/compute/detach_network_interface.rb +49 -0
  595. data/lib/fog/aws/requests/compute/detach_volume.rb +65 -0
  596. data/lib/fog/aws/requests/compute/disassociate_address.rb +58 -0
  597. data/lib/fog/aws/requests/compute/get_console_output.rb +54 -0
  598. data/lib/fog/aws/requests/compute/get_password_data.rb +56 -0
  599. data/lib/fog/aws/requests/compute/import_key_pair.rb +56 -0
  600. data/lib/fog/aws/requests/compute/modify_image_attribute.rb +74 -0
  601. data/lib/fog/aws/requests/compute/modify_instance_attribute.rb +44 -0
  602. data/lib/fog/aws/requests/compute/modify_network_interface_attribute.rb +90 -0
  603. data/lib/fog/aws/requests/compute/modify_snapshot_attribute.rb +37 -0
  604. data/lib/fog/aws/requests/compute/monitor_instances.rb +54 -0
  605. data/lib/fog/aws/requests/compute/purchase_reserved_instances_offering.rb +63 -0
  606. data/lib/fog/aws/requests/compute/reboot_instances.rb +54 -0
  607. data/lib/fog/aws/requests/compute/register_image.rb +133 -0
  608. data/lib/fog/aws/requests/compute/release_address.rb +63 -0
  609. data/lib/fog/aws/requests/compute/request_spot_instances.rb +89 -0
  610. data/lib/fog/aws/requests/compute/reset_network_interface_attribute.rb +56 -0
  611. data/lib/fog/aws/requests/compute/revoke_security_group_ingress.rb +102 -0
  612. data/lib/fog/aws/requests/compute/run_instances.rb +186 -0
  613. data/lib/fog/aws/requests/compute/start_instances.rb +60 -0
  614. data/lib/fog/aws/requests/compute/stop_instances.rb +61 -0
  615. data/lib/fog/aws/requests/compute/terminate_instances.rb +96 -0
  616. data/lib/fog/aws/requests/compute/unmonitor_instances.rb +55 -0
  617. data/lib/fog/aws/requests/dns/change_resource_record_sets.rb +210 -0
  618. data/lib/fog/aws/requests/dns/create_hosted_zone.rb +104 -0
  619. data/lib/fog/aws/requests/dns/delete_hosted_zone.rb +39 -0
  620. data/lib/fog/aws/requests/dns/get_change.rb +38 -0
  621. data/lib/fog/aws/requests/dns/get_hosted_zone.rb +65 -0
  622. data/lib/fog/aws/requests/dns/list_hosted_zones.rb +99 -0
  623. data/lib/fog/aws/requests/dns/list_resource_record_sets.rb +65 -0
  624. data/lib/fog/aws/requests/dynamodb/batch_get_item.rb +43 -0
  625. data/lib/fog/aws/requests/dynamodb/batch_write_item.rb +35 -0
  626. data/lib/fog/aws/requests/dynamodb/create_table.rb +55 -0
  627. data/lib/fog/aws/requests/dynamodb/delete_item.rb +45 -0
  628. data/lib/fog/aws/requests/dynamodb/delete_table.rb +42 -0
  629. data/lib/fog/aws/requests/dynamodb/describe_table.rb +44 -0
  630. data/lib/fog/aws/requests/dynamodb/get_item.rb +43 -0
  631. data/lib/fog/aws/requests/dynamodb/list_tables.rb +29 -0
  632. data/lib/fog/aws/requests/dynamodb/put_item.rb +41 -0
  633. data/lib/fog/aws/requests/dynamodb/query.rb +44 -0
  634. data/lib/fog/aws/requests/dynamodb/scan.rb +45 -0
  635. data/lib/fog/aws/requests/dynamodb/update_item.rb +49 -0
  636. data/lib/fog/aws/requests/dynamodb/update_table.rb +46 -0
  637. data/lib/fog/aws/requests/elasticache/authorize_cache_security_group_ingress.rb +36 -0
  638. data/lib/fog/aws/requests/elasticache/create_cache_cluster.rb +86 -0
  639. data/lib/fog/aws/requests/elasticache/create_cache_parameter_group.rb +37 -0
  640. data/lib/fog/aws/requests/elasticache/create_cache_security_group.rb +33 -0
  641. data/lib/fog/aws/requests/elasticache/delete_cache_cluster.rb +41 -0
  642. data/lib/fog/aws/requests/elasticache/delete_cache_parameter_group.rb +31 -0
  643. data/lib/fog/aws/requests/elasticache/delete_cache_security_group.rb +31 -0
  644. data/lib/fog/aws/requests/elasticache/describe_cache_clusters.rb +54 -0
  645. data/lib/fog/aws/requests/elasticache/describe_cache_parameter_groups.rb +34 -0
  646. data/lib/fog/aws/requests/elasticache/describe_cache_parameters.rb +36 -0
  647. data/lib/fog/aws/requests/elasticache/describe_cache_security_groups.rb +34 -0
  648. data/lib/fog/aws/requests/elasticache/describe_engine_default_parameters.rb +35 -0
  649. data/lib/fog/aws/requests/elasticache/describe_events.rb +46 -0
  650. data/lib/fog/aws/requests/elasticache/modify_cache_cluster.rb +102 -0
  651. data/lib/fog/aws/requests/elasticache/modify_cache_parameter_group.rb +45 -0
  652. data/lib/fog/aws/requests/elasticache/reboot_cache_cluster.rb +52 -0
  653. data/lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb +46 -0
  654. data/lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb +37 -0
  655. data/lib/fog/aws/requests/elb/apply_security_groups_to_load_balancer.rb +61 -0
  656. data/lib/fog/aws/requests/elb/attach_load_balancer_to_subnets.rb +61 -0
  657. data/lib/fog/aws/requests/elb/configure_health_check.rb +65 -0
  658. data/lib/fog/aws/requests/elb/create_app_cookie_stickiness_policy.rb +56 -0
  659. data/lib/fog/aws/requests/elb/create_lb_cookie_stickiness_policy.rb +58 -0
  660. data/lib/fog/aws/requests/elb/create_load_balancer.rb +119 -0
  661. data/lib/fog/aws/requests/elb/create_load_balancer_listeners.rb +88 -0
  662. data/lib/fog/aws/requests/elb/create_load_balancer_policy.rb +79 -0
  663. data/lib/fog/aws/requests/elb/delete_load_balancer.rb +51 -0
  664. data/lib/fog/aws/requests/elb/delete_load_balancer_listeners.rb +50 -0
  665. data/lib/fog/aws/requests/elb/delete_load_balancer_policy.rb +54 -0
  666. data/lib/fog/aws/requests/elb/deregister_instances_from_load_balancer.rb +63 -0
  667. data/lib/fog/aws/requests/elb/describe_instance_health.rb +72 -0
  668. data/lib/fog/aws/requests/elb/describe_load_balancer_policies.rb +71 -0
  669. data/lib/fog/aws/requests/elb/describe_load_balancer_policy_types.rb +68 -0
  670. data/lib/fog/aws/requests/elb/describe_load_balancers.rb +119 -0
  671. data/lib/fog/aws/requests/elb/detach_load_balancer_from_subnets.rb +61 -0
  672. data/lib/fog/aws/requests/elb/disable_availability_zones_for_load_balancer.rb +59 -0
  673. data/lib/fog/aws/requests/elb/enable_availability_zones_for_load_balancer.rb +61 -0
  674. data/lib/fog/aws/requests/elb/register_instances_with_load_balancer.rb +64 -0
  675. data/lib/fog/aws/requests/elb/set_load_balancer_listener_ssl_certificate.rb +67 -0
  676. data/lib/fog/aws/requests/elb/set_load_balancer_policies_of_listener.rb +80 -0
  677. data/lib/fog/aws/requests/emr/add_instance_groups.rb +46 -0
  678. data/lib/fog/aws/requests/emr/add_job_flow_steps.rb +49 -0
  679. data/lib/fog/aws/requests/emr/describe_job_flows.rb +108 -0
  680. data/lib/fog/aws/requests/emr/modify_instance_groups.rb +40 -0
  681. data/lib/fog/aws/requests/emr/run_job_flow.rb +108 -0
  682. data/lib/fog/aws/requests/emr/set_termination_protection.rb +39 -0
  683. data/lib/fog/aws/requests/emr/terminate_job_flows.rb +37 -0
  684. data/lib/fog/aws/requests/glacier/abort_multipart_upload.rb +35 -0
  685. data/lib/fog/aws/requests/glacier/complete_multipart_upload.rb +42 -0
  686. data/lib/fog/aws/requests/glacier/create_archive.rb +43 -0
  687. data/lib/fog/aws/requests/glacier/create_vault.rb +34 -0
  688. data/lib/fog/aws/requests/glacier/delete_archive.rb +35 -0
  689. data/lib/fog/aws/requests/glacier/delete_vault.rb +34 -0
  690. data/lib/fog/aws/requests/glacier/delete_vault_notification_configuration.rb +33 -0
  691. data/lib/fog/aws/requests/glacier/describe_job.rb +35 -0
  692. data/lib/fog/aws/requests/glacier/describe_vault.rb +34 -0
  693. data/lib/fog/aws/requests/glacier/get_job_output.rb +41 -0
  694. data/lib/fog/aws/requests/glacier/get_vault_notification_configuration.rb +34 -0
  695. data/lib/fog/aws/requests/glacier/initiate_job.rb +41 -0
  696. data/lib/fog/aws/requests/glacier/initiate_multipart_upload.rb +38 -0
  697. data/lib/fog/aws/requests/glacier/list_jobs.rb +39 -0
  698. data/lib/fog/aws/requests/glacier/list_multipart_uploads.rb +37 -0
  699. data/lib/fog/aws/requests/glacier/list_parts.rb +37 -0
  700. data/lib/fog/aws/requests/glacier/list_vaults.rb +36 -0
  701. data/lib/fog/aws/requests/glacier/set_vault_notification_configuration.rb +37 -0
  702. data/lib/fog/aws/requests/glacier/upload_part.rb +46 -0
  703. data/lib/fog/aws/requests/iam/add_role_to_instance_profile.rb +35 -0
  704. data/lib/fog/aws/requests/iam/add_user_to_group.rb +58 -0
  705. data/lib/fog/aws/requests/iam/create_access_key.rb +61 -0
  706. data/lib/fog/aws/requests/iam/create_account_alias.rb +19 -0
  707. data/lib/fog/aws/requests/iam/create_group.rb +60 -0
  708. data/lib/fog/aws/requests/iam/create_instance_profile.rb +46 -0
  709. data/lib/fog/aws/requests/iam/create_login_profile.rb +36 -0
  710. data/lib/fog/aws/requests/iam/create_role.rb +56 -0
  711. data/lib/fog/aws/requests/iam/create_user.rb +60 -0
  712. data/lib/fog/aws/requests/iam/delete_access_key.rb +51 -0
  713. data/lib/fog/aws/requests/iam/delete_account_alias.rb +19 -0
  714. data/lib/fog/aws/requests/iam/delete_group.rb +51 -0
  715. data/lib/fog/aws/requests/iam/delete_group_policy.rb +34 -0
  716. data/lib/fog/aws/requests/iam/delete_instance_profile.rb +32 -0
  717. data/lib/fog/aws/requests/iam/delete_login_profile.rb +31 -0
  718. data/lib/fog/aws/requests/iam/delete_role.rb +32 -0
  719. data/lib/fog/aws/requests/iam/delete_role_policy.rb +35 -0
  720. data/lib/fog/aws/requests/iam/delete_server_certificate.rb +46 -0
  721. data/lib/fog/aws/requests/iam/delete_signing_certificate.rb +33 -0
  722. data/lib/fog/aws/requests/iam/delete_user.rb +49 -0
  723. data/lib/fog/aws/requests/iam/delete_user_policy.rb +50 -0
  724. data/lib/fog/aws/requests/iam/get_group.rb +62 -0
  725. data/lib/fog/aws/requests/iam/get_group_policy.rb +36 -0
  726. data/lib/fog/aws/requests/iam/get_instance_profile.rb +42 -0
  727. data/lib/fog/aws/requests/iam/get_login_profile.rb +35 -0
  728. data/lib/fog/aws/requests/iam/get_role.rb +38 -0
  729. data/lib/fog/aws/requests/iam/get_role_policy.rb +36 -0
  730. data/lib/fog/aws/requests/iam/get_server_certificate.rb +48 -0
  731. data/lib/fog/aws/requests/iam/get_user.rb +56 -0
  732. data/lib/fog/aws/requests/iam/get_user_policy.rb +53 -0
  733. data/lib/fog/aws/requests/iam/list_access_keys.rb +61 -0
  734. data/lib/fog/aws/requests/iam/list_account_aliases.rb +18 -0
  735. data/lib/fog/aws/requests/iam/list_group_policies.rb +39 -0
  736. data/lib/fog/aws/requests/iam/list_groups.rb +60 -0
  737. data/lib/fog/aws/requests/iam/list_groups_for_user.rb +67 -0
  738. data/lib/fog/aws/requests/iam/list_instance_profiles.rb +50 -0
  739. data/lib/fog/aws/requests/iam/list_instance_profiles_for_role.rb +51 -0
  740. data/lib/fog/aws/requests/iam/list_role_policies.rb +39 -0
  741. data/lib/fog/aws/requests/iam/list_roles.rb +43 -0
  742. data/lib/fog/aws/requests/iam/list_server_certificates.rb +56 -0
  743. data/lib/fog/aws/requests/iam/list_signing_certificates.rb +38 -0
  744. data/lib/fog/aws/requests/iam/list_user_policies.rb +57 -0
  745. data/lib/fog/aws/requests/iam/list_users.rb +59 -0
  746. data/lib/fog/aws/requests/iam/put_group_policy.rb +36 -0
  747. data/lib/fog/aws/requests/iam/put_role_policy.rb +36 -0
  748. data/lib/fog/aws/requests/iam/put_user_policy.rb +54 -0
  749. data/lib/fog/aws/requests/iam/remove_role_from_instance_profile.rb +36 -0
  750. data/lib/fog/aws/requests/iam/remove_user_from_group.rb +53 -0
  751. data/lib/fog/aws/requests/iam/update_access_key.rb +36 -0
  752. data/lib/fog/aws/requests/iam/update_group.rb +39 -0
  753. data/lib/fog/aws/requests/iam/update_login_profile.rb +33 -0
  754. data/lib/fog/aws/requests/iam/update_server_certificate.rb +37 -0
  755. data/lib/fog/aws/requests/iam/update_signing_certificate.rb +32 -0
  756. data/lib/fog/aws/requests/iam/update_user.rb +39 -0
  757. data/lib/fog/aws/requests/iam/upload_server_certificate.rb +97 -0
  758. data/lib/fog/aws/requests/iam/upload_signing_certificate.rb +38 -0
  759. data/lib/fog/aws/requests/rds/authorize_db_security_group_ingress.rb +72 -0
  760. data/lib/fog/aws/requests/rds/create_db_instance.rb +124 -0
  761. data/lib/fog/aws/requests/rds/create_db_instance_read_replica.rb +82 -0
  762. data/lib/fog/aws/requests/rds/create_db_parameter_group.rb +59 -0
  763. data/lib/fog/aws/requests/rds/create_db_security_group.rb +55 -0
  764. data/lib/fog/aws/requests/rds/create_db_snapshot.rb +72 -0
  765. data/lib/fog/aws/requests/rds/delete_db_instance.rb +55 -0
  766. data/lib/fog/aws/requests/rds/delete_db_parameter_group.rb +46 -0
  767. data/lib/fog/aws/requests/rds/delete_db_security_group.rb +46 -0
  768. data/lib/fog/aws/requests/rds/delete_db_snapshot.rb +47 -0
  769. data/lib/fog/aws/requests/rds/describe_db_engine_versions.rb +34 -0
  770. data/lib/fog/aws/requests/rds/describe_db_instances.rb +95 -0
  771. data/lib/fog/aws/requests/rds/describe_db_parameter_groups.rb +63 -0
  772. data/lib/fog/aws/requests/rds/describe_db_parameters.rb +45 -0
  773. data/lib/fog/aws/requests/rds/describe_db_reserved_instances.rb +42 -0
  774. data/lib/fog/aws/requests/rds/describe_db_security_groups.rb +85 -0
  775. data/lib/fog/aws/requests/rds/describe_db_snapshots.rb +71 -0
  776. data/lib/fog/aws/requests/rds/modify_db_instance.rb +80 -0
  777. data/lib/fog/aws/requests/rds/modify_db_parameter_group.rb +55 -0
  778. data/lib/fog/aws/requests/rds/reboot_db_instance.rb +51 -0
  779. data/lib/fog/aws/requests/rds/restore_db_instance_from_db_snapshot.rb +34 -0
  780. data/lib/fog/aws/requests/rds/restore_db_instance_to_point_in_time.rb +35 -0
  781. data/lib/fog/aws/requests/rds/revoke_db_security_group_ingress.rb +70 -0
  782. data/lib/fog/aws/requests/ses/delete_verified_email_address.rb +28 -0
  783. data/lib/fog/aws/requests/ses/get_send_quota.rb +31 -0
  784. data/lib/fog/aws/requests/ses/get_send_statistics.rb +34 -0
  785. data/lib/fog/aws/requests/ses/list_verified_email_addresses.rb +28 -0
  786. data/lib/fog/aws/requests/ses/send_email.rb +73 -0
  787. data/lib/fog/aws/requests/ses/send_raw_email.rb +41 -0
  788. data/lib/fog/aws/requests/ses/verify_email_address.rb +28 -0
  789. data/lib/fog/aws/requests/simpledb/batch_put_attributes.rb +64 -0
  790. data/lib/fog/aws/requests/simpledb/create_domain.rb +44 -0
  791. data/lib/fog/aws/requests/simpledb/delete_attributes.rb +73 -0
  792. data/lib/fog/aws/requests/simpledb/delete_domain.rb +45 -0
  793. data/lib/fog/aws/requests/simpledb/domain_metadata.rb +76 -0
  794. data/lib/fog/aws/requests/simpledb/get_attributes.rb +84 -0
  795. data/lib/fog/aws/requests/simpledb/list_domains.rb +59 -0
  796. data/lib/fog/aws/requests/simpledb/put_attributes.rb +78 -0
  797. data/lib/fog/aws/requests/simpledb/select.rb +43 -0
  798. data/lib/fog/aws/requests/sns/add_permission.rb +26 -0
  799. data/lib/fog/aws/requests/sns/confirm_subscription.rb +33 -0
  800. data/lib/fog/aws/requests/sns/create_topic.rb +29 -0
  801. data/lib/fog/aws/requests/sns/delete_topic.rb +29 -0
  802. data/lib/fog/aws/requests/sns/get_topic_attributes.rb +29 -0
  803. data/lib/fog/aws/requests/sns/list_subscriptions.rb +29 -0
  804. data/lib/fog/aws/requests/sns/list_subscriptions_by_topic.rb +31 -0
  805. data/lib/fog/aws/requests/sns/list_topics.rb +29 -0
  806. data/lib/fog/aws/requests/sns/publish.rb +34 -0
  807. data/lib/fog/aws/requests/sns/remove_permission.rb +26 -0
  808. data/lib/fog/aws/requests/sns/set_topic_attributes.rb +33 -0
  809. data/lib/fog/aws/requests/sns/subscribe.rb +33 -0
  810. data/lib/fog/aws/requests/sns/unsubscribe.rb +29 -0
  811. data/lib/fog/aws/requests/sqs/change_message_visibility.rb +63 -0
  812. data/lib/fog/aws/requests/sqs/create_queue.rb +65 -0
  813. data/lib/fog/aws/requests/sqs/delete_message.rb +60 -0
  814. data/lib/fog/aws/requests/sqs/delete_queue.rb +52 -0
  815. data/lib/fog/aws/requests/sqs/get_queue_attributes.rb +52 -0
  816. data/lib/fog/aws/requests/sqs/list_queues.rb +42 -0
  817. data/lib/fog/aws/requests/sqs/receive_message.rb +87 -0
  818. data/lib/fog/aws/requests/sqs/send_message.rb +69 -0
  819. data/lib/fog/aws/requests/sqs/set_queue_attributes.rb +51 -0
  820. data/lib/fog/aws/requests/storage/abort_multipart_upload.rb +30 -0
  821. data/lib/fog/aws/requests/storage/acl_utils.rb +62 -0
  822. data/lib/fog/aws/requests/storage/complete_multipart_upload.rb +52 -0
  823. data/lib/fog/aws/requests/storage/copy_object.rb +82 -0
  824. data/lib/fog/aws/requests/storage/delete_bucket.rb +50 -0
  825. data/lib/fog/aws/requests/storage/delete_bucket_lifecycle.rb +30 -0
  826. data/lib/fog/aws/requests/storage/delete_bucket_policy.rb +32 -0
  827. data/lib/fog/aws/requests/storage/delete_bucket_website.rb +32 -0
  828. data/lib/fog/aws/requests/storage/delete_object.rb +121 -0
  829. data/lib/fog/aws/requests/storage/get_bucket.rb +115 -0
  830. data/lib/fog/aws/requests/storage/get_bucket_acl.rb +72 -0
  831. data/lib/fog/aws/requests/storage/get_bucket_lifecycle.rb +41 -0
  832. data/lib/fog/aws/requests/storage/get_bucket_location.rb +61 -0
  833. data/lib/fog/aws/requests/storage/get_bucket_logging.rb +50 -0
  834. data/lib/fog/aws/requests/storage/get_bucket_object_versions.rb +168 -0
  835. data/lib/fog/aws/requests/storage/get_bucket_policy.rb +37 -0
  836. data/lib/fog/aws/requests/storage/get_bucket_versioning.rb +72 -0
  837. data/lib/fog/aws/requests/storage/get_bucket_website.rb +42 -0
  838. data/lib/fog/aws/requests/storage/get_object.rb +191 -0
  839. data/lib/fog/aws/requests/storage/get_object_acl.rb +83 -0
  840. data/lib/fog/aws/requests/storage/get_object_http_url.rb +58 -0
  841. data/lib/fog/aws/requests/storage/get_object_https_url.rb +40 -0
  842. data/lib/fog/aws/requests/storage/get_object_torrent.rb +50 -0
  843. data/lib/fog/aws/requests/storage/get_object_url.rb +58 -0
  844. data/lib/fog/aws/requests/storage/get_request_payment.rb +52 -0
  845. data/lib/fog/aws/requests/storage/get_service.rb +57 -0
  846. data/lib/fog/aws/requests/storage/head_object.rb +69 -0
  847. data/lib/fog/aws/requests/storage/initiate_multipart_upload.rb +47 -0
  848. data/lib/fog/aws/requests/storage/list_multipart_uploads.rb +60 -0
  849. data/lib/fog/aws/requests/storage/list_parts.rb +59 -0
  850. data/lib/fog/aws/requests/storage/post_object_hidden_fields.rb +40 -0
  851. data/lib/fog/aws/requests/storage/put_bucket.rb +77 -0
  852. data/lib/fog/aws/requests/storage/put_bucket_acl.rb +73 -0
  853. data/lib/fog/aws/requests/storage/put_bucket_lifecycle.rb +48 -0
  854. data/lib/fog/aws/requests/storage/put_bucket_logging.rb +83 -0
  855. data/lib/fog/aws/requests/storage/put_bucket_policy.rb +30 -0
  856. data/lib/fog/aws/requests/storage/put_bucket_versioning.rb +77 -0
  857. data/lib/fog/aws/requests/storage/put_bucket_website.rb +66 -0
  858. data/lib/fog/aws/requests/storage/put_object.rb +116 -0
  859. data/lib/fog/aws/requests/storage/put_object_acl.rb +82 -0
  860. data/lib/fog/aws/requests/storage/put_object_url.rb +51 -0
  861. data/lib/fog/aws/requests/storage/put_request_payment.rb +51 -0
  862. data/lib/fog/aws/requests/storage/sync_clock.rb +28 -0
  863. data/lib/fog/aws/requests/storage/upload_part.rb +44 -0
  864. data/lib/fog/aws/requests/sts/get_federation_token.rb +21 -0
  865. data/lib/fog/aws/requests/sts/get_session_token.rb +19 -0
  866. data/lib/fog/aws/ses.rb +121 -0
  867. data/lib/fog/aws/signaturev4.rb +73 -0
  868. data/lib/fog/aws/simpledb.rb +205 -0
  869. data/lib/fog/aws/sns.rb +116 -0
  870. data/lib/fog/aws/sqs.rb +150 -0
  871. data/lib/fog/aws/storage.rb +404 -0
  872. data/lib/fog/aws/sts.rb +136 -0
  873. data/lib/fog/bare_metal_cloud.rb +11 -0
  874. data/lib/fog/bare_metal_cloud/compute.rb +100 -0
  875. data/lib/fog/bare_metal_cloud/requests/compute/add_server.rb +33 -0
  876. data/lib/fog/bare_metal_cloud/requests/compute/add_server_by_configuration.rb +33 -0
  877. data/lib/fog/bare_metal_cloud/requests/compute/cancel_server.rb +30 -0
  878. data/lib/fog/bare_metal_cloud/requests/compute/get_server.rb +41 -0
  879. data/lib/fog/bare_metal_cloud/requests/compute/list_configurations.rb +27 -0
  880. data/lib/fog/bare_metal_cloud/requests/compute/list_images.rb +27 -0
  881. data/lib/fog/bare_metal_cloud/requests/compute/list_plans.rb +30 -0
  882. data/lib/fog/bare_metal_cloud/requests/compute/list_servers.rb +36 -0
  883. data/lib/fog/bare_metal_cloud/requests/compute/reboot_server.rb +24 -0
  884. data/lib/fog/bin.rb +93 -0
  885. data/lib/fog/bin/atmos.rb +31 -0
  886. data/lib/fog/bin/aws.rb +115 -0
  887. data/lib/fog/bin/bare_metal_cloud.rb +31 -0
  888. data/lib/fog/bin/bluebox.rb +36 -0
  889. data/lib/fog/bin/brightbox.rb +35 -0
  890. data/lib/fog/bin/clodo.rb +31 -0
  891. data/lib/fog/bin/cloudstack.rb +30 -0
  892. data/lib/fog/bin/dnsimple.rb +31 -0
  893. data/lib/fog/bin/dnsmadeeasy.rb +31 -0
  894. data/lib/fog/bin/dynect.rb +30 -0
  895. data/lib/fog/bin/ecloud.rb +35 -0
  896. data/lib/fog/bin/glesys.rb +31 -0
  897. data/lib/fog/bin/go_grid.rb +31 -0
  898. data/lib/fog/bin/google.rb +31 -0
  899. data/lib/fog/bin/hp.rb +38 -0
  900. data/lib/fog/bin/ibm.rb +34 -0
  901. data/lib/fog/bin/joyent.rb +31 -0
  902. data/lib/fog/bin/libvirt.rb +60 -0
  903. data/lib/fog/bin/linode.rb +36 -0
  904. data/lib/fog/bin/local.rb +31 -0
  905. data/lib/fog/bin/ninefold.rb +36 -0
  906. data/lib/fog/bin/openstack.rb +36 -0
  907. data/lib/fog/bin/ovirt.rb +30 -0
  908. data/lib/fog/bin/rackspace.rb +60 -0
  909. data/lib/fog/bin/serverlove.rb +31 -0
  910. data/lib/fog/bin/stormondemand.rb +31 -0
  911. data/lib/fog/bin/terremark.rb +31 -0
  912. data/lib/fog/bin/vcloud.rb +30 -0
  913. data/lib/fog/bin/virtual_box.rb +57 -0
  914. data/lib/fog/bin/vmfusion.rb +60 -0
  915. data/lib/fog/bin/voxel.rb +31 -0
  916. data/lib/fog/bin/vsphere.rb +30 -0
  917. data/lib/fog/bin/xenserver.rb +31 -0
  918. data/lib/fog/bin/zerigo.rb +31 -0
  919. data/lib/fog/bluebox.rb +12 -0
  920. data/lib/fog/bluebox/compute.rb +104 -0
  921. data/lib/fog/bluebox/dns.rb +104 -0
  922. data/lib/fog/bluebox/models/compute/flavor.rb +45 -0
  923. data/lib/fog/bluebox/models/compute/flavors.rb +28 -0
  924. data/lib/fog/bluebox/models/compute/image.rb +34 -0
  925. data/lib/fog/bluebox/models/compute/images.rb +28 -0
  926. data/lib/fog/bluebox/models/compute/location.rb +17 -0
  927. data/lib/fog/bluebox/models/compute/locations.rb +28 -0
  928. data/lib/fog/bluebox/models/compute/server.rb +139 -0
  929. data/lib/fog/bluebox/models/compute/servers.rb +36 -0
  930. data/lib/fog/bluebox/models/dns/record.rb +55 -0
  931. data/lib/fog/bluebox/models/dns/records.rb +36 -0
  932. data/lib/fog/bluebox/models/dns/zone.rb +64 -0
  933. data/lib/fog/bluebox/models/dns/zones.rb +28 -0
  934. data/lib/fog/bluebox/parsers/dns/create_record.rb +26 -0
  935. data/lib/fog/bluebox/parsers/dns/create_zone.rb +26 -0
  936. data/lib/fog/bluebox/parsers/dns/get_record.rb +21 -0
  937. data/lib/fog/bluebox/parsers/dns/get_records.rb +28 -0
  938. data/lib/fog/bluebox/parsers/dns/get_zone.rb +26 -0
  939. data/lib/fog/bluebox/parsers/dns/get_zones.rb +30 -0
  940. data/lib/fog/bluebox/requests/compute/create_block.rb +47 -0
  941. data/lib/fog/bluebox/requests/compute/create_template.rb +27 -0
  942. data/lib/fog/bluebox/requests/compute/destroy_block.rb +26 -0
  943. data/lib/fog/bluebox/requests/compute/destroy_template.rb +26 -0
  944. data/lib/fog/bluebox/requests/compute/get_block.rb +26 -0
  945. data/lib/fog/bluebox/requests/compute/get_blocks.rb +28 -0
  946. data/lib/fog/bluebox/requests/compute/get_location.rb +26 -0
  947. data/lib/fog/bluebox/requests/compute/get_locations.rb +24 -0
  948. data/lib/fog/bluebox/requests/compute/get_product.rb +26 -0
  949. data/lib/fog/bluebox/requests/compute/get_products.rb +25 -0
  950. data/lib/fog/bluebox/requests/compute/get_template.rb +26 -0
  951. data/lib/fog/bluebox/requests/compute/get_templates.rb +26 -0
  952. data/lib/fog/bluebox/requests/compute/reboot_block.rb +27 -0
  953. data/lib/fog/bluebox/requests/dns/create_record.rb +48 -0
  954. data/lib/fog/bluebox/requests/dns/create_zone.rb +52 -0
  955. data/lib/fog/bluebox/requests/dns/delete_record.rb +31 -0
  956. data/lib/fog/bluebox/requests/dns/delete_zone.rb +31 -0
  957. data/lib/fog/bluebox/requests/dns/get_record.rb +40 -0
  958. data/lib/fog/bluebox/requests/dns/get_records.rb +41 -0
  959. data/lib/fog/bluebox/requests/dns/get_zone.rb +44 -0
  960. data/lib/fog/bluebox/requests/dns/get_zones.rb +43 -0
  961. data/lib/fog/bluebox/requests/dns/update_record.rb +34 -0
  962. data/lib/fog/bluebox/requests/dns/update_zone.rb +30 -0
  963. data/lib/fog/brightbox.rb +10 -0
  964. data/lib/fog/brightbox/compute.rb +238 -0
  965. data/lib/fog/brightbox/models/compute/account.rb +63 -0
  966. data/lib/fog/brightbox/models/compute/cloud_ip.rb +59 -0
  967. data/lib/fog/brightbox/models/compute/cloud_ips.rb +34 -0
  968. data/lib/fog/brightbox/models/compute/firewall_policies.rb +29 -0
  969. data/lib/fog/brightbox/models/compute/firewall_policy.rb +65 -0
  970. data/lib/fog/brightbox/models/compute/firewall_rule.rb +54 -0
  971. data/lib/fog/brightbox/models/compute/firewall_rules.rb +24 -0
  972. data/lib/fog/brightbox/models/compute/flavor.rb +32 -0
  973. data/lib/fog/brightbox/models/compute/flavors.rb +28 -0
  974. data/lib/fog/brightbox/models/compute/image.rb +66 -0
  975. data/lib/fog/brightbox/models/compute/images.rb +28 -0
  976. data/lib/fog/brightbox/models/compute/load_balancer.rb +59 -0
  977. data/lib/fog/brightbox/models/compute/load_balancers.rb +28 -0
  978. data/lib/fog/brightbox/models/compute/server.rb +200 -0
  979. data/lib/fog/brightbox/models/compute/server_group.rb +96 -0
  980. data/lib/fog/brightbox/models/compute/server_groups.rb +29 -0
  981. data/lib/fog/brightbox/models/compute/servers.rb +29 -0
  982. data/lib/fog/brightbox/models/compute/user.rb +43 -0
  983. data/lib/fog/brightbox/models/compute/users.rb +29 -0
  984. data/lib/fog/brightbox/models/compute/zone.rb +22 -0
  985. data/lib/fog/brightbox/models/compute/zones.rb +29 -0
  986. data/lib/fog/brightbox/requests/compute/activate_console_server.rb +14 -0
  987. data/lib/fog/brightbox/requests/compute/add_listeners_load_balancer.rb +14 -0
  988. data/lib/fog/brightbox/requests/compute/add_nodes_load_balancer.rb +14 -0
  989. data/lib/fog/brightbox/requests/compute/add_servers_server_group.rb +28 -0
  990. data/lib/fog/brightbox/requests/compute/apply_to_firewall_policy.rb +14 -0
  991. data/lib/fog/brightbox/requests/compute/create_api_client.rb +13 -0
  992. data/lib/fog/brightbox/requests/compute/create_cloud_ip.rb +13 -0
  993. data/lib/fog/brightbox/requests/compute/create_firewall_policy.rb +13 -0
  994. data/lib/fog/brightbox/requests/compute/create_firewall_rule.rb +13 -0
  995. data/lib/fog/brightbox/requests/compute/create_image.rb +13 -0
  996. data/lib/fog/brightbox/requests/compute/create_load_balancer.rb +13 -0
  997. data/lib/fog/brightbox/requests/compute/create_server.rb +13 -0
  998. data/lib/fog/brightbox/requests/compute/create_server_group.rb +13 -0
  999. data/lib/fog/brightbox/requests/compute/destroy_api_client.rb +14 -0
  1000. data/lib/fog/brightbox/requests/compute/destroy_cloud_ip.rb +14 -0
  1001. data/lib/fog/brightbox/requests/compute/destroy_firewall_policy.rb +14 -0
  1002. data/lib/fog/brightbox/requests/compute/destroy_firewall_rule.rb +14 -0
  1003. data/lib/fog/brightbox/requests/compute/destroy_image.rb +14 -0
  1004. data/lib/fog/brightbox/requests/compute/destroy_load_balancer.rb +14 -0
  1005. data/lib/fog/brightbox/requests/compute/destroy_server.rb +14 -0
  1006. data/lib/fog/brightbox/requests/compute/destroy_server_group.rb +14 -0
  1007. data/lib/fog/brightbox/requests/compute/get_account.rb +13 -0
  1008. data/lib/fog/brightbox/requests/compute/get_api_client.rb +14 -0
  1009. data/lib/fog/brightbox/requests/compute/get_cloud_ip.rb +14 -0
  1010. data/lib/fog/brightbox/requests/compute/get_firewall_policy.rb +14 -0
  1011. data/lib/fog/brightbox/requests/compute/get_firewall_rule.rb +14 -0
  1012. data/lib/fog/brightbox/requests/compute/get_image.rb +14 -0
  1013. data/lib/fog/brightbox/requests/compute/get_interface.rb +14 -0
  1014. data/lib/fog/brightbox/requests/compute/get_load_balancer.rb +14 -0
  1015. data/lib/fog/brightbox/requests/compute/get_server.rb +14 -0
  1016. data/lib/fog/brightbox/requests/compute/get_server_group.rb +14 -0
  1017. data/lib/fog/brightbox/requests/compute/get_server_type.rb +14 -0
  1018. data/lib/fog/brightbox/requests/compute/get_user.rb +14 -0
  1019. data/lib/fog/brightbox/requests/compute/get_zone.rb +14 -0
  1020. data/lib/fog/brightbox/requests/compute/list_api_clients.rb +13 -0
  1021. data/lib/fog/brightbox/requests/compute/list_cloud_ips.rb +13 -0
  1022. data/lib/fog/brightbox/requests/compute/list_firewall_policies.rb +13 -0
  1023. data/lib/fog/brightbox/requests/compute/list_images.rb +13 -0
  1024. data/lib/fog/brightbox/requests/compute/list_load_balancers.rb +13 -0
  1025. data/lib/fog/brightbox/requests/compute/list_server_groups.rb +13 -0
  1026. data/lib/fog/brightbox/requests/compute/list_server_types.rb +13 -0
  1027. data/lib/fog/brightbox/requests/compute/list_servers.rb +13 -0
  1028. data/lib/fog/brightbox/requests/compute/list_users.rb +13 -0
  1029. data/lib/fog/brightbox/requests/compute/list_zones.rb +13 -0
  1030. data/lib/fog/brightbox/requests/compute/map_cloud_ip.rb +14 -0
  1031. data/lib/fog/brightbox/requests/compute/move_servers_server_group.rb +29 -0
  1032. data/lib/fog/brightbox/requests/compute/remove_firewall_policy.rb +14 -0
  1033. data/lib/fog/brightbox/requests/compute/remove_listeners_load_balancer.rb +14 -0
  1034. data/lib/fog/brightbox/requests/compute/remove_nodes_load_balancer.rb +14 -0
  1035. data/lib/fog/brightbox/requests/compute/remove_servers_server_group.rb +27 -0
  1036. data/lib/fog/brightbox/requests/compute/reset_ftp_password_account.rb +13 -0
  1037. data/lib/fog/brightbox/requests/compute/reset_secret_api_client.rb +14 -0
  1038. data/lib/fog/brightbox/requests/compute/shutdown_server.rb +14 -0
  1039. data/lib/fog/brightbox/requests/compute/snapshot_server.rb +14 -0
  1040. data/lib/fog/brightbox/requests/compute/start_server.rb +14 -0
  1041. data/lib/fog/brightbox/requests/compute/stop_server.rb +14 -0
  1042. data/lib/fog/brightbox/requests/compute/unmap_cloud_ip.rb +14 -0
  1043. data/lib/fog/brightbox/requests/compute/update_account.rb +14 -0
  1044. data/lib/fog/brightbox/requests/compute/update_api_client.rb +15 -0
  1045. data/lib/fog/brightbox/requests/compute/update_cloud_ip.rb +15 -0
  1046. data/lib/fog/brightbox/requests/compute/update_firewall_rule.rb +13 -0
  1047. data/lib/fog/brightbox/requests/compute/update_image.rb +15 -0
  1048. data/lib/fog/brightbox/requests/compute/update_load_balancer.rb +15 -0
  1049. data/lib/fog/brightbox/requests/compute/update_server.rb +15 -0
  1050. data/lib/fog/brightbox/requests/compute/update_server_group.rb +15 -0
  1051. data/lib/fog/brightbox/requests/compute/update_user.rb +15 -0
  1052. data/lib/fog/cdn.rb +30 -0
  1053. data/lib/fog/clodo.rb +34 -0
  1054. data/lib/fog/clodo/compute.rb +150 -0
  1055. data/lib/fog/clodo/models/compute/image.rb +31 -0
  1056. data/lib/fog/clodo/models/compute/images.rb +28 -0
  1057. data/lib/fog/clodo/models/compute/server.rb +163 -0
  1058. data/lib/fog/clodo/models/compute/servers.rb +36 -0
  1059. data/lib/fog/clodo/requests/compute/add_ip_address.rb +49 -0
  1060. data/lib/fog/clodo/requests/compute/create_server.rb +112 -0
  1061. data/lib/fog/clodo/requests/compute/delete_ip_address.rb +47 -0
  1062. data/lib/fog/clodo/requests/compute/delete_server.rb +44 -0
  1063. data/lib/fog/clodo/requests/compute/get_image_details.rb +20 -0
  1064. data/lib/fog/clodo/requests/compute/get_server_details.rb +49 -0
  1065. data/lib/fog/clodo/requests/compute/list_images.rb +48 -0
  1066. data/lib/fog/clodo/requests/compute/list_images_detail.rb +61 -0
  1067. data/lib/fog/clodo/requests/compute/list_servers.rb +50 -0
  1068. data/lib/fog/clodo/requests/compute/list_servers_detail.rb +51 -0
  1069. data/lib/fog/clodo/requests/compute/move_ip_address.rb +34 -0
  1070. data/lib/fog/clodo/requests/compute/reboot_server.rb +19 -0
  1071. data/lib/fog/clodo/requests/compute/rebuild_server.rb +21 -0
  1072. data/lib/fog/clodo/requests/compute/server_action.rb +25 -0
  1073. data/lib/fog/clodo/requests/compute/start_server.rb +19 -0
  1074. data/lib/fog/clodo/requests/compute/stop_server.rb +19 -0
  1075. data/lib/fog/cloudstack.rb +40 -0
  1076. data/lib/fog/cloudstack/compute.rb +441 -0
  1077. data/lib/fog/cloudstack/models/compute/address.rb +17 -0
  1078. data/lib/fog/cloudstack/models/compute/flavor.rb +33 -0
  1079. data/lib/fog/cloudstack/models/compute/flavors.rb +28 -0
  1080. data/lib/fog/cloudstack/models/compute/image.rb +72 -0
  1081. data/lib/fog/cloudstack/models/compute/images.rb +41 -0
  1082. data/lib/fog/cloudstack/models/compute/job.rb +42 -0
  1083. data/lib/fog/cloudstack/models/compute/jobs.rb +28 -0
  1084. data/lib/fog/cloudstack/models/compute/security_group.rb +50 -0
  1085. data/lib/fog/cloudstack/models/compute/security_group_rule.rb +62 -0
  1086. data/lib/fog/cloudstack/models/compute/security_group_rules.rb +37 -0
  1087. data/lib/fog/cloudstack/models/compute/security_groups.rb +27 -0
  1088. data/lib/fog/cloudstack/models/compute/server.rb +116 -0
  1089. data/lib/fog/cloudstack/models/compute/servers.rb +34 -0
  1090. data/lib/fog/cloudstack/models/compute/volume.rb +115 -0
  1091. data/lib/fog/cloudstack/models/compute/volumes.rb +28 -0
  1092. data/lib/fog/cloudstack/models/compute/zone.rb +38 -0
  1093. data/lib/fog/cloudstack/models/compute/zones.rb +33 -0
  1094. data/lib/fog/cloudstack/requests/compute/acquire_ip_address.rb +21 -0
  1095. data/lib/fog/cloudstack/requests/compute/assign_to_load_balancer_rule.rb +25 -0
  1096. data/lib/fog/cloudstack/requests/compute/assign_virtual_machine.rb +18 -0
  1097. data/lib/fog/cloudstack/requests/compute/attach_volume.rb +70 -0
  1098. data/lib/fog/cloudstack/requests/compute/authorize_security_group_egress.rb +68 -0
  1099. data/lib/fog/cloudstack/requests/compute/authorize_security_group_ingress.rb +73 -0
  1100. data/lib/fog/cloudstack/requests/compute/change_service_for_virtual_machine.rb +20 -0
  1101. data/lib/fog/cloudstack/requests/compute/create_account.rb +20 -0
  1102. data/lib/fog/cloudstack/requests/compute/create_domain.rb +20 -0
  1103. data/lib/fog/cloudstack/requests/compute/create_load_balancer_rule.rb +20 -0
  1104. data/lib/fog/cloudstack/requests/compute/create_network.rb +20 -0
  1105. data/lib/fog/cloudstack/requests/compute/create_port_forwarding_rule.rb +20 -0
  1106. data/lib/fog/cloudstack/requests/compute/create_security_group.rb +28 -0
  1107. data/lib/fog/cloudstack/requests/compute/create_snapshot.rb +20 -0
  1108. data/lib/fog/cloudstack/requests/compute/create_snapshot_policy.rb +20 -0
  1109. data/lib/fog/cloudstack/requests/compute/create_ssh_key_pair.rb +22 -0
  1110. data/lib/fog/cloudstack/requests/compute/create_user.rb +20 -0
  1111. data/lib/fog/cloudstack/requests/compute/create_volume.rb +63 -0
  1112. data/lib/fog/cloudstack/requests/compute/create_zone.rb +20 -0
  1113. data/lib/fog/cloudstack/requests/compute/delete_account.rb +20 -0
  1114. data/lib/fog/cloudstack/requests/compute/delete_domain.rb +20 -0
  1115. data/lib/fog/cloudstack/requests/compute/delete_load_balancer_rule.rb +20 -0
  1116. data/lib/fog/cloudstack/requests/compute/delete_port_forwarding_rule.rb +20 -0
  1117. data/lib/fog/cloudstack/requests/compute/delete_security_group.rb +37 -0
  1118. data/lib/fog/cloudstack/requests/compute/delete_snapshot.rb +20 -0
  1119. data/lib/fog/cloudstack/requests/compute/delete_snapshot_policies.rb +20 -0
  1120. data/lib/fog/cloudstack/requests/compute/delete_ssh_key_pair.rb +21 -0
  1121. data/lib/fog/cloudstack/requests/compute/delete_template.rb +20 -0
  1122. data/lib/fog/cloudstack/requests/compute/delete_user.rb +20 -0
  1123. data/lib/fog/cloudstack/requests/compute/delete_volume.rb +40 -0
  1124. data/lib/fog/cloudstack/requests/compute/deploy_virtual_machine.rb +129 -0
  1125. data/lib/fog/cloudstack/requests/compute/destroy_virtual_machine.rb +51 -0
  1126. data/lib/fog/cloudstack/requests/compute/detach_volume.rb +62 -0
  1127. data/lib/fog/cloudstack/requests/compute/disable_account.rb +20 -0
  1128. data/lib/fog/cloudstack/requests/compute/disable_user.rb +20 -0
  1129. data/lib/fog/cloudstack/requests/compute/enable_account.rb +20 -0
  1130. data/lib/fog/cloudstack/requests/compute/enable_user.rb +20 -0
  1131. data/lib/fog/cloudstack/requests/compute/generate_usage_records.rb +28 -0
  1132. data/lib/fog/cloudstack/requests/compute/get_vm_password.rb +21 -0
  1133. data/lib/fog/cloudstack/requests/compute/list_accounts.rb +20 -0
  1134. data/lib/fog/cloudstack/requests/compute/list_alerts.rb +20 -0
  1135. data/lib/fog/cloudstack/requests/compute/list_async_jobs.rb +32 -0
  1136. data/lib/fog/cloudstack/requests/compute/list_capabilities.rb +20 -0
  1137. data/lib/fog/cloudstack/requests/compute/list_capacity.rb +20 -0
  1138. data/lib/fog/cloudstack/requests/compute/list_clusters.rb +20 -0
  1139. data/lib/fog/cloudstack/requests/compute/list_configurations.rb +20 -0
  1140. data/lib/fog/cloudstack/requests/compute/list_disk_offerings.rb +20 -0
  1141. data/lib/fog/cloudstack/requests/compute/list_domain_children.rb +20 -0
  1142. data/lib/fog/cloudstack/requests/compute/list_domains.rb +20 -0
  1143. data/lib/fog/cloudstack/requests/compute/list_events.rb +20 -0
  1144. data/lib/fog/cloudstack/requests/compute/list_external_firewalls.rb +20 -0
  1145. data/lib/fog/cloudstack/requests/compute/list_external_load_balancers.rb +20 -0
  1146. data/lib/fog/cloudstack/requests/compute/list_firewall_rules.rb +15 -0
  1147. data/lib/fog/cloudstack/requests/compute/list_hosts.rb +20 -0
  1148. data/lib/fog/cloudstack/requests/compute/list_hypervisors.rb +20 -0
  1149. data/lib/fog/cloudstack/requests/compute/list_instance_groups.rb +20 -0
  1150. data/lib/fog/cloudstack/requests/compute/list_isos.rb +20 -0
  1151. data/lib/fog/cloudstack/requests/compute/list_load_balancer_rule_instances.rb +23 -0
  1152. data/lib/fog/cloudstack/requests/compute/list_load_balancer_rules.rb +22 -0
  1153. data/lib/fog/cloudstack/requests/compute/list_network_offerings.rb +20 -0
  1154. data/lib/fog/cloudstack/requests/compute/list_networks.rb +20 -0
  1155. data/lib/fog/cloudstack/requests/compute/list_os_categories.rb +22 -0
  1156. data/lib/fog/cloudstack/requests/compute/list_os_types.rb +22 -0
  1157. data/lib/fog/cloudstack/requests/compute/list_pods.rb +20 -0
  1158. data/lib/fog/cloudstack/requests/compute/list_port_forwarding_rules.rb +22 -0
  1159. data/lib/fog/cloudstack/requests/compute/list_public_ip_addresses.rb +22 -0
  1160. data/lib/fog/cloudstack/requests/compute/list_resource_limits.rb +20 -0
  1161. data/lib/fog/cloudstack/requests/compute/list_security_groups.rb +38 -0
  1162. data/lib/fog/cloudstack/requests/compute/list_service_offerings.rb +42 -0
  1163. data/lib/fog/cloudstack/requests/compute/list_snapshot_policies.rb +20 -0
  1164. data/lib/fog/cloudstack/requests/compute/list_snapshots.rb +20 -0
  1165. data/lib/fog/cloudstack/requests/compute/list_ssh_key_pairs.rb +20 -0
  1166. data/lib/fog/cloudstack/requests/compute/list_storage_pools.rb +20 -0
  1167. data/lib/fog/cloudstack/requests/compute/list_templates.rb +35 -0
  1168. data/lib/fog/cloudstack/requests/compute/list_usage_records.rb +28 -0
  1169. data/lib/fog/cloudstack/requests/compute/list_users.rb +20 -0
  1170. data/lib/fog/cloudstack/requests/compute/list_virtual_machines.rb +26 -0
  1171. data/lib/fog/cloudstack/requests/compute/list_volumes.rb +38 -0
  1172. data/lib/fog/cloudstack/requests/compute/list_zones.rb +34 -0
  1173. data/lib/fog/cloudstack/requests/compute/migrate_virtual_machine.rb +20 -0
  1174. data/lib/fog/cloudstack/requests/compute/query_async_job_result.rb +32 -0
  1175. data/lib/fog/cloudstack/requests/compute/reboot_virtual_machine.rb +31 -0
  1176. data/lib/fog/cloudstack/requests/compute/recover_virtual_machine.rb +20 -0
  1177. data/lib/fog/cloudstack/requests/compute/register_ssh_key_pair.rb +20 -0
  1178. data/lib/fog/cloudstack/requests/compute/register_template.rb +35 -0
  1179. data/lib/fog/cloudstack/requests/compute/register_user_keys.rb +20 -0
  1180. data/lib/fog/cloudstack/requests/compute/remove_from_load_balancer_rule.rb +25 -0
  1181. data/lib/fog/cloudstack/requests/compute/reset_password_for_virtual_machine.rb +21 -0
  1182. data/lib/fog/cloudstack/requests/compute/revoke_security_group_egress.rb +42 -0
  1183. data/lib/fog/cloudstack/requests/compute/revoke_security_group_ingress.rb +47 -0
  1184. data/lib/fog/cloudstack/requests/compute/start_virtual_machine.rb +20 -0
  1185. data/lib/fog/cloudstack/requests/compute/stop_virtual_machine.rb +20 -0
  1186. data/lib/fog/cloudstack/requests/compute/update_account.rb +20 -0
  1187. data/lib/fog/cloudstack/requests/compute/update_domain.rb +20 -0
  1188. data/lib/fog/cloudstack/requests/compute/update_resource_count.rb +20 -0
  1189. data/lib/fog/cloudstack/requests/compute/update_user.rb +20 -0
  1190. data/lib/fog/cloudstack/requests/compute/update_virtual_machine.rb +20 -0
  1191. data/lib/fog/compute.rb +123 -0
  1192. data/lib/fog/compute/models/server.rb +52 -0
  1193. data/lib/fog/core.rb +37 -0
  1194. data/lib/fog/core/attributes.rb +204 -0
  1195. data/lib/fog/core/collection.rb +134 -0
  1196. data/lib/fog/core/connection.rb +35 -0
  1197. data/lib/fog/core/credentials.rb +65 -0
  1198. data/lib/fog/core/current_machine.rb +34 -0
  1199. data/lib/fog/core/deprecation.rb +23 -0
  1200. data/lib/fog/core/errors.rb +102 -0
  1201. data/lib/fog/core/hmac.rb +48 -0
  1202. data/lib/fog/core/json.rb +46 -0
  1203. data/lib/fog/core/logger.rb +43 -0
  1204. data/lib/fog/core/mock.rb +92 -0
  1205. data/lib/fog/core/model.rb +69 -0
  1206. data/lib/fog/core/parser.rb +103 -0
  1207. data/lib/fog/core/provider.rb +35 -0
  1208. data/lib/fog/core/scp.rb +95 -0
  1209. data/lib/fog/core/service.rb +223 -0
  1210. data/lib/fog/core/ssh.rb +136 -0
  1211. data/lib/fog/core/time.rb +30 -0
  1212. data/lib/fog/core/timeout.rb +11 -0
  1213. data/lib/fog/core/wait_for.rb +17 -0
  1214. data/lib/fog/dns.rb +56 -0
  1215. data/lib/fog/dnsimple.rb +11 -0
  1216. data/lib/fog/dnsimple/dns.rb +95 -0
  1217. data/lib/fog/dnsimple/models/dns/record.rb +67 -0
  1218. data/lib/fog/dnsimple/models/dns/records.rb +38 -0
  1219. data/lib/fog/dnsimple/models/dns/zone.rb +50 -0
  1220. data/lib/fog/dnsimple/models/dns/zones.rb +29 -0
  1221. data/lib/fog/dnsimple/requests/dns/create_domain.rb +27 -0
  1222. data/lib/fog/dnsimple/requests/dns/create_record.rb +48 -0
  1223. data/lib/fog/dnsimple/requests/dns/delete_domain.rb +26 -0
  1224. data/lib/fog/dnsimple/requests/dns/delete_record.rb +21 -0
  1225. data/lib/fog/dnsimple/requests/dns/get_domain.rb +37 -0
  1226. data/lib/fog/dnsimple/requests/dns/get_record.rb +34 -0
  1227. data/lib/fog/dnsimple/requests/dns/list_domains.rb +35 -0
  1228. data/lib/fog/dnsimple/requests/dns/list_records.rb +32 -0
  1229. data/lib/fog/dnsimple/requests/dns/update_record.rb +42 -0
  1230. data/lib/fog/dnsmadeeasy.rb +11 -0
  1231. data/lib/fog/dnsmadeeasy/dns.rb +135 -0
  1232. data/lib/fog/dnsmadeeasy/models/dns/record.rb +80 -0
  1233. data/lib/fog/dnsmadeeasy/models/dns/records.rb +36 -0
  1234. data/lib/fog/dnsmadeeasy/models/dns/zone.rb +42 -0
  1235. data/lib/fog/dnsmadeeasy/models/dns/zones.rb +30 -0
  1236. data/lib/fog/dnsmadeeasy/requests/dns/create_domain.rb +29 -0
  1237. data/lib/fog/dnsmadeeasy/requests/dns/create_record.rb +62 -0
  1238. data/lib/fog/dnsmadeeasy/requests/dns/create_secondary.rb +36 -0
  1239. data/lib/fog/dnsmadeeasy/requests/dns/delete_all_domains.rb +23 -0
  1240. data/lib/fog/dnsmadeeasy/requests/dns/delete_all_secondary.rb +22 -0
  1241. data/lib/fog/dnsmadeeasy/requests/dns/delete_domain.rb +25 -0
  1242. data/lib/fog/dnsmadeeasy/requests/dns/delete_record.rb +26 -0
  1243. data/lib/fog/dnsmadeeasy/requests/dns/delete_secondary.rb +25 -0
  1244. data/lib/fog/dnsmadeeasy/requests/dns/get_domain.rb +29 -0
  1245. data/lib/fog/dnsmadeeasy/requests/dns/get_record.rb +38 -0
  1246. data/lib/fog/dnsmadeeasy/requests/dns/get_secondary.rb +29 -0
  1247. data/lib/fog/dnsmadeeasy/requests/dns/list_domains.rb +24 -0
  1248. data/lib/fog/dnsmadeeasy/requests/dns/list_records.rb +42 -0
  1249. data/lib/fog/dnsmadeeasy/requests/dns/list_secondary.rb +24 -0
  1250. data/lib/fog/dnsmadeeasy/requests/dns/update_record.rb +56 -0
  1251. data/lib/fog/dnsmadeeasy/requests/dns/update_secondary.rb +36 -0
  1252. data/lib/fog/dynect.rb +26 -0
  1253. data/lib/fog/dynect/dns.rb +139 -0
  1254. data/lib/fog/dynect/models/dns/record.rb +66 -0
  1255. data/lib/fog/dynect/models/dns/records.rb +53 -0
  1256. data/lib/fog/dynect/models/dns/zone.rb +60 -0
  1257. data/lib/fog/dynect/models/dns/zones.rb +29 -0
  1258. data/lib/fog/dynect/requests/dns/delete_record.rb +56 -0
  1259. data/lib/fog/dynect/requests/dns/delete_zone.rb +42 -0
  1260. data/lib/fog/dynect/requests/dns/get_node_list.rb +56 -0
  1261. data/lib/fog/dynect/requests/dns/get_record.rb +84 -0
  1262. data/lib/fog/dynect/requests/dns/get_zone.rb +58 -0
  1263. data/lib/fog/dynect/requests/dns/post_record.rb +72 -0
  1264. data/lib/fog/dynect/requests/dns/post_session.rb +44 -0
  1265. data/lib/fog/dynect/requests/dns/post_zone.rb +71 -0
  1266. data/lib/fog/dynect/requests/dns/put_zone.rb +76 -0
  1267. data/lib/fog/ecloud.rb +17 -0
  1268. data/lib/fog/ecloud/collection.rb +26 -0
  1269. data/lib/fog/ecloud/compute.rb +515 -0
  1270. data/lib/fog/ecloud/generate_collection.rb +130 -0
  1271. data/lib/fog/ecloud/ipaddr.rb +5 -0
  1272. data/lib/fog/ecloud/mock_data_classes.rb +768 -0
  1273. data/lib/fog/ecloud/model.rb +22 -0
  1274. data/lib/fog/ecloud/models/compute/admin_organization.rb +39 -0
  1275. data/lib/fog/ecloud/models/compute/admin_organizations.rb +27 -0
  1276. data/lib/fog/ecloud/models/compute/api_key.rb +21 -0
  1277. data/lib/fog/ecloud/models/compute/api_keys.rb +27 -0
  1278. data/lib/fog/ecloud/models/compute/association.rb +23 -0
  1279. data/lib/fog/ecloud/models/compute/associations.rb +35 -0
  1280. data/lib/fog/ecloud/models/compute/authentication_level.rb +22 -0
  1281. data/lib/fog/ecloud/models/compute/authentication_levels.rb +27 -0
  1282. data/lib/fog/ecloud/models/compute/backup_internet_service.rb +45 -0
  1283. data/lib/fog/ecloud/models/compute/backup_internet_services.rb +42 -0
  1284. data/lib/fog/ecloud/models/compute/catalog.rb +40 -0
  1285. data/lib/fog/ecloud/models/compute/catalog_configuration.rb +23 -0
  1286. data/lib/fog/ecloud/models/compute/catalog_configurations.rb +27 -0
  1287. data/lib/fog/ecloud/models/compute/catalog_item.rb +24 -0
  1288. data/lib/fog/ecloud/models/compute/compute_pool.rb +59 -0
  1289. data/lib/fog/ecloud/models/compute/compute_pools.rb +34 -0
  1290. data/lib/fog/ecloud/models/compute/cpu_usage_detail.rb +17 -0
  1291. data/lib/fog/ecloud/models/compute/cpu_usage_detail_summary.rb +27 -0
  1292. data/lib/fog/ecloud/models/compute/environment.rb +105 -0
  1293. data/lib/fog/ecloud/models/compute/environments.rb +40 -0
  1294. data/lib/fog/ecloud/models/compute/firewall_acl.rb +27 -0
  1295. data/lib/fog/ecloud/models/compute/firewall_acls.rb +28 -0
  1296. data/lib/fog/ecloud/models/compute/group.rb +39 -0
  1297. data/lib/fog/ecloud/models/compute/groups.rb +28 -0
  1298. data/lib/fog/ecloud/models/compute/guest_process.rb +15 -0
  1299. data/lib/fog/ecloud/models/compute/guest_processes.rb +27 -0
  1300. data/lib/fog/ecloud/models/compute/hardware_configuration.rb +18 -0
  1301. data/lib/fog/ecloud/models/compute/hardware_configurations.rb +27 -0
  1302. data/lib/fog/ecloud/models/compute/internet_service.rb +91 -0
  1303. data/lib/fog/ecloud/models/compute/internet_services.rb +46 -0
  1304. data/lib/fog/ecloud/models/compute/ip_address.rb +25 -0
  1305. data/lib/fog/ecloud/models/compute/ip_addresses.rb +28 -0
  1306. data/lib/fog/ecloud/models/compute/layout.rb +20 -0
  1307. data/lib/fog/ecloud/models/compute/layouts.rb +27 -0
  1308. data/lib/fog/ecloud/models/compute/location.rb +23 -0
  1309. data/lib/fog/ecloud/models/compute/locations.rb +31 -0
  1310. data/lib/fog/ecloud/models/compute/login_banner.rb +16 -0
  1311. data/lib/fog/ecloud/models/compute/login_banners.rb +27 -0
  1312. data/lib/fog/ecloud/models/compute/memory_usage_detail.rb +16 -0
  1313. data/lib/fog/ecloud/models/compute/memory_usage_detail_summary.rb +27 -0
  1314. data/lib/fog/ecloud/models/compute/monitor.rb +46 -0
  1315. data/lib/fog/ecloud/models/compute/monitors.rb +31 -0
  1316. data/lib/fog/ecloud/models/compute/network.rb +36 -0
  1317. data/lib/fog/ecloud/models/compute/networks.rb +29 -0
  1318. data/lib/fog/ecloud/models/compute/node.rb +39 -0
  1319. data/lib/fog/ecloud/models/compute/nodes.rb +44 -0
  1320. data/lib/fog/ecloud/models/compute/operating_system.rb +17 -0
  1321. data/lib/fog/ecloud/models/compute/operating_system_families.rb +27 -0
  1322. data/lib/fog/ecloud/models/compute/operating_system_family.rb +21 -0
  1323. data/lib/fog/ecloud/models/compute/operating_systems.rb +26 -0
  1324. data/lib/fog/ecloud/models/compute/organization.rb +79 -0
  1325. data/lib/fog/ecloud/models/compute/organizations.rb +39 -0
  1326. data/lib/fog/ecloud/models/compute/password_complexity_rule.rb +49 -0
  1327. data/lib/fog/ecloud/models/compute/password_complexity_rules.rb +27 -0
  1328. data/lib/fog/ecloud/models/compute/physical_device.rb +22 -0
  1329. data/lib/fog/ecloud/models/compute/physical_devices.rb +27 -0
  1330. data/lib/fog/ecloud/models/compute/public_ip.rb +26 -0
  1331. data/lib/fog/ecloud/models/compute/public_ips.rb +33 -0
  1332. data/lib/fog/ecloud/models/compute/rnat.rb +27 -0
  1333. data/lib/fog/ecloud/models/compute/rnats.rb +27 -0
  1334. data/lib/fog/ecloud/models/compute/role.rb +24 -0
  1335. data/lib/fog/ecloud/models/compute/roles.rb +37 -0
  1336. data/lib/fog/ecloud/models/compute/row.rb +53 -0
  1337. data/lib/fog/ecloud/models/compute/rows.rb +37 -0
  1338. data/lib/fog/ecloud/models/compute/server.rb +277 -0
  1339. data/lib/fog/ecloud/models/compute/server_configuration_option.rb +17 -0
  1340. data/lib/fog/ecloud/models/compute/server_configuration_options.rb +27 -0
  1341. data/lib/fog/ecloud/models/compute/servers.rb +67 -0
  1342. data/lib/fog/ecloud/models/compute/ssh_key.rb +20 -0
  1343. data/lib/fog/ecloud/models/compute/ssh_keys.rb +27 -0
  1344. data/lib/fog/ecloud/models/compute/storage_usage_detail.rb +16 -0
  1345. data/lib/fog/ecloud/models/compute/storage_usage_detail_summary.rb +27 -0
  1346. data/lib/fog/ecloud/models/compute/support_ticket.rb +29 -0
  1347. data/lib/fog/ecloud/models/compute/support_tickets.rb +27 -0
  1348. data/lib/fog/ecloud/models/compute/tag.rb +13 -0
  1349. data/lib/fog/ecloud/models/compute/tags.rb +27 -0
  1350. data/lib/fog/ecloud/models/compute/task.rb +20 -0
  1351. data/lib/fog/ecloud/models/compute/tasks.rb +31 -0
  1352. data/lib/fog/ecloud/models/compute/template.rb +24 -0
  1353. data/lib/fog/ecloud/models/compute/templates.rb +40 -0
  1354. data/lib/fog/ecloud/models/compute/trusted_network_group.rb +33 -0
  1355. data/lib/fog/ecloud/models/compute/trusted_network_groups.rb +28 -0
  1356. data/lib/fog/ecloud/models/compute/user.rb +35 -0
  1357. data/lib/fog/ecloud/models/compute/users.rb +27 -0
  1358. data/lib/fog/ecloud/requests/compute/admin_disable_support_access.rb +9 -0
  1359. data/lib/fog/ecloud/requests/compute/admin_edit_authentication_levels.rb +34 -0
  1360. data/lib/fog/ecloud/requests/compute/admin_edit_login_banner.rb +32 -0
  1361. data/lib/fog/ecloud/requests/compute/admin_edit_password_complexity_rules.rb +74 -0
  1362. data/lib/fog/ecloud/requests/compute/admin_enable_support_access.rb +9 -0
  1363. data/lib/fog/ecloud/requests/compute/backup_internet_service_create.rb +47 -0
  1364. data/lib/fog/ecloud/requests/compute/backup_internet_service_delete.rb +11 -0
  1365. data/lib/fog/ecloud/requests/compute/backup_internet_service_edit.rb +47 -0
  1366. data/lib/fog/ecloud/requests/compute/compute_pool_edit.rb +37 -0
  1367. data/lib/fog/ecloud/requests/compute/firewall_acls_create.rb +79 -0
  1368. data/lib/fog/ecloud/requests/compute/firewall_acls_delete.rb +11 -0
  1369. data/lib/fog/ecloud/requests/compute/get_admin_organization.rb +11 -0
  1370. data/lib/fog/ecloud/requests/compute/get_admin_organizations.rb +11 -0
  1371. data/lib/fog/ecloud/requests/compute/get_api_key.rb +11 -0
  1372. data/lib/fog/ecloud/requests/compute/get_api_keys.rb +11 -0
  1373. data/lib/fog/ecloud/requests/compute/get_association.rb +11 -0
  1374. data/lib/fog/ecloud/requests/compute/get_associations.rb +11 -0
  1375. data/lib/fog/ecloud/requests/compute/get_authentication_level.rb +11 -0
  1376. data/lib/fog/ecloud/requests/compute/get_authentication_levels.rb +11 -0
  1377. data/lib/fog/ecloud/requests/compute/get_backup_internet_service.rb +11 -0
  1378. data/lib/fog/ecloud/requests/compute/get_backup_internet_services.rb +11 -0
  1379. data/lib/fog/ecloud/requests/compute/get_catalog.rb +11 -0
  1380. data/lib/fog/ecloud/requests/compute/get_catalog_configuration.rb +11 -0
  1381. data/lib/fog/ecloud/requests/compute/get_catalog_configurations.rb +11 -0
  1382. data/lib/fog/ecloud/requests/compute/get_catalog_item.rb +11 -0
  1383. data/lib/fog/ecloud/requests/compute/get_compute_pool.rb +11 -0
  1384. data/lib/fog/ecloud/requests/compute/get_compute_pools.rb +11 -0
  1385. data/lib/fog/ecloud/requests/compute/get_cpu_usage_detail.rb +11 -0
  1386. data/lib/fog/ecloud/requests/compute/get_cpu_usage_detail_summary.rb +11 -0
  1387. data/lib/fog/ecloud/requests/compute/get_environment.rb +11 -0
  1388. data/lib/fog/ecloud/requests/compute/get_environments.rb +0 -0
  1389. data/lib/fog/ecloud/requests/compute/get_firewall_acl.rb +11 -0
  1390. data/lib/fog/ecloud/requests/compute/get_firewall_acls.rb +11 -0
  1391. data/lib/fog/ecloud/requests/compute/get_group.rb +11 -0
  1392. data/lib/fog/ecloud/requests/compute/get_groups.rb +11 -0
  1393. data/lib/fog/ecloud/requests/compute/get_guest_process.rb +11 -0
  1394. data/lib/fog/ecloud/requests/compute/get_guest_processes.rb +11 -0
  1395. data/lib/fog/ecloud/requests/compute/get_hardware_configuration.rb +11 -0
  1396. data/lib/fog/ecloud/requests/compute/get_hardware_configurations.rb +11 -0
  1397. data/lib/fog/ecloud/requests/compute/get_internet_service.rb +11 -0
  1398. data/lib/fog/ecloud/requests/compute/get_internet_services.rb +11 -0
  1399. data/lib/fog/ecloud/requests/compute/get_ip_address.rb +11 -0
  1400. data/lib/fog/ecloud/requests/compute/get_ip_addresses.rb +11 -0
  1401. data/lib/fog/ecloud/requests/compute/get_layout.rb +11 -0
  1402. data/lib/fog/ecloud/requests/compute/get_layouts.rb +11 -0
  1403. data/lib/fog/ecloud/requests/compute/get_location.rb +12 -0
  1404. data/lib/fog/ecloud/requests/compute/get_locations.rb +12 -0
  1405. data/lib/fog/ecloud/requests/compute/get_login_banner.rb +11 -0
  1406. data/lib/fog/ecloud/requests/compute/get_login_banners.rb +11 -0
  1407. data/lib/fog/ecloud/requests/compute/get_memory_usage_detail.rb +11 -0
  1408. data/lib/fog/ecloud/requests/compute/get_memory_usage_detail_summary.rb +11 -0
  1409. data/lib/fog/ecloud/requests/compute/get_monitor.rb +11 -0
  1410. data/lib/fog/ecloud/requests/compute/get_monitors.rb +11 -0
  1411. data/lib/fog/ecloud/requests/compute/get_network.rb +11 -0
  1412. data/lib/fog/ecloud/requests/compute/get_network_summary.rb +11 -0
  1413. data/lib/fog/ecloud/requests/compute/get_networks.rb +11 -0
  1414. data/lib/fog/ecloud/requests/compute/get_node.rb +11 -0
  1415. data/lib/fog/ecloud/requests/compute/get_nodes.rb +11 -0
  1416. data/lib/fog/ecloud/requests/compute/get_operating_system.rb +11 -0
  1417. data/lib/fog/ecloud/requests/compute/get_operating_system_families.rb +11 -0
  1418. data/lib/fog/ecloud/requests/compute/get_operating_system_family.rb +11 -0
  1419. data/lib/fog/ecloud/requests/compute/get_organization.rb +11 -0
  1420. data/lib/fog/ecloud/requests/compute/get_organizations.rb +11 -0
  1421. data/lib/fog/ecloud/requests/compute/get_password_complexity_rule.rb +11 -0
  1422. data/lib/fog/ecloud/requests/compute/get_password_complexity_rules.rb +11 -0
  1423. data/lib/fog/ecloud/requests/compute/get_physical_device.rb +11 -0
  1424. data/lib/fog/ecloud/requests/compute/get_physical_devices.rb +11 -0
  1425. data/lib/fog/ecloud/requests/compute/get_process.rb +11 -0
  1426. data/lib/fog/ecloud/requests/compute/get_processes.rb +11 -0
  1427. data/lib/fog/ecloud/requests/compute/get_public_ip.rb +11 -0
  1428. data/lib/fog/ecloud/requests/compute/get_public_ips.rb +11 -0
  1429. data/lib/fog/ecloud/requests/compute/get_rnat.rb +11 -0
  1430. data/lib/fog/ecloud/requests/compute/get_rnats.rb +11 -0
  1431. data/lib/fog/ecloud/requests/compute/get_role.rb +11 -0
  1432. data/lib/fog/ecloud/requests/compute/get_roles.rb +11 -0
  1433. data/lib/fog/ecloud/requests/compute/get_row.rb +11 -0
  1434. data/lib/fog/ecloud/requests/compute/get_rows.rb +11 -0
  1435. data/lib/fog/ecloud/requests/compute/get_server.rb +11 -0
  1436. data/lib/fog/ecloud/requests/compute/get_server_configuration_option.rb +11 -0
  1437. data/lib/fog/ecloud/requests/compute/get_server_configuration_options.rb +11 -0
  1438. data/lib/fog/ecloud/requests/compute/get_servers.rb +11 -0
  1439. data/lib/fog/ecloud/requests/compute/get_ssh_key.rb +11 -0
  1440. data/lib/fog/ecloud/requests/compute/get_ssh_keys.rb +11 -0
  1441. data/lib/fog/ecloud/requests/compute/get_storage_usage_detail.rb +11 -0
  1442. data/lib/fog/ecloud/requests/compute/get_storage_usage_detail_summary.rb +11 -0
  1443. data/lib/fog/ecloud/requests/compute/get_support_ticket.rb +11 -0
  1444. data/lib/fog/ecloud/requests/compute/get_support_tickets.rb +11 -0
  1445. data/lib/fog/ecloud/requests/compute/get_tag.rb +11 -0
  1446. data/lib/fog/ecloud/requests/compute/get_tags.rb +11 -0
  1447. data/lib/fog/ecloud/requests/compute/get_task.rb +11 -0
  1448. data/lib/fog/ecloud/requests/compute/get_tasks.rb +11 -0
  1449. data/lib/fog/ecloud/requests/compute/get_template.rb +11 -0
  1450. data/lib/fog/ecloud/requests/compute/get_templates.rb +11 -0
  1451. data/lib/fog/ecloud/requests/compute/get_trusted_network_group.rb +11 -0
  1452. data/lib/fog/ecloud/requests/compute/get_trusted_network_groups.rb +11 -0
  1453. data/lib/fog/ecloud/requests/compute/get_user.rb +11 -0
  1454. data/lib/fog/ecloud/requests/compute/get_users.rb +11 -0
  1455. data/lib/fog/ecloud/requests/compute/groups_create.rb +31 -0
  1456. data/lib/fog/ecloud/requests/compute/groups_delete.rb +11 -0
  1457. data/lib/fog/ecloud/requests/compute/groups_edit.rb +29 -0
  1458. data/lib/fog/ecloud/requests/compute/groups_movedown.rb +11 -0
  1459. data/lib/fog/ecloud/requests/compute/groups_moveup.rb +11 -0
  1460. data/lib/fog/ecloud/requests/compute/internet_service_create.rb +67 -0
  1461. data/lib/fog/ecloud/requests/compute/internet_service_delete.rb +11 -0
  1462. data/lib/fog/ecloud/requests/compute/internet_service_edit.rb +60 -0
  1463. data/lib/fog/ecloud/requests/compute/monitors_create_default.rb +11 -0
  1464. data/lib/fog/ecloud/requests/compute/monitors_create_ecv.rb +40 -0
  1465. data/lib/fog/ecloud/requests/compute/monitors_create_http.rb +44 -0
  1466. data/lib/fog/ecloud/requests/compute/monitors_create_loopback.rb +11 -0
  1467. data/lib/fog/ecloud/requests/compute/monitors_create_ping.rb +35 -0
  1468. data/lib/fog/ecloud/requests/compute/monitors_disable.rb +11 -0
  1469. data/lib/fog/ecloud/requests/compute/monitors_edit_ecv.rb +40 -0
  1470. data/lib/fog/ecloud/requests/compute/monitors_edit_http.rb +44 -0
  1471. data/lib/fog/ecloud/requests/compute/monitors_edit_ping.rb +35 -0
  1472. data/lib/fog/ecloud/requests/compute/monitors_enable.rb +11 -0
  1473. data/lib/fog/ecloud/requests/compute/node_service_create.rb +45 -0
  1474. data/lib/fog/ecloud/requests/compute/node_service_delete.rb +11 -0
  1475. data/lib/fog/ecloud/requests/compute/node_service_edit.rb +41 -0
  1476. data/lib/fog/ecloud/requests/compute/power_off.rb +11 -0
  1477. data/lib/fog/ecloud/requests/compute/power_on.rb +11 -0
  1478. data/lib/fog/ecloud/requests/compute/power_reset.rb +11 -0
  1479. data/lib/fog/ecloud/requests/compute/power_shutdown.rb +11 -0
  1480. data/lib/fog/ecloud/requests/compute/public_ip_activate.rb +11 -0
  1481. data/lib/fog/ecloud/requests/compute/rnat_associations_create_device.rb +32 -0
  1482. data/lib/fog/ecloud/requests/compute/rnat_associations_delete.rb +9 -0
  1483. data/lib/fog/ecloud/requests/compute/rnat_associations_edit_network.rb +31 -0
  1484. data/lib/fog/ecloud/requests/compute/rows_create.rb +29 -0
  1485. data/lib/fog/ecloud/requests/compute/rows_delete.rb +11 -0
  1486. data/lib/fog/ecloud/requests/compute/rows_edit.rb +29 -0
  1487. data/lib/fog/ecloud/requests/compute/rows_movedown.rb +11 -0
  1488. data/lib/fog/ecloud/requests/compute/rows_moveup.rb +11 -0
  1489. data/lib/fog/ecloud/requests/compute/trusted_network_groups_create.rb +53 -0
  1490. data/lib/fog/ecloud/requests/compute/trusted_network_groups_delete.rb +11 -0
  1491. data/lib/fog/ecloud/requests/compute/trusted_network_groups_edit.rb +53 -0
  1492. data/lib/fog/ecloud/requests/compute/virtual_machine_add_ip.rb +40 -0
  1493. data/lib/fog/ecloud/requests/compute/virtual_machine_copy.rb +118 -0
  1494. data/lib/fog/ecloud/requests/compute/virtual_machine_copy_identical.rb +45 -0
  1495. data/lib/fog/ecloud/requests/compute/virtual_machine_create_from_template.rb +125 -0
  1496. data/lib/fog/ecloud/requests/compute/virtual_machine_delete.rb +11 -0
  1497. data/lib/fog/ecloud/requests/compute/virtual_machine_edit.rb +47 -0
  1498. data/lib/fog/ecloud/requests/compute/virtual_machine_edit_hardware_configuration.rb +53 -0
  1499. data/lib/fog/ecloud/requests/compute/virtual_machine_import.rb +67 -0
  1500. data/lib/fog/ecloud/requests/compute/virtual_machine_upload_file.rb +31 -0
  1501. data/lib/fog/glesys.rb +11 -0
  1502. data/lib/fog/glesys/compute.rb +130 -0
  1503. data/lib/fog/glesys/models/compute/ip.rb +75 -0
  1504. data/lib/fog/glesys/models/compute/ips.rb +39 -0
  1505. data/lib/fog/glesys/models/compute/server.rb +76 -0
  1506. data/lib/fog/glesys/models/compute/servers.rb +40 -0
  1507. data/lib/fog/glesys/models/compute/template.rb +25 -0
  1508. data/lib/fog/glesys/models/compute/templates.rb +22 -0
  1509. data/lib/fog/glesys/requests/compute/create.rb +15 -0
  1510. data/lib/fog/glesys/requests/compute/destroy.rb +18 -0
  1511. data/lib/fog/glesys/requests/compute/ip_add.rb +14 -0
  1512. data/lib/fog/glesys/requests/compute/ip_details.rb +14 -0
  1513. data/lib/fog/glesys/requests/compute/ip_list_free.rb +14 -0
  1514. data/lib/fog/glesys/requests/compute/ip_list_own.rb +14 -0
  1515. data/lib/fog/glesys/requests/compute/ip_release.rb +14 -0
  1516. data/lib/fog/glesys/requests/compute/ip_remove.rb +14 -0
  1517. data/lib/fog/glesys/requests/compute/ip_take.rb +14 -0
  1518. data/lib/fog/glesys/requests/compute/list_servers.rb +19 -0
  1519. data/lib/fog/glesys/requests/compute/reboot.rb +14 -0
  1520. data/lib/fog/glesys/requests/compute/server_details.rb +14 -0
  1521. data/lib/fog/glesys/requests/compute/server_status.rb +14 -0
  1522. data/lib/fog/glesys/requests/compute/start.rb +14 -0
  1523. data/lib/fog/glesys/requests/compute/stop.rb +14 -0
  1524. data/lib/fog/glesys/requests/compute/template_list.rb +14 -0
  1525. data/lib/fog/go_grid.rb +11 -0
  1526. data/lib/fog/go_grid/compute.rb +116 -0
  1527. data/lib/fog/go_grid/models/compute/image.rb +60 -0
  1528. data/lib/fog/go_grid/models/compute/images.rb +33 -0
  1529. data/lib/fog/go_grid/models/compute/password.rb +50 -0
  1530. data/lib/fog/go_grid/models/compute/passwords.rb +36 -0
  1531. data/lib/fog/go_grid/models/compute/server.rb +102 -0
  1532. data/lib/fog/go_grid/models/compute/servers.rb +36 -0
  1533. data/lib/fog/go_grid/requests/compute/common_lookup_list.rb +28 -0
  1534. data/lib/fog/go_grid/requests/compute/grid_image_get.rb +41 -0
  1535. data/lib/fog/go_grid/requests/compute/grid_image_list.rb +44 -0
  1536. data/lib/fog/go_grid/requests/compute/grid_ip_list.rb +30 -0
  1537. data/lib/fog/go_grid/requests/compute/grid_loadbalancer_list.rb +28 -0
  1538. data/lib/fog/go_grid/requests/compute/grid_server_add.rb +36 -0
  1539. data/lib/fog/go_grid/requests/compute/grid_server_delete.rb +25 -0
  1540. data/lib/fog/go_grid/requests/compute/grid_server_get.rb +25 -0
  1541. data/lib/fog/go_grid/requests/compute/grid_server_list.rb +30 -0
  1542. data/lib/fog/go_grid/requests/compute/grid_server_power.rb +26 -0
  1543. data/lib/fog/go_grid/requests/compute/support_password_get.rb +28 -0
  1544. data/lib/fog/go_grid/requests/compute/support_password_list.rb +30 -0
  1545. data/lib/fog/google.rb +23 -0
  1546. data/lib/fog/google/models/storage/directories.rb +43 -0
  1547. data/lib/fog/google/models/storage/directory.rb +78 -0
  1548. data/lib/fog/google/models/storage/file.rb +142 -0
  1549. data/lib/fog/google/models/storage/files.rb +103 -0
  1550. data/lib/fog/google/parsers/storage/access_control_list.rb +48 -0
  1551. data/lib/fog/google/parsers/storage/copy_object.rb +22 -0
  1552. data/lib/fog/google/parsers/storage/get_bucket.rb +62 -0
  1553. data/lib/fog/google/parsers/storage/get_bucket_logging.rb +40 -0
  1554. data/lib/fog/google/parsers/storage/get_bucket_object_versions.rb +88 -0
  1555. data/lib/fog/google/parsers/storage/get_bucket_versioning.rb +24 -0
  1556. data/lib/fog/google/parsers/storage/get_request_payment.rb +20 -0
  1557. data/lib/fog/google/parsers/storage/get_service.rb +32 -0
  1558. data/lib/fog/google/requests/storage/copy_object.rb +72 -0
  1559. data/lib/fog/google/requests/storage/delete_bucket.rb +46 -0
  1560. data/lib/fog/google/requests/storage/delete_object.rb +50 -0
  1561. data/lib/fog/google/requests/storage/get_bucket.rb +110 -0
  1562. data/lib/fog/google/requests/storage/get_bucket_acl.rb +63 -0
  1563. data/lib/fog/google/requests/storage/get_object.rb +112 -0
  1564. data/lib/fog/google/requests/storage/get_object_acl.rb +74 -0
  1565. data/lib/fog/google/requests/storage/get_object_http_url.rb +51 -0
  1566. data/lib/fog/google/requests/storage/get_object_https_url.rb +51 -0
  1567. data/lib/fog/google/requests/storage/get_object_torrent.rb +47 -0
  1568. data/lib/fog/google/requests/storage/get_object_url.rb +37 -0
  1569. data/lib/fog/google/requests/storage/get_service.rb +53 -0
  1570. data/lib/fog/google/requests/storage/head_object.rb +64 -0
  1571. data/lib/fog/google/requests/storage/put_bucket.rb +75 -0
  1572. data/lib/fog/google/requests/storage/put_bucket_acl.rb +73 -0
  1573. data/lib/fog/google/requests/storage/put_object.rb +93 -0
  1574. data/lib/fog/google/requests/storage/put_object_url.rb +54 -0
  1575. data/lib/fog/google/storage.rb +271 -0
  1576. data/lib/fog/hp.rb +234 -0
  1577. data/lib/fog/hp/README_HP.rdoc +60 -0
  1578. data/lib/fog/hp/cdn.rb +131 -0
  1579. data/lib/fog/hp/compute.rb +182 -0
  1580. data/lib/fog/hp/models/compute/address.rb +71 -0
  1581. data/lib/fog/hp/models/compute/addresses.rb +29 -0
  1582. data/lib/fog/hp/models/compute/flavor.rb +24 -0
  1583. data/lib/fog/hp/models/compute/flavors.rb +28 -0
  1584. data/lib/fog/hp/models/compute/image.rb +37 -0
  1585. data/lib/fog/hp/models/compute/images.rb +34 -0
  1586. data/lib/fog/hp/models/compute/key_pair.rb +59 -0
  1587. data/lib/fog/hp/models/compute/key_pairs.rb +31 -0
  1588. data/lib/fog/hp/models/compute/security_group.rb +50 -0
  1589. data/lib/fog/hp/models/compute/security_groups.rb +29 -0
  1590. data/lib/fog/hp/models/compute/server.rb +229 -0
  1591. data/lib/fog/hp/models/compute/servers.rb +36 -0
  1592. data/lib/fog/hp/models/storage/directories.rb +50 -0
  1593. data/lib/fog/hp/models/storage/directory.rb +160 -0
  1594. data/lib/fog/hp/models/storage/file.rb +87 -0
  1595. data/lib/fog/hp/models/storage/files.rb +103 -0
  1596. data/lib/fog/hp/requests/cdn/delete_container.rb +38 -0
  1597. data/lib/fog/hp/requests/cdn/get_containers.rb +44 -0
  1598. data/lib/fog/hp/requests/cdn/head_container.rb +50 -0
  1599. data/lib/fog/hp/requests/cdn/post_container.rb +52 -0
  1600. data/lib/fog/hp/requests/cdn/put_container.rb +53 -0
  1601. data/lib/fog/hp/requests/compute/allocate_address.rb +49 -0
  1602. data/lib/fog/hp/requests/compute/associate_address.rb +42 -0
  1603. data/lib/fog/hp/requests/compute/change_password_server.rb +33 -0
  1604. data/lib/fog/hp/requests/compute/confirm_resized_server.rb +34 -0
  1605. data/lib/fog/hp/requests/compute/create_image.rb +63 -0
  1606. data/lib/fog/hp/requests/compute/create_key_pair.rb +81 -0
  1607. data/lib/fog/hp/requests/compute/create_security_group.rb +83 -0
  1608. data/lib/fog/hp/requests/compute/create_security_group_rule.rb +75 -0
  1609. data/lib/fog/hp/requests/compute/create_server.rb +140 -0
  1610. data/lib/fog/hp/requests/compute/delete_image.rb +45 -0
  1611. data/lib/fog/hp/requests/compute/delete_key_pair.rb +39 -0
  1612. data/lib/fog/hp/requests/compute/delete_security_group.rb +41 -0
  1613. data/lib/fog/hp/requests/compute/delete_security_group_rule.rb +49 -0
  1614. data/lib/fog/hp/requests/compute/delete_server.rb +43 -0
  1615. data/lib/fog/hp/requests/compute/disassociate_address.rb +39 -0
  1616. data/lib/fog/hp/requests/compute/get_address.rb +45 -0
  1617. data/lib/fog/hp/requests/compute/get_flavor_details.rb +51 -0
  1618. data/lib/fog/hp/requests/compute/get_image_details.rb +43 -0
  1619. data/lib/fog/hp/requests/compute/get_security_group.rb +57 -0
  1620. data/lib/fog/hp/requests/compute/get_server_details.rb +52 -0
  1621. data/lib/fog/hp/requests/compute/list_addresses.rb +41 -0
  1622. data/lib/fog/hp/requests/compute/list_flavors.rb +44 -0
  1623. data/lib/fog/hp/requests/compute/list_flavors_detail.rb +46 -0
  1624. data/lib/fog/hp/requests/compute/list_images.rb +40 -0
  1625. data/lib/fog/hp/requests/compute/list_images_detail.rb +49 -0
  1626. data/lib/fog/hp/requests/compute/list_key_pairs.rb +44 -0
  1627. data/lib/fog/hp/requests/compute/list_security_groups.rb +54 -0
  1628. data/lib/fog/hp/requests/compute/list_server_addresses.rb +42 -0
  1629. data/lib/fog/hp/requests/compute/list_server_private_addresses.rb +58 -0
  1630. data/lib/fog/hp/requests/compute/list_server_public_addresses.rb +58 -0
  1631. data/lib/fog/hp/requests/compute/list_servers.rb +41 -0
  1632. data/lib/fog/hp/requests/compute/list_servers_detail.rb +56 -0
  1633. data/lib/fog/hp/requests/compute/reboot_server.rb +34 -0
  1634. data/lib/fog/hp/requests/compute/rebuild_server.rb +32 -0
  1635. data/lib/fog/hp/requests/compute/release_address.rb +39 -0
  1636. data/lib/fog/hp/requests/compute/resize_server.rb +39 -0
  1637. data/lib/fog/hp/requests/compute/revert_resized_server.rb +35 -0
  1638. data/lib/fog/hp/requests/compute/server_action.rb +25 -0
  1639. data/lib/fog/hp/requests/compute/update_server.rb +42 -0
  1640. data/lib/fog/hp/requests/storage/delete_container.rb +43 -0
  1641. data/lib/fog/hp/requests/storage/delete_object.rb +44 -0
  1642. data/lib/fog/hp/requests/storage/get_container.rb +92 -0
  1643. data/lib/fog/hp/requests/storage/get_containers.rb +71 -0
  1644. data/lib/fog/hp/requests/storage/get_object.rb +83 -0
  1645. data/lib/fog/hp/requests/storage/head_container.rb +40 -0
  1646. data/lib/fog/hp/requests/storage/head_containers.rb +37 -0
  1647. data/lib/fog/hp/requests/storage/head_object.rb +35 -0
  1648. data/lib/fog/hp/requests/storage/put_container.rb +48 -0
  1649. data/lib/fog/hp/requests/storage/put_object.rb +94 -0
  1650. data/lib/fog/hp/storage.rb +202 -0
  1651. data/lib/fog/ibm.rb +176 -0
  1652. data/lib/fog/ibm/compute.rb +235 -0
  1653. data/lib/fog/ibm/models/compute/address.rb +62 -0
  1654. data/lib/fog/ibm/models/compute/addresses.rb +28 -0
  1655. data/lib/fog/ibm/models/compute/image.rb +70 -0
  1656. data/lib/fog/ibm/models/compute/images.rb +27 -0
  1657. data/lib/fog/ibm/models/compute/instance-type.rb +14 -0
  1658. data/lib/fog/ibm/models/compute/instance-types.rb +15 -0
  1659. data/lib/fog/ibm/models/compute/key.rb +35 -0
  1660. data/lib/fog/ibm/models/compute/keys.rb +35 -0
  1661. data/lib/fog/ibm/models/compute/location.rb +15 -0
  1662. data/lib/fog/ibm/models/compute/locations.rb +27 -0
  1663. data/lib/fog/ibm/models/compute/server.rb +193 -0
  1664. data/lib/fog/ibm/models/compute/servers.rb +27 -0
  1665. data/lib/fog/ibm/models/compute/vlan.rb +15 -0
  1666. data/lib/fog/ibm/models/compute/vlans.rb +28 -0
  1667. data/lib/fog/ibm/models/storage/offering.rb +18 -0
  1668. data/lib/fog/ibm/models/storage/offerings.rb +19 -0
  1669. data/lib/fog/ibm/models/storage/volume.rb +98 -0
  1670. data/lib/fog/ibm/models/storage/volumes.rb +27 -0
  1671. data/lib/fog/ibm/requests/compute/clone_image.rb +48 -0
  1672. data/lib/fog/ibm/requests/compute/create_address.rb +50 -0
  1673. data/lib/fog/ibm/requests/compute/create_image.rb +56 -0
  1674. data/lib/fog/ibm/requests/compute/create_instance.rb +80 -0
  1675. data/lib/fog/ibm/requests/compute/create_key.rb +61 -0
  1676. data/lib/fog/ibm/requests/compute/delete_address.rb +46 -0
  1677. data/lib/fog/ibm/requests/compute/delete_image.rb +43 -0
  1678. data/lib/fog/ibm/requests/compute/delete_instance.rb +52 -0
  1679. data/lib/fog/ibm/requests/compute/delete_key.rb +41 -0
  1680. data/lib/fog/ibm/requests/compute/get_image.rb +67 -0
  1681. data/lib/fog/ibm/requests/compute/get_image_agreement.rb +66 -0
  1682. data/lib/fog/ibm/requests/compute/get_image_manifest.rb +39 -0
  1683. data/lib/fog/ibm/requests/compute/get_instance.rb +76 -0
  1684. data/lib/fog/ibm/requests/compute/get_instance_logs.rb +25 -0
  1685. data/lib/fog/ibm/requests/compute/get_key.rb +49 -0
  1686. data/lib/fog/ibm/requests/compute/get_location.rb +55 -0
  1687. data/lib/fog/ibm/requests/compute/get_request.rb +78 -0
  1688. data/lib/fog/ibm/requests/compute/list_address_offerings.rb +58 -0
  1689. data/lib/fog/ibm/requests/compute/list_addresses.rb +53 -0
  1690. data/lib/fog/ibm/requests/compute/list_images.rb +58 -0
  1691. data/lib/fog/ibm/requests/compute/list_instances.rb +57 -0
  1692. data/lib/fog/ibm/requests/compute/list_keys.rb +57 -0
  1693. data/lib/fog/ibm/requests/compute/list_locations.rb +37 -0
  1694. data/lib/fog/ibm/requests/compute/list_vlans.rb +47 -0
  1695. data/lib/fog/ibm/requests/compute/modify_instance.rb +71 -0
  1696. data/lib/fog/ibm/requests/compute/modify_key.rb +52 -0
  1697. data/lib/fog/ibm/requests/storage/create_volume.rb +66 -0
  1698. data/lib/fog/ibm/requests/storage/delete_volume.rb +42 -0
  1699. data/lib/fog/ibm/requests/storage/get_volume.rb +72 -0
  1700. data/lib/fog/ibm/requests/storage/list_offerings.rb +76 -0
  1701. data/lib/fog/ibm/requests/storage/list_volumes.rb +47 -0
  1702. data/lib/fog/ibm/storage.rb +82 -0
  1703. data/lib/fog/identity.rb +24 -0
  1704. data/lib/fog/image.rb +24 -0
  1705. data/lib/fog/joyent.rb +8 -0
  1706. data/lib/fog/joyent/compute.rb +243 -0
  1707. data/lib/fog/joyent/errors.rb +90 -0
  1708. data/lib/fog/joyent/models/compute/flavor.rb +17 -0
  1709. data/lib/fog/joyent/models/compute/flavors.rb +25 -0
  1710. data/lib/fog/joyent/models/compute/image.rb +18 -0
  1711. data/lib/fog/joyent/models/compute/images.rb +25 -0
  1712. data/lib/fog/joyent/models/compute/key.rb +19 -0
  1713. data/lib/fog/joyent/models/compute/keys.rb +34 -0
  1714. data/lib/fog/joyent/models/compute/server.rb +116 -0
  1715. data/lib/fog/joyent/models/compute/servers.rb +35 -0
  1716. data/lib/fog/joyent/models/compute/snapshot.rb +45 -0
  1717. data/lib/fog/joyent/models/compute/snapshots.rb +37 -0
  1718. data/lib/fog/joyent/requests/compute/add_machine_tags.rb +20 -0
  1719. data/lib/fog/joyent/requests/compute/create_key.rb +56 -0
  1720. data/lib/fog/joyent/requests/compute/create_machine.rb +16 -0
  1721. data/lib/fog/joyent/requests/compute/create_machine_snapshot.rb +18 -0
  1722. data/lib/fog/joyent/requests/compute/delete_all_machine_metadata.rb +16 -0
  1723. data/lib/fog/joyent/requests/compute/delete_all_machine_tags.rb +15 -0
  1724. data/lib/fog/joyent/requests/compute/delete_key.rb +29 -0
  1725. data/lib/fog/joyent/requests/compute/delete_machine.rb +15 -0
  1726. data/lib/fog/joyent/requests/compute/delete_machine_metadata.rb +18 -0
  1727. data/lib/fog/joyent/requests/compute/delete_machine_snapshot.rb +21 -0
  1728. data/lib/fog/joyent/requests/compute/delete_machine_tag.rb +15 -0
  1729. data/lib/fog/joyent/requests/compute/get_dataset.rb +28 -0
  1730. data/lib/fog/joyent/requests/compute/get_key.rb +29 -0
  1731. data/lib/fog/joyent/requests/compute/get_machine.rb +29 -0
  1732. data/lib/fog/joyent/requests/compute/get_machine_metadata.rb +25 -0
  1733. data/lib/fog/joyent/requests/compute/get_machine_snapshot.rb +14 -0
  1734. data/lib/fog/joyent/requests/compute/get_machine_tag.rb +19 -0
  1735. data/lib/fog/joyent/requests/compute/get_package.rb +33 -0
  1736. data/lib/fog/joyent/requests/compute/list_datacenters.rb +17 -0
  1737. data/lib/fog/joyent/requests/compute/list_datasets.rb +24 -0
  1738. data/lib/fog/joyent/requests/compute/list_keys.rb +25 -0
  1739. data/lib/fog/joyent/requests/compute/list_machine_snapshots.rb +14 -0
  1740. data/lib/fog/joyent/requests/compute/list_machine_tags.rb +20 -0
  1741. data/lib/fog/joyent/requests/compute/list_machines.rb +25 -0
  1742. data/lib/fog/joyent/requests/compute/list_packages.rb +36 -0
  1743. data/lib/fog/joyent/requests/compute/reboot_machine.rb +15 -0
  1744. data/lib/fog/joyent/requests/compute/resize_machine.rb +13 -0
  1745. data/lib/fog/joyent/requests/compute/start_machine.rb +16 -0
  1746. data/lib/fog/joyent/requests/compute/start_machine_from_snapshot.rb +15 -0
  1747. data/lib/fog/joyent/requests/compute/stop_machine.rb +16 -0
  1748. data/lib/fog/joyent/requests/compute/update_machine_metadata.rb +15 -0
  1749. data/lib/fog/libvirt.rb +11 -0
  1750. data/lib/fog/libvirt/compute.rb +136 -0
  1751. data/lib/fog/libvirt/models/compute/README.md +76 -0
  1752. data/lib/fog/libvirt/models/compute/interface.rb +28 -0
  1753. data/lib/fog/libvirt/models/compute/interfaces.rb +24 -0
  1754. data/lib/fog/libvirt/models/compute/network.rb +34 -0
  1755. data/lib/fog/libvirt/models/compute/networks.rb +24 -0
  1756. data/lib/fog/libvirt/models/compute/nic.rb +54 -0
  1757. data/lib/fog/libvirt/models/compute/nics.rb +16 -0
  1758. data/lib/fog/libvirt/models/compute/node.rb +34 -0
  1759. data/lib/fog/libvirt/models/compute/nodes.rb +23 -0
  1760. data/lib/fog/libvirt/models/compute/pool.rb +88 -0
  1761. data/lib/fog/libvirt/models/compute/pools.rb +24 -0
  1762. data/lib/fog/libvirt/models/compute/server.rb +424 -0
  1763. data/lib/fog/libvirt/models/compute/servers.rb +24 -0
  1764. data/lib/fog/libvirt/models/compute/templates/network.xml.erb +6 -0
  1765. data/lib/fog/libvirt/models/compute/templates/pool.xml.erb +6 -0
  1766. data/lib/fog/libvirt/models/compute/templates/server.xml.erb +53 -0
  1767. data/lib/fog/libvirt/models/compute/templates/volume.xml.erb +14 -0
  1768. data/lib/fog/libvirt/models/compute/util/uri.rb +145 -0
  1769. data/lib/fog/libvirt/models/compute/util/util.rb +33 -0
  1770. data/lib/fog/libvirt/models/compute/volume.rb +108 -0
  1771. data/lib/fog/libvirt/models/compute/volumes.rb +24 -0
  1772. data/lib/fog/libvirt/requests/compute/create_domain.rb +17 -0
  1773. data/lib/fog/libvirt/requests/compute/create_volume.rb +17 -0
  1774. data/lib/fog/libvirt/requests/compute/define_domain.rb +17 -0
  1775. data/lib/fog/libvirt/requests/compute/define_pool.rb +17 -0
  1776. data/lib/fog/libvirt/requests/compute/destroy_interface.rb +18 -0
  1777. data/lib/fog/libvirt/requests/compute/destroy_network.rb +17 -0
  1778. data/lib/fog/libvirt/requests/compute/get_node_info.rb +39 -0
  1779. data/lib/fog/libvirt/requests/compute/list_domains.rb +106 -0
  1780. data/lib/fog/libvirt/requests/compute/list_interfaces.rb +59 -0
  1781. data/lib/fog/libvirt/requests/compute/list_networks.rb +58 -0
  1782. data/lib/fog/libvirt/requests/compute/list_pool_volumes.rb +21 -0
  1783. data/lib/fog/libvirt/requests/compute/list_pools.rb +72 -0
  1784. data/lib/fog/libvirt/requests/compute/list_volumes.rb +89 -0
  1785. data/lib/fog/libvirt/requests/compute/mock_files/domain.xml +40 -0
  1786. data/lib/fog/libvirt/requests/compute/pool_action.rb +19 -0
  1787. data/lib/fog/libvirt/requests/compute/update_display.rb +31 -0
  1788. data/lib/fog/libvirt/requests/compute/vm_action.rb +19 -0
  1789. data/lib/fog/libvirt/requests/compute/volume_action.rb +18 -0
  1790. data/lib/fog/linode.rb +10 -0
  1791. data/lib/fog/linode/compute.rb +118 -0
  1792. data/lib/fog/linode/dns.rb +93 -0
  1793. data/lib/fog/linode/models/compute/data_center.rb +12 -0
  1794. data/lib/fog/linode/models/compute/data_centers.rb +26 -0
  1795. data/lib/fog/linode/models/compute/disk.rb +62 -0
  1796. data/lib/fog/linode/models/compute/disks.rb +40 -0
  1797. data/lib/fog/linode/models/compute/flavor.rb +23 -0
  1798. data/lib/fog/linode/models/compute/flavors.rb +32 -0
  1799. data/lib/fog/linode/models/compute/image.rb +14 -0
  1800. data/lib/fog/linode/models/compute/images.rb +33 -0
  1801. data/lib/fog/linode/models/compute/ip.rb +30 -0
  1802. data/lib/fog/linode/models/compute/ips.rb +40 -0
  1803. data/lib/fog/linode/models/compute/kernel.rb +12 -0
  1804. data/lib/fog/linode/models/compute/kernels.rb +32 -0
  1805. data/lib/fog/linode/models/compute/server.rb +98 -0
  1806. data/lib/fog/linode/models/compute/servers.rb +32 -0
  1807. data/lib/fog/linode/models/compute/stack_script.rb +13 -0
  1808. data/lib/fog/linode/models/compute/stack_scripts.rb +32 -0
  1809. data/lib/fog/linode/models/dns/record.rb +72 -0
  1810. data/lib/fog/linode/models/dns/records.rb +37 -0
  1811. data/lib/fog/linode/models/dns/zone.rb +84 -0
  1812. data/lib/fog/linode/models/dns/zones.rb +29 -0
  1813. data/lib/fog/linode/requests/compute/avail_datacenters.rb +43 -0
  1814. data/lib/fog/linode/requests/compute/avail_distributions.rb +67 -0
  1815. data/lib/fog/linode/requests/compute/avail_kernels.rb +65 -0
  1816. data/lib/fog/linode/requests/compute/avail_linodeplans.rb +69 -0
  1817. data/lib/fog/linode/requests/compute/avail_stackscripts.rb +63 -0
  1818. data/lib/fog/linode/requests/compute/linode_boot.rb +30 -0
  1819. data/lib/fog/linode/requests/compute/linode_config_create.rb +36 -0
  1820. data/lib/fog/linode/requests/compute/linode_config_list.rb +71 -0
  1821. data/lib/fog/linode/requests/compute/linode_create.rb +46 -0
  1822. data/lib/fog/linode/requests/compute/linode_delete.rb +41 -0
  1823. data/lib/fog/linode/requests/compute/linode_disk_create.rb +37 -0
  1824. data/lib/fog/linode/requests/compute/linode_disk_createfromdistribution.rb +38 -0
  1825. data/lib/fog/linode/requests/compute/linode_disk_createfromstackscript.rb +26 -0
  1826. data/lib/fog/linode/requests/compute/linode_disk_delete.rb +35 -0
  1827. data/lib/fog/linode/requests/compute/linode_disk_list.rb +60 -0
  1828. data/lib/fog/linode/requests/compute/linode_ip_addprivate.rb +17 -0
  1829. data/lib/fog/linode/requests/compute/linode_ip_list.rb +59 -0
  1830. data/lib/fog/linode/requests/compute/linode_list.rb +83 -0
  1831. data/lib/fog/linode/requests/compute/linode_reboot.rb +41 -0
  1832. data/lib/fog/linode/requests/compute/linode_shutdown.rb +30 -0
  1833. data/lib/fog/linode/requests/compute/linode_update.rb +30 -0
  1834. data/lib/fog/linode/requests/compute/stackscript_list.rb +32 -0
  1835. data/lib/fog/linode/requests/dns/domain_create.rb +43 -0
  1836. data/lib/fog/linode/requests/dns/domain_delete.rb +27 -0
  1837. data/lib/fog/linode/requests/dns/domain_list.rb +42 -0
  1838. data/lib/fog/linode/requests/dns/domain_resource_create.rb +44 -0
  1839. data/lib/fog/linode/requests/dns/domain_resource_delete.rb +28 -0
  1840. data/lib/fog/linode/requests/dns/domain_resource_list.rb +43 -0
  1841. data/lib/fog/linode/requests/dns/domain_resource_update.rb +46 -0
  1842. data/lib/fog/linode/requests/dns/domain_update.rb +40 -0
  1843. data/lib/fog/local.rb +11 -0
  1844. data/lib/fog/local/models/storage/directories.rb +33 -0
  1845. data/lib/fog/local/models/storage/directory.rb +57 -0
  1846. data/lib/fog/local/models/storage/file.rb +131 -0
  1847. data/lib/fog/local/models/storage/files.rb +87 -0
  1848. data/lib/fog/local/storage.rb +103 -0
  1849. data/lib/fog/ninefold.rb +12 -0
  1850. data/lib/fog/ninefold/compute.rb +140 -0
  1851. data/lib/fog/ninefold/models/compute/address.rb +103 -0
  1852. data/lib/fog/ninefold/models/compute/addresses.rb +31 -0
  1853. data/lib/fog/ninefold/models/compute/flavor.rb +29 -0
  1854. data/lib/fog/ninefold/models/compute/flavors.rb +30 -0
  1855. data/lib/fog/ninefold/models/compute/image.rb +42 -0
  1856. data/lib/fog/ninefold/models/compute/images.rb +30 -0
  1857. data/lib/fog/ninefold/models/compute/ip_forwarding_rule.rb +79 -0
  1858. data/lib/fog/ninefold/models/compute/ip_forwarding_rules.rb +31 -0
  1859. data/lib/fog/ninefold/models/compute/server.rb +185 -0
  1860. data/lib/fog/ninefold/models/compute/servers.rb +31 -0
  1861. data/lib/fog/ninefold/models/storage/directories.rb +48 -0
  1862. data/lib/fog/ninefold/models/storage/directory.rb +53 -0
  1863. data/lib/fog/ninefold/models/storage/file.rb +108 -0
  1864. data/lib/fog/ninefold/models/storage/files.rb +73 -0
  1865. data/lib/fog/ninefold/requests/compute/associate_ip_address.rb +14 -0
  1866. data/lib/fog/ninefold/requests/compute/change_service_for_virtual_machine.rb +14 -0
  1867. data/lib/fog/ninefold/requests/compute/create_ip_forwarding_rule.rb +14 -0
  1868. data/lib/fog/ninefold/requests/compute/delete_ip_forwarding_rule.rb +14 -0
  1869. data/lib/fog/ninefold/requests/compute/deploy_virtual_machine.rb +14 -0
  1870. data/lib/fog/ninefold/requests/compute/destroy_virtual_machine.rb +14 -0
  1871. data/lib/fog/ninefold/requests/compute/disable_static_nat.rb +14 -0
  1872. data/lib/fog/ninefold/requests/compute/disassociate_ip_address.rb +14 -0
  1873. data/lib/fog/ninefold/requests/compute/enable_static_nat.rb +14 -0
  1874. data/lib/fog/ninefold/requests/compute/list_accounts.rb +14 -0
  1875. data/lib/fog/ninefold/requests/compute/list_async_jobs.rb +14 -0
  1876. data/lib/fog/ninefold/requests/compute/list_capabilities.rb +14 -0
  1877. data/lib/fog/ninefold/requests/compute/list_disk_offerings.rb +14 -0
  1878. data/lib/fog/ninefold/requests/compute/list_events.rb +14 -0
  1879. data/lib/fog/ninefold/requests/compute/list_hypervisors.rb +14 -0
  1880. data/lib/fog/ninefold/requests/compute/list_ip_forwarding_rules.rb +14 -0
  1881. data/lib/fog/ninefold/requests/compute/list_network_offerings.rb +14 -0
  1882. data/lib/fog/ninefold/requests/compute/list_networks.rb +14 -0
  1883. data/lib/fog/ninefold/requests/compute/list_public_ip_addresses.rb +14 -0
  1884. data/lib/fog/ninefold/requests/compute/list_resource_limits.rb +14 -0
  1885. data/lib/fog/ninefold/requests/compute/list_service_offerings.rb +14 -0
  1886. data/lib/fog/ninefold/requests/compute/list_templates.rb +14 -0
  1887. data/lib/fog/ninefold/requests/compute/list_virtual_machines.rb +14 -0
  1888. data/lib/fog/ninefold/requests/compute/list_zones.rb +14 -0
  1889. data/lib/fog/ninefold/requests/compute/query_async_job_result.rb +14 -0
  1890. data/lib/fog/ninefold/requests/compute/reboot_virtual_machine.rb +14 -0
  1891. data/lib/fog/ninefold/requests/compute/reset_password_for_virtual_machine.rb +14 -0
  1892. data/lib/fog/ninefold/requests/compute/start_virtual_machine.rb +14 -0
  1893. data/lib/fog/ninefold/requests/compute/stop_virtual_machine.rb +14 -0
  1894. data/lib/fog/ninefold/requests/compute/update_virtual_machine.rb +14 -0
  1895. data/lib/fog/ninefold/requests/storage/delete_namespace.rb +19 -0
  1896. data/lib/fog/ninefold/requests/storage/get_namespace.rb +20 -0
  1897. data/lib/fog/ninefold/requests/storage/head_namespace.rb +20 -0
  1898. data/lib/fog/ninefold/requests/storage/post_namespace.rb +20 -0
  1899. data/lib/fog/ninefold/requests/storage/put_namespace.rb +20 -0
  1900. data/lib/fog/ninefold/storage.rb +154 -0
  1901. data/lib/fog/openstack.rb +176 -0
  1902. data/lib/fog/openstack/compute.rb +369 -0
  1903. data/lib/fog/openstack/identity.rb +226 -0
  1904. data/lib/fog/openstack/image.rb +203 -0
  1905. data/lib/fog/openstack/models/compute/address.rb +71 -0
  1906. data/lib/fog/openstack/models/compute/addresses.rb +33 -0
  1907. data/lib/fog/openstack/models/compute/flavor.rb +40 -0
  1908. data/lib/fog/openstack/models/compute/flavors.rb +28 -0
  1909. data/lib/fog/openstack/models/compute/host.rb +28 -0
  1910. data/lib/fog/openstack/models/compute/hosts.rb +32 -0
  1911. data/lib/fog/openstack/models/compute/image.rb +57 -0
  1912. data/lib/fog/openstack/models/compute/images.rb +33 -0
  1913. data/lib/fog/openstack/models/compute/key_pair.rb +60 -0
  1914. data/lib/fog/openstack/models/compute/key_pairs.rb +31 -0
  1915. data/lib/fog/openstack/models/compute/metadata.rb +69 -0
  1916. data/lib/fog/openstack/models/compute/metadatum.rb +29 -0
  1917. data/lib/fog/openstack/models/compute/network.rb +13 -0
  1918. data/lib/fog/openstack/models/compute/networks.rb +29 -0
  1919. data/lib/fog/openstack/models/compute/security_group.rb +44 -0
  1920. data/lib/fog/openstack/models/compute/security_groups.rb +27 -0
  1921. data/lib/fog/openstack/models/compute/server.rb +278 -0
  1922. data/lib/fog/openstack/models/compute/servers.rb +44 -0
  1923. data/lib/fog/openstack/models/compute/snapshot.rb +43 -0
  1924. data/lib/fog/openstack/models/compute/snapshots.rb +26 -0
  1925. data/lib/fog/openstack/models/compute/tenant.rb +24 -0
  1926. data/lib/fog/openstack/models/compute/tenants.rb +20 -0
  1927. data/lib/fog/openstack/models/compute/volume.rb +58 -0
  1928. data/lib/fog/openstack/models/compute/volumes.rb +26 -0
  1929. data/lib/fog/openstack/models/identity/role.rb +50 -0
  1930. data/lib/fog/openstack/models/identity/roles.rb +21 -0
  1931. data/lib/fog/openstack/models/identity/tenant.rb +62 -0
  1932. data/lib/fog/openstack/models/identity/tenants.rb +27 -0
  1933. data/lib/fog/openstack/models/identity/user.rb +64 -0
  1934. data/lib/fog/openstack/models/identity/users.rb +30 -0
  1935. data/lib/fog/openstack/models/image/image.rb +85 -0
  1936. data/lib/fog/openstack/models/image/images.rb +60 -0
  1937. data/lib/fog/openstack/models/meta_parent.rb +33 -0
  1938. data/lib/fog/openstack/models/volume/volume.rb +46 -0
  1939. data/lib/fog/openstack/models/volume/volumes.rb +27 -0
  1940. data/lib/fog/openstack/requests/compute/add_fixed_ip.rb +29 -0
  1941. data/lib/fog/openstack/requests/compute/allocate_address.rb +42 -0
  1942. data/lib/fog/openstack/requests/compute/associate_address.rb +27 -0
  1943. data/lib/fog/openstack/requests/compute/attach_volume.rb +28 -0
  1944. data/lib/fog/openstack/requests/compute/boot_from_snapshot.rb +41 -0
  1945. data/lib/fog/openstack/requests/compute/change_server_password.rb +24 -0
  1946. data/lib/fog/openstack/requests/compute/confirm_resize_server.rb +24 -0
  1947. data/lib/fog/openstack/requests/compute/create_flavor.rb +82 -0
  1948. data/lib/fog/openstack/requests/compute/create_image.rb +49 -0
  1949. data/lib/fog/openstack/requests/compute/create_key_pair.rb +49 -0
  1950. data/lib/fog/openstack/requests/compute/create_security_group.rb +47 -0
  1951. data/lib/fog/openstack/requests/compute/create_security_group_rule.rb +56 -0
  1952. data/lib/fog/openstack/requests/compute/create_server.rb +78 -0
  1953. data/lib/fog/openstack/requests/compute/create_volume.rb +54 -0
  1954. data/lib/fog/openstack/requests/compute/create_volume_snapshot.rb +32 -0
  1955. data/lib/fog/openstack/requests/compute/delete_flavor.rb +28 -0
  1956. data/lib/fog/openstack/requests/compute/delete_image.rb +40 -0
  1957. data/lib/fog/openstack/requests/compute/delete_key_pair.rb +31 -0
  1958. data/lib/fog/openstack/requests/compute/delete_metadata.rb +28 -0
  1959. data/lib/fog/openstack/requests/compute/delete_security_group.rb +31 -0
  1960. data/lib/fog/openstack/requests/compute/delete_security_group_rule.rb +31 -0
  1961. data/lib/fog/openstack/requests/compute/delete_server.rb +38 -0
  1962. data/lib/fog/openstack/requests/compute/delete_snapshot.rb +26 -0
  1963. data/lib/fog/openstack/requests/compute/delete_volume.rb +26 -0
  1964. data/lib/fog/openstack/requests/compute/detach_volume.rb +21 -0
  1965. data/lib/fog/openstack/requests/compute/disassociate_address.rb +27 -0
  1966. data/lib/fog/openstack/requests/compute/get_address.rb +41 -0
  1967. data/lib/fog/openstack/requests/compute/get_console_output.rb +28 -0
  1968. data/lib/fog/openstack/requests/compute/get_flavor_details.rb +43 -0
  1969. data/lib/fog/openstack/requests/compute/get_host_details.rb +74 -0
  1970. data/lib/fog/openstack/requests/compute/get_image_details.rb +33 -0
  1971. data/lib/fog/openstack/requests/compute/get_metadata.rb +29 -0
  1972. data/lib/fog/openstack/requests/compute/get_quota.rb +31 -0
  1973. data/lib/fog/openstack/requests/compute/get_quota_defaults.rb +31 -0
  1974. data/lib/fog/openstack/requests/compute/get_security_group.rb +49 -0
  1975. data/lib/fog/openstack/requests/compute/get_server_details.rb +32 -0
  1976. data/lib/fog/openstack/requests/compute/get_server_volumes.rb +23 -0
  1977. data/lib/fog/openstack/requests/compute/get_snapshot_details.rb +39 -0
  1978. data/lib/fog/openstack/requests/compute/get_usage.rb +53 -0
  1979. data/lib/fog/openstack/requests/compute/get_vnc_console.rb +40 -0
  1980. data/lib/fog/openstack/requests/compute/get_volume_details.rb +42 -0
  1981. data/lib/fog/openstack/requests/compute/list_address_pools.rb +23 -0
  1982. data/lib/fog/openstack/requests/compute/list_addresses.rb +32 -0
  1983. data/lib/fog/openstack/requests/compute/list_all_addresses.rb +64 -0
  1984. data/lib/fog/openstack/requests/compute/list_flavors.rb +38 -0
  1985. data/lib/fog/openstack/requests/compute/list_flavors_detail.rb +38 -0
  1986. data/lib/fog/openstack/requests/compute/list_hosts.rb +32 -0
  1987. data/lib/fog/openstack/requests/compute/list_images.rb +33 -0
  1988. data/lib/fog/openstack/requests/compute/list_images_detail.rb +39 -0
  1989. data/lib/fog/openstack/requests/compute/list_key_pairs.rb +39 -0
  1990. data/lib/fog/openstack/requests/compute/list_metadata.rb +28 -0
  1991. data/lib/fog/openstack/requests/compute/list_private_addresses.rb +32 -0
  1992. data/lib/fog/openstack/requests/compute/list_public_addresses.rb +32 -0
  1993. data/lib/fog/openstack/requests/compute/list_security_groups.rb +74 -0
  1994. data/lib/fog/openstack/requests/compute/list_servers.rb +37 -0
  1995. data/lib/fog/openstack/requests/compute/list_servers_detail.rb +44 -0
  1996. data/lib/fog/openstack/requests/compute/list_snapshots.rb +32 -0
  1997. data/lib/fog/openstack/requests/compute/list_tenants.rb +43 -0
  1998. data/lib/fog/openstack/requests/compute/list_usages.rb +43 -0
  1999. data/lib/fog/openstack/requests/compute/list_volumes.rb +51 -0
  2000. data/lib/fog/openstack/requests/compute/live_migrate_server.rb +31 -0
  2001. data/lib/fog/openstack/requests/compute/migrate_server.rb +24 -0
  2002. data/lib/fog/openstack/requests/compute/pause_server.rb +24 -0
  2003. data/lib/fog/openstack/requests/compute/reboot_server.rb +24 -0
  2004. data/lib/fog/openstack/requests/compute/rebuild_server.rb +31 -0
  2005. data/lib/fog/openstack/requests/compute/release_address.rb +22 -0
  2006. data/lib/fog/openstack/requests/compute/remove_fixed_ip.rb +29 -0
  2007. data/lib/fog/openstack/requests/compute/rescue_server.rb +24 -0
  2008. data/lib/fog/openstack/requests/compute/resize_server.rb +24 -0
  2009. data/lib/fog/openstack/requests/compute/resume_server.rb +24 -0
  2010. data/lib/fog/openstack/requests/compute/revert_resize_server.rb +30 -0
  2011. data/lib/fog/openstack/requests/compute/server_action.rb +18 -0
  2012. data/lib/fog/openstack/requests/compute/server_actions.rb +27 -0
  2013. data/lib/fog/openstack/requests/compute/server_diagnostics.rb +25 -0
  2014. data/lib/fog/openstack/requests/compute/set_metadata.rb +45 -0
  2015. data/lib/fog/openstack/requests/compute/set_tenant.rb +21 -0
  2016. data/lib/fog/openstack/requests/compute/suspend_server.rb +24 -0
  2017. data/lib/fog/openstack/requests/compute/unpause_server.rb +24 -0
  2018. data/lib/fog/openstack/requests/compute/update_metadata.rb +46 -0
  2019. data/lib/fog/openstack/requests/compute/update_quota.rb +32 -0
  2020. data/lib/fog/openstack/requests/compute/update_server.rb +35 -0
  2021. data/lib/fog/openstack/requests/identity/add_user_to_tenant.rb +29 -0
  2022. data/lib/fog/openstack/requests/identity/check_token.rb +23 -0
  2023. data/lib/fog/openstack/requests/identity/create_role.rb +37 -0
  2024. data/lib/fog/openstack/requests/identity/create_tenant.rb +34 -0
  2025. data/lib/fog/openstack/requests/identity/create_user.rb +47 -0
  2026. data/lib/fog/openstack/requests/identity/create_user_role.rb +26 -0
  2027. data/lib/fog/openstack/requests/identity/delete_role.rb +32 -0
  2028. data/lib/fog/openstack/requests/identity/delete_tenant.rb +31 -0
  2029. data/lib/fog/openstack/requests/identity/delete_user.rb +32 -0
  2030. data/lib/fog/openstack/requests/identity/delete_user_role.rb +26 -0
  2031. data/lib/fog/openstack/requests/identity/get_role.rb +28 -0
  2032. data/lib/fog/openstack/requests/identity/get_tenant.rb +31 -0
  2033. data/lib/fog/openstack/requests/identity/get_tenants_by_id.rb +23 -0
  2034. data/lib/fog/openstack/requests/identity/get_tenants_by_name.rb +23 -0
  2035. data/lib/fog/openstack/requests/identity/get_user_by_id.rb +34 -0
  2036. data/lib/fog/openstack/requests/identity/get_user_by_name.rb +23 -0
  2037. data/lib/fog/openstack/requests/identity/list_endpoints_for_token.rb +23 -0
  2038. data/lib/fog/openstack/requests/identity/list_roles.rb +29 -0
  2039. data/lib/fog/openstack/requests/identity/list_roles_for_user_on_tenant.rb +24 -0
  2040. data/lib/fog/openstack/requests/identity/list_tenants.rb +45 -0
  2041. data/lib/fog/openstack/requests/identity/list_user_global_roles.rb +22 -0
  2042. data/lib/fog/openstack/requests/identity/list_users.rb +25 -0
  2043. data/lib/fog/openstack/requests/identity/remove_user_from_tenant.rb +20 -0
  2044. data/lib/fog/openstack/requests/identity/update_tenant.rb +30 -0
  2045. data/lib/fog/openstack/requests/identity/update_user.rb +36 -0
  2046. data/lib/fog/openstack/requests/identity/validate_token.rb +23 -0
  2047. data/lib/fog/openstack/requests/image/add_member_to_image.rb +23 -0
  2048. data/lib/fog/openstack/requests/image/create_image.rb +79 -0
  2049. data/lib/fog/openstack/requests/image/delete_image.rb +27 -0
  2050. data/lib/fog/openstack/requests/image/get_image.rb +45 -0
  2051. data/lib/fog/openstack/requests/image/get_image_by_id.rb +32 -0
  2052. data/lib/fog/openstack/requests/image/get_image_members.rb +29 -0
  2053. data/lib/fog/openstack/requests/image/get_shared_images.rb +29 -0
  2054. data/lib/fog/openstack/requests/image/list_public_images.rb +50 -0
  2055. data/lib/fog/openstack/requests/image/list_public_images_detailed.rb +70 -0
  2056. data/lib/fog/openstack/requests/image/remove_member_from_image.rb +23 -0
  2057. data/lib/fog/openstack/requests/image/set_tenant.rb +21 -0
  2058. data/lib/fog/openstack/requests/image/update_image.rb +65 -0
  2059. data/lib/fog/openstack/requests/volume/create_volume.rb +54 -0
  2060. data/lib/fog/openstack/requests/volume/create_volume_snapshot.rb +32 -0
  2061. data/lib/fog/openstack/requests/volume/delete_snapshot.rb +26 -0
  2062. data/lib/fog/openstack/requests/volume/delete_volume.rb +26 -0
  2063. data/lib/fog/openstack/requests/volume/get_snapshot_details.rb +39 -0
  2064. data/lib/fog/openstack/requests/volume/get_volume_details.rb +42 -0
  2065. data/lib/fog/openstack/requests/volume/list_snapshots.rb +32 -0
  2066. data/lib/fog/openstack/requests/volume/list_volumes.rb +55 -0
  2067. data/lib/fog/openstack/requests/volume/set_tenant.rb +21 -0
  2068. data/lib/fog/openstack/volume.rb +204 -0
  2069. data/lib/fog/ovirt.rb +17 -0
  2070. data/lib/fog/ovirt/compute.rb +116 -0
  2071. data/lib/fog/ovirt/models/compute/cluster.rb +24 -0
  2072. data/lib/fog/ovirt/models/compute/clusters.rb +23 -0
  2073. data/lib/fog/ovirt/models/compute/interface.rb +22 -0
  2074. data/lib/fog/ovirt/models/compute/interfaces.rb +32 -0
  2075. data/lib/fog/ovirt/models/compute/server.rb +135 -0
  2076. data/lib/fog/ovirt/models/compute/servers.rb +30 -0
  2077. data/lib/fog/ovirt/models/compute/template.rb +60 -0
  2078. data/lib/fog/ovirt/models/compute/templates.rb +23 -0
  2079. data/lib/fog/ovirt/models/compute/volume.rb +35 -0
  2080. data/lib/fog/ovirt/models/compute/volumes.rb +32 -0
  2081. data/lib/fog/ovirt/requests/compute/add_interface.rb +23 -0
  2082. data/lib/fog/ovirt/requests/compute/add_volume.rb +23 -0
  2083. data/lib/fog/ovirt/requests/compute/create_vm.rb +20 -0
  2084. data/lib/fog/ovirt/requests/compute/datacenters.rb +22 -0
  2085. data/lib/fog/ovirt/requests/compute/destroy_interface.rb +25 -0
  2086. data/lib/fog/ovirt/requests/compute/destroy_vm.rb +22 -0
  2087. data/lib/fog/ovirt/requests/compute/destroy_volume.rb +25 -0
  2088. data/lib/fog/ovirt/requests/compute/get_cluster.rb +18 -0
  2089. data/lib/fog/ovirt/requests/compute/get_template.rb +18 -0
  2090. data/lib/fog/ovirt/requests/compute/get_virtual_machine.rb +18 -0
  2091. data/lib/fog/ovirt/requests/compute/list_clusters.rb +20 -0
  2092. data/lib/fog/ovirt/requests/compute/list_networks.rb +17 -0
  2093. data/lib/fog/ovirt/requests/compute/list_template_interfaces.rb +20 -0
  2094. data/lib/fog/ovirt/requests/compute/list_template_volumes.rb +20 -0
  2095. data/lib/fog/ovirt/requests/compute/list_templates.rb +20 -0
  2096. data/lib/fog/ovirt/requests/compute/list_virtual_machines.rb +20 -0
  2097. data/lib/fog/ovirt/requests/compute/list_vm_interfaces.rb +20 -0
  2098. data/lib/fog/ovirt/requests/compute/list_vm_volumes.rb +20 -0
  2099. data/lib/fog/ovirt/requests/compute/mock_files/cluster.xml +20 -0
  2100. data/lib/fog/ovirt/requests/compute/mock_files/clusters.xml +39 -0
  2101. data/lib/fog/ovirt/requests/compute/mock_files/data_centers.xml +17 -0
  2102. data/lib/fog/ovirt/requests/compute/mock_files/nics.xml +10 -0
  2103. data/lib/fog/ovirt/requests/compute/mock_files/storage_domains.xml +36 -0
  2104. data/lib/fog/ovirt/requests/compute/mock_files/template.xml +39 -0
  2105. data/lib/fog/ovirt/requests/compute/mock_files/templates.xml +110 -0
  2106. data/lib/fog/ovirt/requests/compute/mock_files/vm.xml +52 -0
  2107. data/lib/fog/ovirt/requests/compute/mock_files/vms.xml +152 -0
  2108. data/lib/fog/ovirt/requests/compute/mock_files/volumes.xml +40 -0
  2109. data/lib/fog/ovirt/requests/compute/storage_domains.rb +22 -0
  2110. data/lib/fog/ovirt/requests/compute/update_interface.rb +25 -0
  2111. data/lib/fog/ovirt/requests/compute/update_vm.rb +20 -0
  2112. data/lib/fog/ovirt/requests/compute/vm_action.rb +26 -0
  2113. data/lib/fog/ovirt/requests/compute/vm_ticket.rb +21 -0
  2114. data/lib/fog/providers.rb +33 -0
  2115. data/lib/fog/rackspace.rb +85 -0
  2116. data/lib/fog/rackspace/block_storage.rb +114 -0
  2117. data/lib/fog/rackspace/cdn.rb +100 -0
  2118. data/lib/fog/rackspace/compute.rb +262 -0
  2119. data/lib/fog/rackspace/compute_v2.rb +123 -0
  2120. data/lib/fog/rackspace/databases.rb +121 -0
  2121. data/lib/fog/rackspace/dns.rb +139 -0
  2122. data/lib/fog/rackspace/identity.rb +83 -0
  2123. data/lib/fog/rackspace/load_balancers.rb +161 -0
  2124. data/lib/fog/rackspace/models/block_storage/snapshot.rb +46 -0
  2125. data/lib/fog/rackspace/models/block_storage/snapshots.rb +25 -0
  2126. data/lib/fog/rackspace/models/block_storage/volume.rb +58 -0
  2127. data/lib/fog/rackspace/models/block_storage/volume_type.rb +14 -0
  2128. data/lib/fog/rackspace/models/block_storage/volume_types.rb +25 -0
  2129. data/lib/fog/rackspace/models/block_storage/volumes.rb +25 -0
  2130. data/lib/fog/rackspace/models/compute/flavor.rb +46 -0
  2131. data/lib/fog/rackspace/models/compute/flavors.rb +28 -0
  2132. data/lib/fog/rackspace/models/compute/image.rb +48 -0
  2133. data/lib/fog/rackspace/models/compute/images.rb +35 -0
  2134. data/lib/fog/rackspace/models/compute/server.rb +130 -0
  2135. data/lib/fog/rackspace/models/compute/servers.rb +36 -0
  2136. data/lib/fog/rackspace/models/compute_v2/attachment.rb +34 -0
  2137. data/lib/fog/rackspace/models/compute_v2/attachments.rb +25 -0
  2138. data/lib/fog/rackspace/models/compute_v2/flavor.rb +17 -0
  2139. data/lib/fog/rackspace/models/compute_v2/flavors.rb +25 -0
  2140. data/lib/fog/rackspace/models/compute_v2/image.rb +30 -0
  2141. data/lib/fog/rackspace/models/compute_v2/images.rb +25 -0
  2142. data/lib/fog/rackspace/models/compute_v2/server.rb +147 -0
  2143. data/lib/fog/rackspace/models/compute_v2/servers.rb +25 -0
  2144. data/lib/fog/rackspace/models/databases/database.rb +32 -0
  2145. data/lib/fog/rackspace/models/databases/databases.rb +31 -0
  2146. data/lib/fog/rackspace/models/databases/flavor.rb +15 -0
  2147. data/lib/fog/rackspace/models/databases/flavors.rb +25 -0
  2148. data/lib/fog/rackspace/models/databases/instance.rb +104 -0
  2149. data/lib/fog/rackspace/models/databases/instances.rb +25 -0
  2150. data/lib/fog/rackspace/models/databases/user.rb +32 -0
  2151. data/lib/fog/rackspace/models/databases/users.rb +31 -0
  2152. data/lib/fog/rackspace/models/dns/callback.rb +30 -0
  2153. data/lib/fog/rackspace/models/dns/record.rb +82 -0
  2154. data/lib/fog/rackspace/models/dns/records.rb +38 -0
  2155. data/lib/fog/rackspace/models/dns/zone.rb +67 -0
  2156. data/lib/fog/rackspace/models/dns/zones.rb +33 -0
  2157. data/lib/fog/rackspace/models/identity/credential.rb +13 -0
  2158. data/lib/fog/rackspace/models/identity/credentials.rb +32 -0
  2159. data/lib/fog/rackspace/models/identity/role.rb +14 -0
  2160. data/lib/fog/rackspace/models/identity/roles.rb +32 -0
  2161. data/lib/fog/rackspace/models/identity/tenant.rb +15 -0
  2162. data/lib/fog/rackspace/models/identity/tenants.rb +28 -0
  2163. data/lib/fog/rackspace/models/identity/user.rb +53 -0
  2164. data/lib/fog/rackspace/models/identity/users.rb +36 -0
  2165. data/lib/fog/rackspace/models/load_balancers/access_rule.rb +39 -0
  2166. data/lib/fog/rackspace/models/load_balancers/access_rules.rb +29 -0
  2167. data/lib/fog/rackspace/models/load_balancers/load_balancer.rb +250 -0
  2168. data/lib/fog/rackspace/models/load_balancers/load_balancers.rb +27 -0
  2169. data/lib/fog/rackspace/models/load_balancers/node.rb +58 -0
  2170. data/lib/fog/rackspace/models/load_balancers/nodes.rb +29 -0
  2171. data/lib/fog/rackspace/models/load_balancers/virtual_ip.rb +35 -0
  2172. data/lib/fog/rackspace/models/load_balancers/virtual_ips.rb +32 -0
  2173. data/lib/fog/rackspace/models/storage/directories.rb +43 -0
  2174. data/lib/fog/rackspace/models/storage/directory.rb +80 -0
  2175. data/lib/fog/rackspace/models/storage/file.rb +84 -0
  2176. data/lib/fog/rackspace/models/storage/files.rb +94 -0
  2177. data/lib/fog/rackspace/requests/block_storage/create_snapshot.rb +26 -0
  2178. data/lib/fog/rackspace/requests/block_storage/create_volume.rb +27 -0
  2179. data/lib/fog/rackspace/requests/block_storage/delete_snapshot.rb +15 -0
  2180. data/lib/fog/rackspace/requests/block_storage/delete_volume.rb +15 -0
  2181. data/lib/fog/rackspace/requests/block_storage/get_snapshot.rb +15 -0
  2182. data/lib/fog/rackspace/requests/block_storage/get_volume.rb +15 -0
  2183. data/lib/fog/rackspace/requests/block_storage/get_volume_type.rb +15 -0
  2184. data/lib/fog/rackspace/requests/block_storage/list_snapshots.rb +15 -0
  2185. data/lib/fog/rackspace/requests/block_storage/list_volume_types.rb +15 -0
  2186. data/lib/fog/rackspace/requests/block_storage/list_volumes.rb +15 -0
  2187. data/lib/fog/rackspace/requests/cdn/get_containers.rb +31 -0
  2188. data/lib/fog/rackspace/requests/cdn/head_container.rb +33 -0
  2189. data/lib/fog/rackspace/requests/cdn/post_container.rb +30 -0
  2190. data/lib/fog/rackspace/requests/cdn/put_container.rb +30 -0
  2191. data/lib/fog/rackspace/requests/compute/confirm_resized_server.rb +34 -0
  2192. data/lib/fog/rackspace/requests/compute/create_image.rb +60 -0
  2193. data/lib/fog/rackspace/requests/compute/create_server.rb +94 -0
  2194. data/lib/fog/rackspace/requests/compute/delete_image.rb +45 -0
  2195. data/lib/fog/rackspace/requests/compute/delete_server.rb +43 -0
  2196. data/lib/fog/rackspace/requests/compute/get_flavor_details.rb +52 -0
  2197. data/lib/fog/rackspace/requests/compute/get_image_details.rb +27 -0
  2198. data/lib/fog/rackspace/requests/compute/get_server_details.rb +52 -0
  2199. data/lib/fog/rackspace/requests/compute/list_addresses.rb +43 -0
  2200. data/lib/fog/rackspace/requests/compute/list_flavors.rb +45 -0
  2201. data/lib/fog/rackspace/requests/compute/list_flavors_detail.rb +47 -0
  2202. data/lib/fog/rackspace/requests/compute/list_images.rb +40 -0
  2203. data/lib/fog/rackspace/requests/compute/list_images_detail.rb +49 -0
  2204. data/lib/fog/rackspace/requests/compute/list_private_addresses.rb +41 -0
  2205. data/lib/fog/rackspace/requests/compute/list_public_addresses.rb +41 -0
  2206. data/lib/fog/rackspace/requests/compute/list_servers.rb +41 -0
  2207. data/lib/fog/rackspace/requests/compute/list_servers_detail.rb +56 -0
  2208. data/lib/fog/rackspace/requests/compute/reboot_server.rb +30 -0
  2209. data/lib/fog/rackspace/requests/compute/resize_server.rb +39 -0
  2210. data/lib/fog/rackspace/requests/compute/revert_resized_server.rb +35 -0
  2211. data/lib/fog/rackspace/requests/compute/server_action.rb +25 -0
  2212. data/lib/fog/rackspace/requests/compute/update_server.rb +45 -0
  2213. data/lib/fog/rackspace/requests/compute_v2/attach_volume.rb +23 -0
  2214. data/lib/fog/rackspace/requests/compute_v2/change_server_password.rb +22 -0
  2215. data/lib/fog/rackspace/requests/compute_v2/confirm_resize_server.rb +20 -0
  2216. data/lib/fog/rackspace/requests/compute_v2/create_server.rb +28 -0
  2217. data/lib/fog/rackspace/requests/compute_v2/delete_attachment.rb +15 -0
  2218. data/lib/fog/rackspace/requests/compute_v2/delete_server.rb +15 -0
  2219. data/lib/fog/rackspace/requests/compute_v2/get_attachment.rb +15 -0
  2220. data/lib/fog/rackspace/requests/compute_v2/get_flavor.rb +15 -0
  2221. data/lib/fog/rackspace/requests/compute_v2/get_image.rb +15 -0
  2222. data/lib/fog/rackspace/requests/compute_v2/get_server.rb +15 -0
  2223. data/lib/fog/rackspace/requests/compute_v2/list_attachments.rb +15 -0
  2224. data/lib/fog/rackspace/requests/compute_v2/list_flavors.rb +15 -0
  2225. data/lib/fog/rackspace/requests/compute_v2/list_images.rb +15 -0
  2226. data/lib/fog/rackspace/requests/compute_v2/list_servers.rb +15 -0
  2227. data/lib/fog/rackspace/requests/compute_v2/reboot_server.rb +22 -0
  2228. data/lib/fog/rackspace/requests/compute_v2/rebuild_server.rb +22 -0
  2229. data/lib/fog/rackspace/requests/compute_v2/resize_server.rb +22 -0
  2230. data/lib/fog/rackspace/requests/compute_v2/revert_resize_server.rb +20 -0
  2231. data/lib/fog/rackspace/requests/compute_v2/update_server.rb +22 -0
  2232. data/lib/fog/rackspace/requests/databases/check_root_user.rb +15 -0
  2233. data/lib/fog/rackspace/requests/databases/create_database.rb +24 -0
  2234. data/lib/fog/rackspace/requests/databases/create_instance.rb +26 -0
  2235. data/lib/fog/rackspace/requests/databases/create_user.rb +24 -0
  2236. data/lib/fog/rackspace/requests/databases/delete_database.rb +15 -0
  2237. data/lib/fog/rackspace/requests/databases/delete_instance.rb +15 -0
  2238. data/lib/fog/rackspace/requests/databases/delete_user.rb +15 -0
  2239. data/lib/fog/rackspace/requests/databases/enable_root_user.rb +15 -0
  2240. data/lib/fog/rackspace/requests/databases/get_flavor.rb +15 -0
  2241. data/lib/fog/rackspace/requests/databases/get_instance.rb +15 -0
  2242. data/lib/fog/rackspace/requests/databases/list_databases.rb +15 -0
  2243. data/lib/fog/rackspace/requests/databases/list_flavors.rb +15 -0
  2244. data/lib/fog/rackspace/requests/databases/list_instances.rb +15 -0
  2245. data/lib/fog/rackspace/requests/databases/list_users.rb +15 -0
  2246. data/lib/fog/rackspace/requests/databases/resize_instance.rb +22 -0
  2247. data/lib/fog/rackspace/requests/databases/resize_instance_volume.rb +24 -0
  2248. data/lib/fog/rackspace/requests/databases/restart_instance.rb +20 -0
  2249. data/lib/fog/rackspace/requests/dns/add_records.rb +34 -0
  2250. data/lib/fog/rackspace/requests/dns/callback.rb +19 -0
  2251. data/lib/fog/rackspace/requests/dns/create_domains.rb +48 -0
  2252. data/lib/fog/rackspace/requests/dns/list_domain_details.rb +32 -0
  2253. data/lib/fog/rackspace/requests/dns/list_domains.rb +21 -0
  2254. data/lib/fog/rackspace/requests/dns/list_record_details.rb +21 -0
  2255. data/lib/fog/rackspace/requests/dns/list_records.rb +23 -0
  2256. data/lib/fog/rackspace/requests/dns/list_subdomains.rb +23 -0
  2257. data/lib/fog/rackspace/requests/dns/modify_domain.rb +36 -0
  2258. data/lib/fog/rackspace/requests/dns/modify_record.rb +37 -0
  2259. data/lib/fog/rackspace/requests/dns/remove_domain.rb +29 -0
  2260. data/lib/fog/rackspace/requests/dns/remove_domains.rb +27 -0
  2261. data/lib/fog/rackspace/requests/dns/remove_record.rb +21 -0
  2262. data/lib/fog/rackspace/requests/dns/remove_records.rb +20 -0
  2263. data/lib/fog/rackspace/requests/identity/create_token.rb +25 -0
  2264. data/lib/fog/rackspace/requests/identity/create_user.rb +25 -0
  2265. data/lib/fog/rackspace/requests/identity/delete_user.rb +15 -0
  2266. data/lib/fog/rackspace/requests/identity/get_credentials.rb +15 -0
  2267. data/lib/fog/rackspace/requests/identity/get_user_by_id.rb +15 -0
  2268. data/lib/fog/rackspace/requests/identity/get_user_by_name.rb +15 -0
  2269. data/lib/fog/rackspace/requests/identity/list_credentials.rb +22 -0
  2270. data/lib/fog/rackspace/requests/identity/list_tenants.rb +22 -0
  2271. data/lib/fog/rackspace/requests/identity/list_user_roles.rb +22 -0
  2272. data/lib/fog/rackspace/requests/identity/list_users.rb +22 -0
  2273. data/lib/fog/rackspace/requests/identity/update_user.rb +24 -0
  2274. data/lib/fog/rackspace/requests/load_balancers/create_access_rule.rb +24 -0
  2275. data/lib/fog/rackspace/requests/load_balancers/create_load_balancer.rb +29 -0
  2276. data/lib/fog/rackspace/requests/load_balancers/create_node.rb +27 -0
  2277. data/lib/fog/rackspace/requests/load_balancers/create_virtual_ip.rb +20 -0
  2278. data/lib/fog/rackspace/requests/load_balancers/delete_access_rule.rb +15 -0
  2279. data/lib/fog/rackspace/requests/load_balancers/delete_all_access_rules.rb +15 -0
  2280. data/lib/fog/rackspace/requests/load_balancers/delete_load_balancer.rb +15 -0
  2281. data/lib/fog/rackspace/requests/load_balancers/delete_node.rb +15 -0
  2282. data/lib/fog/rackspace/requests/load_balancers/delete_nodes.rb +16 -0
  2283. data/lib/fog/rackspace/requests/load_balancers/delete_virtual_ip.rb +15 -0
  2284. data/lib/fog/rackspace/requests/load_balancers/get_connection_logging.rb +15 -0
  2285. data/lib/fog/rackspace/requests/load_balancers/get_connection_throttling.rb +15 -0
  2286. data/lib/fog/rackspace/requests/load_balancers/get_error_page.rb +15 -0
  2287. data/lib/fog/rackspace/requests/load_balancers/get_load_balancer.rb +15 -0
  2288. data/lib/fog/rackspace/requests/load_balancers/get_load_balancer_usage.rb +21 -0
  2289. data/lib/fog/rackspace/requests/load_balancers/get_monitor.rb +15 -0
  2290. data/lib/fog/rackspace/requests/load_balancers/get_node.rb +15 -0
  2291. data/lib/fog/rackspace/requests/load_balancers/get_session_persistence.rb +15 -0
  2292. data/lib/fog/rackspace/requests/load_balancers/get_ssl_termination.rb +15 -0
  2293. data/lib/fog/rackspace/requests/load_balancers/get_usage.rb +20 -0
  2294. data/lib/fog/rackspace/requests/load_balancers/list_access_rules.rb +15 -0
  2295. data/lib/fog/rackspace/requests/load_balancers/list_algorithms.rb +15 -0
  2296. data/lib/fog/rackspace/requests/load_balancers/list_load_balancers.rb +21 -0
  2297. data/lib/fog/rackspace/requests/load_balancers/list_nodes.rb +15 -0
  2298. data/lib/fog/rackspace/requests/load_balancers/list_protocols.rb +15 -0
  2299. data/lib/fog/rackspace/requests/load_balancers/list_virtual_ips.rb +15 -0
  2300. data/lib/fog/rackspace/requests/load_balancers/remove_connection_throttling.rb +15 -0
  2301. data/lib/fog/rackspace/requests/load_balancers/remove_error_page.rb +15 -0
  2302. data/lib/fog/rackspace/requests/load_balancers/remove_monitor.rb +15 -0
  2303. data/lib/fog/rackspace/requests/load_balancers/remove_session_persistence.rb +15 -0
  2304. data/lib/fog/rackspace/requests/load_balancers/remove_ssl_termination.rb +15 -0
  2305. data/lib/fog/rackspace/requests/load_balancers/set_connection_logging.rb +21 -0
  2306. data/lib/fog/rackspace/requests/load_balancers/set_connection_throttling.rb +22 -0
  2307. data/lib/fog/rackspace/requests/load_balancers/set_error_page.rb +21 -0
  2308. data/lib/fog/rackspace/requests/load_balancers/set_monitor.rb +31 -0
  2309. data/lib/fog/rackspace/requests/load_balancers/set_session_persistence.rb +21 -0
  2310. data/lib/fog/rackspace/requests/load_balancers/set_ssl_termination.rb +31 -0
  2311. data/lib/fog/rackspace/requests/load_balancers/update_load_balancer.rb +24 -0
  2312. data/lib/fog/rackspace/requests/load_balancers/update_node.rb +26 -0
  2313. data/lib/fog/rackspace/requests/storage/copy_object.rb +27 -0
  2314. data/lib/fog/rackspace/requests/storage/delete_container.rb +22 -0
  2315. data/lib/fog/rackspace/requests/storage/delete_object.rb +23 -0
  2316. data/lib/fog/rackspace/requests/storage/get_container.rb +44 -0
  2317. data/lib/fog/rackspace/requests/storage/get_containers.rb +33 -0
  2318. data/lib/fog/rackspace/requests/storage/get_object.rb +30 -0
  2319. data/lib/fog/rackspace/requests/storage/get_object_https_url.rb +51 -0
  2320. data/lib/fog/rackspace/requests/storage/head_container.rb +28 -0
  2321. data/lib/fog/rackspace/requests/storage/head_containers.rb +25 -0
  2322. data/lib/fog/rackspace/requests/storage/head_object.rb +23 -0
  2323. data/lib/fog/rackspace/requests/storage/post_set_meta_temp_url_key.rb +37 -0
  2324. data/lib/fog/rackspace/requests/storage/put_container.rb +22 -0
  2325. data/lib/fog/rackspace/requests/storage/put_object.rb +30 -0
  2326. data/lib/fog/rackspace/requests/storage/put_object_manifest.rb +25 -0
  2327. data/lib/fog/rackspace/storage.rb +162 -0
  2328. data/lib/fog/serverlove.rb +10 -0
  2329. data/lib/fog/serverlove/compute.rb +97 -0
  2330. data/lib/fog/serverlove/models/compute/image.rb +57 -0
  2331. data/lib/fog/serverlove/models/compute/images.rb +26 -0
  2332. data/lib/fog/serverlove/models/compute/server.rb +72 -0
  2333. data/lib/fog/serverlove/models/compute/servers.rb +26 -0
  2334. data/lib/fog/serverlove/requests/compute/create_image.rb +32 -0
  2335. data/lib/fog/serverlove/requests/compute/create_server.rb +34 -0
  2336. data/lib/fog/serverlove/requests/compute/destroy_image.rb +13 -0
  2337. data/lib/fog/serverlove/requests/compute/destroy_server.rb +13 -0
  2338. data/lib/fog/serverlove/requests/compute/get_image.rb +13 -0
  2339. data/lib/fog/serverlove/requests/compute/get_images.rb +13 -0
  2340. data/lib/fog/serverlove/requests/compute/get_server.rb +13 -0
  2341. data/lib/fog/serverlove/requests/compute/get_servers.rb +13 -0
  2342. data/lib/fog/serverlove/requests/compute/load_standard_image.rb +13 -0
  2343. data/lib/fog/serverlove/requests/compute/reset_server.rb +13 -0
  2344. data/lib/fog/serverlove/requests/compute/shutdown_server.rb +13 -0
  2345. data/lib/fog/serverlove/requests/compute/start_server.rb +13 -0
  2346. data/lib/fog/serverlove/requests/compute/stop_server.rb +13 -0
  2347. data/lib/fog/serverlove/requests/compute/update_image.rb +15 -0
  2348. data/lib/fog/serverlove/requests/compute/update_server.rb +15 -0
  2349. data/lib/fog/serverlove/util/compute/password_generator.rb +11 -0
  2350. data/lib/fog/storage.rb +91 -0
  2351. data/lib/fog/storm_on_demand.rb +12 -0
  2352. data/lib/fog/storm_on_demand/compute.rb +136 -0
  2353. data/lib/fog/storm_on_demand/models/compute/balancer.rb +38 -0
  2354. data/lib/fog/storm_on_demand/models/compute/balancers.rb +21 -0
  2355. data/lib/fog/storm_on_demand/models/compute/config.rb +25 -0
  2356. data/lib/fog/storm_on_demand/models/compute/configs.rb +22 -0
  2357. data/lib/fog/storm_on_demand/models/compute/image.rb +20 -0
  2358. data/lib/fog/storm_on_demand/models/compute/images.rb +21 -0
  2359. data/lib/fog/storm_on_demand/models/compute/private_ip.rb +19 -0
  2360. data/lib/fog/storm_on_demand/models/compute/private_ips.rb +31 -0
  2361. data/lib/fog/storm_on_demand/models/compute/server.rb +74 -0
  2362. data/lib/fog/storm_on_demand/models/compute/servers.rb +26 -0
  2363. data/lib/fog/storm_on_demand/models/compute/stat.rb +23 -0
  2364. data/lib/fog/storm_on_demand/models/compute/stats.rb +22 -0
  2365. data/lib/fog/storm_on_demand/models/compute/template.rb +22 -0
  2366. data/lib/fog/storm_on_demand/models/compute/templates.rb +21 -0
  2367. data/lib/fog/storm_on_demand/requests/compute/add_balancer_node.rb +16 -0
  2368. data/lib/fog/storm_on_demand/requests/compute/clone_server.rb +16 -0
  2369. data/lib/fog/storm_on_demand/requests/compute/create_server.rb +16 -0
  2370. data/lib/fog/storm_on_demand/requests/compute/delete_server.rb +16 -0
  2371. data/lib/fog/storm_on_demand/requests/compute/get_server.rb +16 -0
  2372. data/lib/fog/storm_on_demand/requests/compute/get_stats.rb +16 -0
  2373. data/lib/fog/storm_on_demand/requests/compute/list_balancers.rb +16 -0
  2374. data/lib/fog/storm_on_demand/requests/compute/list_configs.rb +16 -0
  2375. data/lib/fog/storm_on_demand/requests/compute/list_images.rb +16 -0
  2376. data/lib/fog/storm_on_demand/requests/compute/list_private_ips.rb +16 -0
  2377. data/lib/fog/storm_on_demand/requests/compute/list_servers.rb +16 -0
  2378. data/lib/fog/storm_on_demand/requests/compute/list_templates.rb +16 -0
  2379. data/lib/fog/storm_on_demand/requests/compute/reboot_server.rb +16 -0
  2380. data/lib/fog/storm_on_demand/requests/compute/remove_balancer_node.rb +16 -0
  2381. data/lib/fog/storm_on_demand/requests/compute/resize_server.rb +16 -0
  2382. data/lib/fog/terremark.rb +11 -0
  2383. data/lib/fog/terremark/models/shared/address.rb +29 -0
  2384. data/lib/fog/terremark/models/shared/addresses.rb +49 -0
  2385. data/lib/fog/terremark/models/shared/image.rb +22 -0
  2386. data/lib/fog/terremark/models/shared/images.rb +48 -0
  2387. data/lib/fog/terremark/models/shared/internetservice.rb +67 -0
  2388. data/lib/fog/terremark/models/shared/internetservices.rb +42 -0
  2389. data/lib/fog/terremark/models/shared/network.rb +35 -0
  2390. data/lib/fog/terremark/models/shared/networks.rb +52 -0
  2391. data/lib/fog/terremark/models/shared/nodeservice.rb +52 -0
  2392. data/lib/fog/terremark/models/shared/nodeservices.rb +32 -0
  2393. data/lib/fog/terremark/models/shared/server.rb +209 -0
  2394. data/lib/fog/terremark/models/shared/servers.rb +54 -0
  2395. data/lib/fog/terremark/models/shared/task.rb +50 -0
  2396. data/lib/fog/terremark/models/shared/tasks.rb +58 -0
  2397. data/lib/fog/terremark/models/shared/vdc.rb +44 -0
  2398. data/lib/fog/terremark/models/shared/vdcs.rb +52 -0
  2399. data/lib/fog/terremark/parser.rb +19 -0
  2400. data/lib/fog/terremark/parsers/shared/get_catalog.rb +51 -0
  2401. data/lib/fog/terremark/parsers/shared/get_catalog_item.rb +46 -0
  2402. data/lib/fog/terremark/parsers/shared/get_internet_services.rb +60 -0
  2403. data/lib/fog/terremark/parsers/shared/get_keys_list.rb +56 -0
  2404. data/lib/fog/terremark/parsers/shared/get_network_ips.rb +29 -0
  2405. data/lib/fog/terremark/parsers/shared/get_node_services.rb +36 -0
  2406. data/lib/fog/terremark/parsers/shared/get_organization.rb +52 -0
  2407. data/lib/fog/terremark/parsers/shared/get_organizations.rb +32 -0
  2408. data/lib/fog/terremark/parsers/shared/get_public_ips.rb +30 -0
  2409. data/lib/fog/terremark/parsers/shared/get_tasks_list.rb +52 -0
  2410. data/lib/fog/terremark/parsers/shared/get_vapp_template.rb +46 -0
  2411. data/lib/fog/terremark/parsers/shared/get_vdc.rb +123 -0
  2412. data/lib/fog/terremark/parsers/shared/instantiate_vapp_template.rb +41 -0
  2413. data/lib/fog/terremark/parsers/shared/internet_service.rb +65 -0
  2414. data/lib/fog/terremark/parsers/shared/network.rb +51 -0
  2415. data/lib/fog/terremark/parsers/shared/node_service.rb +32 -0
  2416. data/lib/fog/terremark/parsers/shared/public_ip.rb +26 -0
  2417. data/lib/fog/terremark/parsers/shared/task.rb +40 -0
  2418. data/lib/fog/terremark/parsers/shared/vapp.rb +77 -0
  2419. data/lib/fog/terremark/requests/shared/add_internet_service.rb +56 -0
  2420. data/lib/fog/terremark/requests/shared/add_node_service.rb +53 -0
  2421. data/lib/fog/terremark/requests/shared/configure_vapp.rb +61 -0
  2422. data/lib/fog/terremark/requests/shared/create_internet_service.rb +60 -0
  2423. data/lib/fog/terremark/requests/shared/delete_internet_service.rb +23 -0
  2424. data/lib/fog/terremark/requests/shared/delete_node_service.rb +23 -0
  2425. data/lib/fog/terremark/requests/shared/delete_public_ip.rb +23 -0
  2426. data/lib/fog/terremark/requests/shared/delete_vapp.rb +22 -0
  2427. data/lib/fog/terremark/requests/shared/deploy_vapp.rb +35 -0
  2428. data/lib/fog/terremark/requests/shared/get_catalog.rb +32 -0
  2429. data/lib/fog/terremark/requests/shared/get_catalog_item.rb +35 -0
  2430. data/lib/fog/terremark/requests/shared/get_internet_services.rb +36 -0
  2431. data/lib/fog/terremark/requests/shared/get_keys_list.rb +36 -0
  2432. data/lib/fog/terremark/requests/shared/get_network.rb +73 -0
  2433. data/lib/fog/terremark/requests/shared/get_network_ips.rb +32 -0
  2434. data/lib/fog/terremark/requests/shared/get_node_services.rb +31 -0
  2435. data/lib/fog/terremark/requests/shared/get_organization.rb +86 -0
  2436. data/lib/fog/terremark/requests/shared/get_organizations.rb +49 -0
  2437. data/lib/fog/terremark/requests/shared/get_public_ip.rb +33 -0
  2438. data/lib/fog/terremark/requests/shared/get_public_ips.rb +72 -0
  2439. data/lib/fog/terremark/requests/shared/get_task.rb +39 -0
  2440. data/lib/fog/terremark/requests/shared/get_tasks_list.rb +33 -0
  2441. data/lib/fog/terremark/requests/shared/get_vapp.rb +42 -0
  2442. data/lib/fog/terremark/requests/shared/get_vapp_template.rb +35 -0
  2443. data/lib/fog/terremark/requests/shared/get_vdc.rb +125 -0
  2444. data/lib/fog/terremark/requests/shared/instantiate_vapp_template.rb +81 -0
  2445. data/lib/fog/terremark/requests/shared/power_off.rb +35 -0
  2446. data/lib/fog/terremark/requests/shared/power_on.rb +35 -0
  2447. data/lib/fog/terremark/requests/shared/power_reset.rb +35 -0
  2448. data/lib/fog/terremark/requests/shared/power_shutdown.rb +24 -0
  2449. data/lib/fog/terremark/shared.rb +311 -0
  2450. data/lib/fog/terremark/vcloud.rb +135 -0
  2451. data/lib/fog/vcloud.rb +11 -0
  2452. data/lib/fog/vcloud/compute.rb +372 -0
  2453. data/lib/fog/vcloud/models/compute/catalog.rb +22 -0
  2454. data/lib/fog/vcloud/models/compute/catalog_item.rb +29 -0
  2455. data/lib/fog/vcloud/models/compute/catalog_items.rb +36 -0
  2456. data/lib/fog/vcloud/models/compute/catalogs.rb +38 -0
  2457. data/lib/fog/vcloud/models/compute/helpers/status.rb +37 -0
  2458. data/lib/fog/vcloud/models/compute/ip.rb +42 -0
  2459. data/lib/fog/vcloud/models/compute/ips.rb +33 -0
  2460. data/lib/fog/vcloud/models/compute/network.rb +23 -0
  2461. data/lib/fog/vcloud/models/compute/networks.rb +48 -0
  2462. data/lib/fog/vcloud/models/compute/organization.rb +43 -0
  2463. data/lib/fog/vcloud/models/compute/organizations.rb +31 -0
  2464. data/lib/fog/vcloud/models/compute/server.rb +305 -0
  2465. data/lib/fog/vcloud/models/compute/servers.rb +52 -0
  2466. data/lib/fog/vcloud/models/compute/task.rb +21 -0
  2467. data/lib/fog/vcloud/models/compute/tasks.rb +30 -0
  2468. data/lib/fog/vcloud/models/compute/vapp.rb +43 -0
  2469. data/lib/fog/vcloud/models/compute/vapps.rb +28 -0
  2470. data/lib/fog/vcloud/models/compute/vdc.rb +41 -0
  2471. data/lib/fog/vcloud/models/compute/vdcs.rb +35 -0
  2472. data/lib/fog/vcloud/requests/compute/clone_vapp.rb +40 -0
  2473. data/lib/fog/vcloud/requests/compute/configure_network.rb +43 -0
  2474. data/lib/fog/vcloud/requests/compute/configure_network_ip.rb +46 -0
  2475. data/lib/fog/vcloud/requests/compute/configure_node.rb +38 -0
  2476. data/lib/fog/vcloud/requests/compute/configure_org_network.rb +141 -0
  2477. data/lib/fog/vcloud/requests/compute/configure_vapp.rb +112 -0
  2478. data/lib/fog/vcloud/requests/compute/configure_vm.rb +109 -0
  2479. data/lib/fog/vcloud/requests/compute/configure_vm_cpus.rb +38 -0
  2480. data/lib/fog/vcloud/requests/compute/configure_vm_disks.rb +100 -0
  2481. data/lib/fog/vcloud/requests/compute/configure_vm_memory.rb +39 -0
  2482. data/lib/fog/vcloud/requests/compute/configure_vm_name_description.rb +30 -0
  2483. data/lib/fog/vcloud/requests/compute/configure_vm_password.rb +39 -0
  2484. data/lib/fog/vcloud/requests/compute/delete_node.rb +10 -0
  2485. data/lib/fog/vcloud/requests/compute/delete_vapp.rb +10 -0
  2486. data/lib/fog/vcloud/requests/compute/get_catalog.rb +10 -0
  2487. data/lib/fog/vcloud/requests/compute/get_catalog_item.rb +10 -0
  2488. data/lib/fog/vcloud/requests/compute/get_customization_options.rb +10 -0
  2489. data/lib/fog/vcloud/requests/compute/get_network.rb +10 -0
  2490. data/lib/fog/vcloud/requests/compute/get_network_extensions.rb +11 -0
  2491. data/lib/fog/vcloud/requests/compute/get_network_ip.rb +15 -0
  2492. data/lib/fog/vcloud/requests/compute/get_network_ips.rb +15 -0
  2493. data/lib/fog/vcloud/requests/compute/get_organization.rb +11 -0
  2494. data/lib/fog/vcloud/requests/compute/get_server.rb +10 -0
  2495. data/lib/fog/vcloud/requests/compute/get_task.rb +11 -0
  2496. data/lib/fog/vcloud/requests/compute/get_task_list.rb +11 -0
  2497. data/lib/fog/vcloud/requests/compute/get_vapp.rb +10 -0
  2498. data/lib/fog/vcloud/requests/compute/get_vapp_template.rb +11 -0
  2499. data/lib/fog/vcloud/requests/compute/get_vdc.rb +10 -0
  2500. data/lib/fog/vcloud/requests/compute/get_vm_disks.rb +16 -0
  2501. data/lib/fog/vcloud/requests/compute/get_vm_memory.rb +16 -0
  2502. data/lib/fog/vcloud/requests/compute/instantiate_vapp_template.rb +83 -0
  2503. data/lib/fog/vcloud/requests/compute/login.rb +27 -0
  2504. data/lib/fog/vcloud/requests/compute/power_off.rb +10 -0
  2505. data/lib/fog/vcloud/requests/compute/power_on.rb +11 -0
  2506. data/lib/fog/vcloud/requests/compute/power_reset.rb +11 -0
  2507. data/lib/fog/vcloud/requests/compute/power_shutdown.rb +11 -0
  2508. data/lib/fog/vcloud/requests/compute/undeploy.rb +31 -0
  2509. data/lib/fog/virtual_box.rb +11 -0
  2510. data/lib/fog/virtual_box/compute.rb +53 -0
  2511. data/lib/fog/virtual_box/models/compute/medium.rb +87 -0
  2512. data/lib/fog/virtual_box/models/compute/medium_format.rb +34 -0
  2513. data/lib/fog/virtual_box/models/compute/mediums.rb +32 -0
  2514. data/lib/fog/virtual_box/models/compute/nat_engine.rb +65 -0
  2515. data/lib/fog/virtual_box/models/compute/nat_redirect.rb +91 -0
  2516. data/lib/fog/virtual_box/models/compute/nat_redirects.rb +41 -0
  2517. data/lib/fog/virtual_box/models/compute/network_adapter.rb +82 -0
  2518. data/lib/fog/virtual_box/models/compute/network_adapters.rb +42 -0
  2519. data/lib/fog/virtual_box/models/compute/server.rb +241 -0
  2520. data/lib/fog/virtual_box/models/compute/servers.rb +41 -0
  2521. data/lib/fog/virtual_box/models/compute/storage_controller.rb +83 -0
  2522. data/lib/fog/virtual_box/models/compute/storage_controllers.rb +38 -0
  2523. data/lib/fog/vmfusion.rb +11 -0
  2524. data/lib/fog/vmfusion/compute.rb +29 -0
  2525. data/lib/fog/vmfusion/models/compute/server.rb +291 -0
  2526. data/lib/fog/vmfusion/models/compute/servers.rb +41 -0
  2527. data/lib/fog/volume.rb +25 -0
  2528. data/lib/fog/voxel.rb +16 -0
  2529. data/lib/fog/voxel/compute.rb +125 -0
  2530. data/lib/fog/voxel/models/compute/image.rb +15 -0
  2531. data/lib/fog/voxel/models/compute/images.rb +30 -0
  2532. data/lib/fog/voxel/models/compute/server.rb +78 -0
  2533. data/lib/fog/voxel/models/compute/servers.rb +32 -0
  2534. data/lib/fog/voxel/parsers/compute/basic.rb +31 -0
  2535. data/lib/fog/voxel/parsers/compute/devices_list.rb +111 -0
  2536. data/lib/fog/voxel/parsers/compute/images_list.rb +59 -0
  2537. data/lib/fog/voxel/parsers/compute/voxcloud_create.rb +40 -0
  2538. data/lib/fog/voxel/parsers/compute/voxcloud_delete.rb +31 -0
  2539. data/lib/fog/voxel/parsers/compute/voxcloud_status.rb +42 -0
  2540. data/lib/fog/voxel/requests/compute/devices_list.rb +24 -0
  2541. data/lib/fog/voxel/requests/compute/devices_power.rb +22 -0
  2542. data/lib/fog/voxel/requests/compute/images_list.rb +31 -0
  2543. data/lib/fog/voxel/requests/compute/voxcloud_create.rb +22 -0
  2544. data/lib/fog/voxel/requests/compute/voxcloud_delete.rb +20 -0
  2545. data/lib/fog/voxel/requests/compute/voxcloud_status.rb +24 -0
  2546. data/lib/fog/vsphere.rb +17 -0
  2547. data/lib/fog/vsphere/compute.rb +184 -0
  2548. data/lib/fog/vsphere/models/compute/server.rb +138 -0
  2549. data/lib/fog/vsphere/models/compute/servers.rb +43 -0
  2550. data/lib/fog/vsphere/requests/compute/current_time.rb +22 -0
  2551. data/lib/fog/vsphere/requests/compute/datacenters.rb +34 -0
  2552. data/lib/fog/vsphere/requests/compute/find_vm_by_ref.rb +41 -0
  2553. data/lib/fog/vsphere/requests/compute/list_virtual_machines.rb +236 -0
  2554. data/lib/fog/vsphere/requests/compute/vm_clone.rb +182 -0
  2555. data/lib/fog/vsphere/requests/compute/vm_config_vnc.rb +47 -0
  2556. data/lib/fog/vsphere/requests/compute/vm_create.rb +97 -0
  2557. data/lib/fog/vsphere/requests/compute/vm_destroy.rb +34 -0
  2558. data/lib/fog/vsphere/requests/compute/vm_migrate.rb +37 -0
  2559. data/lib/fog/vsphere/requests/compute/vm_power_off.rb +41 -0
  2560. data/lib/fog/vsphere/requests/compute/vm_power_on.rb +30 -0
  2561. data/lib/fog/vsphere/requests/compute/vm_reboot.rb +35 -0
  2562. data/lib/fog/vsphere/requests/compute/vm_reconfig_cpus.rb +23 -0
  2563. data/lib/fog/vsphere/requests/compute/vm_reconfig_hardware.rb +25 -0
  2564. data/lib/fog/vsphere/requests/compute/vm_reconfig_memory.rb +23 -0
  2565. data/lib/fog/xenserver.rb +56 -0
  2566. data/lib/fog/xenserver/compute.rb +122 -0
  2567. data/lib/fog/xenserver/models/compute/guest_metrics.rb +28 -0
  2568. data/lib/fog/xenserver/models/compute/host.rb +46 -0
  2569. data/lib/fog/xenserver/models/compute/hosts.rb +29 -0
  2570. data/lib/fog/xenserver/models/compute/network.rb +58 -0
  2571. data/lib/fog/xenserver/models/compute/networks.rb +33 -0
  2572. data/lib/fog/xenserver/models/compute/pbd.rb +33 -0
  2573. data/lib/fog/xenserver/models/compute/pbds.rb +33 -0
  2574. data/lib/fog/xenserver/models/compute/pif.rb +46 -0
  2575. data/lib/fog/xenserver/models/compute/pifs.rb +33 -0
  2576. data/lib/fog/xenserver/models/compute/pool.rb +40 -0
  2577. data/lib/fog/xenserver/models/compute/pools.rb +33 -0
  2578. data/lib/fog/xenserver/models/compute/server.rb +211 -0
  2579. data/lib/fog/xenserver/models/compute/servers.rb +63 -0
  2580. data/lib/fog/xenserver/models/compute/storage_repositories.rb +31 -0
  2581. data/lib/fog/xenserver/models/compute/storage_repository.rb +47 -0
  2582. data/lib/fog/xenserver/models/compute/vbd.rb +90 -0
  2583. data/lib/fog/xenserver/models/compute/vbd_metrics.rb +27 -0
  2584. data/lib/fog/xenserver/models/compute/vbds.rb +33 -0
  2585. data/lib/fog/xenserver/models/compute/vdi.rb +102 -0
  2586. data/lib/fog/xenserver/models/compute/vdis.rb +29 -0
  2587. data/lib/fog/xenserver/models/compute/vif.rb +51 -0
  2588. data/lib/fog/xenserver/models/compute/vifs.rb +29 -0
  2589. data/lib/fog/xenserver/parser.rb +36 -0
  2590. data/lib/fog/xenserver/parsers/get_hosts.rb +19 -0
  2591. data/lib/fog/xenserver/parsers/get_networks.rb +19 -0
  2592. data/lib/fog/xenserver/parsers/get_pools.rb +19 -0
  2593. data/lib/fog/xenserver/parsers/get_records.rb +19 -0
  2594. data/lib/fog/xenserver/parsers/get_storage_repositories.rb +19 -0
  2595. data/lib/fog/xenserver/parsers/get_vbds.rb +19 -0
  2596. data/lib/fog/xenserver/parsers/get_vifs.rb +19 -0
  2597. data/lib/fog/xenserver/parsers/get_vms.rb +20 -0
  2598. data/lib/fog/xenserver/requests/compute/clone_server.rb +31 -0
  2599. data/lib/fog/xenserver/requests/compute/create_server.rb +126 -0
  2600. data/lib/fog/xenserver/requests/compute/create_vbd.rb +40 -0
  2601. data/lib/fog/xenserver/requests/compute/create_vdi.rb +33 -0
  2602. data/lib/fog/xenserver/requests/compute/create_vif.rb +57 -0
  2603. data/lib/fog/xenserver/requests/compute/destroy_server.rb +22 -0
  2604. data/lib/fog/xenserver/requests/compute/destroy_vdi.rb +22 -0
  2605. data/lib/fog/xenserver/requests/compute/destroy_vif.rb +22 -0
  2606. data/lib/fog/xenserver/requests/compute/eject_vbd.rb +22 -0
  2607. data/lib/fog/xenserver/requests/compute/get_record.rb +29 -0
  2608. data/lib/fog/xenserver/requests/compute/get_records.rb +30 -0
  2609. data/lib/fog/xenserver/requests/compute/insert_vbd.rb +22 -0
  2610. data/lib/fog/xenserver/requests/compute/provision_server.rb +21 -0
  2611. data/lib/fog/xenserver/requests/compute/reboot_server.rb +23 -0
  2612. data/lib/fog/xenserver/requests/compute/scan_sr.rb +22 -0
  2613. data/lib/fog/xenserver/requests/compute/set_affinity.rb +25 -0
  2614. data/lib/fog/xenserver/requests/compute/set_attribute.rb +25 -0
  2615. data/lib/fog/xenserver/requests/compute/shutdown_server.rb +23 -0
  2616. data/lib/fog/xenserver/requests/compute/start_server.rb +23 -0
  2617. data/lib/fog/xenserver/requests/compute/start_vm.rb +25 -0
  2618. data/lib/fog/xenserver/requests/compute/unplug_vbd.rb +30 -0
  2619. data/lib/fog/xenserver/utilities.rb +8 -0
  2620. data/lib/fog/zerigo.rb +11 -0
  2621. data/lib/fog/zerigo/dns.rb +120 -0
  2622. data/lib/fog/zerigo/models/dns/record.rb +70 -0
  2623. data/lib/fog/zerigo/models/dns/records.rb +46 -0
  2624. data/lib/fog/zerigo/models/dns/zone.rb +88 -0
  2625. data/lib/fog/zerigo/models/dns/zones.rb +30 -0
  2626. data/lib/fog/zerigo/parsers/dns/count_hosts.rb +24 -0
  2627. data/lib/fog/zerigo/parsers/dns/count_zones.rb +24 -0
  2628. data/lib/fog/zerigo/parsers/dns/create_host.rb +28 -0
  2629. data/lib/fog/zerigo/parsers/dns/create_zone.rb +26 -0
  2630. data/lib/fog/zerigo/parsers/dns/find_hosts.rb +32 -0
  2631. data/lib/fog/zerigo/parsers/dns/get_host.rb +28 -0
  2632. data/lib/fog/zerigo/parsers/dns/get_zone.rb +58 -0
  2633. data/lib/fog/zerigo/parsers/dns/get_zone_stats.rb +26 -0
  2634. data/lib/fog/zerigo/parsers/dns/list_hosts.rb +32 -0
  2635. data/lib/fog/zerigo/parsers/dns/list_zones.rb +30 -0
  2636. data/lib/fog/zerigo/requests/dns/count_hosts.rb +47 -0
  2637. data/lib/fog/zerigo/requests/dns/count_zones.rb +39 -0
  2638. data/lib/fog/zerigo/requests/dns/create_host.rb +128 -0
  2639. data/lib/fog/zerigo/requests/dns/create_zone.rb +132 -0
  2640. data/lib/fog/zerigo/requests/dns/delete_host.rb +43 -0
  2641. data/lib/fog/zerigo/requests/dns/delete_zone.rb +42 -0
  2642. data/lib/fog/zerigo/requests/dns/find_hosts.rb +76 -0
  2643. data/lib/fog/zerigo/requests/dns/get_host.rb +56 -0
  2644. data/lib/fog/zerigo/requests/dns/get_zone.rb +66 -0
  2645. data/lib/fog/zerigo/requests/dns/get_zone_stats.rb +59 -0
  2646. data/lib/fog/zerigo/requests/dns/list_hosts.rb +59 -0
  2647. data/lib/fog/zerigo/requests/dns/list_zones.rb +60 -0
  2648. data/lib/fog/zerigo/requests/dns/update_host.rb +71 -0
  2649. data/lib/fog/zerigo/requests/dns/update_zone.rb +89 -0
  2650. data/tests/atmos/models/storage/file_update_tests.rb +19 -0
  2651. data/tests/atmos/models/storage/nested_directories_tests.rb +23 -0
  2652. data/tests/aws/credentials_tests.rb +57 -0
  2653. data/tests/aws/models/auto_scaling/activities_tests.rb +6 -0
  2654. data/tests/aws/models/auto_scaling/configuration_test.rb +13 -0
  2655. data/tests/aws/models/auto_scaling/configurations_tests.rb +11 -0
  2656. data/tests/aws/models/auto_scaling/helper.rb +0 -0
  2657. data/tests/aws/models/auto_scaling/instances_tests.rb +6 -0
  2658. data/tests/aws/models/beanstalk/application_tests.rb +70 -0
  2659. data/tests/aws/models/beanstalk/applications_tests.rb +7 -0
  2660. data/tests/aws/models/beanstalk/environment_tests.rb +132 -0
  2661. data/tests/aws/models/beanstalk/environments_tests.rb +34 -0
  2662. data/tests/aws/models/beanstalk/template_tests.rb +47 -0
  2663. data/tests/aws/models/beanstalk/templates_tests.rb +62 -0
  2664. data/tests/aws/models/beanstalk/version_tests.rb +66 -0
  2665. data/tests/aws/models/beanstalk/versions_tests.rb +61 -0
  2666. data/tests/aws/models/cloud_watch/alarm_data_tests.rb +42 -0
  2667. data/tests/aws/models/cloud_watch/alarm_history_tests.rb +22 -0
  2668. data/tests/aws/models/cloud_watch/metric_statistics_tests.rb +51 -0
  2669. data/tests/aws/models/cloud_watch/metrics_tests.rb +17 -0
  2670. data/tests/aws/models/compute/address_tests.rb +24 -0
  2671. data/tests/aws/models/compute/addresses_tests.rb +5 -0
  2672. data/tests/aws/models/compute/dhcp_option_tests.rb +4 -0
  2673. data/tests/aws/models/compute/dhcp_options_tests.rb +4 -0
  2674. data/tests/aws/models/compute/internet_gateway_tests.rb +3 -0
  2675. data/tests/aws/models/compute/internet_gateways_tests.rb +4 -0
  2676. data/tests/aws/models/compute/key_pair_tests.rb +27 -0
  2677. data/tests/aws/models/compute/key_pairs_tests.rb +5 -0
  2678. data/tests/aws/models/compute/network_interfaces_test.rb +12 -0
  2679. data/tests/aws/models/compute/security_group_tests.rb +60 -0
  2680. data/tests/aws/models/compute/security_groups_tests.rb +5 -0
  2681. data/tests/aws/models/compute/server_tests.rb +63 -0
  2682. data/tests/aws/models/compute/snapshot_tests.rb +10 -0
  2683. data/tests/aws/models/compute/snapshots_tests.rb +10 -0
  2684. data/tests/aws/models/compute/subnet_tests.rb +5 -0
  2685. data/tests/aws/models/compute/subnets_tests.rb +6 -0
  2686. data/tests/aws/models/compute/volume_tests.rb +43 -0
  2687. data/tests/aws/models/compute/volumes_tests.rb +5 -0
  2688. data/tests/aws/models/compute/vpc_tests.rb +4 -0
  2689. data/tests/aws/models/compute/vpcs_tests.rb +6 -0
  2690. data/tests/aws/models/dns/record_tests.rb +35 -0
  2691. data/tests/aws/models/dns/records_tests.rb +47 -0
  2692. data/tests/aws/models/dns/zone_tests.rb +4 -0
  2693. data/tests/aws/models/dns/zones_tests.rb +4 -0
  2694. data/tests/aws/models/elasticache/cluster_tests.rb +30 -0
  2695. data/tests/aws/models/elasticache/parameter_groups_tests.rb +17 -0
  2696. data/tests/aws/models/elasticache/security_groups_tests.rb +52 -0
  2697. data/tests/aws/models/elb/model_tests.rb +296 -0
  2698. data/tests/aws/models/glacier/model_tests.rb +47 -0
  2699. data/tests/aws/models/iam/access_keys_tests.rb +53 -0
  2700. data/tests/aws/models/iam/policies_tests.rb +56 -0
  2701. data/tests/aws/models/iam/users_tests.rb +54 -0
  2702. data/tests/aws/models/rds/helper.rb +5 -0
  2703. data/tests/aws/models/rds/parameter_group_tests.rb +24 -0
  2704. data/tests/aws/models/rds/parameter_groups_tests.rb +8 -0
  2705. data/tests/aws/models/rds/security_group_tests.rb +53 -0
  2706. data/tests/aws/models/rds/security_groups_tests.rb +5 -0
  2707. data/tests/aws/models/rds/server_tests.rb +109 -0
  2708. data/tests/aws/models/rds/servers_tests.rb +6 -0
  2709. data/tests/aws/models/rds/snapshot_tests.rb +13 -0
  2710. data/tests/aws/models/rds/snapshots_tests.rb +13 -0
  2711. data/tests/aws/models/storage/directory_tests.rb +51 -0
  2712. data/tests/aws/models/storage/file_tests.rb +80 -0
  2713. data/tests/aws/models/storage/files_tests.rb +56 -0
  2714. data/tests/aws/models/storage/url_tests.rb +28 -0
  2715. data/tests/aws/models/storage/version_tests.rb +52 -0
  2716. data/tests/aws/models/storage/versions_tests.rb +56 -0
  2717. data/tests/aws/requests/auto_scaling/auto_scaling_tests.rb +87 -0
  2718. data/tests/aws/requests/auto_scaling/helper.rb +186 -0
  2719. data/tests/aws/requests/auto_scaling/model_tests.rb +235 -0
  2720. data/tests/aws/requests/beanstalk/application_tests.rb +140 -0
  2721. data/tests/aws/requests/beanstalk/solution_stack_tests.rb +22 -0
  2722. data/tests/aws/requests/cloud_formation/stack_tests.rb +157 -0
  2723. data/tests/aws/requests/cloud_watch/get_metric_statistics_tests.rb +28 -0
  2724. data/tests/aws/requests/cloud_watch/list_metrics_test.rb +64 -0
  2725. data/tests/aws/requests/cloud_watch/put_metric_data_tests.rb +36 -0
  2726. data/tests/aws/requests/compute/address_tests.rb +96 -0
  2727. data/tests/aws/requests/compute/availability_zone_tests.rb +25 -0
  2728. data/tests/aws/requests/compute/dhcp_options_tests.rb +40 -0
  2729. data/tests/aws/requests/compute/helper.rb +16 -0
  2730. data/tests/aws/requests/compute/image_tests.rb +107 -0
  2731. data/tests/aws/requests/compute/instance_tests.rb +280 -0
  2732. data/tests/aws/requests/compute/internet_gateway_tests.rb +44 -0
  2733. data/tests/aws/requests/compute/key_pair_tests.rb +67 -0
  2734. data/tests/aws/requests/compute/network_interface_tests.rb +175 -0
  2735. data/tests/aws/requests/compute/placement_group_tests.rb +48 -0
  2736. data/tests/aws/requests/compute/region_tests.rb +23 -0
  2737. data/tests/aws/requests/compute/security_group_tests.rb +434 -0
  2738. data/tests/aws/requests/compute/snapshot_tests.rb +57 -0
  2739. data/tests/aws/requests/compute/spot_datafeed_subscription_tests.rb +47 -0
  2740. data/tests/aws/requests/compute/spot_instance_tests.rb +54 -0
  2741. data/tests/aws/requests/compute/spot_price_history_tests.rb +24 -0
  2742. data/tests/aws/requests/compute/subnet_tests.rb +36 -0
  2743. data/tests/aws/requests/compute/tag_tests.rb +78 -0
  2744. data/tests/aws/requests/compute/volume_tests.rb +196 -0
  2745. data/tests/aws/requests/compute/vpc_tests.rb +34 -0
  2746. data/tests/aws/requests/dns/dns_tests.rb +283 -0
  2747. data/tests/aws/requests/dns/helper.rb +21 -0
  2748. data/tests/aws/requests/dynamodb/item_tests.rb +137 -0
  2749. data/tests/aws/requests/dynamodb/table_tests.rb +99 -0
  2750. data/tests/aws/requests/elasticache/cache_cluster_tests.rb +137 -0
  2751. data/tests/aws/requests/elasticache/describe_events.rb +17 -0
  2752. data/tests/aws/requests/elasticache/helper.rb +68 -0
  2753. data/tests/aws/requests/elasticache/parameter_group_tests.rb +105 -0
  2754. data/tests/aws/requests/elasticache/security_group_tests.rb +107 -0
  2755. data/tests/aws/requests/elb/helper.rb +92 -0
  2756. data/tests/aws/requests/elb/listener_tests.rb +68 -0
  2757. data/tests/aws/requests/elb/load_balancer_tests.rb +61 -0
  2758. data/tests/aws/requests/elb/policy_tests.rb +54 -0
  2759. data/tests/aws/requests/emr/helper.rb +172 -0
  2760. data/tests/aws/requests/emr/instance_group_tests.rb +106 -0
  2761. data/tests/aws/requests/emr/job_flow_tests.rb +88 -0
  2762. data/tests/aws/requests/glacier/archive_tests.rb +13 -0
  2763. data/tests/aws/requests/glacier/multipart_upload_tests.rb +30 -0
  2764. data/tests/aws/requests/glacier/tree_hash_tests.rb +63 -0
  2765. data/tests/aws/requests/glacier/vault_tests.rb +35 -0
  2766. data/tests/aws/requests/iam/access_key_tests.rb +53 -0
  2767. data/tests/aws/requests/iam/group_policy_tests.rb +42 -0
  2768. data/tests/aws/requests/iam/group_tests.rb +44 -0
  2769. data/tests/aws/requests/iam/helper.rb +104 -0
  2770. data/tests/aws/requests/iam/login_profile_tests.rb +64 -0
  2771. data/tests/aws/requests/iam/role_tests.rb +168 -0
  2772. data/tests/aws/requests/iam/server_certificate_tests.rb +95 -0
  2773. data/tests/aws/requests/iam/user_policy_tests.rb +45 -0
  2774. data/tests/aws/requests/iam/user_tests.rb +76 -0
  2775. data/tests/aws/requests/rds/helper.rb +210 -0
  2776. data/tests/aws/requests/rds/instance_tests.rb +125 -0
  2777. data/tests/aws/requests/rds/parameter_group_tests.rb +62 -0
  2778. data/tests/aws/requests/rds/parameter_request_tests.rb +35 -0
  2779. data/tests/aws/requests/rds/security_group_tests.rb +101 -0
  2780. data/tests/aws/requests/ses/helper.rb +15 -0
  2781. data/tests/aws/requests/ses/verified_email_address_tests.rb +27 -0
  2782. data/tests/aws/requests/simpledb/attributes_tests.rb +86 -0
  2783. data/tests/aws/requests/simpledb/domain_tests.rb +51 -0
  2784. data/tests/aws/requests/simpledb/helper.rb +16 -0
  2785. data/tests/aws/requests/sns/helper.rb +9 -0
  2786. data/tests/aws/requests/sns/subscription_tests.rb +86 -0
  2787. data/tests/aws/requests/sns/topic_tests.rb +50 -0
  2788. data/tests/aws/requests/sqs/helper.rb +15 -0
  2789. data/tests/aws/requests/sqs/message_tests.rb +51 -0
  2790. data/tests/aws/requests/sqs/queue_tests.rb +50 -0
  2791. data/tests/aws/requests/storage/acl_utils_tests.rb +209 -0
  2792. data/tests/aws/requests/storage/bucket_tests.rb +294 -0
  2793. data/tests/aws/requests/storage/multipart_upload_tests.rb +132 -0
  2794. data/tests/aws/requests/storage/object_tests.rb +148 -0
  2795. data/tests/aws/requests/storage/versioning_tests.rb +188 -0
  2796. data/tests/aws/requests/sts/get_federation_token_tests.rb +21 -0
  2797. data/tests/aws/requests/sts/session_token_tests.rb +16 -0
  2798. data/tests/aws/signaturev4_tests.rb +41 -0
  2799. data/tests/aws/signed_params_tests.rb +5 -0
  2800. data/tests/bluebox/requests/compute/block_tests.rb +82 -0
  2801. data/tests/bluebox/requests/compute/helper.rb +22 -0
  2802. data/tests/bluebox/requests/compute/location_tests.rb +32 -0
  2803. data/tests/bluebox/requests/compute/product_tests.rb +34 -0
  2804. data/tests/bluebox/requests/compute/template_tests.rb +37 -0
  2805. data/tests/bluebox/requests/dns/dns_tests.rb +259 -0
  2806. data/tests/brightbox/compute_tests.rb +9 -0
  2807. data/tests/brightbox/requests/compute/account_tests.rb +37 -0
  2808. data/tests/brightbox/requests/compute/api_client_tests.rb +64 -0
  2809. data/tests/brightbox/requests/compute/cloud_ip_tests.rb +86 -0
  2810. data/tests/brightbox/requests/compute/helper.rb +632 -0
  2811. data/tests/brightbox/requests/compute/image_tests.rb +60 -0
  2812. data/tests/brightbox/requests/compute/interface_tests.rb +31 -0
  2813. data/tests/brightbox/requests/compute/load_balancer_tests.rb +121 -0
  2814. data/tests/brightbox/requests/compute/server_group_tests.rb +96 -0
  2815. data/tests/brightbox/requests/compute/server_tests.rb +96 -0
  2816. data/tests/brightbox/requests/compute/server_type_tests.rb +34 -0
  2817. data/tests/brightbox/requests/compute/user_tests.rb +36 -0
  2818. data/tests/brightbox/requests/compute/zone_tests.rb +34 -0
  2819. data/tests/clodo/requests/compute/image_tests.rb +36 -0
  2820. data/tests/clodo/requests/compute/server_tests.rb +152 -0
  2821. data/tests/cloudstack/compute/models/security_group_rule_tests.rb +29 -0
  2822. data/tests/cloudstack/compute/models/security_group_tests.rb +16 -0
  2823. data/tests/cloudstack/compute/models/security_groups_tests.rb +19 -0
  2824. data/tests/cloudstack/compute/models/server_tests.rb +18 -0
  2825. data/tests/cloudstack/compute/models/volume_tests.rb +34 -0
  2826. data/tests/cloudstack/compute/models/volumes_tests.rb +17 -0
  2827. data/tests/cloudstack/requests/disk_offering_tests.rb +29 -0
  2828. data/tests/cloudstack/requests/os_type_tests.rb +38 -0
  2829. data/tests/cloudstack/requests/security_group_tests.rb +29 -0
  2830. data/tests/cloudstack/requests/service_offering_tests.rb +38 -0
  2831. data/tests/cloudstack/requests/snapshot_tests.rb +32 -0
  2832. data/tests/cloudstack/requests/ssh_key_pair_tests.rb +23 -0
  2833. data/tests/cloudstack/requests/template_tests.rb +53 -0
  2834. data/tests/cloudstack/requests/virtual_machine_tests.rb +71 -0
  2835. data/tests/cloudstack/requests/volume_tests.rb +48 -0
  2836. data/tests/cloudstack/requests/zone_tests.rb +33 -0
  2837. data/tests/cloudstack/signed_params_tests.rb +12 -0
  2838. data/tests/compute/helper.rb +102 -0
  2839. data/tests/compute/models/flavors_tests.rb +11 -0
  2840. data/tests/compute/models/server_tests.rb +20 -0
  2841. data/tests/compute/models/servers_tests.rb +10 -0
  2842. data/tests/core/attribute_tests.rb +83 -0
  2843. data/tests/core/credential_tests.rb +66 -0
  2844. data/tests/core/current_machine_tests.rb +32 -0
  2845. data/tests/core/mocking_tests.rb +60 -0
  2846. data/tests/core/parser_tests.rb +67 -0
  2847. data/tests/core/timeout_tests.rb +10 -0
  2848. data/tests/dns/helper.rb +52 -0
  2849. data/tests/dns/models/record_tests.rb +30 -0
  2850. data/tests/dns/models/records_tests.rb +30 -0
  2851. data/tests/dns/models/zone_tests.rb +18 -0
  2852. data/tests/dns/models/zones_tests.rb +18 -0
  2853. data/tests/dnsimple/requests/dns/dns_tests.rb +118 -0
  2854. data/tests/dnsmadeeasy/requests/dns/dns_tests.rb +138 -0
  2855. data/tests/dynect/requests/dns/dns_tests.rb +232 -0
  2856. data/tests/glesys/requests/compute/helper.rb +266 -0
  2857. data/tests/glesys/requests/compute/ip_tests.rb +67 -0
  2858. data/tests/glesys/requests/compute/server_tests.rb +125 -0
  2859. data/tests/glesys/requests/compute/template_tests.rb +12 -0
  2860. data/tests/go_grid/requests/compute/image_tests.rb +0 -0
  2861. data/tests/google/requests/storage/bucket_tests.rb +77 -0
  2862. data/tests/google/requests/storage/object_tests.rb +81 -0
  2863. data/tests/helper.rb +35 -0
  2864. data/tests/helpers/collection_helper.rb +59 -0
  2865. data/tests/helpers/compute/flavors_helper.rb +34 -0
  2866. data/tests/helpers/compute/server_helper.rb +26 -0
  2867. data/tests/helpers/compute/servers_helper.rb +11 -0
  2868. data/tests/helpers/formats_helper.rb +86 -0
  2869. data/tests/helpers/formats_helper_tests.rb +60 -0
  2870. data/tests/helpers/mock_helper.rb +89 -0
  2871. data/tests/helpers/model_helper.rb +35 -0
  2872. data/tests/helpers/responds_to_helper.rb +13 -0
  2873. data/tests/helpers/succeeds_helper.rb +11 -0
  2874. data/tests/hp/models/compute/address_tests.rb +18 -0
  2875. data/tests/hp/models/compute/addresses_tests.rb +5 -0
  2876. data/tests/hp/models/compute/key_pair_tests.rb +27 -0
  2877. data/tests/hp/models/compute/key_pairs_tests.rb +5 -0
  2878. data/tests/hp/models/compute/security_group_tests.rb +36 -0
  2879. data/tests/hp/models/compute/security_groups_tests.rb +5 -0
  2880. data/tests/hp/requests/cdn/container_tests.rb +56 -0
  2881. data/tests/hp/requests/compute/address_tests.rb +73 -0
  2882. data/tests/hp/requests/compute/flavor_tests.rb +45 -0
  2883. data/tests/hp/requests/compute/image_tests.rb +79 -0
  2884. data/tests/hp/requests/compute/key_pair_tests.rb +65 -0
  2885. data/tests/hp/requests/compute/security_group_rule_tests.rb +54 -0
  2886. data/tests/hp/requests/compute/security_group_tests.rb +64 -0
  2887. data/tests/hp/requests/compute/server_address_tests.rb +45 -0
  2888. data/tests/hp/requests/compute/server_tests.rb +127 -0
  2889. data/tests/hp/requests/storage/container_tests.rb +78 -0
  2890. data/tests/hp/requests/storage/object_tests.rb +81 -0
  2891. data/tests/ibm/models/compute/image_tests.rb +25 -0
  2892. data/tests/ibm/models/compute/key_tests.rb +23 -0
  2893. data/tests/ibm/models/compute/keys_tests.rb +35 -0
  2894. data/tests/ibm/models/compute/locations_tests.rb +18 -0
  2895. data/tests/ibm/models/compute/server_tests.rb +88 -0
  2896. data/tests/ibm/models/compute/servers_tests.rb +37 -0
  2897. data/tests/ibm/models/storage/volume_tests.rb +60 -0
  2898. data/tests/ibm/requests/compute/address_tests.rb +44 -0
  2899. data/tests/ibm/requests/compute/image_tests.rb +110 -0
  2900. data/tests/ibm/requests/compute/instance_tests.rb +102 -0
  2901. data/tests/ibm/requests/compute/key_tests.rb +50 -0
  2902. data/tests/ibm/requests/compute/location_tests.rb +28 -0
  2903. data/tests/ibm/requests/compute/vlan_tests.rb +21 -0
  2904. data/tests/ibm/requests/storage/volume_tests.rb +100 -0
  2905. data/tests/joyent/requests/compute/datasets_tests.rb +58 -0
  2906. data/tests/joyent/requests/compute/keys_tests.rb +47 -0
  2907. data/tests/joyent/requests/compute/machines_tests.rb +67 -0
  2908. data/tests/joyent/requests/compute/packages_tests.rb +68 -0
  2909. data/tests/libvirt/compute_tests.rb +17 -0
  2910. data/tests/libvirt/models/compute/interface_tests.rb +27 -0
  2911. data/tests/libvirt/models/compute/interfaces_tests.rb +14 -0
  2912. data/tests/libvirt/models/compute/network_tests.rb +27 -0
  2913. data/tests/libvirt/models/compute/networks_tests.rb +13 -0
  2914. data/tests/libvirt/models/compute/nic_tests.rb +31 -0
  2915. data/tests/libvirt/models/compute/nics_tests.rb +10 -0
  2916. data/tests/libvirt/models/compute/pool_tests.rb +27 -0
  2917. data/tests/libvirt/models/compute/pools_tests.rb +13 -0
  2918. data/tests/libvirt/models/compute/server_tests.rb +58 -0
  2919. data/tests/libvirt/models/compute/servers_tests.rb +14 -0
  2920. data/tests/libvirt/models/compute/volume_tests.rb +30 -0
  2921. data/tests/libvirt/models/compute/volumes_tests.rb +14 -0
  2922. data/tests/libvirt/requests/compute/create_domain_tests.rb +21 -0
  2923. data/tests/libvirt/requests/compute/define_domain_tests.rb +11 -0
  2924. data/tests/libvirt/requests/compute/update_display.rb +13 -0
  2925. data/tests/linode/requests/compute/datacenter_tests.rb +19 -0
  2926. data/tests/linode/requests/compute/distribution_tests.rb +32 -0
  2927. data/tests/linode/requests/compute/helper.rb +16 -0
  2928. data/tests/linode/requests/compute/kernel_tests.rb +27 -0
  2929. data/tests/linode/requests/compute/linode_tests.rb +143 -0
  2930. data/tests/linode/requests/compute/linodeplans_tests.rb +40 -0
  2931. data/tests/linode/requests/compute/stackscripts_tests.rb +36 -0
  2932. data/tests/linode/requests/dns/dns_tests.rb +250 -0
  2933. data/tests/local/models/file_tests.rb +43 -0
  2934. data/tests/local/storage_tests.rb +40 -0
  2935. data/tests/lorem.txt +1 -0
  2936. data/tests/ninefold/models/storage/file_update_tests.rb +19 -0
  2937. data/tests/ninefold/models/storage/nested_directories_tests.rb +23 -0
  2938. data/tests/ninefold/requests/compute/address_tests.rb +42 -0
  2939. data/tests/ninefold/requests/compute/async_job_tests.rb +33 -0
  2940. data/tests/ninefold/requests/compute/helper.rb +317 -0
  2941. data/tests/ninefold/requests/compute/list_tests.rb +56 -0
  2942. data/tests/ninefold/requests/compute/nat_tests.rb +92 -0
  2943. data/tests/ninefold/requests/compute/network_tests.rb +21 -0
  2944. data/tests/ninefold/requests/compute/template_tests.rb +21 -0
  2945. data/tests/ninefold/requests/compute/virtual_machine_tests.rb +69 -0
  2946. data/tests/openstack/models/identity/role_tests.rb +27 -0
  2947. data/tests/openstack/models/identity/roles_tests.rb +19 -0
  2948. data/tests/openstack/models/identity/tenant_tests.rb +24 -0
  2949. data/tests/openstack/models/identity/tenants_tests.rb +26 -0
  2950. data/tests/openstack/models/identity/user_tests.rb +46 -0
  2951. data/tests/openstack/models/identity/users_tests.rb +33 -0
  2952. data/tests/openstack/models/image/image_tests.rb +35 -0
  2953. data/tests/openstack/models/image/images_tests.rb +14 -0
  2954. data/tests/openstack/requests/compute/address_tests.rb +49 -0
  2955. data/tests/openstack/requests/compute/flavor_tests.rb +48 -0
  2956. data/tests/openstack/requests/compute/helper.rb +17 -0
  2957. data/tests/openstack/requests/compute/image_tests.rb +59 -0
  2958. data/tests/openstack/requests/compute/keypair_tests.rb +30 -0
  2959. data/tests/openstack/requests/compute/quota_tests.rb +44 -0
  2960. data/tests/openstack/requests/compute/security_group_tests.rb +51 -0
  2961. data/tests/openstack/requests/compute/server_tests.rb +142 -0
  2962. data/tests/openstack/requests/compute/tenant_tests.rb +19 -0
  2963. data/tests/openstack/requests/compute/volume_tests.rb +39 -0
  2964. data/tests/openstack/requests/identity/role_tests.rb +41 -0
  2965. data/tests/openstack/requests/identity/tenant_tests.rb +53 -0
  2966. data/tests/openstack/requests/identity/user_tests.rb +29 -0
  2967. data/tests/openstack/requests/image/image_tests.rb +98 -0
  2968. data/tests/ovirt/compute_tests.rb +24 -0
  2969. data/tests/ovirt/models/compute/cluster_tests.rb +31 -0
  2970. data/tests/ovirt/models/compute/clusters_tests.rb +9 -0
  2971. data/tests/ovirt/models/compute/interface_tests.rb +27 -0
  2972. data/tests/ovirt/models/compute/interfaces_tests.rb +9 -0
  2973. data/tests/ovirt/models/compute/server_tests.rb +51 -0
  2974. data/tests/ovirt/models/compute/servers_tests.rb +14 -0
  2975. data/tests/ovirt/models/compute/template_tests.rb +28 -0
  2976. data/tests/ovirt/models/compute/templates_tests.rb +9 -0
  2977. data/tests/ovirt/requests/compute/create_vm_tests.rb +26 -0
  2978. data/tests/ovirt/requests/compute/destroy_vm_tests.rb +18 -0
  2979. data/tests/ovirt/requests/compute/list_datacenters_tests.rb +13 -0
  2980. data/tests/ovirt/requests/compute/list_storage_domains_tests.rb +13 -0
  2981. data/tests/ovirt/requests/compute/update_vm_tests.rb +18 -0
  2982. data/tests/rackspace/databases_tests.rb +26 -0
  2983. data/tests/rackspace/helper.rb +24 -0
  2984. data/tests/rackspace/load_balancer_tests.rb +21 -0
  2985. data/tests/rackspace/models/block_storage/snapshot_tests.rb +20 -0
  2986. data/tests/rackspace/models/block_storage/snapshots_tests.rb +20 -0
  2987. data/tests/rackspace/models/block_storage/volume_tests.rb +27 -0
  2988. data/tests/rackspace/models/block_storage/volume_types_tests.rb +20 -0
  2989. data/tests/rackspace/models/block_storage/volumes_tests.rb +11 -0
  2990. data/tests/rackspace/models/compute_v2/flavors_tests.rb +20 -0
  2991. data/tests/rackspace/models/compute_v2/images_tests.rb +22 -0
  2992. data/tests/rackspace/models/compute_v2/server_tests.rb +62 -0
  2993. data/tests/rackspace/models/compute_v2/servers_tests.rb +14 -0
  2994. data/tests/rackspace/models/databases/database_tests.rb +17 -0
  2995. data/tests/rackspace/models/databases/databases_tests.rb +17 -0
  2996. data/tests/rackspace/models/databases/flavors_tests.rb +20 -0
  2997. data/tests/rackspace/models/databases/instance_tests.rb +43 -0
  2998. data/tests/rackspace/models/databases/instances_tests.rb +14 -0
  2999. data/tests/rackspace/models/databases/user_tests.rb +21 -0
  3000. data/tests/rackspace/models/databases/users_tests.rb +21 -0
  3001. data/tests/rackspace/models/dns/zone_tests.rb +14 -0
  3002. data/tests/rackspace/models/identity/credentials_tests.rb +16 -0
  3003. data/tests/rackspace/models/identity/roles_tests.rb +16 -0
  3004. data/tests/rackspace/models/identity/tenants_tests.rb +21 -0
  3005. data/tests/rackspace/models/identity/user_tests.rb +17 -0
  3006. data/tests/rackspace/models/identity/users_tests.rb +17 -0
  3007. data/tests/rackspace/models/load_balancers/access_list_tests.rb +12 -0
  3008. data/tests/rackspace/models/load_balancers/access_lists_tests.rb +12 -0
  3009. data/tests/rackspace/models/load_balancers/load_balancer_tests.rb +173 -0
  3010. data/tests/rackspace/models/load_balancers/load_balancers_tests.rb +19 -0
  3011. data/tests/rackspace/models/load_balancers/node_tests.rb +19 -0
  3012. data/tests/rackspace/models/load_balancers/nodes_tests.rb +12 -0
  3013. data/tests/rackspace/models/load_balancers/virtual_ip_tests.rb +16 -0
  3014. data/tests/rackspace/models/load_balancers/virtual_ips_tests.rb +12 -0
  3015. data/tests/rackspace/requests/block_storage/snapshot_tests.rb +81 -0
  3016. data/tests/rackspace/requests/block_storage/volume_tests.rb +61 -0
  3017. data/tests/rackspace/requests/block_storage/volume_type_tests.rb +31 -0
  3018. data/tests/rackspace/requests/compute/address_tests.rb +40 -0
  3019. data/tests/rackspace/requests/compute/flavor_tests.rb +38 -0
  3020. data/tests/rackspace/requests/compute/helper.rb +16 -0
  3021. data/tests/rackspace/requests/compute/image_tests.rb +68 -0
  3022. data/tests/rackspace/requests/compute/resize_tests.rb +33 -0
  3023. data/tests/rackspace/requests/compute/server_tests.rb +92 -0
  3024. data/tests/rackspace/requests/compute_v2/attachment_tests.rb +68 -0
  3025. data/tests/rackspace/requests/compute_v2/flavor_tests.rb +43 -0
  3026. data/tests/rackspace/requests/compute_v2/image_tests.rb +47 -0
  3027. data/tests/rackspace/requests/compute_v2/server_tests.rb +147 -0
  3028. data/tests/rackspace/requests/databases/database_tests.rb +36 -0
  3029. data/tests/rackspace/requests/databases/flavor_tests.rb +16 -0
  3030. data/tests/rackspace/requests/databases/helper.rb +84 -0
  3031. data/tests/rackspace/requests/databases/instance_tests.rb +77 -0
  3032. data/tests/rackspace/requests/databases/user_tests.rb +37 -0
  3033. data/tests/rackspace/requests/dns/dns_tests.rb +125 -0
  3034. data/tests/rackspace/requests/dns/helper.rb +140 -0
  3035. data/tests/rackspace/requests/dns/records_tests.rb +83 -0
  3036. data/tests/rackspace/requests/identity/tenants_tests.rb +21 -0
  3037. data/tests/rackspace/requests/identity/token_tests.rb +63 -0
  3038. data/tests/rackspace/requests/identity/user_tests.rb +107 -0
  3039. data/tests/rackspace/requests/load_balancers/access_list_tests.rb +56 -0
  3040. data/tests/rackspace/requests/load_balancers/algorithm_tests.rb +19 -0
  3041. data/tests/rackspace/requests/load_balancers/connection_logging_tests.rb +25 -0
  3042. data/tests/rackspace/requests/load_balancers/connection_throttling_tests.rb +37 -0
  3043. data/tests/rackspace/requests/load_balancers/error_page_tests.rb +31 -0
  3044. data/tests/rackspace/requests/load_balancers/helper.rb +216 -0
  3045. data/tests/rackspace/requests/load_balancers/load_balancer_tests.rb +75 -0
  3046. data/tests/rackspace/requests/load_balancers/load_balancer_usage_tests.rb +19 -0
  3047. data/tests/rackspace/requests/load_balancers/monitor_tests.rb +46 -0
  3048. data/tests/rackspace/requests/load_balancers/node_tests.rb +86 -0
  3049. data/tests/rackspace/requests/load_balancers/protocol_tests.rb +21 -0
  3050. data/tests/rackspace/requests/load_balancers/session_persistence_tests.rb +33 -0
  3051. data/tests/rackspace/requests/load_balancers/ssl_termination_tests.rb +38 -0
  3052. data/tests/rackspace/requests/load_balancers/usage_tests.rb +17 -0
  3053. data/tests/rackspace/requests/load_balancers/virtual_ip_tests.rb +40 -0
  3054. data/tests/rackspace/requests/storage/account_tests.rb +17 -0
  3055. data/tests/rackspace/requests/storage/container_tests.rb +64 -0
  3056. data/tests/rackspace/requests/storage/large_object_tests.rb +47 -0
  3057. data/tests/rackspace/requests/storage/object_tests.rb +117 -0
  3058. data/tests/rackspace/url_encoding_tests.rb +3 -0
  3059. data/tests/serverlove/requests/compute/image_tests.rb +57 -0
  3060. data/tests/serverlove/requests/compute/server_tests.rb +85 -0
  3061. data/tests/serverlove/util/compute/password_generator_tests.rb +19 -0
  3062. data/tests/storage/helper.rb +22 -0
  3063. data/tests/storage/models/directories_tests.rb +17 -0
  3064. data/tests/storage/models/directory_test.rb +29 -0
  3065. data/tests/storage/models/file_tests.rb +41 -0
  3066. data/tests/storage/models/files_tests.rb +26 -0
  3067. data/tests/storm_on_demand/requests/compute/server_tests.rb +64 -0
  3068. data/tests/vcloud/data/api_+_admin_+_network_+_2 +110 -0
  3069. data/tests/vcloud/data/api_+_network_+_1 +44 -0
  3070. data/tests/vcloud/data/api_+_org_+_ +5 -0
  3071. data/tests/vcloud/data/api_+_org_+_1 +17 -0
  3072. data/tests/vcloud/data/api_+_sessions +8 -0
  3073. data/tests/vcloud/data/api_+_v1.0_+_admin_+_network_+_2 +110 -0
  3074. data/tests/vcloud/data/api_+_v1.0_+_login +5 -0
  3075. data/tests/vcloud/data/api_+_v1.0_+_network_+_1 +44 -0
  3076. data/tests/vcloud/data/api_+_v1.0_+_network_+_2 +31 -0
  3077. data/tests/vcloud/data/api_+_v1.0_+_org_+_1 +17 -0
  3078. data/tests/vcloud/data/api_+_v1.0_+_vApp_+_vapp-1 +369 -0
  3079. data/tests/vcloud/data/api_+_v1.0_+_vApp_+_vm-1 +139 -0
  3080. data/tests/vcloud/data/api_+_v1.0_+_vApp_+_vm-2 +155 -0
  3081. data/tests/vcloud/data/api_+_v1.0_+_vdc_+_1 +61 -0
  3082. data/tests/vcloud/data/api_+_vApp_+_vapp-1 +369 -0
  3083. data/tests/vcloud/data/api_+_vApp_+_vm-2 +155 -0
  3084. data/tests/vcloud/data/api_+_vdc_+_1 +61 -0
  3085. data/tests/vcloud/models/compute/conn_helper.rb +20 -0
  3086. data/tests/vcloud/models/compute/helper.rb +25 -0
  3087. data/tests/vcloud/models/compute/network_tests.rb +67 -0
  3088. data/tests/vcloud/models/compute/networks_tests.rb +61 -0
  3089. data/tests/vcloud/models/compute/organization_tests.rb +20 -0
  3090. data/tests/vcloud/models/compute/organizations_tests.rb +16 -0
  3091. data/tests/vcloud/models/compute/server_tests.rb +142 -0
  3092. data/tests/vcloud/models/compute/servers_tests.rb +23 -0
  3093. data/tests/vcloud/models/compute/vapp_tests.rb +32 -0
  3094. data/tests/vcloud/models/compute/vapps_tests.rb +19 -0
  3095. data/tests/vcloud/models/compute/vdc_tests.rb +48 -0
  3096. data/tests/vcloud/models/compute/vdcs_tests.rb +24 -0
  3097. data/tests/vcloud/requests/compute/disk_configure_tests.rb +114 -0
  3098. data/tests/voxel/requests/compute/image_tests.rb +52 -0
  3099. data/tests/voxel/requests/compute/server_tests.rb +123 -0
  3100. data/tests/vsphere/compute_tests.rb +55 -0
  3101. data/tests/vsphere/models/compute/server_tests.rb +45 -0
  3102. data/tests/vsphere/models/compute/servers_tests.rb +15 -0
  3103. data/tests/vsphere/requests/compute/current_time_tests.rb +12 -0
  3104. data/tests/vsphere/requests/compute/find_vm_by_ref_tests.rb +26 -0
  3105. data/tests/vsphere/requests/compute/list_virtual_machines_tests.rb +46 -0
  3106. data/tests/vsphere/requests/compute/vm_clone_tests.rb +32 -0
  3107. data/tests/vsphere/requests/compute/vm_config_vnc_tests.rb +19 -0
  3108. data/tests/vsphere/requests/compute/vm_create_tests.rb +20 -0
  3109. data/tests/vsphere/requests/compute/vm_destroy_tests.rb +17 -0
  3110. data/tests/vsphere/requests/compute/vm_migrate_tests.rb +16 -0
  3111. data/tests/vsphere/requests/compute/vm_power_off_tests.rb +26 -0
  3112. data/tests/vsphere/requests/compute/vm_power_on_tests.rb +17 -0
  3113. data/tests/vsphere/requests/compute/vm_reboot_tests.rb +26 -0
  3114. data/tests/vsphere/requests/compute/vm_reconfig_cpus_tests.rb +19 -0
  3115. data/tests/vsphere/requests/compute/vm_reconfig_hardware_tests.rb +19 -0
  3116. data/tests/vsphere/requests/compute/vm_reconfig_memory_tests.rb +19 -0
  3117. data/tests/watchr.rb +22 -0
  3118. data/tests/xenserver/README +21 -0
  3119. data/tests/xenserver/compute_tests.rb +52 -0
  3120. data/tests/xenserver/helper.rb +36 -0
  3121. data/tests/xenserver/models/compute/host_tests.rb +68 -0
  3122. data/tests/xenserver/models/compute/hosts_tests.rb +22 -0
  3123. data/tests/xenserver/models/compute/network_tests.rb +67 -0
  3124. data/tests/xenserver/models/compute/networks_tests.rb +22 -0
  3125. data/tests/xenserver/models/compute/pbd_tests.rb +44 -0
  3126. data/tests/xenserver/models/compute/pbds_tests.rb +22 -0
  3127. data/tests/xenserver/models/compute/pif_tests.rb +58 -0
  3128. data/tests/xenserver/models/compute/pifs_tests.rb +22 -0
  3129. data/tests/xenserver/models/compute/pool_tests.rb +50 -0
  3130. data/tests/xenserver/models/compute/pools_tests.rb +30 -0
  3131. data/tests/xenserver/models/compute/server_tests.rb +167 -0
  3132. data/tests/xenserver/models/compute/servers_tests.rb +88 -0
  3133. data/tests/xenserver/models/compute/storage_repositories_tests.rb +30 -0
  3134. data/tests/xenserver/models/compute/storage_repository_tests.rb +63 -0
  3135. data/tests/xenserver/models/compute/vbd_tests.rb +115 -0
  3136. data/tests/xenserver/models/compute/vbds_tests.rb +22 -0
  3137. data/tests/xenserver/models/compute/vif_tests.rb +53 -0
  3138. data/tests/xenserver/models/compute/vifs_tests.rb +22 -0
  3139. data/tests/xenserver/requests/compute/clone_server_tests.rb +32 -0
  3140. data/tests/xenserver/requests/compute/create_server_tests.rb +129 -0
  3141. data/tests/xenserver/requests/compute/create_vdi_tests.rb +80 -0
  3142. data/tests/xenserver/requests/compute/create_vif_tests.rb +88 -0
  3143. data/tests/xenserver/requests/compute/destroy_vdi_tests.rb +25 -0
  3144. data/tests/xenserver/requests/compute/get_record_tests.rb +15 -0
  3145. data/tests/xenserver/requests/compute/set_attribute_tests.rb +66 -0
  3146. data/tests/xenserver/xenserver_tests.rb +34 -0
  3147. data/tests/zerigo/requests/dns/dns_tests.rb +373 -0
  3148. metadata +4017 -0
@@ -0,0 +1,106 @@
1
+ require 'rubygems'
2
+ require 'aws/s3'
3
+ require 'benchmark'
4
+ require 'right_aws'
5
+
6
+ require File.join(File.dirname(__FILE__), '..', 'lib', 'fog')
7
+
8
+ data = File.open(File.expand_path('~/.fog')).read
9
+ config = YAML.load(data)[:default]
10
+ fog = Fog::AWS::S3.new(
11
+ :aws_access_key_id => config[:aws_access_key_id],
12
+ :aws_secret_access_key => config[:aws_secret_access_key]
13
+ )
14
+ raws = RightAws::S3Interface.new(
15
+ config[:aws_access_key_id],
16
+ config[:aws_secret_access_key]
17
+ )
18
+ raws.logger.level = 3 # ERROR
19
+ awss3 = AWS::S3::Base.establish_connection!(
20
+ :access_key_id => config[:aws_access_key_id],
21
+ :secret_access_key => config[:aws_secret_access_key],
22
+ :persistent => true
23
+ )
24
+
25
+ TIMES = 10
26
+
27
+ Benchmark.bmbm(25) do |bench|
28
+ bench.report('fog.put_bucket') do
29
+ TIMES.times do |x|
30
+ fog.put_bucket("fogbench#{x}")
31
+ end
32
+ end
33
+ bench.report('raws.create_bucket') do
34
+ TIMES.times do |x|
35
+ raws.create_bucket("rawsbench#{x}")
36
+ end
37
+ end
38
+ bench.report('awss3::Bucket.create') do
39
+ TIMES.times do |x|
40
+ AWS::S3::Bucket.create("awss3bench#{x}")
41
+ end
42
+ end
43
+
44
+ bench.report('fog.put_object') do
45
+ TIMES.times do |x|
46
+ TIMES.times do |y|
47
+ file = File.open(File.dirname(__FILE__) + '/../spec/lorem.txt', 'r')
48
+ fog.put_object("fogbench#{x}", "lorem_#{y}", file)
49
+ end
50
+ end
51
+ end
52
+ bench.report('raws.put') do
53
+ TIMES.times do |x|
54
+ TIMES.times do |y|
55
+ file = File.open(File.dirname(__FILE__) + '/../spec/lorem.txt', 'r')
56
+ raws.put("rawsbench#{x}", "lorem_#{y}", file)
57
+ end
58
+ end
59
+ end
60
+ bench.report('awss3::S3Object.create') do
61
+ TIMES.times do |x|
62
+ TIMES.times do |y|
63
+ file = File.open(File.dirname(__FILE__) + '/../spec/lorem.txt', 'r')
64
+ AWS::S3::S3Object.create("lorem_#{y}", file, "awss3bench#{x}")
65
+ end
66
+ end
67
+ end
68
+
69
+ bench.report('fog.delete_object') do
70
+ TIMES.times do |x|
71
+ TIMES.times do |y|
72
+ fog.delete_object("fogbench#{x}", "lorem_#{y}")
73
+ end
74
+ end
75
+ end
76
+ bench.report('raws.delete') do
77
+ TIMES.times do |x|
78
+ TIMES.times do |y|
79
+ raws.delete("rawsbench#{x}", "lorem_#{y}")
80
+ end
81
+ end
82
+ end
83
+ bench.report('awss3::S3Object.delete') do
84
+ TIMES.times do |x|
85
+ TIMES.times do |y|
86
+ AWS::S3::S3Object.delete("lorem_#{y}", "awss3bench#{x}")
87
+ end
88
+ end
89
+ end
90
+
91
+ bench.report('fog.delete_bucket') do
92
+ TIMES.times do |x|
93
+ fog.delete_bucket("fogbench#{x}")
94
+ end
95
+ end
96
+ bench.report('raws.delete_bucket') do
97
+ TIMES.times do |x|
98
+ raws.delete_bucket("rawsbench#{x}")
99
+ end
100
+ end
101
+ bench.report('awss3::Bucket.delete') do
102
+ TIMES.times do |x|
103
+ AWS::S3::Bucket.delete("awss3bench#{x}")
104
+ end
105
+ end
106
+ end
@@ -0,0 +1,43 @@
1
+ require 'benchmark'
2
+
3
+ def hash(options)
4
+ result = "#{options.delete(:name)}"
5
+ for key, value in options
6
+ result << " #{key} => #{value} "
7
+ end
8
+ result
9
+ end
10
+
11
+ def optional(name, a = nil, b = nil, c = nil)
12
+ result = "#{name}"
13
+ options = { :a => a, :b => b, :c => c }
14
+ for key, value in options
15
+ result << " #{key} => #{value} "
16
+ end
17
+ result
18
+ end
19
+
20
+ COUNT = 100_000
21
+ data = "Content-Length: 100"
22
+ Benchmark.bmbm(25) do |bench|
23
+ bench.report('hash') do
24
+ COUNT.times do
25
+ hash({:name => 'name'})
26
+ end
27
+ end
28
+ bench.report('optional') do
29
+ COUNT.times do
30
+ optional('name')
31
+ end
32
+ end
33
+ bench.report('hash_with_option') do
34
+ COUNT.times do
35
+ hash({:name => 'name', :a => 'a', :b => 'b', :c => 'c'})
36
+ end
37
+ end
38
+ bench.report('optional_with_option') do
39
+ COUNT.times do
40
+ optional('name', :a => 'a', :b => 'b', :c => 'c')
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,69 @@
1
+ require 'benchmark'
2
+ require 'rubygems'
3
+ require 'nokogiri'
4
+
5
+ class Parser < Nokogiri::XML::SAX::Document
6
+
7
+ attr_reader :response
8
+
9
+ def initialize
10
+ reset
11
+ end
12
+
13
+ def reset
14
+ @item = {}
15
+ @response = { :items => [] }
16
+ end
17
+
18
+ def characters(string)
19
+ @value ||= ''
20
+ @value << string.strip
21
+ end
22
+
23
+ def start_element(name, attrs = [])
24
+ @value = nil
25
+ end
26
+
27
+ def end_element(name)
28
+ case name
29
+ when 'item'
30
+ @response[:items] << @item
31
+ @item = {}
32
+ when 'key'
33
+ @item[:key] = value
34
+ end
35
+ end
36
+
37
+ def value
38
+ @value.dup
39
+ end
40
+
41
+ end
42
+
43
+ data = <<-DATA
44
+ <items>
45
+ <item>
46
+ <key>value</key>
47
+ </item>
48
+ </items>
49
+ DATA
50
+
51
+ COUNT = 10_000
52
+
53
+ Benchmark.bmbm(25) do |bench|
54
+ bench.report('parse') do
55
+ COUNT.times do
56
+ parser = Parser.new
57
+ Nokogiri::XML::SAX::Parser.new(parser).parse(data)
58
+ parser.response
59
+ end
60
+ end
61
+
62
+ bench.report('push') do
63
+ COUNT.times do
64
+ parser = Parser.new
65
+ Nokogiri::XML::SAX::PushParser.new(parser).write(data, true)
66
+ parser.response
67
+ end
68
+ end
69
+ end
data/bin/fog ADDED
@@ -0,0 +1,52 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'fog'))
3
+ require 'irb'
4
+ require 'yaml'
5
+ Fog.credential = ARGV.first ? ARGV.first.to_sym : nil
6
+ Fog.mock! if ENV['FOG_MOCK']
7
+ if Fog.credentials.empty?
8
+ begin
9
+ Fog::Errors.missing_credentials
10
+ rescue Fog::Errors::LoadError => error
11
+ abort error.message
12
+ end
13
+ end
14
+
15
+ require 'fog/bin'
16
+
17
+ providers = Fog.available_providers
18
+ providers = if providers.length > 1
19
+ providers[0...-1].join(', ') << ' and ' << providers[-1]
20
+ else
21
+ providers.first
22
+ end
23
+
24
+ if ARGV.length > 1
25
+
26
+ result = instance_eval(ARGV[1..-1].join(' '))
27
+ puts(Fog::JSON.encode(result))
28
+
29
+ else
30
+
31
+ ARGV.clear # Avoid passing args to IRB
32
+ IRB.setup(nil)
33
+ @irb = IRB::Irb.new(nil)
34
+ IRB.conf[:MAIN_CONTEXT] = @irb.context
35
+ IRB.conf[:PROMPT][:FOG] = IRB.conf[:PROMPT][:SIMPLE].dup
36
+ IRB.conf[:PROMPT][:FOG][:RETURN] = "%s\n"
37
+ @irb.context.prompt_mode = :FOG
38
+ @irb.context.workspace = IRB::WorkSpace.new(binding)
39
+
40
+ Formatador.display_line('Welcome to fog interactive!')
41
+ Formatador.display_line(":#{Fog.credential} provides #{providers}")
42
+ providers = Fog.providers
43
+
44
+ # FIXME: hacks until we can `include Fog` in bin
45
+ CDN = Fog::CDN
46
+ Compute = Fog::Compute
47
+ DNS = Fog::DNS
48
+ Storage = Fog::Storage
49
+
50
+ catch(:IRB_EXIT) { @irb.eval_input }
51
+
52
+ end
@@ -0,0 +1,3389 @@
1
+ 1.6.0 09/15/2012 4bd909557fd595a656ebd86a3d7c5849bd923fe1
2
+ =========================================================
3
+
4
+ Stats! { 'collaborators' => 40, 'downloads' => 1015900, 'forks' => 539, 'open_issues' => 55, 'watchers' => 2119 }
5
+
6
+ [AWS]
7
+ Implement signature v4. thanks Frederick Cheung
8
+ Create the time directly in tests, avoids using a method not present in 1.8.7. thanks Frederick Cheung
9
+ avoid spurious test failure when tag test returns before images test. thanks Frederick Cheung
10
+ Adding missing :glacier case for AWS.collections. thanks Frederick Cheung
11
+
12
+ [AWS|AutoScaling]
13
+ Typo in delete_autoscaling_group mock: Autoscaling->AutoScaling. thanks Frederick Cheung
14
+ fix group#instances. thanks Frederick Cheung
15
+ Fix describe_auto_scaling_groups parser added spurious nil groups. thanks Frederick Cheung
16
+ Fix delete_auto_scaling_group.rb mock not raising the same error as real code. thanks Frederick Cheung
17
+
18
+ [AWS|Compute]
19
+ Add the ablity to pass :version and use newer AWS API. thanks Zuhaib M Siddique
20
+
21
+ [AWS|Glacier]
22
+ Bare glacier service. thanks Frederick Cheung
23
+ single part uploads. thanks Frederick Cheung
24
+ multipart uploads. thanks Frederick Cheung
25
+ Jobs requests. thanks Frederick Cheung
26
+ vaults model. thanks Frederick Cheung
27
+ Use bytesize rather than length. thanks Frederick Cheung
28
+ models for archives. thanks Frederick Cheung
29
+ jobs model. thanks Frederick Cheung
30
+ Add notification configuration to model. thanks Frederick Cheung
31
+ mark tests as pending. thanks Frederick Cheung
32
+ byteslice is only available in 1.9.3 - add fallback for 1.9.2. thanks Frederick Cheung
33
+ fix 1.9.2 fallback. thanks Frederick Cheung
34
+ make 1.8.7 friendly. thanks Frederick Cheung
35
+ Fix job type constant. thanks Frederick Cheung
36
+ fix setting description on multipart upload. thanks Frederick Cheung
37
+ fix name of header used for description. thanks Frederick Cheung
38
+ Allow filtering of jobs collection. thanks Frederick Cheung
39
+ Don't try to deserialize json when body is empty. thanks Frederick Cheung
40
+
41
+ [AWS|RDS]
42
+ expose the SnapshotType attribute & allow filtering by it. thanks Frederick Cheung
43
+
44
+ [AWS|Signaturev4]
45
+ allow symbols to be used as header/query keys. thanks Frederick Cheung
46
+
47
+ [AWS|Storage]
48
+ mark upload_part as idempotent so it will be retried automatically. thanks Frederick Cheung
49
+
50
+ [Brightbox]
51
+ Fix output format for brightbox cloud ip. thanks Hemant Kumar
52
+
53
+ [Brightbox|CloudIp]
54
+ Remove duplicate constant definition for port translators. thanks Hemant Kumar
55
+
56
+ [Cloudstack]
57
+ 1.8.7 compat: on 1.8.7 '123'[0] returns the byte value of '0' and not '1'. thanks Frederick Cheung
58
+
59
+ [Core]
60
+ fix format_helper assuming p returns nil. thanks Frederick Cheung
61
+
62
+ [HP]
63
+ delete_if returns the array, not what was deleted. thanks Frederick Cheung
64
+
65
+ [OpenStack]
66
+ fixes wrong method name. thanks Ohad Levy
67
+
68
+ [Openstack]
69
+ Fix mock returning a hash instead of an array. thanks Frederick Cheung
70
+
71
+ [Openstack|Compute]
72
+ Security Groups are not assigned correctly to servers. thanks Ohad Levy
73
+
74
+ [aws|auto_scaling]
75
+ Add instrumentation support. thanks Michael Hale
76
+
77
+ [aws|compute]
78
+ fix typo in deprecation warning. thanks Aaron Suggs
79
+ Nicer interface for security group authorizations. thanks Aaron Suggs
80
+ Add instrumentation support. thanks Dan Peterson
81
+ Support creating and describing volumes with provisioned IOPS. thanks Dan Peterson
82
+ Get instance requests tests working. thanks Dan Peterson
83
+ Support for EBS-optimized instances. thanks Dan Peterson
84
+ Pass empty groupIds when mocking. thanks Dan Peterson
85
+ DescribeInstanceStatus code within eventsSet goes on the item. thanks Dan Peterson
86
+ fixes for spot request waiting see also #841. thanks geemus
87
+ remove brittle instance tests which rely on tests running fast p.s. these fail on travis-ci. thanks geemus
88
+ fix mock filters for internet gateways/subnets/vpcs. thanks geemus
89
+
90
+ [aws|elb]
91
+ Add instrumentation support. thanks Dan Peterson
92
+ fixes for mock tests. thanks geemus
93
+
94
+ [aws|iam]
95
+ Add instrumentation support. thanks Dan Peterson
96
+
97
+ [aws|rds]
98
+ Correct server#read_replica_identifiers when mocking. thanks Aaron Suggs
99
+ Mocking better supports reboot state. thanks Aaron Suggs
100
+ Mocking better supports modifying state. thanks Aaron Suggs
101
+ Fix server tests. thanks Aaron Suggs
102
+ Mocking support for read replicas. thanks Aaron Suggs
103
+ Mock support for setting AZ and MultiAZ. thanks Aaron Suggs
104
+
105
+ [brightbox]
106
+ Use first available image for server tests. thanks Steve Smith
107
+
108
+ [brightbox|ServerGroup]
109
+ ServerGroups can have a nil name. thanks Steve Smith
110
+
111
+ [brightbox|compute]
112
+ Merged outstanding work from Brightbox's fork. thanks Paul Thornthwaite
113
+ Implemented reboot using available API commands. thanks Paul Thornthwaite
114
+ Updates to Test helper for select image. thanks Paul Thornthwaite
115
+ Helper to get default image from API. thanks Paul Thornthwaite
116
+
117
+ [cloudstack|compute]
118
+ remove erroneous comma in merge command. thanks geemus
119
+
120
+ [compute|Ecloud]
121
+ Ecloud should not show up as a valid provider when not providing credentials. thanks Eugene Howe
122
+
123
+ [dynect|dns]
124
+ Only JSON decode when Content-Type says so. Fixes job handling. thanks Dan Peterson
125
+ Job polling should use original expected statuses. thanks Dan Peterson
126
+
127
+ [google/storage]
128
+ Fix docs for new GCS urls. thanks Nat Welch
129
+
130
+ [google|storage]
131
+ update expected format to remove StorageClass. thanks geemus
132
+ also update mocks to omit storageclass. thanks geemus
133
+
134
+ [hp|storage]
135
+ Use response_block param, as excon has deprecated implicit blocks. thanks Ferran Rodenas
136
+
137
+ [misc]
138
+ When using mock mode, Range header is now not ignored in get_object(). thanks Ahmed Al Hafoudh
139
+ Documentation error for delete_object. thanks Alex Tambellini
140
+ Add barebones configuration for Travis CI. thanks Alexander Wenzowski
141
+ add Travis CI build status image. thanks Alexander Wenzowski
142
+ notify #ruby-fog on freenode instead of emailing. thanks Alexander Wenzowski
143
+ remove repository_url from notification template Interpolation of %{repository_url} is currently broken on Travis CI. thanks Alexander Wenzowski
144
+ CloudStack: added registerTemplate request. thanks Aliaksei Kliuchnikau
145
+ CloudStack: listTemplates, registerTemplate requests return hypervisor in the response. thanks Aliaksei Kliuchnikau
146
+ Enable AWS spot requests in a VPC by specifying subnet_id. thanks Ben Turley
147
+ Fix for RDS VPC subnet groups. thanks Ben Turley
148
+ parse ASCII code * in wildcard domain. Fixes #1093. thanks Blake Gentry
149
+ automatically figure out the elb hosted_zone_id if possible. thanks Blake Gentry
150
+ Add source for getting instance mac address. thanks Carl Caum
151
+ Only add VNC password and listen port if present. thanks Carl Caum
152
+ Revert 530122d. thanks Carl Caum
153
+ Abillity to List Images and List SSH Keys. thanks Chirag Jog
154
+ Add support to create, delete internet services. thanks Chirag Jog
155
+ Accept vCPUS and Memory as parameters while creating servers. thanks Chirag Jog
156
+ Minor Fixes: Remove unncessary prints. Use override_path instead of replace class variable path. thanks Chirag Jog
157
+ Fix support to add internet service to the existing Public Ip. thanks Chirag Jog
158
+ Support to configure vapp and add multiple internet services. thanks Chirag Jog
159
+ Remove uneccessary puts. thanks Chirag Jog
160
+ Add support to build/re-build/clobber gem/package/docs. thanks Chirag Jog
161
+ Fix minor issue. thanks Chirag Jog
162
+ Re-work based on Geemus's review. Manage InternetService and NodeService as separate entities Reload server status properly. thanks Chirag Jog
163
+ Revert Rakefile changes. thanks Chirag Jog
164
+ 1.Ability to fetch/list Orgs, Vdcs, Vapps, Servers. 2.Support to customize CPUs and Password. thanks Chirag Jog
165
+ Add ability to configure a vApp with an Org-wide network and associated firewall, NAT rules(limited support). thanks Chirag Jog
166
+ 1.Fix Catalog Listing for vCD 1.5 2.Construct Valid XML to memory configuration 3.Fix Undeploy vCD 1.5. thanks Chirag Jog
167
+ Added m1.medium instance type for AWS flavors. thanks Curtis Stewart
168
+ - Updated "@host" variable to "noc.newservers.com" which is the current host for API calls - Added two calls: add_server_by_configuration.rb and list_configurations.rb -- These calls should be used instead of add_server and list_plans, although we still support them. - General comments were updated. thanks Diego Desani
169
+ Add gsub to replace URL-encoded characters in the public_url method. thanks Eric Chernuka
170
+ fix reboot guest in vsphere to reboot rather than shutdown guest. thanks Eric Stonfer
171
+ added file upload and ip add capabilities. thanks Eugene Howe
172
+ added error handling for edge cases where there are no networks or ips. thanks Eugene Howe
173
+ [AWS|Glacier} basic vault operations. thanks Frederick Cheung
174
+ fix mock not returning the right data. thanks Frederick Cheung
175
+ set Content-MD5. thanks Frederick Cheung
176
+ Add fqdn to server attributes. thanks Hemant Kumar
177
+ Brightbox : Include licence_name in Image. thanks Hemant Kumar
178
+ Brightbox: Change licence_name type to Fog::Nullable::String. thanks Hemant Kumar
179
+ Add support for port translators. thanks Hemant Kumar
180
+ Rackspace Storage: new request, get_object_https_url. thanks James Healy
181
+ Rackspace Storage: new request, post_set_meta_temp_url_key. thanks James Healy
182
+ Rackspace Storage: a backslash shouldn't be escaped when signing URLS. thanks James Healy
183
+ add a basic spec for Rackspace::Storage#get_object_https_url. thanks James Healy
184
+ add basic spec for Rackspace::Storage##post_set_meta_temp_url_key. thanks James Healy
185
+ Rackspace Storage: fix expiring URLs that contain a hyphen. thanks James Healy
186
+ Add Serverlove directory. thanks James Rose
187
+ Basic Serverlove implementation. thanks James Rose
188
+ Wrong directory. thanks James Rose
189
+ Typo. thanks James Rose
190
+ Proper request arguments. thanks James Rose
191
+ Typo. thanks James Rose
192
+ Still wrong. thanks James Rose
193
+ Works. thanks James Rose
194
+ We want JSON. thanks James Rose
195
+ Typo. thanks James Rose
196
+ add high io flavor to aws flavors. thanks Josh Lane
197
+ Move Dynect endpoint from api2 to api-v4. thanks Marc Seeger
198
+ don't let the Paulistas be left out of the party. thanks Martin Englund
199
+ use 10.04 instead of 12.04. thanks Martin Englund
200
+ Google changed their URL scheme for Cloud Storage. thanks Nat Welch
201
+ Also change GCS url in dir and file models. thanks Nat Welch
202
+ Update lib/fog/hp/models/compute/image.rb. thanks Neill Turner
203
+ Update lib/fog/hp/models/compute/server.rb. thanks Neill Turner
204
+ Update lib/fog/aws/requests/compute/describe_instance_status.rb. thanks Oleg
205
+ Added new Server#fqdn attribute to test helper. thanks Paul Thornthwaite
206
+ Rewrite tests to use 1.8 compatible Hash syntax. thanks Paul Thornthwaite
207
+ Add missing providers to the all_providers list for testing. thanks Paul Thornthwaite
208
+ Use string not symbols for Storage tests to work with Shindo tagging. thanks Paul Thornthwaite
209
+ Retagged tests with strings to be skipped by Shindo. thanks Paul Thornthwaite
210
+ Tagged AWS URL test so correctly ignored by Shindo. thanks Paul Thornthwaite
211
+ Reduce maintenance of tests by using a dynamic list of providers. thanks Paul Thornthwaite
212
+ add support for multiple regions in Opentack. thanks Pedro Perez
213
+ Fixed the link to GitHub issues. thanks Postmodern
214
+ Change iprange --> ec2_secg in Mock. thanks Rob Lockstone
215
+ Added support for RDS VPC subnet groups. Bumped RDS API version to 2012-01-15. thanks Rusty Geldmacher
216
+ Added DBSubnetGroupName to test format for RDS instances. thanks Rusty Geldmacher
217
+ Adding server love disk model. thanks Sean Handley
218
+ Changed disk model based on responses from real API requests. thanks Sean Handley
219
+ Set up drive objects (not disks). thanks Sean Handley
220
+ If you use info, you get all the info. thanks Sean Handley
221
+ Alias the encryption cipher. thanks Sean Handley
222
+ Sometimes the response body is empty. thanks Sean Handley
223
+ Destroying drives is easy. thanks Sean Handley
224
+ Allowed setting of params as k/v pairs. thanks Sean Handley
225
+ Added create/update functionality. thanks Sean Handley
226
+ Made create/save conform to the Fog API. thanks Sean Handley
227
+ Returning self is totes better than bools. thanks Sean Handley
228
+ Fog calls drives "images", rename for consistency. thanks Sean Handley
229
+ Beginnings of shin do request tests. thanks Sean Handley
230
+ Need these to run the server love tests. thanks Sean Handley
231
+ Beginnings of tests for image operations. thanks Sean Handley
232
+ Adding mock for easier testing. thanks Sean Handley
233
+ Added get_image function. thanks Sean Handley
234
+ Added meaningful test for updating images. thanks Sean Handley
235
+ Typo!. thanks Sean Handley
236
+ Fix conflict. thanks Sean Handley
237
+ This shouldn't be here. thanks Sean Handley
238
+ Can't run shindo tests with old references. thanks Sean Handley
239
+ Added loading of standard image. thanks Sean Handley
240
+ Shindo tests pass. thanks Sean Handley
241
+ Test that we can view servers. thanks Sean Handley
242
+ Whitespace adjustments. thanks Sean Handley
243
+ CRUDs + tests for servers. thanks Sean Handley
244
+ Added server power cycle actions + basic tests. thanks Sean Handley
245
+ Add new request methods to server object. thanks Sean Handley
246
+ Use get_server, not get_image. thanks Sean Handley
247
+ Need a mock server id. thanks Sean Handley
248
+ This was plain wrong - works now!. thanks Sean Handley
249
+ Don't start servers by default. thanks Sean Handley
250
+ Contrary to the documentation, this actually returns a 200 status rather than a 204. thanks Sean Handley
251
+ Allow setting of memory and disk drives. thanks Sean Handley
252
+ Allow DHCP assignment by default. thanks Sean Handley
253
+ Key 'vnc:ip' was invalid. thanks Sean Handley
254
+ Update allowed attributes and defaults. thanks Sean Handley
255
+ Increase test drive size to accommodate a real image. thanks Sean Handley
256
+ Without setting SMP the web UI won't load :-/. thanks Sean Handley
257
+ Reduce from 80GB to 20GB - big enough, save space. thanks Sean Handley
258
+ Standard images need to be unzipped. thanks Sean Handley
259
+ Need to wait for imaging to complete. thanks Sean Handley
260
+ Add a pseudorandom password generator for VNC. thanks Sean Handley
261
+ Auto generate VNC password randomly. thanks Sean Handley
262
+ Used the amazon published endpoints for sqs as defined at http://docs.amazonwebservices.com/general/latest/gr/rande.html#sqs_region. thanks Stuart Eccles
263
+ Better mocks for invalid Provisioned IOPS values. thanks Thom Mahoney
264
+ Add generic support for EMC Atmos. thanks Timur Alperovich
265
+ Submit password/ssh_key/username through POST body. thanks Trevor Bramble
266
+ Update public_url to handle new header casings from Rackspace. thanks Zachary Danger Campbell
267
+ CloudStack: images.get always returns nil - fixed. thanks alex
268
+ add changelog for 1.5.0. thanks geemus
269
+ fixes for cloudstack mock tests see #1090. thanks geemus
270
+ fix mocked elb tests by including InstanceProtocol closes #1090. thanks geemus
271
+ expand travis config, build more rubies, use non-threaded runner. thanks geemus
272
+ just run mri for now on travis. thanks geemus
273
+ remove empty failure block from model_helper. thanks geemus
274
+ allow 1.8.7 to fail and not report for now (until I can work out why it fails when 1.9.x works. thanks geemus
275
+ return to expecting 1.8.7 to pass. thanks geemus
276
+ fix deprecated requires in Rakefile. thanks geemus
277
+ Made steps to get update/create working. Work in progress. thanks seanhandley
278
+ Update lib/fog/aws/models/compute/security_group.rb. thanks vkhatri
279
+
280
+ [rackspace|blockstorage]
281
+ Add volume tests. thanks Brad Gignac
282
+ Add volume type tests. thanks Brad Gignac
283
+ Add snapshot tests. thanks Brad Gignac
284
+ Add relationship between volumes and snapshots. thanks Brad Gignac
285
+ Add block storage provider. thanks Julio Feijo
286
+ Add volume types to block storage. thanks Julio Feijo
287
+ Add snapshots to block storage. thanks Julio Feijo
288
+
289
+ [rackspace|compute]
290
+ Add service for Cloud Servers v2.0. thanks Brad Gignac
291
+ Add flavors and images. thanks Brad Gignac
292
+ Add servers model and collection. thanks Brad Gignac
293
+ Set password attribute on V2 servers. thanks Brad Gignac
294
+ Don't intern nil strings. thanks Brad Gignac
295
+ Add method for listing attachments. thanks Brad Gignac
296
+ Add tests for volume attachments. thanks Brad Gignac
297
+ Improve attachment test reliability. thanks Brad Gignac
298
+ Add attachments model and collection. thanks Julio Feijo
299
+
300
+ [rackspace|storage]
301
+ Override path when generating sha1 to make tests past. thanks Brian Hartsock
302
+
303
+ [serverlove|compute]
304
+ fix serverlove tests for 1.8.7 compatibility. thanks Frederick Cheung
305
+ fix serverlove tests for 1.8.7 compatibility. thanks geemus
306
+
307
+
308
+ 1.5.0 07/28/2012 2e57e2029abbb618411c20f8974e64d8d3fd31fe
309
+ =========================================================
310
+
311
+ Stats! { 'collaborators' => 36, 'downloads' => 870008, 'forks' => 500, 'open_issues' => 44, 'watchers' => 2074 }
312
+
313
+ [AWS|Autoscaling]
314
+ fix group#instances returning all autoscaled instances in the account. thanks Frederick Cheung
315
+
316
+ [Libvirt]
317
+ fixed incorrect mock method signature. thanks Ohad Levy
318
+ ensure Fog volumes do not raise on LVM based volumes. thanks Ohad Levy
319
+
320
+ [aws|compute]
321
+ Address#destroy handles VPC addresses, improve address allocate/release mocking for VPC. thanks Dan Peterson
322
+
323
+ [aws|elasticache]
324
+ Fix bug in cache cluster test. thanks Benton Roberts
325
+ Remove erroneous whitespace trimming. thanks Benton Roberts
326
+ Add Elasticache service-level mocking support. thanks Benton Roberts
327
+ Add mocking for cache cluster requests. thanks Benton Roberts
328
+ Change modify_cache_cluster test to work in mocking mode. thanks Benton Roberts
329
+ Enable mocking for elasticache cluster tests. thanks Benton Roberts
330
+ Mock raises NotFound Exception when AWS does. thanks Benton Roberts
331
+
332
+ [aws|storage]
333
+ Default to false for persistent connections. thanks Kenny Johnston
334
+
335
+ [cloudstack|security_group]
336
+ fix rule revoke mock. thanks Josh Lane
337
+
338
+ [cloudstack|security_groups]
339
+ add groups and rules. thanks Josh Lane & Jason Hansen
340
+
341
+ [cloudstack|server]
342
+ assign security group. thanks Josh Lane & Jason Hansen
343
+
344
+ [dynect|dns]
345
+ No more recursion when polling jobs. Raise an error if the body indicates failure. thanks Dan Peterson
346
+
347
+ [fix-ephemeral-naming]
348
+ Typo in ephemeral naming. thanks Josh Pasqualetto
349
+
350
+ [joyent|compute]
351
+ fix dataset format in tests. thanks geemus
352
+
353
+ [local|storage]
354
+ mark tests pending in mock mode. thanks geemus
355
+
356
+ [misc]
357
+ fix changelog task for github API v3. thanks Aaron Suggs
358
+ update changelog for release 1.4.0. thanks Aaron Suggs
359
+ changelog: backdate to release data. thanks Aaron Suggs
360
+ Local storage support for #public_url. thanks Adam Tanner
361
+ Bugfix in Fog::DNS::AWS::Records.all!. thanks Alexander Kolesen
362
+ Fix for stopping all the servers instead of just specified servers. thanks Avrohom Katz
363
+ private ip address should start with a 10. thanks Avrohom Katz
364
+ Use proper signature when testing with aws mock. thanks Bohuslav Kabrda
365
+ The user must be destroyed even in mock mode, otherwise completely unrelated tests fail (e.g. tests/aws/models/iam/users_tests.rb). thanks Bohuslav Kabrda
366
+ The condition here should be the same as for destroying, so that we test iff the instance gets destroyed. thanks Bohuslav Kabrda
367
+ The assignment correctly returns nil, just the test has to react to it. thanks Bohuslav Kabrda
368
+ The assignment correctly returns false, just the test has to react to it. thanks Bohuslav Kabrda
369
+ Include this to make refresh_credentials_if_expired method work properly with Mock. thanks Bohuslav Kabrda
370
+ Fix the number where credentials expire - if too high, other tests will fail. thanks Bohuslav Kabrda
371
+ Fix openstack tests. thanks Bohuslav Kabrda
372
+ Fix more openstack mock tests failures. thanks Bohuslav Kabrda
373
+ Add the mock urls to fix some more openstack tests. thanks Bohuslav Kabrda
374
+ Fix minor typos and incorrect types in openstack volume tests. thanks Bohuslav Kabrda
375
+ More typos in openstack server tests. thanks Bohuslav Kabrda
376
+ Rework the quota mock testing to work and be more comfortable. thanks Bohuslav Kabrda
377
+ Must use values, so that connection.list_roles gets corrent argument. thanks Bohuslav Kabrda
378
+ Deleting returns nothing, so do not expect role. thanks Bohuslav Kabrda
379
+ Properly check whether role is present. thanks Bohuslav Kabrda
380
+ Return the properly updated image. thanks Bohuslav Kabrda
381
+ Add the 'new_image' public images, so that find_by_id can find it. thanks Bohuslav Kabrda
382
+ The pending block fails the outer one => make sure we return proper result. thanks Bohuslav Kabrda
383
+ Use proper parameters when testing deploying cloudstact VMs. thanks Bohuslav Kabrda
384
+ This was implemented right previously, shouldn't have changed it. thanks Bohuslav Kabrda
385
+ Correct solution for subnet failing tests - use a collection in self.data. thanks Bohuslav Kabrda
386
+ Do the same thing for vpcs as previously done for subnets. thanks Bohuslav Kabrda
387
+ ...and the same for dhcp_options. thanks Bohuslav Kabrda
388
+ And the same for internet gateways. thanks Bohuslav Kabrda
389
+ Fixes the failure for hp storage. thanks Bohuslav Kabrda
390
+ [rackspace|databases| Add service tests. thanks Brad Gignac
391
+ fix for RDS mocking to avoid state flipping between "modifying" and "available". thanks Brian Nelson
392
+ Fix typo listing datacenters. thanks Carlos Sanchez
393
+ Stop vSphere vms before destroying, or destroy will fail. thanks Carlos Sanchez
394
+ Add a failure for #1014. :v:. thanks Dylan Egan
395
+ Only dup @attributes if it's not nil. thanks Edward Muller
396
+ each based pagination for Fog::AWS::IAM#users. thanks Edward Muller
397
+ fixes elb test in mocking mode. thanks Eric Stonfer
398
+ fix running subnet tests in mocking mode. thanks Eric Stonfer
399
+ fix subnet tests in mocking mode. thanks Eric Stonfer
400
+ fog bombs out on ruby 1.8.x because it cannot find Mutex. thanks Eric Stonfer
401
+ fix not pulling InstanceProtocol from the xml. thanks Frederick Cheung
402
+ Add Sao Paulo server to Amazon RDS known regions. thanks Irio Irineu Musskopf Junior
403
+ Add Sao Paulo server to Amazon SQS known regions. thanks Irio Irineu Musskopf Junior
404
+ Fix bug in local storage #copy_object. thanks Jade Tucker
405
+ Add and get SSL certificates to Rackspace Soft LB. thanks Justin Barry
406
+ Default to being less pessimistic about excon. thanks Kevin Moore
407
+ Fix ssh key behavior when passing specified private keys to ssh/scp. thanks Marc Seeger
408
+ Should not modify passed in "params" variable since block might run several times due to authentication failure producing erroneous path. thanks Max Stepanov
409
+ As discussed in #991, this converts the readme from SimpleMarkup to Markdown. thanks Mike Fiedler
410
+ added PeopleAdmin to list of users. thanks Mike Manewitz
411
+ Fixing typo bug in rackspace load balancer set_ssl_termination request. thanks Paul
412
+ add us-east-1e to mock. thanks Shai Rosenfeld
413
+ Pass up all the options that have been assigned. thanks Trotter Cashion
414
+ Pass options on to AutoScalingGroup. thanks Trotter Cashion
415
+ Add better ScalingPolicy support. thanks Trotter Cashion
416
+ Add more AWS Alarm functionality. thanks Trotter Cashion
417
+ Add delete mocks. thanks Trotter Cashion
418
+ Properly array-ify keys for create_auto_scaling_group. thanks Trotter Cashion
419
+ Add tags to autoscaling groups. thanks Trotter Cashion
420
+ Enable tests when mocking. thanks Trotter Cashion
421
+ Recognize ninefold_api_url option for pre-production testing. thanks Warren Bain
422
+ remove specs (likely from a bad merge). thanks geemus
423
+ update tests/helper to have bare_metal_cloud instead of new_servers. thanks geemus
424
+ Mock for filter ec2 instances by group name. thanks phillc
425
+
426
+ [openstack]
427
+ Fix Authentication for OpenStack v1.1 Authentication. thanks Nelvin Driz
428
+
429
+ [openstack|compute]
430
+ Add filters to list servers details. thanks Ferran Rodenas
431
+ Added adminPass attribute in create_server. thanks Philip Mark M. Deazeta
432
+ fix method signature for mock list_servers_detail. thanks geemus
433
+
434
+ [openstack|image]
435
+ Stream OpenStack image. thanks Vadim Spivak
436
+
437
+ [rackspace|databases]
438
+ Add read-only support for Rackspace Cloud Databases. thanks Brad Gignac
439
+ Add write support for Rackspace Cloud Databases. thanks Brad Gignac
440
+ Register Rackspace Cloud Databases service with Fog. thanks Brad Gignac
441
+ Remove "list/details" API calls in favor of "list" calls. thanks Brad Gignac
442
+ Add model tests. thanks Brad Gignac
443
+ Finish request tests. thanks Brad Gignac
444
+ Remove old comments. thanks Brad Gignac
445
+ Handle breaking API changes. thanks Brad Gignac
446
+ Initial pass at request tests. thanks Brian Hartsock
447
+
448
+ [rackspace|identity]
449
+ Add Rackspace identity service. thanks Brad Gignac
450
+ Add requests and request tests. thanks Brad Gignac
451
+ Add user model and collection with tests. thanks Brad Gignac
452
+ Handle non-array responses from list calls. thanks Brad Gignac
453
+ Better checking around hash/array responses. thanks Brad Gignac
454
+ Handle NotAuthorized respones from the identity API in the user model. thanks Brian Hartsock
455
+ use a valid username in tests. thanks geemus
456
+
457
+ [rackspace|lb]
458
+ fixed broken tests because of API format changes. thanks Brian Hartsock
459
+ ssl termination fixes. thanks Brian Hartsock
460
+ moved to Fog::JSON.encode instead of MultiJson.encode. thanks Brian Hartsock
461
+
462
+
463
+ 1.4.0 06/24/2012 24e0be755e251159f07d5d82beb1e8ef57c962d9
464
+ =========================================================
465
+
466
+ Stats! { 'collaborators' => 35, 'downloads' => 800348, 'forks' => 477, 'open_issues' => 43, 'watchers' => 2080 }
467
+
468
+ MVP! Nelvin Driz
469
+
470
+ [AWS]
471
+ make beanstalk, cdn, cloudformation, cloudwatch, elasticache, elb, storage, rds, ses, sns, route53 temporary credential friendly. thanks Frederick Cheung
472
+
473
+ [AWS|Auto Scale]
474
+ Add support for put_notification_configuration and change AWS API to use 01-01-2011 Spec. thanks Zuhaib M Siddique
475
+
476
+ [AWS|Autoscale]
477
+ Fixing Parameters notes for autoscale create launch configuration for InstanceMonitoring. Credit goes to boto, https://github.com/boto/boto/blob/develop/boto/ec2/autoscale/__init__.py , for having it correct. thanks Zuhaib M Siddique
478
+ Fixing Parameters notes for autoscale create launch configuration for InstanceMonitoring. Credit goes to boto, https://github.com/boto/boto/blob/develop/boto/ec2/autoscale/__init__.py , for having it correct. thanks Zuhaib M Siddique
479
+
480
+ [Openstack|Compute]
481
+ Usage Requests. thanks Hunter Nield
482
+ Migration and Console output. thanks Hunter Nield
483
+ server methods for console and migration. thanks Hunter Nield
484
+ Minor address cleanup. thanks Hunter Nield
485
+
486
+ [aws|address]
487
+ fixes release_address for VPC EIPs * amazon requires allocation_id only for vpc eips, and public_ip otherwise. thanks Albert Choi
488
+
489
+ [aws|beanstalk]
490
+ Added missing :beanstalk case. thanks George Scott
491
+ Added #load_balancer method. thanks George Scott
492
+ Serialize keys for SourceConfiguration. thanks George Scott
493
+ Added modify method for template. thanks George Scott
494
+ Support different AWS regions. thanks George Scott
495
+ Added swap_cnames method. thanks George Scott
496
+
497
+ [aws|compute]
498
+ add networkInterfaceSet context to EC2 instance parser. thanks Benton Roberts
499
+
500
+ [aws|dns]
501
+ Allow both Ruby and AWS style names for alias. thanks George Scott
502
+ Support for latency/weighted resource sets. thanks George Scott
503
+ Fixed #all iteration. thanks George Scott
504
+ Reimplemented #get. thanks George Scott
505
+ Added #all! method to Records. thanks George Scott
506
+
507
+ [aws|dynamodb]
508
+ correct batch_put_item to batch_write_item for consistency with API. thanks geemus
509
+
510
+ [aws|elb]
511
+ Failing test for load_balancers marker support. thanks Dan Peterson
512
+ Deprecate describe_load_balancers with just an array of names. thanks Dan Peterson
513
+ Marker support for describe_load_balancers. thanks Dan Peterson
514
+ Fix use of describe_load_balancers in tests. thanks Dan Peterson
515
+ load_balancers.get(nil) returns nil instead of the first of all load balancers. thanks Dan Peterson
516
+
517
+ [aws|iam]
518
+ Add test for AWS[:iam].get_user. thanks Benton Roberts
519
+ add test for AWS[:iam].get_user_policy. thanks Benton Roberts
520
+ FIX - make arguments AWS::IAM.get_user conform to expected standard for this module. thanks Benton Roberts
521
+ Fix Users model to comply with updated request parameter set. thanks Benton Roberts
522
+ mark role tests as pending in mock mode. thanks geemus
523
+
524
+ [aws|storage]
525
+ fix flipped logic on valid acl check closes #889. thanks geemus
526
+ fix method signature for setup_credentials. thanks geemus
527
+
528
+ [aws|storage|]
529
+ Make get_object_http_url use correct S3 host in returned URL. thanks Michiel Sikkes
530
+ Make get_object_http_url use correct S3 host in returned URL. thanks Michiel Sikkes
531
+
532
+ [brightbox|compute]
533
+ Updated image reference where unfortunately hardcoded. thanks Paul Thornthwaite
534
+ Remove resize request since not available. thanks Paul Thornthwaite
535
+ Update format tests for new attributes on Cloud IPs. thanks Paul Thornthwaite
536
+ Update format tests for "fqdn" attribute. thanks Paul Thornthwaite
537
+ Update format tests for updates to Image. thanks Paul Thornthwaite
538
+
539
+ [cloudstack]
540
+ prevent mock test failure when cloudstack credentials are not defined. thanks geemus
541
+ add to list of providers so it can be skipped when lacking credentials. thanks geemus
542
+
543
+ [cloudstack|compute]
544
+ zones,flavors,images,address. thanks Jason Hansen & Josh Lane
545
+ support async jobs. thanks Jason Hansen & Josh Lane
546
+ server abstraction and mocks. thanks Josh Lane & Jason Hansen
547
+ volumes support. thanks Josh Lane & Jason Hansen
548
+
549
+ [compute]
550
+ volume tests. thanks Josh Lane & Jason Hansen
551
+
552
+ [compute|aws]
553
+ Apply tags to volume at creation. thanks Dan Carley
554
+ Respect extra register_image options when mocking. thanks Dan Peterson
555
+ extend polling interval for spot_requests bootstrap. thanks geemus
556
+ cleanup internet_gateway mocks and remove debug output. thanks geemus
557
+
558
+ [compute|openstack]
559
+ update server attributes for shared compute tests. thanks geemus
560
+ cleanup for list security groups request/mock. thanks geemus
561
+
562
+ [docs]
563
+ fix link to EngineYard logo (broken in /storage, /compute, etc.). thanks Len
564
+
565
+ [ecloud|compute]
566
+ Adding multiple disks at once was not working properly. thanks Eugene Howe
567
+ fix optional params for validate_data closes #969. thanks geemus
568
+
569
+ [glesys|compute]
570
+ update server/status format to include cpu hash and warnings. thanks Anton Lindström
571
+ add reboot and compute test params. thanks Anton Lindström
572
+
573
+ [hp|compute]
574
+ fix tests to properly set default base image. thanks geemus
575
+
576
+ [ibm|compute]
577
+ Typo in parameter name, should be storageID. thanks Decklin Foster
578
+
579
+ [joyent|compute]
580
+ Fixes issue where params are not properly passed to #keys_create from #create_key. thanks Kevin Chan
581
+ Added #list_datacenters. thanks Kevin Chan
582
+ Support for DSA keys for auth. thanks Kevin Chan
583
+
584
+ [libVirt]
585
+ added tests. thanks Amos Benari
586
+
587
+ [libvirt]
588
+ refactored libvirt entire code. thanks Ohad Levy
589
+ expose node hostname. thanks Ohad Levy
590
+ added display attributes and allowed to change display of a running server. thanks Ohad Levy
591
+ volumes dev names must be uniq. thanks Ohad Levy
592
+ makes libvirt code more debian friendly. thanks Ohad Levy
593
+ - ensure no nil pools are returned. thanks Ohad Levy
594
+ Fix SSH keyfile being pulled from wrong param. thanks brookemckim
595
+ skip tests if ruby-libvirt is unavailable. thanks geemus
596
+ correct error message when skipping tests. thanks geemus
597
+
598
+ [misc]
599
+ Add support for internal ELBs in VPC. thanks Aaron Bell
600
+ cleaning up model. thanks Aaron Bell
601
+ fix parser to show scheme, add test for internal ELB creation. thanks Aaron Bell
602
+ fixing test. thanks Aaron Bell
603
+ add scheme to elb helper. thanks Aaron Bell
604
+ adds batch_put_item functionality to AWS dynamodb + test. thanks Alex Gaudio
605
+ Fixed non-persistent connections handling to AWS. thanks Alexander Kolesen
606
+ Fixed handling options[:persistent] in some cases. thanks Alexander Kolesen
607
+ added mock implementation. thanks Amos Benari
608
+ removed unneeded dependency,. thanks Amos Benari
609
+ new rbovirt version. thanks Amos Benari
610
+ use constant for GB. thanks Amos Benari
611
+ Adding network interface information and security group ids. thanks Artem Veremey
612
+ Adding network interface information and security group ids to the model. thanks Artem Veremey
613
+ Store the region for S3. thanks Ben Butler-Cole
614
+ add create_hosted_zone and get_hosted_zone request mocks. thanks Bulat Shakirzyanov
615
+ add list_hosted_zones request mock. thanks Bulat Shakirzyanov
616
+ add change_resource_record_set request mock. thanks Bulat Shakirzyanov
617
+ fix response codes and formatting. thanks Bulat Shakirzyanov
618
+ fix typos. thanks Bulat Shakirzyanov
619
+ fix identifiers. thanks Bulat Shakirzyanov
620
+ use hard-coded sample value to eliminate randomness. thanks Bulat Shakirzyanov
621
+ fix typos. thanks Bulat Shakirzyanov
622
+ fix zone id in create_hosted_zone response. thanks Bulat Shakirzyanov
623
+ fix attribute name. thanks Bulat Shakirzyanov
624
+ add authorize and revoke port range for security group. thanks Bulat Shakirzyanov
625
+ Fix typo. thanks Christopher Meiklejohn
626
+ Specify image_ref rather than trying to instantiate object. thanks Christopher Meiklejohn
627
+ Fog::Compute::AWS::Address#server -> assigned Server. thanks Dr Nic Williams
628
+ fix auto-discovery for HP Cloud by fog bin. thanks Dr Nic Williams
629
+ whitespace. :bomb: :v:. thanks Dylan Egan
630
+ Default to false for persistent connections. You can't pass in false. This now behaves like other connections in fog. :v:. thanks Dylan Egan
631
+ Idempotent Dynect calls. :v:. thanks Dylan Egan
632
+ Fix up describe_volume_status to work with THE ARRAYZ. :v:. thanks Dylan Egan
633
+ Fog::AWS.indexed_reuqest_param. thanks Edward Muller
634
+ include the nextToken in the body. thanks Edward Muller
635
+ complete Request param support. thanks Edward Muller
636
+ refactor to use Fog::AWS.indexed_request_param. thanks Edward Muller
637
+ the old parser was not working properly. thanks Edward Muller
638
+ All directories.create on us-east-1. thanks Edward Muller
639
+ us-west-2 default ami. thanks Edward Muller
640
+ some small fixups. thanks Edward Muller
641
+ make the aws region accessible. thanks Edward Muller
642
+ Fog::Compute::Server#private_key=. thanks Edward Muller
643
+ Fog::Compute::Server#sshable?. thanks Edward Muller
644
+ ssh/run optionally takes a block. thanks Edward Muller
645
+ Cleanup after talking to @dpiddy. thanks Edward Muller
646
+ return '' not nil. thanks Edward Muller
647
+ Revert "Add debug option to Fog::Compute::Server#ssh". thanks Edward Muller
648
+ Mock stop_instances. thanks Edward Muller
649
+ Mock aws compute start_instances. thanks Edward Muller
650
+ Don't duplicate effort. thanks Edward Muller
651
+ Add ssh_port to Fog::Compute::Server. thanks Edward Muller
652
+ Generalize NoLeak Inspector for Fog::Service. thanks Edward Muller
653
+ Don't leak HP cdn & storage. thanks Edward Muller
654
+ Make aws compute server retry SSH on EHOSTUNREACH. thanks Eric Boehs
655
+ Copied auth token reauthentication from rackspace|compute. thanks Eric Hankins
656
+ https://github.com/fog/fog/issues/810 - Add ENI support by maf23. thanks Eric Stonfer
657
+ minor fix to ENI tests. thanks Eric Stonfer
658
+ VPC ELBs, Tests, and the introduction of the InternetGateway object. thanks Eric Stonfer
659
+ clean up conflict. thanks Eric Stonfer
660
+ this adds the dhcp_options object and associated operations. thanks Eric Stonfer
661
+ merge upstream. thanks Eric Stonfer
662
+ forgot to commit dhcp_options tests. thanks Eric Stonfer
663
+ fix describe_volume_status parser. thanks Eric Stonfer
664
+ add some more explanation to the server creation process. thanks Eric Stonfer
665
+ testing. thanks Eugene Howe
666
+ added requests and models for compute_pools. thanks Eugene Howe
667
+ changed to urn:tmrk:eCloudExtensions-2.8. thanks Eugene Howe
668
+ require compute pool to be specified on vapp creation. thanks Eugene Howe
669
+ set default value for computePool on vapp creation. thanks Eugene Howe
670
+ Made computePool an optional parameter, specs now pass without issue. thanks Eugene Howe
671
+ Removed non-functioning Mock classes. thanks Eugene Howe
672
+ fixed method name. thanks Eugene Howe
673
+ start an instance with an IAM profile and access the credentials. thanks Frederick Cheung
674
+ add new iam requests to support iam roles. thanks Frederick Cheung
675
+ request tests for the new iam role requests. thanks Frederick Cheung
676
+ test credential fetching. thanks Frederick Cheung
677
+ use excon rather than net/http. thanks Frederick Cheung
678
+ remove stray multijson require. thanks Frederick Cheung
679
+ fix errant use of net/http. thanks Frederick Cheung
680
+ Add debug option to Fog::Compute::Server#ssh. thanks Gabriel Horner
681
+ Correct docs for change_resource_record_sets. thanks Gavin Sandie
682
+ add cc2.8xlarge AWS flavor. thanks Ian Downes
683
+ Fix user-data attribute name. thanks Igor Bolotin
684
+ Refactor AWS Directory. thanks James Herdman
685
+ Remove unused variable. thanks James Herdman
686
+ Fix indentation warning. thanks James Herdman
687
+ Remove unnecessary full path usage with require. thanks James Herdman
688
+ Remove unused variable. thanks James Herdman
689
+ Remove unused accessor. thanks James Herdman
690
+ Silence warning regarding splat operator. thanks James Herdman
691
+ Remove unused variable. thanks James Herdman
692
+ Remove unused variable. thanks James Herdman
693
+ Silence warnings about potentially private attribute. thanks James Herdman
694
+ Remove unused variable. thanks James Herdman
695
+ Silence warning about potentially private attribute. thanks James Herdman
696
+ Remove unused variable. thanks James Herdman
697
+ Remove unused variable. thanks James Herdman
698
+ Remove unused variable. thanks James Herdman
699
+ Remove unused variable. thanks James Herdman
700
+ Remove unused variable. thanks James Herdman
701
+ Remove unused variable. thanks James Herdman
702
+ Remove unused variable. thanks James Herdman
703
+ Remove unused variable. thanks James Herdman
704
+ Remove unused variable. thanks James Herdman
705
+ Remove unused variable. thanks James Herdman
706
+ Remove unused variable. thanks James Herdman
707
+ Remove unused variable. thanks James Herdman
708
+ Remove unused variable. thanks James Herdman
709
+ Remove duplicate require. thanks James Herdman
710
+ Remove unused variable. thanks James Herdman
711
+ Remove unused variable. thanks James Herdman
712
+ Remove unused variable. thanks James Herdman
713
+ Remove absolute path when requiring. thanks James Herdman
714
+ Remove unused variable. thanks James Herdman
715
+ Remove duplicate Mock class definition. thanks James Herdman
716
+ implement Fog::SSH::Mock#run. thanks Jason Hansen & Josh Lane
717
+ add a method to IPAddr instead of breaking a useful one. thanks Jesse Newland
718
+ Adjusts regex to fix issues with S3 paths that include periods. thanks John Feminella
719
+ fix response-cache-control type for AWS signed urls. thanks John Nishinaga
720
+ remove FOG_PROVIDER env override. thanks Josh Lane
721
+ more robust resource pool discovery. thanks Justin Clayton
722
+ Removed duplicate property :ips on server. thanks Kevin Chan
723
+ Fixes invalid call to #resize, should be #resize_machine. thanks Kevin Chan
724
+ Fixed #875: Loosen multi_json version. thanks Kevin Menard
725
+ Bad string replace. thanks Kevin Menard
726
+ Actually call the new MultiJSON 1.3.2 API methods. thanks Kevin Menard
727
+ Rename dd_belatedpng.js to dd_belatedpng.min.js. thanks Laurent Bigonville
728
+ Add non-minified javascript files used in docs/ (#939). thanks Laurent Bigonville
729
+ Catch Errno::ETIMEDOUT timeout error when connecting to a freshly created EC2 machine. thanks Marc Seeger
730
+ fix get, all, and all!. thanks Michael Keirnan
731
+ Make `.irbrc` service agnostic. thanks Nelvin Driz
732
+ Nested Credentials with Array gets flattened; restrict flatten to 1L. thanks Nelvin Driz
733
+ Allow for stringified options keys. thanks Nikita Pomyashchiy
734
+ add supports for defining/extracting libvit boot order. thanks Ohad Levy
735
+ libvirt volume sizes are in GB, ensuring both requests and setters are in GB. thanks Ohad Levy
736
+ adds deprecation on vnc_port. thanks Ohad Levy
737
+ monitoring-state is enabled or disabled, if enabled returns true. thanks Ozgur Akan
738
+ reserved instances hourly cost was returning empty. thanks Ozgur Akan
739
+ Modify url regexp to handle periods in bucket names. thanks Parker Selbert
740
+ Tag generated model tests with string not symbol. thanks Paul Thornthwaite
741
+ added missing server attributes for openstack compute model. thanks Pedro Perez
742
+ openstack: extended list_servers and list_server_detail to allow all_tenants param. thanks Pedro Perez
743
+ depend on excon >= 0.13.0. thanks Prashant Nadarajan
744
+ use pessimistic gem version constraint for excon (~>0.14.0). thanks Prashant Nadarajan
745
+ aim users model and nested model policy. thanks Rodrigo Estebanez
746
+ IAM access_key model implemented. thanks Rodrigo Estebanez
747
+ get_user Mock implemented. Basic shindo user_tests added. thanks Rodrigo Estebanez
748
+ Refactor aim modeling for nested models (policies and access keys). thanks Rodrigo Estebanez
749
+ shindo tests for IAM models: users, policies and access_keys. Mock implementation for get_user_policy. thanks Rodrigo Estebanez
750
+ @users -> @user. Clean up the @user after the policies and access_keys test. thanks Rodrigo Estebanez
751
+ Fix encoding issue: https://github.com/fog/fog/pull/189. thanks Rodrigo Estebanez
752
+ aim users model and nested model policy. thanks Rodrigo Estebanez
753
+ IAM access_key model implemented. thanks Rodrigo Estebanez
754
+ get_user Mock implemented. Basic shindo user_tests added. thanks Rodrigo Estebanez
755
+ Refactor aim modeling for nested models (policies and access keys). thanks Rodrigo Estebanez
756
+ shindo tests for IAM models: users, policies and access_keys. Mock implementation for get_user_policy. thanks Rodrigo Estebanez
757
+ @users -> @user. Clean up the @user after the policies and access_keys test. thanks Rodrigo Estebanez
758
+ Fix encoding issue: https://github.com/fog/fog/pull/189. thanks Rodrigo Estebanez
759
+ For some reason, there was a missing comma in the mock class. thanks Rodrigo Estebanez
760
+ Fix get_user_policy. The actual AWS data has to be in a ['Policy'] hash section. thanks Rodrigo Estebanez
761
+ add IAM mocking for get_group method. thanks Rodrigo Estebanez
762
+ add IAM mocking for get_group method. thanks Rodrigo Estebanez
763
+ Add new HP providers for Object Storage, Compute and CDN services. thanks Rupak Ganguly
764
+ Be sure to reload when checking for a started spot instance, also add private/public key options into spot_requests, then set those on the server when loaded. thanks Ryan Stout
765
+ Use spot request's public_key when setting up keypair. thanks Ryan Stout
766
+ ensure apiKey and command are included in parameter sorting. thanks Sean Caffery
767
+ * [xenserver|compute] initial release. thanks Sergio Rubio
768
+ * Added VIF model and collection tests * added network and server wrappers to VIF model. thanks Sergio Rubio
769
+ * Added VIF collection Shindo tests. thanks Sergio Rubio
770
+ * Added PIFs collection Shindo tests. thanks Sergio Rubio
771
+ * Added VBD Shindo tests * added server wrapper to VBD model. thanks Sergio Rubio
772
+ * Added Network collection Shindo tests * Fixed PBD and PIF tests descriptions. thanks Sergio Rubio
773
+ * Added Pool and StorageRepository models and collections Shindo tests * Added missing attributes to Pool and StorageRepository models. thanks Sergio Rubio
774
+ * Define missing InvalidLogin exception * Add login tests. thanks Sergio Rubio
775
+ * Added custom_templates and templates methods to Host model. thanks Sergio Rubio
776
+ * Added more tests and extended existing ones * Added missing exceptions NotFound and RequestFailed * connection.request now raises exception if request failed * refactored most get_* request into get_record and get_records * Compute.default_template more robust * Base parser now replaces OpaqueRef:NULL with nil * create_server request fixes. thanks Sergio Rubio
777
+ * Added some more tests * Lots of fixes and some refactoring. thanks Sergio Rubio
778
+ * Fix Servers.templates method. thanks Sergio Rubio
779
+ * Added clone_server request. thanks Sergio Rubio
780
+ * Added create_vif tests * Server.save now properly creates additional VIFs when required * Added create_vif_custome request to create VIFs with custom params. thanks Sergio Rubio
781
+ * Added Vif.destroy and destroy_vif request * add :auto_start parameter to Server.save. thanks Sergio Rubio
782
+ * Added create_vdi request * Added missing VDI methods and attributes. thanks Sergio Rubio
783
+ * Added missing VBD operations. thanks Sergio Rubio
784
+ * Added set_attribute request and tests * Added missing PV_bootloaer attribute to Server * Added Server.set_attribute method and tests. thanks Sergio Rubio
785
+ * Added create_vbd and provision_server requests * Do not provision server when :auto_start is false * Add Server.provisio method * Add VBD.save method. thanks Sergio Rubio
786
+ * renamed some tests * Added missing VDI attributes and methods * added create/destroy request tests * Added valid_ref? test helper * Fixes in get_record_tests. thanks Sergio Rubio
787
+ * Added missing attributes to Server model * Added create_server_raw request and tests * Added VIF.save action * more tests. thanks Sergio Rubio
788
+ * Fix: do not try to retrive guest_metrics when guest_metrics ref is nil * ruby 1.8.7 compatibility fixes * Sane defaults for create_server_raw request. thanks Sergio Rubio
789
+ * Added new scan_sr request * Added StorageRepository.scan method * set_attribute request is now generic and can be used by any model * Added VDI.set_attribute method. thanks Sergio Rubio
790
+ * [xenserver|compute] set_attribute request now accepts var args - added new tests. thanks Sergio Rubio
791
+ updating gitignore for eclipse settings. thanks Spencer Dillard
792
+ first pass at updates for VPC. thanks Spencer Dillard
793
+ updating for SSL ciphers and protocols. thanks Spencer Dillard
794
+ updating to master. thanks Spencer Dillard
795
+ regularize examples showing use of AWS access keys. thanks Stephen Bannasch
796
+ Use MultiJSON #dump and #load rather than #encode and #decode. thanks Steve Smith
797
+ Add support for ports in AWS storage URLs. thanks Tim Carey-Smith
798
+ Mock implementations for SCP upload and download. thanks Tom Mornini
799
+ add Linode Mock classes to request primitives. thanks Wes Morgan
800
+ make Mock#linode_disk_delete return the response object. thanks Wes Morgan
801
+ make Mock#linode_disk_list return the response object. thanks Wes Morgan
802
+ use kernel_id for mocked kernel, not stackscript_id. thanks Wes Morgan
803
+ Adds new method delete_notification_configuration which allows you notifications created by put_notification_configuration. thanks Zuhaib Siddique
804
+ Fix for stacks that have capabilities. Without this the parser misinterprets stacks with capabilities set. thanks atlantacs
805
+ volume(s) are not considered to be universally available. thanks geemus
806
+ catch passing an invalid openstack_tenant. thanks mattray
807
+ addresses['internet'] (like on TryStack.org) supported and public and private_ip_address now work. thanks mattray
808
+ don't assume 'internet' for addresses. thanks mattray
809
+ Added offering type for reserved instances response. thanks questionnet
810
+
811
+ [oVirt]
812
+ added volumes to server and template. thanks Amos Benari
813
+ added volume size in GB accessor. thanks Amos Benari
814
+ fixed create_vm and get_virtual_machine requests mock implementation. thanks Amos Benari
815
+
816
+ [openstack]
817
+ Fix create snapshot. thanks Ferran Rodenas
818
+ Match both OS API 1.1 and v2 since they are the same. thanks Josh Kearney
819
+ Update Reinitialization Process of Existing Auth Token. thanks Nelvin Driz
820
+ Add Export of Credentials. thanks Nelvin Driz
821
+ Wrong instance variables accessed for #credentials. thanks Nelvin Driz
822
+ Update Authentication through X-Auth-Token. thanks Nelvin Driz
823
+ Update mocks for login and identity request #get_user_by_id. thanks Nelvin Driz
824
+ Fix authentication without specifying tenant name. thanks Nelvin Driz
825
+ Make current_user and current_token accessible to services. thanks Nelvin Driz
826
+ Fix Authentication as well as Fog::JSON call bugs. thanks Nelvin Driz
827
+ Raise error when no tenant is found for the user logging in. thanks Nelvin Driz
828
+ Ensure password sent is of type string. thanks Nelvin Driz
829
+ Modify authentication process. thanks Philip Mark Deazeta
830
+
831
+ [openstack|compute]
832
+ Add requests and tests for security groups. thanks Alfonso Juan Dillera
833
+ Add requests, models and tests for keypairs. thanks Alfonso Juan Dillera
834
+ Add requests, models and tests for address management. thanks Alfonso Juan Dillera
835
+ Add requests, models and tests for address management. thanks Alfonso Juan Dillera
836
+ Add flavor CRUD. thanks Alfonso Juan Dillera
837
+ Add auth_token. thanks Alfonso Juan Dillera
838
+ Added request for boot_from_snapshot. thanks Alfonso Juan Dillera
839
+ Added id attribute to the keypair. thanks Alfonso Juan Dillera
840
+ Update fetching of addresses and added fetching for address pools. thanks Alvin Garcia
841
+ Fixed creating image of a server. thanks Alvin Garcia
842
+ Added requests for quota. thanks Alvin Garcia
843
+ Initial extension support for addresses. thanks Hunter Nield
844
+ Initial extension support for key pairs. thanks Hunter Nield
845
+ Initial extension support for security groups. thanks Hunter Nield
846
+ Added Address models. thanks Hunter Nield
847
+ Added key pair models. thanks Hunter Nield
848
+ added security group models. thanks Hunter Nield
849
+ Updates to server model. thanks Hunter Nield
850
+ Added list/get support for /os-hosts. thanks Hunter Nield
851
+ Add Tenants and Fix Authentication Implementation. thanks Nelvin Driz
852
+ Fix Requests on Compute. thanks Nelvin Driz
853
+ General Cleanup and Update. thanks Nelvin Driz
854
+ Fix Compute Identity Endpoint Credential Export. thanks Nelvin Driz
855
+ Add Identity Enpoint to Recognized Init Parameters. thanks Nelvin Driz
856
+ Update requests and response of server actions. thanks Nelvin Driz
857
+ Fix Bug on Key Pair Mock. thanks Nelvin Driz
858
+ Update Mocks for Volumes. thanks Nelvin Driz
859
+ Update Mocks for Security Groups and Volumes. thanks Nelvin Driz
860
+ Add Instance Name to Fog. thanks Nelvin Driz
861
+ Update Image Mocks. thanks Nelvin Driz
862
+ Update List Security Groups to list those assigned to a server. thanks Nelvin Driz
863
+ Assert Timezone to UTC and fix format for OS on `get_usage`. thanks Nelvin Driz
864
+ Added get_usage function, mocks, tests. thanks Philip Mark Deazeta
865
+ Added get server volumes request. thanks Philip Mark M. Deazeta
866
+ Added key_pair and security_groups options int create server requrest. thanks Philip Mark M. Deazeta
867
+ added key_name and security_groups in boot from snapshot request. thanks Philip Mark M. Deazeta
868
+ authenticate_v2 fixes. thanks Sergio Rubio
869
+
870
+ [openstack|identity]
871
+ Added current user id. thanks Alfonso Juan Dillera
872
+ Updated current user id for identity. thanks Alfonso Juan Dillera
873
+ Keystone Roles. thanks Alvin Garcia
874
+ Keystone Roles and Users. thanks Alvin Garcia
875
+ Update users collections and model. thanks Alvin Garcia
876
+ Update users model initialization and save. thanks Alvin Garcia
877
+ Fixed users fetching. thanks Alvin Garcia
878
+ Rough implementation of the Keystone API (untested). thanks Hunter Nield
879
+ Correction in Roles#all method. thanks Mark Maglana
880
+ Express the "add user role" intent more clearly. thanks Mark Maglana
881
+ Fix Authentication Implementation. thanks Nelvin Driz
882
+ Update Tenants. thanks Nelvin Driz
883
+ Update Tenants (Complete CRUD). thanks Nelvin Driz
884
+ Fix Identity Authentication Conditions on Endpoint Detection. thanks Nelvin Driz
885
+ Add User List and Delete User Mocks. thanks Nelvin Driz
886
+ Update Fog to Accomodate Tenant Deletion Workaround Workflow. thanks Nelvin Driz
887
+ Fix status code expectation. thanks Nelvin Driz
888
+ Added function to add user to a tenant. thanks Philip Mark Deazeta
889
+ Added function to add user to a tenant. thanks Philip Mark Deazeta
890
+ fixes for mocks. thanks geemus
891
+
892
+ [openstack|image]
893
+ Added set_tenant. thanks Alvin Garcia
894
+ Added copy_from attribute. thanks Alvin Garcia
895
+ Update Image Service Authentication Options. thanks Nelvin Driz
896
+ Added image service, model and request. thanks Philip Mark Deazeta
897
+ Added test for models and request. thanks Philip Mark Deazeta
898
+ Added image module, model and request. thanks Philip Mark Deazeta
899
+ Image Model Updates. thanks Philip Mark Deazeta
900
+ Refactor Dynamic Methods on Image Model. thanks Philip Mark Deazeta
901
+
902
+ [openstack|volume]
903
+ Volume Endpoints Support. thanks Marjun Pagalan
904
+ Volume Snapshot CRUD. thanks Marjun Pagalan
905
+ Volume attach/detach to Server. thanks Marjun Pagalan
906
+ Added volume service requests. thanks Philip Mark M. Deazeta
907
+ fix on module name. thanks Philip Mark M. Deazeta
908
+ Added volume model. thanks Philip Mark M. Deazeta
909
+
910
+ [ovirt]
911
+ fixed list storage domain test. thanks Amos Benari
912
+
913
+ [rackspace|compute]
914
+ fix rackspace server compare. thanks Josh Lane & Jason Hansen
915
+ default images. thanks Josh Lane & Jason Hansen
916
+ Images#all returns data. thanks Josh Lane & Jason Hansen
917
+ fixes for mock images. thanks geemus
918
+
919
+ [rackspace|lb]
920
+ added support for algorithm on create. thanks Brian Hartsock
921
+ fixed broken tests due to API contract changes. thanks Brian Hartsock
922
+
923
+ [rackspace|loadbalancers]
924
+ fixed broken tests. thanks Brian Hartsock
925
+
926
+ [rackspace|storage|file]
927
+ copy method now use the options hash and apply content type. thanks Matthias Gröbner
928
+
929
+ [rackspace|storage|files]
930
+ fix iteration. thanks Matthias Gröbner
931
+
932
+ [slicehost]
933
+ remove (now deprecated) slicehost support. thanks geemus
934
+
935
+ [storage|aws]
936
+ fix location stuff to allow creating new buckets properly. thanks geemus
937
+
938
+ [vcloud]
939
+ Remove some un-needed debug information. thanks Lincoln Stoll
940
+
941
+ [vpc-fixes]
942
+ AWS security group model + VPC. thanks Sean Porter
943
+
944
+ [vsphere]
945
+ force poweroff of instance of vmware tools are not installed. thanks Ohad Levy
946
+ adds memory and cpu server attributes. thanks Ohad Levy
947
+ adds support to get and set vnc console. thanks Ohad Levy
948
+
949
+ [xenserver]
950
+ Added missing Server.tags attribute. thanks Sergio Rubio
951
+ fix tags to skip tests without credentials. thanks geemus
952
+
953
+
954
+ 1.3.1 03/27/2012 f0f692456956fe2e414ef8205d0268259901644a
955
+ =========================================================
956
+
957
+ Stats! { 'collaborators' => 32, 'downloads' => 527366, 'forks' => 392, 'open_issues' => 27, 'watchers' => 1901 }
958
+
959
+ MVP! George Scott
960
+
961
+ [aws|dns]
962
+ Preserves change_id. Support for checking sync status via reload. thanks George Scott
963
+ Changed #insync? to #ready?. thanks George Scott
964
+
965
+ [ibm]
966
+ avoid using constants (Rails loads files multiple times, issue #807). thanks Decklin Foster
967
+ Make usage of #state rather than #status consistent. thanks Decklin Foster
968
+
969
+ [ibm|compute]
970
+ Add clone/destroy methods and tests to Image. thanks Decklin Foster
971
+ Add request test for list_vlans and fix mock. thanks Decklin Foster
972
+
973
+ [ibm|storage]
974
+ Restore storage_area, platform_version, clone_status Volume attributes. thanks Decklin Foster
975
+
976
+ [misc]
977
+ Allow custom headers in Storage#put_object_url. thanks Jacob Mattingley
978
+ Use https_url instead of deprecated url for put_object_url. thanks Jacob Mattingley
979
+ Adding Vlan class to IBM SmartCloud. thanks Joe Kinsella
980
+ bump excon dep to get jruby openssl fixes. thanks geemus
981
+
982
+ [storage]
983
+ properly update content-type at save time for file models. thanks geemus
984
+
985
+
986
+ 1.3.0 03/21/2012 f78afe98242a60ae4dbbfcd8c5ab67ba71c6d773
987
+ =========================================================
988
+
989
+ Stats! { 'collaborators' => 32, 'downloads' => 513974, 'forks' => 387, 'open_issues' => 24, 'watchers' => 1893 }
990
+
991
+ MVP! Decklin Foster
992
+
993
+ [aws|cloud_watch]
994
+ GitHub Edit! s/prodide/provide/ :v:. thanks Dylan Egan
995
+
996
+ [aws|simpledb]
997
+ fix region/host for us-east-1. thanks geemus
998
+
999
+ [ibm]
1000
+ Added Mocking and Tests. thanks Carl Hicks
1001
+ Moar convenience methods for servers. thanks Carl Hicks
1002
+ Update model for Volume. thanks Carl Hicks
1003
+ Added request tests for addresses. thanks Carl Hicks
1004
+ Initial IBM SmartCloud support. thanks Decklin Foster
1005
+ Add Location model and requests. thanks Decklin Foster
1006
+ Rename collection requests get->list so we have get_foo and list_foos. thanks Decklin Foster
1007
+ Don't need json_body, so we can simplify requests; remove unused params. thanks Decklin Foster
1008
+ Pass optional params to requests with hashes. thanks Decklin Foster
1009
+ Add a InstanceType model, returned as part of Images. thanks Decklin Foster
1010
+ Rename model test files into compute, storage dirs. thanks Decklin Foster
1011
+ Remove trailing whitespace. thanks Decklin Foster
1012
+ Update tests to match model arguments (attribs hash) and lower-level request methods. thanks Decklin Foster
1013
+ Update mocks to reflect moving volume models from from compute to storage. thanks Decklin Foster
1014
+ Add some missing mocks, fix list_instances. thanks Decklin Foster
1015
+ Raise NotFound in mock instead of returning a 404. thanks Decklin Foster
1016
+ Fix form_encode to stringify args (e.g. booleans) to URI.escape. thanks Decklin Foster
1017
+ Typos in state names and status vs. state. thanks Decklin Foster
1018
+ Fix key model for passing public_key, add setting/testing whether key is default. thanks Decklin Foster
1019
+ Setting default key returns success, not key name. thanks Decklin Foster
1020
+ Typo, assignment instead of equality, made some tests incorrectly pass. thanks Decklin Foster
1021
+ Flesh out modify_instance and modify_key for different modes. thanks Decklin Foster
1022
+ Restarting should return success, changing expiration should only return time. thanks Decklin Foster
1023
+ Delete instance mock should return success. thanks Decklin Foster
1024
+ Remove IBM from flavors tests. thanks Decklin Foster
1025
+ Make names used in tests unique using current time. thanks Decklin Foster
1026
+ Add vlan_id attrib so that it can be used in creating an instance. thanks Decklin Foster
1027
+ Return nil for public_hostname if primary_ip unset (e.g. state is Failed). thanks Decklin Foster
1028
+ Change default location and image ID. thanks Decklin Foster
1029
+ Rename ibm_user_id -> ibm_username. thanks Decklin Foster
1030
+ Create temporary keys in tests that need to create instances. thanks Decklin Foster
1031
+ servers are not sorted, don't assume we can just take the last. thanks Decklin Foster
1032
+ create_image should do a PUT, not a POST, and needs 'state' param. thanks Decklin Foster
1033
+ Correct spelling of test volume format ('RAW') and fix parameter typo. thanks Decklin Foster
1034
+ Rename data -> body. thanks Decklin Foster
1035
+ Don't reboot or immediately expire, interferes with other tests. thanks Decklin Foster
1036
+ Use Raleigh location for tests. thanks Decklin Foster
1037
+ Nullable formats for attributes that may not be returned. thanks Decklin Foster
1038
+ Set expire a few seconds in the future since it takes a while to process. thanks Decklin Foster
1039
+ Return nil if instance_id is nil. thanks Decklin Foster
1040
+ Can't access Fog::Compute::IBM::Location class from here, just check if ID returned. thanks Decklin Foster
1041
+ servers.length will include already existing servers. thanks Decklin Foster
1042
+ Add state and ready? method to Image. thanks Decklin Foster
1043
+ Change public key format. thanks Decklin Foster
1044
+ vlan is part of primaryIP. thanks Decklin Foster
1045
+ Rename root_only -> is_mini_ephemeral. thanks Decklin Foster
1046
+ Description is mandatory. thanks Decklin Foster
1047
+ Wait for instance to be ready before deleting it or creating image. thanks Decklin Foster
1048
+ Add state/ready? methods for Address. thanks Decklin Foster
1049
+ Expiration time should be epoch in ms. thanks Decklin Foster
1050
+ launched_at convenience method. thanks Decklin Foster
1051
+ Don't set server to nil. thanks Decklin Foster
1052
+ Set a longer timeout on all wait_for calls. thanks Decklin Foster
1053
+ Generated key needs different name, supplied key only returns success. thanks Decklin Foster
1054
+ Invalid instance creation will return a 412 and thus raise PreconditionFailed. thanks Decklin Foster
1055
+ Don't calculate expiration time until ready to make the request. thanks Decklin Foster
1056
+ Fix volume formats and mocks. thanks Decklin Foster
1057
+ Wait for volume to be ready before deleting. thanks Decklin Foster
1058
+ Mark volume attach/detach pending, won't create instance. thanks Decklin Foster
1059
+ Return pending if provisioning times out in the real tests. thanks Decklin Foster
1060
+ adding documentation. thanks Wyatt Walter
1061
+ add bin helpers for storage. thanks geemus
1062
+
1063
+ [misc]
1064
+ ovirt added support for 'set vm ticket'. This api call is needed for openning a console to the server. thanks Amos Benari
1065
+ wrangled security tests into working. thanks Eric Stonfer
1066
+ Changes to the security group handling: * CreateSecurityGroup now includes the group id in the reply, this patch makes the code store this * The patch also changes the delete call to use the group id if present (since you must use the id when deleting VPC groups). thanks MaF
1067
+ Changes to the security group handling: * CreateSecurityGroup now includes the group id in the reply, this patch makes the code store this * The patch also changes the delete call to use the group id if present (since you must use the id when deleting VPC groups) * Fix teh security group mock and test code to handle this new behavior. thanks MaF
1068
+ Removed merge commit. thanks MaF
1069
+
1070
+ [release]
1071
+ add Kevin Menard to future MVP exclusion list. thanks geemus
1072
+
1073
+ [storage|aws]
1074
+ fix hardcoded host in get_object_http(s)_url methods. thanks geemus
1075
+
1076
+
1077
+ 1.2.0 03/19/2012 70e0f48fa446dbf233ae31c4f055eb26ea2dadd1
1078
+ =========================================================
1079
+
1080
+ Stats! { 'collaborators' => 30, 'downloads' => 508132, 'forks' => 384, 'open_issues' => 23, 'watchers' => 1874 }
1081
+
1082
+ MVP! Kevin Menard
1083
+
1084
+ [AWS]
1085
+ Compute: The security group parser was not parsing groupid properly. thanks Christopher Oliver
1086
+
1087
+ [AWS|DynamoDB]
1088
+ table requests. thanks geemus
1089
+ cleanup/fixes for tables. thanks geemus
1090
+ item requests. thanks geemus
1091
+ update item should not be idempotent when an action is specified. thanks geemus
1092
+ fix for UpdateItem idempotency. thanks geemus
1093
+ first pass at query/scan requests. thanks geemus
1094
+ ConsumedCapacityUnits should be a Float. thanks geemus
1095
+ add missing pending for mocked tests. thanks geemus
1096
+
1097
+ [AWS|ELB]
1098
+ Added support for InstanceProtocol to listeners. thanks James Stremick
1099
+ Updating listener and LB tests to include InstancePort checks. thanks James Stremick
1100
+
1101
+ [AWS|Storage]
1102
+ versioning related fixes copy_object mocks. thanks geemus
1103
+ fix for put_bucket_website mock. thanks geemus
1104
+ remove redundant mock setup in tests #731. thanks geemus
1105
+
1106
+ [AWS|storage]
1107
+ fix for versioned copy_object. thanks geemus
1108
+
1109
+ [Brightbox]
1110
+ Updates to format tests. thanks Paul Thornthwaite
1111
+ Updated Server output format. thanks Paul Thornthwaite
1112
+ Updated format test to use correct link name. thanks Paul Thornthwaite
1113
+ Updated Image format for min_ram attribute. thanks Paul Thornthwaite
1114
+ Updated LoadBalancer format to include listeners in listing. thanks Paul Thornthwaite
1115
+ Updated format for nested firewall policies. thanks Paul Thornthwaite
1116
+ Merge in various spec corrections. thanks Paul Thornthwaite
1117
+ Update format test to not fail on new attributes in JSON. thanks Paul Thornthwaite
1118
+ Load balancer listener timeouts are now reported. thanks Paul Thornthwaite
1119
+ Correct server snapshot test. thanks Paul Thornthwaite
1120
+
1121
+ [Compute|OpenStack]
1122
+ match auth response to stable/diablo branch of keystone. thanks Todd Willey
1123
+
1124
+ [Rackspace|Storage]
1125
+ set put_object to idempotent. thanks geemus
1126
+
1127
+ [aws]
1128
+ add sts helper. thanks geemus
1129
+
1130
+ [aws|compute]
1131
+ Fixed failing instance tests. thanks Christopher Oliver
1132
+ Update API version and support new DescribeInstanceStatus format. thanks Dan Peterson
1133
+ Fix allocate_address mocking. thanks Dan Peterson
1134
+ Mock detach_volume should raise proper error if volume is not attached. thanks Dan Peterson
1135
+ added group id to security group parser and model. thanks bdorry
1136
+ added security group get by id method. thanks bdorry
1137
+
1138
+ [aws|dns]
1139
+ Record identity is 'Name'. thanks Aaron Suggs
1140
+ Add Record#modify method. thanks Aaron Suggs
1141
+ Add model tests. thanks Aaron Suggs
1142
+ add test for Record#modify. thanks Aaron Suggs
1143
+ Parse IsTruncated as boolean in list_resource_record_set. thanks Aaron Suggs
1144
+ Add support for aliasing records to Elastic Load Balancers (API 2011-05-05). thanks James Miller
1145
+
1146
+ [aws|elb]
1147
+ start working on policies. :v:. thanks Dylan Egan
1148
+ create policies, describe policies, fix old mocking and yup. :v:. thanks Dylan Egan
1149
+ PolicyNotFound. :v:. thanks Dylan Egan
1150
+ remove test debugging. :v:. thanks Dylan Egan
1151
+ actually raise a PolicyNotFound. :v:. thanks Dylan Egan
1152
+ InstanceProtocol support. :v:. thanks Dylan Egan
1153
+
1154
+ [aws|fog]
1155
+ crapiness and hacks. :v:. thanks Dylan Egan
1156
+
1157
+ [aws|iam]
1158
+ Mock upload_server_certificate errors if private key is not RSA. thanks Dan Peterson
1159
+ P. :v:. thanks Dylan Egan
1160
+
1161
+ [aws|rds]
1162
+ Mock DB snapshot requests. thanks Aaron Suggs
1163
+ Enabled model tests that pass when mocking. thanks Aaron Suggs
1164
+
1165
+ [aws|storage]
1166
+ Simple multipart uploads; supports files > 5GB. thanks Aaron Suggs
1167
+ Automatically abort multipart uploads on exceptions. thanks Aaron Suggs
1168
+ Add mock for Fog::Storage::AWS#put_bucket_website. thanks Garret Alfert
1169
+ Handle S3 object deletions in the face of versioning. thanks Kevin Menard
1170
+ Return the object version in the request header and set an attribute value in the model. thanks Kevin Menard
1171
+ Allow options to be passed to the destroy method, facilitating passing of versionId. thanks Kevin Menard
1172
+ Added ability to control bucket versioning from Directory model. thanks Kevin Menard
1173
+ Added the ability to fetch a list of versions from a file. thanks Kevin Menard
1174
+ Allow passing of options to fetching versions. thanks Kevin Menard
1175
+ Added the pagination offset params to the get_object_bucket_versions parser. thanks Kevin Menard
1176
+ Added the MfaDelete value to the get_bucket_versioning parser. thanks Kevin Menard
1177
+ Fix put bucket website test, request returns not found when the bucket does not exist. thanks Peter Weldon
1178
+ Add bucket lifecycle / object expiration requests. thanks Peter Weldon
1179
+ make head_object idempotent. thanks geemus
1180
+ direct https urls to subdomains even with dots this may result in ssl warnings, but that seems better than the alternative (redirects) see #611. thanks geemus
1181
+
1182
+ [aws|storage|test]
1183
+ use a random directory key; prevent collision. thanks Aaron Suggs
1184
+ Mark multipart upload test as pending. thanks Aaron Suggs
1185
+ Added mock support for setting and retrieving versioning on a bucket. thanks Kevin Menard
1186
+ Added in versioning support for S3 objects, sans deletion markers. thanks Kevin Menard
1187
+ Track if the version is the latest or not. thanks Kevin Menard
1188
+ Basic handling of version-id-marker. thanks Kevin Menard
1189
+ Added the ability to get_object by versionId. thanks Kevin Menard
1190
+ Added S3 versioning support for delete_object. thanks Kevin Menard
1191
+ Deal with suspended buckets properly. thanks Kevin Menard
1192
+ Added request tests for put_bucket_versioning and get_bucket_versioning. thanks Kevin Menard
1193
+ Added tests for get_bucket_object_versions. thanks Kevin Menard
1194
+ Added request test for get_object with versioning. thanks Kevin Menard
1195
+ Added request tests for delete_object with versioning. thanks Kevin Menard
1196
+ Added failing request test for delete_object with versioning. thanks Kevin Menard
1197
+ Added in some file and directory model tests. thanks Kevin Menard
1198
+ Added model tests for versioning Directory and File models. thanks Kevin Menard
1199
+ Added tests for the Version model. thanks Kevin Menard
1200
+ Added versioning test for Files collection. thanks Kevin Menard
1201
+ Added versioning tests for Versions collection. thanks Kevin Menard
1202
+ Added versioning test for Files#head. thanks Kevin Menard
1203
+ Removed a commented-out test. thanks Kevin Menard
1204
+ Make sure tests pass with both mocking enabled and disabled. thanks Kevin Menard
1205
+ Fixed a regression with mocked get_bucket requests, due to a change in the mock data ordering. thanks Kevin Menard
1206
+ Fixed handling of options in mocked get_bucket_object_versions. thanks Kevin Menard
1207
+ Replaced random ETag implementation with MD5, per S3 docs. thanks Kevin Menard
1208
+
1209
+ [aws|sts]
1210
+ make get_*_token requests idempotent. thanks geemus
1211
+
1212
+ [beanstalk]
1213
+ avoid one remaining error with mocked tests. thanks geemus
1214
+
1215
+ [cloudstack]
1216
+ Fix warning in ruby 1.8.7. thanks Aaron Suggs
1217
+ added additional networking support and volume management commands. thanks Brian Dorry
1218
+ added unit tests. thanks Brian Dorry
1219
+ skip ssl verification. thanks geemus
1220
+
1221
+ [cloudstack|compute]
1222
+ merged in upstream. thanks bdorry
1223
+ added ssh key support, snapshot policy support. thanks bdorry
1224
+ added update resource count action. thanks bdorry
1225
+
1226
+ [compute|aws]
1227
+ fix for describe_images parser that accidently split records. thanks geemus
1228
+ fix error in describe_security_groups parser closes #678. thanks geemus
1229
+
1230
+ [compute|cloudstack]
1231
+ added basic cloudstack list support. thanks bdorry
1232
+ added user management support. thanks bdorry
1233
+ added domain management support. thanks bdorry
1234
+ added domain management support, added documentation links to existing cloudstack requests. thanks bdorry
1235
+
1236
+ [core]
1237
+ no need to expand the already exanded __LIB_DIR__. thanks geemus
1238
+ update connection to use new excon response_block format. thanks geemus
1239
+
1240
+ [docs]
1241
+ Update GitHub repository references from geemus/fog to fog/fog. thanks Benjamin Manns
1242
+
1243
+ [dynect|dns]
1244
+ Pass zone.records.all options through to get_node_list. thanks Dan Peterson
1245
+
1246
+ [glesys|compute]
1247
+ fix for changes in api. thanks Anton Lindström
1248
+
1249
+ [joyent|compute]
1250
+ rename _test files to _tests for shindo. thanks geemus
1251
+ make password required. thanks geemus
1252
+ fix format of joyent to match real output and remove mock-only test. thanks geemus
1253
+
1254
+ [local|storage]
1255
+ Fix Local::File deletion for Ruby 1.8. thanks Benjamin Manns
1256
+ Add copy_object method to Local::Storage. thanks Benjamin Manns
1257
+ Add copy method to Local::File. thanks Benjamin Manns
1258
+
1259
+ [misc]
1260
+ whitespace. thanks Aaron Suggs
1261
+ fix typo in comment. thanks Aaron Suggs
1262
+ whitespace cleanup. thanks Aaron Suggs
1263
+ Refactor to support ruby 1.8.7. thanks Aaron Suggs
1264
+ Whoops, don't need to require digest/md5. thanks Aaron Suggs
1265
+ whitespace. thanks Aaron Suggs
1266
+ Adds Supprt for oVirt (http://ovirt.org). thanks Amos Benari
1267
+ oVirt: Added tests to work on both real and mock. thanks Amos Benari
1268
+ Removing duplicates from reservation's groupSet. thanks Artem
1269
+ Remove coverage Rake task. thanks Benjamin Manns
1270
+ Remove a step that referenced a private config file. thanks Bob Briski
1271
+ updated cloudstack tests for user level permissions, added ssh key, disk offering, service offering, os type, security group tests. thanks Brian Dorry
1272
+ Adding update_firewall_rule request. thanks Caius Durling
1273
+ Correct an error with long keys where Base64.encode64 would add "\n" at 60 chars. thanks Chris Hasenpflug
1274
+ Use gsub for Ruby 1.8.7 compatibility. thanks Chris Hasenpflug
1275
+ Correct copy & paste error. thanks Chris Hasenpflug
1276
+ implement #scp_download method to allow downloads in addition to uploads via scp. alias #scp method as #scp_upload. thanks Christoph Schiessl
1277
+ tests for scp_download. thanks Christoph Schiessl
1278
+ Removed various 'puts' statements... thanks Christopher Oliver
1279
+ fix for free choice of region. thanks Daniel Schweighoefer
1280
+ save the region in a instance variable. thanks Daniel Schweighoefer
1281
+ rounding out API coverage in 'Virtual Machine section. thanks David Nalley
1282
+ mock #create_user and #create_access_keys". thanks Edward Muller
1283
+ fix typo. thanks Edward Muller
1284
+ Enable Shindo tests for the mocked methods. thanks Edward Muller
1285
+ Refactor mock data structure. thanks Edward Muller
1286
+ mock #put_user_policy. thanks Edward Muller
1287
+ Mock out #list_users. thanks Edward Muller
1288
+ Mock #delete_user_policy. thanks Edward Muller
1289
+ Move this is Mock.key_id and don't default the path. thanks Edward Muller
1290
+ Add group mock data. thanks Edward Muller
1291
+ Use #has_key? instead of #keys.include?. thanks Edward Muller
1292
+ rework these to use #tap instead. Cleaner IMNSHO. thanks Edward Muller
1293
+ Additional mocks. thanks Edward Muller
1294
+ missing raise. thanks Edward Muller
1295
+ DescribeVolumeStatus. thanks Edward Muller
1296
+ Add code to support the creation and modification of security groups existing in a VPC. thanks Eric Stonfer
1297
+ modified security group tests to accomodate the new security group data model. Also allowed permissions to be nil in the security tests for groups with no ACLs. thanks Eric Stonfer
1298
+ Change default for vpc_id from '' to nil. thanks Eric Stonfer
1299
+ fixed a conditional that was assigining = rather than evaluating == in vsphere clone routine. This resulted in cloning from folders always failing. thanks Eric Stonfer
1300
+ Add the ability to create linked clones in vsphere. thanks Eric Stonfer
1301
+ whitespace fix. thanks Eric Stonfer
1302
+ whitespace fix. thanks Eric Stonfer
1303
+ add a linked clone test scenario, set the vm_clone test to wait, and clean up old servers after the VM clone test. thanks Eric Stonfer
1304
+ linked clone tests. thanks Eric Stonfer
1305
+ This patch allows the ability to create 'blank' vms in vsphere. thanks Eric Stonfer
1306
+ fix list_virtual_machines when using :folder. thanks Eric Stonfer
1307
+ add vm reconfiguration functions for memory cpu / generic spec. thanks Eric Stonfer
1308
+ add subnet and vpc info to instance gets. thanks Eric Stonfer
1309
+ fixed a typo in vm_power_on_tests.rb. thanks Eric Stonfer
1310
+ make eips useable in a VPC. thanks Eric Stonfer
1311
+ associate EIPs in a vpc. thanks Eric Stonfer
1312
+ update autoscaling groups to allow the use of recurrence, start and end times. thanks Eric Stonfer
1313
+ realized that @activity was actually not used. thanks Eric Stonfer
1314
+ fixed some whitespace issues in auto_scaling tests. Fixed auto_scaling tests formats. thanks Eric Stonfer
1315
+ add host based vmotion. thanks Eric Stonfer
1316
+ basic VPC creation. thanks Eric Stonfer
1317
+ [aws]Add in subnets. thanks Eric Stonfer
1318
+ enable_metrics_collection requires a granularity argument (1Minute is the only legal value). thanks Frederick Cheung
1319
+ New file additions for AWS Elastic Beanstalk support. thanks George Scott
1320
+ Added beanstalk service to AWS Provider. thanks George Scott
1321
+ Unit tests for beanstalk. thanks George Scott
1322
+ Now sets pending when mocking for all beanstalk model tests. thanks George Scott
1323
+ environment now uses name as identity. thanks George Scott
1324
+ Added additional convenience methods to application. thanks George Scott
1325
+ remove rubygems require from core.rb. thanks Hemant Kumar
1326
+ Reset the alias_target hash for good measure. thanks James Miller
1327
+ Add a test for ALIAS records. thanks James Miller
1328
+ Cleanups and crazy long sleep to ensure ALIAS zone is found. thanks James Miller
1329
+ Fix linked clone mocked test unhandled exception. thanks Jeff McCune
1330
+ (maint) Whitespace and format only clean up. thanks Jeff McCune
1331
+ added support for server-side encryption on s3. thanks John Parker
1332
+ Switch from NewServers to BareMetalCloud for #773. thanks John Wang
1333
+ Add deprecation warning. thanks John Wang
1334
+ Fixed bug in SQS :receive_message mock. thanks Joshua Krall
1335
+ Fixed a typo in the warning. thanks Kashif Rasul
1336
+ One more typo fix. thanks Kashif Rasul
1337
+ GH-690 Joyent Cloud Provider. thanks Kevin Chan
1338
+ Credentials: cloudapi_* -> joyent_* for consistency. thanks Kevin Chan
1339
+ Revert "[joyent|compute] make password required" This reverts commit 6e93321e29e69cc863aa9d78cdcf1c83203a2fa7. thanks Kevin Chan
1340
+ Fixes dataset tests. thanks Kevin Chan
1341
+ - Fixes tests to run in both mock and non-mock mode - Clean ups and fixes. thanks Kevin Chan
1342
+ Cleanups + Fixes #get_machine test breaking when there are no machines. thanks Kevin Chan
1343
+ cleanups + refactorings + better error reporting per joyent cloudapi spec. thanks Kevin Chan
1344
+ Fixed #673: Zerigo DNS - update_host fails with some options. thanks Kevin Menard
1345
+ Fixed a filename. thanks Kevin Menard
1346
+ implement respond_to? corresponding to method_missing for VirtualBox and libvirt. thanks Konstantin Haase
1347
+ Swap aws_access_key_id and aws_secret_access_key positions in hash to match typical usage convention. thanks Kyle Drake
1348
+ When Exists boolean is not specified, this request is not idempotent. thanks Lance Carlson
1349
+ Scan sort of acts like a GET request, which are idempotent. thanks Lance Carlson
1350
+ Only do a 'head' on the file that we've copied - no need to go download it now, that would defeat the purpose. thanks Lars Pind
1351
+ Improved support for SecurityGroup IDs. thanks MaF
1352
+ We must create the VPC before we can create a security group in it. thanks MaF
1353
+ Changed verify_permission_options in mocked version of authorize_security_group_ingress to accept any ipProtocol for vpc groups. Also changed the security group test to use protocol 42 when testing vpc security_groups. thanks MaF
1354
+ Check if exception has a #response method before calling it, otherwise call #message. thanks Manuel Meurer
1355
+ Fix sync_clock method, only rescue Excon::Errors::HTTPStatusError that are known to have a #response method, let all other exceptions bubble up. thanks Manuel Meurer
1356
+ Updated excon to version ~>0.10.0. Closes #781. thanks Marc Seeger
1357
+ include fission gem. thanks Michael Brodhead & Shai Rosenfeld
1358
+ Move fission from reg dependency to dev dependency per comments on pull request #736. thanks Michael Brodhead & Shai Rosenfeld
1359
+ adding required gem to run the tests. thanks Ohad Levy
1360
+ first cut of cleaning up libvirt server class. thanks Ohad Levy
1361
+ minor cleanups. thanks Ohad Levy
1362
+ fixes libvirt wrong state check. thanks Ohad Levy
1363
+ libvirt - avoids exception if a uuid is not found. thanks Ohad Levy
1364
+ libvirt: servers return nil, not an empty array... thanks Ohad Levy
1365
+ Added basic tests to Ovirt compute provider. thanks Ohad Levy
1366
+ Added check if Fog.mock! should be used in AWS tests. thanks Paul Thornthwaite
1367
+ Nix hardcoded regions: DynamoDB. thanks Pavel Repin
1368
+ Nix hardcoded regions: Autoscaling. thanks Pavel Repin
1369
+ Nix hardcoded regions: CloudFormation. thanks Pavel Repin
1370
+ Nix hardcoded regions: CloudWatch. thanks Pavel Repin
1371
+ Nix hardcoded regions: EC2. thanks Pavel Repin
1372
+ Nix hardcoded regions: ElastiCache. thanks Pavel Repin
1373
+ Nix hardcoded regions: ELB. thanks Pavel Repin
1374
+ Nix hardcoded regions: EMR. thanks Pavel Repin
1375
+ Nix hardcoded regions: RDS. thanks Pavel Repin
1376
+ Nix hardcoded regions: SES. thanks Pavel Repin
1377
+ Nix hardcoded regions: SimpleDB. thanks Pavel Repin
1378
+ Nix hardcoded regions: SNS. thanks Pavel Repin
1379
+ Nix hardcoded regions: SQS (us-east-1 is special). thanks Pavel Repin
1380
+ Nix hardcoded regions: S3 (us-east-1 is special). thanks Pavel Repin
1381
+ Fixing typo "retreive" -> "retrieve". thanks Pedro Nascimento
1382
+ Add the ":idempotent => true" property to create_tags to fix an issue when launching many instance from cluster_chef. thanks Peter C. Norton
1383
+ Ran M-x align-regexp on the hashrockets. thanks Peter C. Norton
1384
+ Passing half of rds/instance_tests.rb shindo tests. thanks Rodrigo Estebanez
1385
+ making shindo tests for security groups in rds. thanks Rodrigo Estebanez
1386
+ Better rds/security_group_test. Mocking rds security_groups. thanks Rodrigo Estebanez
1387
+ Support for rds parameter groups mocking. thanks Rodrigo Estebanez
1388
+ [aws][auto_scaling] Bug fixed: configurations.get(launch-configuration) always shows the first element. thanks Rodrigo Estebanez
1389
+ it doesn't throw an error when the launch configuration doesnt exist. thanks Rodrigo Estebanez
1390
+ [aws][auto_scaling]. Support delete_launch_configuration mocking. thanks Rodrigo Estebanez
1391
+ Added PrivateIpAddress to the list of valid parameters for instance creation. thanks Rusty Geldmacher
1392
+ Add Ecloud version 2.8 as supported. thanks Shai Rosenfeld
1393
+ support alias records in the route53 models. thanks Thom May
1394
+ Remove unused comment / commented code. thanks Todd Willey
1395
+ Fix intial public_url when saving using rackspace_cdn_ssl = true. thanks Zachary Danger Campbell
1396
+ added virtual machine support and security group support. thanks bdorry
1397
+ merged in 0.11.0 release. thanks bdorry
1398
+ merged 1.0.0. thanks bdorry
1399
+ remove latest MVP from future possibilities. thanks geemus
1400
+ examples should use providers.values. thanks geemus
1401
+ fix Fog::Nullable::Boolean to include true/false. thanks geemus
1402
+ update fog.io copyright year. thanks geemus
1403
+ use path style access for https public_urls that include . to avoid certificate issues closes #743. thanks geemus
1404
+ fix AWS get_object_http(s)_url methods to properly use subdomain vs path urls as appropriate closes #611. thanks geemus
1405
+ loosen multi-json dependency closes #757. thanks geemus
1406
+ remove examples as they are not that helpful or well supported. thanks geemus
1407
+ bump excon dep closes #799. thanks geemus
1408
+ bump excon dep. thanks geemus
1409
+ strip ARNs - AWS is sensitive to leading and trailing whitespace/cr/lf. thanks hedgehog
1410
+ allow for bundler+rbenv best practice. thanks hedgehog
1411
+ Rackspace create_image request - pass all options. thanks kbockmanrs
1412
+ Add Blue Box location support. thanks leehuffman
1413
+ Update location UUID. thanks leehuffman
1414
+ Add passing tests. thanks leehuffman
1415
+ Fix location_id typo. thanks leehuffman
1416
+ Add Blue Box location support. thanks leehuffman
1417
+ Update location UUID. thanks leehuffman
1418
+ Add passing tests. thanks leehuffman
1419
+ Fix location_id typo. thanks leehuffman
1420
+
1421
+ [ninefold|storage]
1422
+ Add copy method to Ninefold::File. thanks Benjamin Manns
1423
+
1424
+ [oVirt]
1425
+ Fixed syntax error in ovirt parser. thanks Amos Benari
1426
+ added option to block on start. Start action will block instead of fail. It can be useful in case of start after stop or create. thanks Amos Benari
1427
+ added support for update vm on ovirt. thanks Amos Benari
1428
+ Added VM and Template network-interfaces crud. thanks Amos Benari
1429
+
1430
+ [ovirt|compute]
1431
+ #instance_variables returns Symbols in 1.9.2+. thanks Dan Peterson
1432
+
1433
+ [rackspace/compute]
1434
+ Add 30GB (30720) compute size. thanks Phil Kates
1435
+
1436
+ [rackspace|storage]
1437
+ Add copy_object request. thanks Benjamin Manns
1438
+ Add copy method to Rackspace::File. thanks Benjamin Manns
1439
+
1440
+ [slicehost]
1441
+ add deprecation warnings. thanks geemus
1442
+
1443
+ [storage]
1444
+ fixes for deprecated implicit block usage to excon requests. thanks geemus
1445
+ update get_object requests to use excon response_blocks. thanks geemus
1446
+
1447
+ [storage|test]
1448
+ Run storage tests on a file in a subdirectory. thanks Benjamin Manns
1449
+
1450
+ [storage|tests]
1451
+ Add copy method to storage tests. thanks Benjamin Manns
1452
+ Check that the copied file body matches the original file. thanks Benjamin Manns
1453
+
1454
+ [vcloud]
1455
+ mark mock tests pending. thanks geemus
1456
+
1457
+ [vcloud|compute]
1458
+ rather mock Fog::Vcloud::Connection as this is the right place to mock things. thanks Peter Meier
1459
+ improve models + additional tests. thanks Peter Meier
1460
+ add API version 1.5 compability. thanks Peter Meier
1461
+
1462
+ [vmfusion|compute]
1463
+ Sync fission v0.4.0 plus more. thanks Cody Herriges
1464
+
1465
+ [voxel]
1466
+ update ssl_verify_peer = false setting. thanks geemus
1467
+
1468
+ [vsphere]
1469
+ add to test skip list when lacking credentials. thanks geemus
1470
+
1471
+ [zerigo|dns]
1472
+ Fixed an issue with updating a record since the response body is an empty string, not nil. thanks Kevin Menard
1473
+ Fixed the parser. TTL and priority values can be nil and should not be coerced into integers in that case. thanks Kevin Menard
1474
+
1475
+
1476
+ 1.1.2 12/18/2011 c1873e37e76af83e9de3f3308f3baa0664dd8dc2
1477
+ =========================================================
1478
+
1479
+ Stats! { 'collaborators' => 20, 'downloads' => 351821, 'forks' => 332, 'open_issues' => 21, 'watchers' => 1731 }
1480
+
1481
+ MVP! Stepan G. Fedorov
1482
+
1483
+ [Brightbox]
1484
+ Fix zone_id/flavour_id getter/setter for Server. thanks Hemant Kumar
1485
+ Add zone/server_type attribute for Server. thanks Hemant Kumar
1486
+ Add username to Image. thanks Hemant Kumar
1487
+ Add request for remove_firewall_policy. thanks Hemant Kumar
1488
+ Add model method for remove. thanks Hemant Kumar
1489
+ Change logic of fetching zone and flavour_id. thanks Hemant Kumar
1490
+ Remove name as mandatory parameter for creating server group. thanks Hemant Kumar
1491
+ Add created_at attribute for server_group,policy and firewall rule. thanks Hemant Kumar
1492
+ Updated Image format tests for username. thanks Paul Thornthwaite
1493
+ Updated ServerGroup format for created_at time. thanks Paul Thornthwaite
1494
+
1495
+ [aws|autoscaling]
1496
+ allow sa-east-1 region in mocks. thanks Nick Osborn
1497
+
1498
+ [aws|compute]
1499
+ fix security_group format for mock tests. thanks geemus
1500
+
1501
+ [aws|dns]
1502
+ fix capitilization for records#all options. thanks geemus
1503
+
1504
+ [aws|elb]
1505
+ update SSL certificates on listeners. :christmas_tree:. thanks Dylan Egan
1506
+
1507
+ [aws|storage]
1508
+ Support ACL on copy_object. :v:. thanks Dylan Egan
1509
+
1510
+ [brightbox]
1511
+ Adding *_server actions to ServerGroup model. thanks Caius Durling
1512
+ Pass along server_groups when creating a server. thanks Caius Durling
1513
+ Make update_cloud_ip request work. thanks Caius Durling
1514
+ Firewall models. thanks Paul Thornthwaite
1515
+ Added missing requirement and request arg. thanks Paul Thornthwaite
1516
+ Corrected deprecated argument. thanks Paul Thornthwaite
1517
+ Dynamically select testing image. thanks Paul Thornthwaite
1518
+ Helper to get a test server ready. thanks Paul Thornthwaite
1519
+ Revised tests structure. thanks Paul Thornthwaite
1520
+ Test and fix for API client secret reset. thanks Paul Thornthwaite
1521
+ Test update of reverse DNS for CIP. thanks Paul Thornthwaite
1522
+ Updated default Ubuntu image. thanks Paul Thornthwaite
1523
+ Make Cloud IP model's map nicer to use. thanks Paul Thornthwaite
1524
+ Correctly get Server's IP addresses as strings. thanks Paul Thornthwaite
1525
+ ServerGroup association to Servers. thanks Paul Thornthwaite
1526
+ Replace duplicate remove with move test. thanks Paul Thornthwaite
1527
+ Load balancer request tests expanded. thanks Paul Thornthwaite
1528
+ Request test for snapshotting a server. thanks Paul Thornthwaite
1529
+ fix mock tests. thanks geemus
1530
+
1531
+ [clodo]
1532
+ : Added missing field. thanks NomadRain
1533
+ Some cleanup before pool request. thanks NomadRain
1534
+ add fake credentials for mock tests. thanks geemus
1535
+
1536
+ [clodo|compute]
1537
+ Bug fixes. thanks NomadRain
1538
+ I don't know what is ignore_awful_caching, so i removed it. thanks Stepan G Fedorov
1539
+ server.ssh with password. Not only with key. thanks Stepan G Fedorov
1540
+ Fix Mocks. thanks Stepan G Fedorov
1541
+ Enable get_image_details. thanks Stepan G Fedorov
1542
+ Actualize Mocks. thanks Stepan G. Fedorov
1543
+ Enable :get_image_details. thanks Stepan G. Fedorov
1544
+ Add tests. thanks Stepan G. Fedorov
1545
+ Remove ddosprotect field from Mock. thanks Stepan G. Fedorov
1546
+ Add ip-address management. thanks Stepan G. Fedorov
1547
+ Rename moveip to move_ip_address. thanks Stepan G. Fedorov
1548
+ Enable ip-management. thanks Stepan G. Fedorov
1549
+ Fix delete_server mock. thanks Stepan G. Fedorov
1550
+ Fix move_ip_address behaviour. thanks Stepan G. Fedorov
1551
+ Add ip-address management. thanks Stepan G. Fedorov
1552
+ Rename moveip to move_ip_address. thanks Stepan G. Fedorov
1553
+ Enable ip-management. thanks Stepan G. Fedorov
1554
+ Fix delete_server mock. thanks Stepan G. Fedorov
1555
+ Fix move_ip_address behaviour. thanks Stepan G. Fedorov
1556
+ Added missing field (server.type). thanks Обоев Рулон ибн Хаттаб
1557
+
1558
+ [core]
1559
+ Cast Fog.wait_for interval to float. thanks Aaron Suggs
1560
+ fix exceptions from nil credential value. thanks Blake Gentry
1561
+ `@credential` should always be a symbol. thanks Hunter Haugen
1562
+
1563
+ [docs]
1564
+ note in title that multiple keys is an EC2 thing. thanks geemus
1565
+
1566
+ [glesys|compute]
1567
+ fixed tests due to changes in the api. thanks Anton Lindström
1568
+ fix test formats and whitespaces. thanks Anton Lindström
1569
+
1570
+ [misc]
1571
+ parse SQS timestamps as milliseconds. thanks Andrew Bruce
1572
+ Allow use of sa-east-1 in the ec2 mock as well. thanks Andy Delcambre
1573
+ Enabled tests for setting S3 ACL by id and uri on buckets and objects when mocking. thanks Arvid Andersson
1574
+ Added acl_to_hash helper method to Fog::Storage::AWS. thanks Arvid Andersson
1575
+ Ensuring that get_object_acl and get_bucket_acl mock methods returns a hash representation of the ACL. thanks Arvid Andersson
1576
+ Created Rackspace LB models folder. thanks Brian Hartsock
1577
+ 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
1578
+ indentation change. thanks Eric Stonfer
1579
+ Add the ability to return the security group ID when requesting a SecurityGroupData object. thanks Eric Stonfer
1580
+ fix tests to accomodate the new SecurityGroupId. thanks Eric Stonfer
1581
+ Revert "fix tests to accomodate the new SecurityGroupId". thanks Eric Stonfer
1582
+ fix tests to accomodate the addition of security_group_id. thanks Eric Stonfer
1583
+ indentation fix. thanks Eric Stonfer
1584
+ indentation fix. thanks Eric Stonfer
1585
+ [Brightbox]Add remove_firewall_policy to computer.rb. thanks Hemant Kumar
1586
+ [Brightbox]Protocol is no longer required parameter for firewall. thanks Hemant Kumar
1587
+ Add implementation of DescribeInstanceStatus. thanks JD Huntington & Jason Hansen
1588
+ fixed type-o in rdoc on Fog::DNS:DNSMadeEasy. thanks John Dyer
1589
+ add query options to Fog::Storage::AWS#get_object_https_url. thanks Mateusz Juraszek
1590
+ 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
1591
+ add query param to get_object_http_url for consistency. thanks Mateusz Juraszek
1592
+ Fix regression in Rakefile introduced in 70e7ea13. thanks Michael Brodhead
1593
+ add são paulo/brasil region. thanks Raphael Costa
1594
+ mock create_db_instance. thanks Rodrigo Estebanez
1595
+ mocking describe_db_instance. Fix hash structure in create_db_instance. thanks Rodrigo Estebanez
1596
+ mocking delete_db_instance. thanks Rodrigo Estebanez
1597
+ mocking wait_for through describe_db_instances. thanks Rodrigo Estebanez
1598
+ mocking modify_db_instance and reboot_db_instance. thanks Rodrigo Estebanez
1599
+ raise exception instead of excon response. thanks Rodrigo Estebanez
1600
+ Fixing bug: It always showed the first instance when using get. thanks Rodrigo Estebanez
1601
+ Fixes for issues 616 and 617. thanks Sergio Rubio
1602
+ * remove unnecessary debugging. thanks Sergio Rubio
1603
+ * Add missing recognized :libvirt_ip_command. thanks Sergio Rubio
1604
+ * Add server_name environment variable to ip_command. thanks Sergio Rubio
1605
+ * implement :destroy_volumes in Server.destroy (libvirt provider). thanks Sergio Rubio
1606
+ Add documentation for using multiple ssh keys on AWS. thanks Sven Pfleiderer
1607
+ Update bootstrap description. thanks Sven Pfleiderer
1608
+ Escape underscore charakters. thanks Sven Pfleiderer
1609
+ implement STS support. thanks Thom May
1610
+ Allow use of session tokens in AWS Compute. thanks Thom May
1611
+ handle session tokens for SQS and SimpleDB. thanks Thom May
1612
+ Split [AWS|STS] tests into separate files per #609. thanks Thom May
1613
+ Bug fix, metric_statistic#save would always fail. thanks bmiller
1614
+ bump excon dep. thanks geemus
1615
+ bump excon dep. thanks geemus
1616
+ Fixing Rackspace's lack of integer-as-string support as per https://github.com/fog/fog/pull/657#issuecomment-3145337. thanks jimworm
1617
+ add current set of elasticache endpoints. thanks lostboy
1618
+ added sa-east-1 region. thanks thattommyhall
1619
+ Add clodo support. thanks Обоев Рулон ибн Хаттаб
1620
+ Enable clodo support. thanks Обоев Рулон ибн Хаттаб
1621
+
1622
+ [rackspace|dns]
1623
+ error state callbacks now return an error. thanks Brian Hartsock
1624
+ fixed broken test. thanks Brian Hartsock
1625
+ should recognize rackspace_dns_endpoint argument. thanks geemus
1626
+ record should pass priority. thanks geemus
1627
+ mark tests for models pending in mocked mode. thanks geemus
1628
+
1629
+ [rackspace|lb]
1630
+ Fixed bug #644 with HTTP health monitors. thanks Brian Hartsock
1631
+ fix for #650 - Connection logging now loads appropriately. thanks Brian Hartsock
1632
+ added error page requests. thanks Brian Hartsock
1633
+ Added error pages to the model. thanks Brian Hartsock
1634
+ Added list parameter for nodeddress. thanks Brian Hartsock
1635
+ fixed broken test; cleaned up some tests. thanks Brian Hartsock
1636
+
1637
+ [rackspace|load balancers]
1638
+ fixed broken tests. thanks Brian Hartsock
1639
+
1640
+ [rackspace|loadbalancers]
1641
+ Fixed bug in deleting multiple nodes. thanks Brian Hartsock
1642
+
1643
+ [slicehost|compute]
1644
+ update image id in tests. thanks geemus
1645
+
1646
+ [storm_on_demand]
1647
+ fixes for formats in tests. thanks geemus
1648
+
1649
+ [tests | clodo]
1650
+ Added ip-management tests. thanks Stepan G. Fedorov
1651
+ Added ip-management tests. thanks Stepan G. Fedorov
1652
+
1653
+ [tests | clodo ]
1654
+ ddosprotect field must not exist. thanks Stepan G. Fedorov
1655
+
1656
+ [tests | clodo | compute]
1657
+ Add most tests. thanks Stepan G Fedorov
1658
+ Add image tests. thanks Stepan G Fedorov
1659
+
1660
+ [tests | clodo | compute ]
1661
+ create_server - First try. thanks Stepan G Fedorov
1662
+
1663
+ [vcloud]
1664
+ mark tests pending in mocked mode. thanks geemus
1665
+
1666
+ [vcloud|compute]
1667
+ introduce organizations. thanks Peter Meier
1668
+ make networks working also in organizations. thanks Peter Meier
1669
+ remove server from organizations as they are within vApps of vDC. thanks Peter Meier
1670
+ add catalogs to an organization. thanks Peter Meier
1671
+ a vdc does not have a tasklist. thanks Peter Meier
1672
+ introduce vapps. thanks Peter Meier
1673
+ More work on getting server in a useable shape. thanks Peter Meier
1674
+ fix network to the minimum. thanks Peter Meier
1675
+ a vapp might not have any childrens attached. thanks Peter Meier
1676
+ improve models add tests. thanks Peter Meier
1677
+ improve disk info access. thanks Peter Meier
1678
+ improve network. thanks Peter Meier
1679
+ introduce link on a network to parent network. thanks Peter Meier
1680
+ fix an issue if this is not parsed as an array. thanks Peter Meier
1681
+ stopgap fix for test data files. thanks geemus
1682
+ properly namespace vcloud test to prevent breaking others. thanks geemus
1683
+
1684
+ [vsphere]
1685
+ (#10644) Add servers filter to improve clone performance. thanks Jeff McCune
1686
+ fix whitespace issue in yaml for mocks. thanks geemus
1687
+
1688
+
1689
+ 1.1.1 11/11/2011 a468aa9a3445aae4f496b1a51e26572b8379c3da
1690
+ =========================================================
1691
+
1692
+ Stats! { 'collaborators' => 19, 'downloads' => 300403, 'forks' => 300, 'open_issues' => 14, 'watchers' => 1667 }
1693
+
1694
+ [core]
1695
+ loosen net-ssh dependency to avoid chef conflict. thanks geemus
1696
+
1697
+ [misc]
1698
+ 1.1.0 changelog. thanks geemus
1699
+
1700
+
1701
+ 1.1.0 11/11/2011 b706c7ed66c2e760fdd6222e38c68768575483b2
1702
+ =========================================================
1703
+
1704
+ Stats! { 'collaborators' => 19, 'downloads' => 300383, 'forks' => 300, 'open_issues' => 16, 'watchers' => 1667 }
1705
+
1706
+ MVP! Michael Zeng
1707
+
1708
+ [Compute|Libvirt]
1709
+ Take into account a query string can be empty, different on some rubies it gives nil, on some empty string. thanks Patrick Debois
1710
+
1711
+ [OpenStack|compute]
1712
+ fix v2.0 auth endpoints. thanks Todd Willey
1713
+ default metadata to empy hash. thanks Todd Willey
1714
+ add zone awareness. thanks Todd Willey
1715
+
1716
+ [aws]
1717
+ add us-west-2 region. thanks geemus
1718
+
1719
+ [aws|cloud_watch]
1720
+ mark tests pending when mocked. thanks geemus
1721
+
1722
+ [aws|cloudwatch]
1723
+ Add support for put-metric-alarm call. thanks Jens Braeuer
1724
+ Remove duplicate RequestId from response. thanks Jens Braeuer
1725
+ Add mocked implementation of put_metric_alarm. thanks Jens Braeuer
1726
+ Fix whitespace. thanks Jens Braeuer
1727
+ Fix merge error. thanks Jens Braeuer
1728
+ Add mocked version of put_metric_alarm. thanks Jens Braeuer
1729
+
1730
+ [aws|compute]
1731
+ Mock modify_image_attribute add/remove users. thanks Dan Peterson
1732
+ Allow mock tagging to work across accounts. thanks Dan Peterson
1733
+ Fix new instance eventual consistency for the non-filtered case. thanks Dan Peterson
1734
+ Update security group operations. thanks Dan Peterson
1735
+ Test for more invalid security group request input when mocking. thanks Dan Peterson
1736
+ 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
1737
+ tags are reset when reloading. #570. thanks Dylan Egan
1738
+ fixed sopt_instance_request reply parsing when the original request contained a device mapping. thanks MaF
1739
+ wait_for reload then add server tags. thanks geemus
1740
+ spot request fixes. thanks geemus
1741
+ tweaks for spot request bootstrap. thanks geemus
1742
+ save tags for spot_requests#bootstrap. thanks geemus
1743
+ update ami for windows. thanks geemus
1744
+
1745
+ [aws|elb]
1746
+ Missed a change as part of #545. thanks Dan Peterson
1747
+ use a set union to register new instances. thanks Dylan Egan
1748
+ return only the instance IDs on describe. Use only available availability zones. :v:. thanks Dylan Egan
1749
+ attribute aliases for CanonicalHostedZoneName(ID). :v:. thanks Dylan Egan
1750
+ eventually consistent, like me getting a haircut. :v:. thanks Dylan Egan
1751
+
1752
+ [aws|emr]
1753
+ mark tests pending when mocked. thanks geemus
1754
+
1755
+ [aws|iam]
1756
+ slight cleanup and test with a certificate chain. :cake:. thanks Dylan Egan
1757
+
1758
+ [aws|mock]
1759
+ Dig into mock data instead of instantiating new service objects. thanks Dan Peterson
1760
+
1761
+ [aws|storage]
1762
+ ensure path isn't empty when specifying endpoint. thanks geemus
1763
+
1764
+ [brightbox]
1765
+ Fixed incorrect call to reset_ftp_password. thanks Paul Thornthwaite
1766
+
1767
+ [brightbox|compute]
1768
+ format fixes for tests. thanks geemus
1769
+
1770
+ [core]
1771
+ treat boolean values as a boolean. thanks Peter Meier
1772
+ fix attribute squashing with : in key. thanks Peter Meier
1773
+ all services should recognize :connection_options. thanks geemus
1774
+ separate loggers for deprecations/warnings. thanks geemus
1775
+ avoid duplicates in Fog.providers. thanks geemus
1776
+ more useful structure for Fog.providers. thanks geemus
1777
+ add newlines to logger messages. thanks geemus
1778
+ update stats raketask to point to org. thanks geemus
1779
+ toss out nil-value keys when checking required credentials. thanks geemus
1780
+
1781
+ [dns]
1782
+ Made model tests use uniq domain names. thanks Brian Hartsock
1783
+
1784
+ [dnsmadeeasy|dns]
1785
+ Fix Fog::DNS::DNSMadeEasy::Record#save to handle updating a record correctly. thanks Peter Weldon
1786
+
1787
+ [docs]
1788
+ update links to point to http://github.com/fog/fog. thanks geemus
1789
+
1790
+ [dynect|dns]
1791
+ Automatically poll jobs if we get them. Closes #575. thanks Dan Peterson
1792
+
1793
+ [misc]
1794
+ Change response parameter. thanks Alan Ivey
1795
+ Missing HEAD method. thanks Andrew Newman
1796
+ Missing HEAD method. thanks Andrew Newman
1797
+ Putting version back. thanks Andrew Newman
1798
+ Reformatting and making consistent with other classes. thanks Andrew Newman
1799
+ Missed renam to head_namespace. thanks Andrew Newman
1800
+ Reverting version and date in gemspec. thanks Andrew Newman
1801
+ Formatting. thanks Andrew Newman
1802
+ Removed puts of element name. thanks Arvid Andersson
1803
+ Changes to allow EMR control through fog. thanks Bob Briski
1804
+ Added EMR functions for AWS. thanks Bob Briski
1805
+ Adding tests. thanks Bob Briski
1806
+ merge EMR changes with upstream repo. thanks Bob Briski
1807
+ (#10055) Search vmFolder inventory vs children. thanks Carl Caum
1808
+ Adding a path attribute to the vm_mob_ref hash. thanks Carl Caum
1809
+ Cleanup Attributes#merge_attributes. thanks Hemant Kumar
1810
+ Update S3 doc example to show current API. thanks Jason Roelofs
1811
+ Restructure main website's navigation. thanks Jason Roelofs
1812
+ Add CloudFormation UpdateStack call. thanks Jason Roelofs
1813
+ Minor whitespace change. thanks Jens Braeuer
1814
+ Trailing whitespace cleanup. thanks Jens Braeuer
1815
+ Whitespace cleanup. thanks Jens Braeuer
1816
+ Fix merge error. thanks Jens Braeuer
1817
+ Removed statement about @geemus being only member of collaborators list since it's not true anymore. thanks John Wang
1818
+ Fixes Fog::AWS::Storage#put_(bucket|object)_acl. thanks Jonas Pfenniger
1819
+ Randomize bucket names in tests. thanks Jonas Pfenniger
1820
+ Fix AWS S3 bucket and object tests. thanks Jonas Pfenniger
1821
+ (#10570) Use nil in-place of missing attributes. thanks Kelsey Hightower
1822
+ (#10570) Update `Fog::Compute::Vsphere` tests. thanks Kelsey Hightower
1823
+ We use 'Key' for all S3 objects now. thanks Kevin Menard
1824
+ Implemented mocks for Zerigo. thanks Kevin Menard
1825
+ Updated docs to use newer arg, rather than the old deprecated one. thanks Kevin Menard
1826
+ Added the ability to search Zerigo records for a particular zone. thanks Kevin Menard
1827
+ Return the only element of the array, not the array itself. thanks Kevin Menard
1828
+ Fixed an issue whereby saving an existing record in Zerigo would nil out its value. thanks Kevin Menard
1829
+ added DeleteAlarms, DescribeAlarms and PutMetricAlarms. thanks Michael Zeng
1830
+ re-adding files. thanks Michael Zeng
1831
+ adding describe_alarm_history. thanks Michael Zeng
1832
+ adding diable/enable alarm actions. thanks Michael Zeng
1833
+ added DescribeAlarmHistory request and parser. thanks Michael Zeng
1834
+ fixing describe_alarms and describe_alarms_for_metric requests. thanks Michael Zeng
1835
+ cleaned up requesters and parsers. thanks Michael Zeng
1836
+ added SetAlarmState. thanks Michael Zeng
1837
+ included more response elements, request parameters should now be complete. Included model and collection classes. thanks Michael Zeng
1838
+ bug fixes. thanks Michael Zeng
1839
+ fixed models and added tests. thanks Michael Zeng
1840
+ no need to add rake dep. thanks Michael Zeng
1841
+ revert gempspec date change. thanks Michael Zeng
1842
+ reverting cloud_watch.rb. thanks Michael Zeng
1843
+ reverting cloud_watch.rb. thanks Michael Zeng
1844
+ reverting cloud_watch.rb. thanks Michael Zeng
1845
+ reverting cloud_watch.rb. thanks Michael Zeng
1846
+ reverting cloud_watch.rb. thanks Michael Zeng
1847
+ added newline to the end of file. thanks Michael Zeng
1848
+ removed all tabs. thanks Michael Zeng
1849
+ added alarm_data_tests. thanks Michael Zeng
1850
+ spacing change. thanks Michael Zeng
1851
+ AWS#hash_to_acl - add support for EmailAddress and URI grantee types. thanks Nathan Sutton
1852
+ Test and improve Fog::Storage::AWS.hash_to_acl. thanks Nathan Sutton
1853
+ Adding a method to unmock Fog. Addresses issue #594. thanks Nathan Sutton
1854
+ Adding documentation for Fog.unmock! and Fog::Mock.reset. thanks Nathan Sutton
1855
+ added linode ssh support. thanks Nicholas Ricketts
1856
+ added linode ssh support with proper public ip address. thanks Nicholas Ricketts
1857
+ cleaned up code to use att_XX methods. thanks Nicholas Ricketts
1858
+ clean up public_ip_address code for linode. thanks Nicholas Ricketts
1859
+ Seems like rackspace might have changed this. thanks Nik Wakelin
1860
+ Sends power parameter in GoGrid's grid_server_power request. thanks Pablo Baños López
1861
+ 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
1862
+ Did this do anything?. thanks Patrick McKenzie
1863
+ 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
1864
+ Not having the best of days with git. Revert the reversion of the commit that I really do want to make. thanks Patrick McKenzie
1865
+ 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
1866
+ Do not touch .gitignore. thanks Patrick McKenzie
1867
+ 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
1868
+ 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
1869
+ Allow updates of DNS records. Updates on zones not supported yet. thanks Patrick McKenzie
1870
+ 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
1871
+ Getting it so zone.records works as expected (loads all records, for that zone only). thanks Patrick McKenzie
1872
+ simplification. thanks Peter Meier
1873
+ Optimize vSphere convert_vm_mob_ref_to_attr_hash. thanks Rich Lane
1874
+ Compact the way options are mapped to request. thanks Todd Willey
1875
+ Allow setting userdata as plain ascii or b64. thanks Todd Willey
1876
+ bump excon dep. thanks geemus
1877
+ [rackspace][dns] fixes for job request format. thanks geemus
1878
+ bump net-ssh dependency. thanks geemus
1879
+ tshirt offer should be implicit, rather than explicit. thanks geemus
1880
+ add region option to aws sns service recognizes method. thanks lostboy
1881
+ add capabilities support to cloudformation createstack request. thanks lostboy
1882
+
1883
+ [ninefold|storage]
1884
+ omit signature in stringtosign. thanks geemus
1885
+ check objectid for existence. thanks geemus
1886
+ allow overwriting files for consistency. thanks geemus
1887
+
1888
+ [rackspace|dns]
1889
+ Fixed request tests that need unique domain name. thanks Brian Hartsock
1890
+ Adapted to changes in callback mechanism. thanks Brian Hartsock
1891
+
1892
+ [rackspace|load_balancers]
1893
+ made lb endpoint configurable. thanks Brian Hartsock
1894
+
1895
+ [release]
1896
+ omit Patrick Debois from future MVP status. thanks geemus
1897
+
1898
+ [vsphere|compute]
1899
+ test fixes. thanks geemus
1900
+
1901
+
1902
+ 1.0.0 09/29/2011 a81be08ef2473af91f16f4926e5b3dfa962a34ae
1903
+ =========================================================
1904
+
1905
+ Stats! { 'collaborators' => 16, 'downloads' => 245745, 'forks' => 260, 'open_issues' => 13, 'watchers' => 1521 }
1906
+
1907
+ MVP! Patrick Debois
1908
+
1909
+ [Libvirt]
1910
+ if transport is empty, ssh can't be enabled. thanks Patrick Debois
1911
+ 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
1912
+ corrected typo for appending string output to IO.popen. thanks Patrick Debois
1913
+ initialize the ip_address as an empty string. thanks Patrick Debois
1914
+ more specific error if the ip_command results in string that has no ip-address format. thanks Patrick Debois
1915
+ Remove the newlines after running the local ip_command. thanks Patrick Debois
1916
+ rename xml_desc to xml as an attribute and hide all non_dynamic attributes from fog console. thanks Patrick Debois
1917
+ added blocked state and corrected crashed to shutoff state. thanks Patrick Debois
1918
+ renamed 'raw' connection to raw in the Fog Connection. thanks Patrick Debois
1919
+
1920
+ [Libvirt|Compute]
1921
+ renamed all disk_ params for server creation to volume_ to make it consistent with the object type volume. thanks Patrick Debois
1922
+
1923
+ [aws]
1924
+ remove base64 require (duplicates require in fog/core). thanks geemus
1925
+
1926
+ [aws/sqs]
1927
+ Adding SQS mocking support. thanks Istvan Hoka
1928
+
1929
+ [aws|acs]
1930
+ Create ACS security_group model and collection. thanks Aaron Suggs
1931
+ Improve security group tests. thanks Aaron Suggs
1932
+ Adds ACS#delete_cache_security_group. thanks Benton Roberts
1933
+ Added security group methods. thanks Benton Roberts
1934
+ Update CacheSecurityGroup API to public beta 2011-07-15. thanks Benton Roberts
1935
+
1936
+ [aws|cloudwatch]
1937
+ Fix whitespace. thanks Jens Braeuer
1938
+
1939
+ [aws|compute]
1940
+ add snapshot method to volume model. thanks Andrei Serdeliuc
1941
+ Correct path. thanks Dylan Egan
1942
+ raise an ArgumentError if image_id is nil, otherwise an ugly InternalError is returned from AWS. thanks Dylan Egan
1943
+ wait for ready before testing tags. thanks geemus
1944
+ fixes for mocks tests. thanks geemus
1945
+ fix formatting for mock security groups. thanks geemus
1946
+
1947
+ [aws|dns]
1948
+ fix parser path. thanks geemus
1949
+
1950
+ [aws|elasticache]
1951
+ refactor acs->elasticache. thanks Benton Roberts
1952
+ refactor for whitespace / readability. thanks Benton Roberts
1953
+ fix typo in Elasticache Security Group tests. thanks Benton Roberts
1954
+ rename test file for shindo. thanks Benton Roberts
1955
+ create and describe cache clusters. thanks Benton Roberts
1956
+ delete cache clusters. thanks Benton Roberts
1957
+ add Cache Cluster model and collection. thanks Benton Roberts
1958
+ Fix bug in AWS::Elasticache::Cluster.get. thanks Benton Roberts
1959
+ randomize cache cluster IDs in testing. thanks Benton Roberts
1960
+ return nil on CacheClusterNotFound. thanks Benton Roberts
1961
+ use Formatador for testing output. thanks Benton Roberts
1962
+ move ClusterNotFound rescue code into Elasticache service definition. thanks Benton Roberts
1963
+ change method profile for create_cache_cluster, delete_cache_cluster, and describe_cache_clusters. thanks Benton Roberts
1964
+ change parameters for describe_cache_security_groups to ruby-friendly values. thanks Benton Roberts
1965
+ remove port attribute from cluster model. thanks Benton Roberts
1966
+ fix Elasticahce::Cluster.security_groups attribute. thanks Benton Roberts
1967
+ implement modify_cache_cluster request. thanks Benton Roberts
1968
+ cluster port number cannot be modified. thanks Benton Roberts
1969
+ add cache node info to describe_cache_clusters. thanks Benton Roberts
1970
+ add InvalidInstace error class. thanks Benton Roberts
1971
+ remove optional parameters from Elasticache::Cluster. thanks Benton Roberts
1972
+ show cluster node details by default in model. thanks Benton Roberts
1973
+ add test for removing a cache node. thanks Benton Roberts
1974
+ add pending_values to modified nodes. thanks Benton Roberts
1975
+ implement RebootCacheCluster. thanks Benton Roberts
1976
+ implement DescribeEvents. thanks Benton Roberts
1977
+ implement basic parameter group requests. thanks Benton Roberts
1978
+ implement describe_engine_default_parameters request. thanks Benton Roberts
1979
+ implement Elasticache::ParameterGroup model and collection. thanks Benton Roberts
1980
+ implement modify_cache_parameter_group request. thanks Benton Roberts
1981
+ implement reset_cache_parameter_group request. thanks Benton Roberts
1982
+ implement describe_cache_groups request. thanks Benton Roberts
1983
+ test fix: change DESCRIBE_SECURITY_GROUPS helper format. thanks Benton Roberts
1984
+ delete outdated test file. thanks Benton Roberts
1985
+
1986
+ [aws|elb]
1987
+ Raise a custom exception for Throttling. thanks Dylan Egan
1988
+ wait_for server to be ready? before register. thanks geemus
1989
+
1990
+ [aws|iam]
1991
+ implement correct path behaviour in mocking. thanks Dylan Egan
1992
+
1993
+ [aws|simpledb]
1994
+ fix tests to use proper accessor. thanks geemus
1995
+
1996
+ [aws|storage]
1997
+ fix acl mocking. thanks geemus
1998
+
1999
+ [bluebox|compute]
2000
+ Fixed instance state. thanks Lee Huffman
2001
+ Create and destroy images. thanks Lee Huffman
2002
+ Fix for setting hostname on server save. thanks Lee Huffman
2003
+ Expect correct status code for template create. thanks Lee Huffman
2004
+
2005
+ [cdn|aws]
2006
+ move aws cdn to its own shared area (namespacing should probably be corrected). thanks geemus
2007
+
2008
+ [cdn|rackspace]
2009
+ move rackspace cdn to its own shared area (namespacing should probably be corrected). thanks geemus
2010
+
2011
+ [compute]
2012
+ fix service calls I missed in recent rearrange. thanks geemus
2013
+
2014
+ [compute|aws]
2015
+ - Change modify_instance_attribute name to match EC2 API method, and actually make it do something. thanks Caleb Tennis
2016
+ Include ids of things we're modifying in requests. thanks Dan Peterson
2017
+ Fix create_volume mock when creating from a snapshot. thanks Dan Peterson
2018
+ Make get_bucket_location mock return LocationConstraint as API doc describes. thanks Dan Peterson
2019
+ Fix associate_address mock to detach/revert previous addresses properly. thanks Dan Peterson
2020
+ Don't warn in mock describe_snapshots if RestorableBy is 'self'. thanks Dan Peterson
2021
+ When mocking, instances don't show up right away. thanks Dan Peterson
2022
+ Suffix with _tests.rb. thanks Dylan Egan
2023
+ IpPermissionsEgress is returned from AWS. thanks Dylan Egan
2024
+ Simple test to verify revoke_group_and_owner behaviour. thanks Dylan Egan
2025
+ Apparently passing a nil value works against live AWS. Only use SourceSecurityGroupOwnerId in mocks if supplied. thanks Dylan Egan
2026
+ Since this is really proving the use of nil, let's just not pretend there's a value for owner_id. thanks Dylan Egan
2027
+ sometimes the platform string is returned. thanks Dylan Egan
2028
+ enable tests for mocked tags. thanks Dylan Egan
2029
+ Fix NameError. thanks Jens Braeuer
2030
+ Fix bug in tag mocking preventing servers from being updated with new tags. thanks Matt Griffin
2031
+ Add mocking for describe_tags. thanks Matt Griffin
2032
+ move aws compute to its own shared area (namespacing should probably be corrected). thanks geemus
2033
+
2034
+ [compute|bluebox]
2035
+ move bluebox compute to its own shared area (namespacing should probably be corrected). thanks geemus
2036
+
2037
+ [compute|brightbox]
2038
+ Allow persistent option to be passed to Brightbox::Compute. thanks Caius Durling
2039
+ Updated test for new behaviour. thanks Paul Thornthwaite
2040
+ Picking up more attributes from Account. thanks Paul Thornthwaite
2041
+ No need to hardcode a server type. thanks Paul Thornthwaite
2042
+ Updated and reordered model attributes. thanks Paul Thornthwaite
2043
+ Updates to tests. thanks Paul Thornthwaite
2044
+ Added resave warning to a few Brightbox models. thanks Paul Thornthwaite
2045
+ Requests for server group management. thanks Paul Thornthwaite
2046
+ Merge in test updates and server groups. thanks Paul Thornthwaite
2047
+ Corrected require missed in update. thanks Paul Thornthwaite
2048
+ Reset times to the correct type so not string attributes. thanks Paul Thornthwaite
2049
+ Updated Format test to remove gone fields. thanks Paul Thornthwaite
2050
+ Fixed typo in connection options. thanks Paul Thornthwaite
2051
+ Added missing requests. thanks Paul Thornthwaite
2052
+ Added requests for firewall management. thanks Paul Thornthwaite
2053
+ Added ServerGroup model and collections. thanks Paul Thornthwaite
2054
+ Passing options to server group update. thanks Paul Thornthwaite
2055
+ Fixed server_groups.get. thanks Paul Thornthwaite
2056
+ move brightbox compute to its own shared area (namespacing should probably be corrected). thanks geemus
2057
+
2058
+ [compute|ecloud]
2059
+ move ecloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
2060
+
2061
+ [compute|glesys]
2062
+ added glesys as provider. thanks Anton Lindstrom
2063
+ added tests. thanks Anton Lindström
2064
+ fixed logical error for default values. thanks Anton Lindström
2065
+ fixed an invalid character. thanks Anton Lindström
2066
+ consistency/cleanup. thanks geemus
2067
+ fix format for start vs stop. thanks geemus
2068
+ rearrange to match current naming conventions. thanks geemus
2069
+
2070
+ [compute|go_grid]
2071
+ move go_grid compute to its own shared area (namespacing should probably be corrected). thanks geemus
2072
+
2073
+ [compute|libvirt]
2074
+ merge jedi4ever/libvirt. thanks geemus
2075
+ move libvirt compute to its own shared area (namespacing should probably be corrected). thanks geemus
2076
+
2077
+ [compute|linode]
2078
+ move linode compute to its own shared area (namespacing should probably be corrected). thanks geemus
2079
+
2080
+ [compute|bare_metal_cloud]
2081
+ move bare_metal_cloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
2082
+
2083
+ [compute|ninefold]
2084
+ move ninefold compute to its own shared area (namespacing should probably be corrected). thanks geemus
2085
+
2086
+ [compute|rackspace]
2087
+ move rackspace compute to its own shared area (namespacing should probably be corrected). thanks geemus
2088
+
2089
+ [compute|slicehost]
2090
+ move slicehost compute to its own shared area (namespacing should probably be corrected). thanks geemus
2091
+
2092
+ [compute|storm_on_demand]
2093
+ move storm_on_demand compute to its own shared area (namespacing should probably be corrected). thanks geemus
2094
+
2095
+ [compute|vcloud]
2096
+ move vcloud compute to its own shared area (namespacing should probably be corrected). thanks geemus
2097
+
2098
+ [compute|virtual_box]
2099
+ move virtual_box compute to its own shared area (namespacing should probably be corrected). thanks geemus
2100
+
2101
+ [compute|voxel]
2102
+ move voxel compute to its own shared area (namespacing should probably be corrected). thanks geemus
2103
+
2104
+ [core]
2105
+ Allow FOG_CREDENTIAL env variable for config. thanks Aaron Suggs
2106
+ add collection#destroy(identity). thanks geemus
2107
+ move openssl to more central location. thanks geemus
2108
+ first steps toward seperately requirable bits. thanks geemus
2109
+ move providers to lib/fog/. thanks geemus
2110
+ work toward separate requires. thanks geemus
2111
+ prototype logger. thanks geemus
2112
+ add get/set methods for logger channels. thanks geemus
2113
+ use logger throughout for warnings. thanks geemus
2114
+ coerce service credentials. thanks geemus
2115
+ delete nil valued keys from config. thanks geemus
2116
+ pass connection_options through service init. thanks geemus
2117
+ don't rely on bin stuff for service init in tests. thanks geemus
2118
+ dedup services listings. thanks geemus
2119
+ more convenient accessors. thanks geemus
2120
+ fixing more paths after rearrange. thanks geemus
2121
+ add credentials setter. thanks geemus
2122
+ make sure credentials tests properly reset after completion. thanks geemus
2123
+ bump excon dep. thanks geemus
2124
+ properly fix credentials tests. thanks geemus
2125
+ skip vmfusion in rake nuke. thanks geemus
2126
+ bump excon. thanks geemus
2127
+ kill dns stuff in nuke as well. thanks geemus
2128
+
2129
+ [dns]
2130
+ update dns constructor to match recent file moves. thanks geemus
2131
+
2132
+ [dns|aws]
2133
+ move aws dns to its own shared area (namespacing should probably be corrected). thanks geemus
2134
+
2135
+ [dns|bluebox]
2136
+ move bluebox dns to its own shared area (namespacing should probably be corrected). thanks geemus
2137
+
2138
+ [dns|dnsimple]
2139
+ move dnsimple dns to its own shared area (namespacing should probably be corrected). thanks geemus
2140
+
2141
+ [dns|dnsmadeeasy]
2142
+ move dnsmadeeasy dns to its own shared area (namespacing should probably be corrected). thanks geemus
2143
+
2144
+ [dns|dynect]
2145
+ move dynect dns to its own shared area (namespacing should probably be corrected). thanks geemus
2146
+
2147
+ [dns|linode]
2148
+ move linode dns to its own shared area (namespacing should probably be corrected). thanks geemus
2149
+
2150
+ [dns|rackspace]
2151
+ initial commit. thanks Brian Hartsock
2152
+ list_domains request. thanks Brian Hartsock
2153
+ added attributes to list_domains; refactored rackspace errors to be shared with load balancers. thanks Brian Hartsock
2154
+ move rackspace dns to its own shared area (namespacing should probably be corrected). thanks geemus
2155
+
2156
+ [dns|slicehost]
2157
+ move slicehost dns to its own shared area (namespacing should probably be corrected). thanks geemus
2158
+
2159
+ [dns|zerigo]
2160
+ move zerigo dns to its own shared area (namespacing should probably be corrected). thanks geemus
2161
+
2162
+ [doc]
2163
+ Added blogpost about libvirt into fog to the press page. thanks Patrick Debois
2164
+ corrected the link to the actual blogpost instead of the github markdown page :). thanks Patrick Debois
2165
+
2166
+ [docs]
2167
+ add note about ec2 default username. thanks geemus
2168
+
2169
+ [dynect|dns]
2170
+ use a string for now. #362 is open for accepting symbols in mocks. thanks Dylan Egan
2171
+ return the zone name. thanks Dylan Egan
2172
+ accidentally hardcoded the record type in the mocked data. thanks Dylan Egan
2173
+ support ANY record results. thanks Dylan Egan
2174
+ Don't use address as different records have different arguments, just send rdata. Remove value. Add CNAME test. thanks Dylan Egan
2175
+ find, not first. thanks Dylan Egan
2176
+ always ensure it's an integer. thanks Dylan Egan
2177
+ retry if auth_token was previously set and error message includes possible login expiration. thanks Dylan Egan
2178
+ support reauth for inactivity logout too. thanks Dylan Egan
2179
+
2180
+ [glesys|compute]
2181
+ fixes to play nice with mock tests. thanks geemus
2182
+ skip flavor tests. thanks geemus
2183
+
2184
+ [gleysys]
2185
+ fixes for mocked test setup. thanks geemus
2186
+
2187
+ [libvirt]
2188
+ Added option libvirt_ip_command to the credentials error page. thanks Patrick Debois
2189
+ Corrected template variable from interface_nat_network to network_nat_network. thanks Patrick Debois
2190
+
2191
+ [linode|compute]
2192
+ update format for plans. thanks geemus
2193
+
2194
+ [load balancer|rackspace]
2195
+ fixed some minor bugs i noticed in the tests. thanks Brian Hartsock
2196
+
2197
+ [misc]
2198
+ Fixed a couple of errors in the examples. thanks Bobby Wilson
2199
+ 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
2200
+ Add create_image to server model. thanks Dan Prince
2201
+ Add support for non-strict validations, and nullable arrays/hashes. thanks Dan Prince
2202
+ Additions and updates to the OpenStack API tests. thanks Dan Prince
2203
+ Beginning of Dynect::DNS mocking support. thanks Dylan Egan
2204
+ get_record, single. thanks Dylan Egan
2205
+ Tidy up a bit. thanks Dylan Egan
2206
+ Support freeze and thaw. thanks Dylan Egan
2207
+ sleep for 3 seconds when running against Dynect because otherwise there is an operation still in progress. thanks Dylan Egan
2208
+ raise a NotFound if not found. thanks Dylan Egan
2209
+ Fog::DNS::Dynect, not Fog::Dynect::DNS. thanks Dylan Egan
2210
+ InstanceId should have index according to AWS Docs. thanks E.J. Finneran
2211
+ fix indenting to get markdown to recognise the code block properly. thanks Glenn Tweedie
2212
+ Better URL escaping for Rackspace Cloud Files. thanks H. Wade Minter
2213
+ Tweak to escape the Cloud Files filename before passing to public_url. thanks H. Wade Minter
2214
+ Put escaping logic into the collection get_url call. thanks H. Wade Minter
2215
+ (#9241) Add skeleton VMware vSphere platform support. thanks Jeff McCune
2216
+ (#9241) Add SSL verification. thanks Jeff McCune
2217
+ (#9241) Add current_time request. thanks Jeff McCune
2218
+ (#9241) Add model for Fog::Compute[:vsphere].servers. thanks Jeff McCune
2219
+ (#9241) Add test skeleton framework. thanks Jeff McCune
2220
+ (#9241) Add ability to find VMs by UUID. thanks Jeff McCune
2221
+ (#9421) Add start, stop, reboot server model methods. thanks Jeff McCune
2222
+ (#9241) Add destroy API request and model action. thanks Jeff McCune
2223
+ (#9241) Add find_template_by_instance_uuid request. thanks Jeff McCune
2224
+ (#9241) Add vm_clone API request. thanks Jeff McCune
2225
+ (#9241) Don't fail when trying to model a cloning VM. thanks Jeff McCune
2226
+ (#9241) Make the reload action of the server models work. thanks Jeff McCune
2227
+ (#9124) Add ability to reload the model of a cloning VM. thanks Jeff McCune
2228
+ Refactor requests to return simple hashes and add unit tests. thanks Jeff McCune
2229
+ Add vsphere_server connection attribute. thanks Jeff McCune
2230
+ Fix vm clone problem when a Guid instance is passed as the instance_uuid. thanks Jeff McCune
2231
+ Fix documentation. The resulting hash has no entry "PutScalingPolicyResponse", but a "...Result". thanks Jens Braeuer
2232
+ Pass hostname to create_block request if provided. thanks Lee Huffman
2233
+ Added Fog::CurrentMachine#ip_address. thanks Pan Thomakos
2234
+ First cut at libvirt integration. Lots of features missing, but it proves the point. thanks Patrick Debois
2235
+ - 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
2236
+ - Get all pools now by name or by uuid - Create pool by providing xml - Destroy pool. thanks Patrick Debois
2237
+ 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
2238
+ Allow creation of persistent or non persistent volumes. thanks Patrick Debois
2239
+ Again major breakthrough. thanks Patrick Debois
2240
+ Coming along nicely. thanks Patrick Debois
2241
+ - 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
2242
+ 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
2243
+ fixing whitespace. thanks Patrick Debois
2244
+ removed trailing spaces. thanks Patrick Debois
2245
+ indenting the files. thanks Patrick Debois
2246
+ check ip-address that returned from the search in the logfile. thanks Patrick Debois
2247
+ 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
2248
+ renamed ipaddress to ip_address made the .id available and an alias to uuid for server. thanks Patrick Debois
2249
+ Added description on the libvirt environment can be initialized and the requirements for ssh and ipaddress to work. thanks Patrick Debois
2250
+ 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
2251
+ 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
2252
+ Removed the template_options param. thanks Patrick Debois
2253
+ Fixed disk_format_type vs disk_type_format difference and changed disk_format_type in the template as well. thanks Patrick Debois
2254
+ added openauth support thanks to @rubiojr. thanks Patrick Debois
2255
+ changed return code of state to string instead of symbols to be consistent with aws provider. thanks Patrick Debois
2256
+ - 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
2257
+ Added a way to filter the active and the defined servers(domains) using - servers.all(:active => false, :defined=> true). thanks Patrick Debois
2258
+ Fixed empty filter issue, nil filter. thanks Patrick Debois
2259
+ * 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
2260
+ Added libvirt options to credentials error. thanks Patrick Debois
2261
+ Made libvirt username param consistent with other providers libvirt_user -> libvirt_username. thanks Patrick Debois
2262
+ [Libvirt] Provided better solution for ip_command : use shell variable instead of ruby string for mac-address. thanks Patrick Debois
2263
+ vmfusion provider , requires the fission gem (pull request pending). thanks Patrick Debois
2264
+ fixed missing disk-> volume conversion. thanks Patrick Debois
2265
+ another log entry style resused old ethernet. thanks Patrick Debois
2266
+ Fix warning about whitespace before parentheses in dns.rb. thanks Rick Bradley
2267
+ Added support fo canned ACLs in put_object_acl. thanks dblock
2268
+ Updated put_bucket_acl to support canned ACLs. thanks dblock
2269
+ Marking as pending. thanks dblock
2270
+ Refactored specs, mocks, etc. thanks dblock
2271
+ Revert "[core] make sure credentials tests properly reset after completion". thanks geemus
2272
+ Update gemspec description to mention popular services that are supported. thanks watsonian
2273
+
2274
+ [ninefold|compute]
2275
+ fixes for list formats. thanks geemus
2276
+ fix for network formats. thanks geemus
2277
+ add default (ubuntu) image for servers. thanks geemus
2278
+
2279
+ [rackspace|dns]
2280
+ all important domains requests. thanks Brian Hartsock
2281
+ zone models. thanks Brian Hartsock
2282
+ records requests. thanks Brian Hartsock
2283
+ record models. thanks Brian Hartsock
2284
+ minor docs update. thanks Brian Hartsock
2285
+ add mock initializer. thanks geemus
2286
+ consistency fixes and tests and mark pending in mocked. thanks geemus
2287
+ fix mock init to play nice with tests. thanks geemus
2288
+ fixes for updates to beta. thanks geemus
2289
+
2290
+ [rackspace|load_balancers]
2291
+ fix path for tests. thanks geemus
2292
+ fixes for tests. thanks geemus
2293
+
2294
+ [rackspace|storage]
2295
+ fix broken model paths. thanks geemus
2296
+
2297
+ [release]
2298
+ update MVP skip list. thanks geemus
2299
+ add collaborator count to changelog stats. thanks geemus
2300
+
2301
+ [storage]
2302
+ Fixed what appeared to be broken test (I only verified with Rackspace provider). thanks Brian Hartsock
2303
+
2304
+ [storage|aws]
2305
+ Add options to File#copy method. thanks Aaron Suggs
2306
+ move aws storage back with other aws stuff (namespacing should probably be recorrected as well). thanks geemus
2307
+
2308
+ [storage|google]
2309
+ move google storage to shared google stuff (namespacing should probably be corrected). thanks geemus
2310
+
2311
+ [storage|local]
2312
+ move local storage to its own shared area (namespacing should probably be corrected). thanks geemus
2313
+
2314
+ [storage|ninefold]
2315
+ move ninefold storage to its own shared area (namespacing should probably be corrected). thanks geemus
2316
+ use Fog::HMAC. thanks geemus
2317
+
2318
+ [storage|rackspace]
2319
+ Fixed NotFound namespace. thanks Grégory Karékinian
2320
+ move rackspace storage to its own shared area (namespacing should probably be corrected). thanks geemus
2321
+
2322
+ [tests]
2323
+ rearrange to match new lib structure. thanks geemus
2324
+ mark not implemented mocks as pending. thanks geemus
2325
+ more helpful formats helper errors. thanks geemus
2326
+
2327
+ [vmfusion|compute]
2328
+ fixed destroy function. thanks Patrick Debois
2329
+ reworked structure as will be released in 0.4.0a. thanks Patrick Debois
2330
+
2331
+ [vsphere|compute]
2332
+ mark test requiring guid pending, as require can not be found. thanks geemus
2333
+ remove unnecessary mocha require. thanks geemus
2334
+
2335
+
2336
+ 0.11.0 08/18/2011 73bcee507a4732e071c58d85793b7f307eb377dc
2337
+ ==========================================================
2338
+
2339
+ Stats! { 'downloads' => 202791, 'forks' => 237, 'open_issues' => 20, 'watchers' => 1427 }
2340
+
2341
+ MVP! Brian Hartsock
2342
+
2343
+ [aws|cdn]
2344
+ Added commands for streaming distribution lists. thanks Christopher Oliver
2345
+
2346
+ [aws|compute]
2347
+ describe security groups parser was not taking into account ipPermissionsEgress and therefore returning unexpected results when the account had VPC groups. thanks Christopher Oliver
2348
+ Added missing 'platform' attribute to server model and describe instances request. thanks Christopher Oliver
2349
+
2350
+ [aws|iam]
2351
+ fix 'Path' handling for get_group response. thanks Nick Osborn
2352
+ add missing update_server_certificate request. thanks Nick Osborn
2353
+
2354
+ [aws|rds]
2355
+ Allow string or symbol hash keys. thanks Aaron Suggs
2356
+
2357
+ [aws|s3]
2358
+ 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
2359
+ policy should be base64 encoded and not contain new lines. thanks Fujimura Daisuke
2360
+ Require 'multi_json' was lucked. thanks Fujimura Daisuke
2361
+
2362
+ [compute]
2363
+ add server base class to contain shared stuff (scp/ssh). thanks geemus
2364
+
2365
+ [compute|aws]
2366
+ Whitespace removal. thanks Dylan Egan
2367
+ Allow image mocks to support state (except failed). thanks Dylan Egan
2368
+ fix pluralization of modify_image_attribute. thanks geemus
2369
+ update modify image/snapshot attribute to match latest API. thanks geemus
2370
+ add modify_image_attribute. thanks geemus
2371
+ add support for saving assigned tags at server creation time. thanks geemus
2372
+ add docs for new options on run_instances. thanks geemus
2373
+ guard tag creation against empty tag set. thanks geemus
2374
+ fixes for bootstrap and placing attributes json. thanks geemus
2375
+ identity not needed for setup. thanks geemus
2376
+ fix for running nice with mocked test run. thanks geemus
2377
+
2378
+ [compute|brightbox]
2379
+ Updated test for new expected response from server. thanks Paul Thornthwaite
2380
+ Updated Account format test to allow valid_credit_card flag. thanks Paul Thornthwaite
2381
+ Added IPv6 address to format now it is exposed to API. thanks Paul Thornthwaite
2382
+ DRY up request method. thanks Paul Thornthwaite
2383
+ Corrected attribute name. thanks Paul Thornthwaite
2384
+
2385
+ [compute|voxel]
2386
+ position in format is string, not integer. thanks geemus
2387
+
2388
+ [dns]
2389
+ dry generate_unique_domain to tests helper. thanks geemus
2390
+
2391
+ [dns|dynect]
2392
+ cleanup of initial implementation. thanks geemus
2393
+ fixes to play nice with mocked test runs. thanks geemus
2394
+
2395
+ [dns|zerigo]
2396
+ add host/port/scheme to recognizes. thanks geemus
2397
+
2398
+ [docs]
2399
+ add task to build/publish supported services matrix. thanks geemus
2400
+ alphasort doc tasks. thanks geemus
2401
+
2402
+ [misc]
2403
+ 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
2404
+ - 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
2405
+ Fix issue 464, add howto for European Rackspace cloud. thanks Andre Meij
2406
+ Initial support for adding/deleting a load balancer (requests only). thanks Brian Hartsock
2407
+ Complete lifecycle for a load balancer. thanks Brian Hartsock
2408
+ Improved error handling. thanks Brian Hartsock
2409
+ Model and collection for load balancers. thanks Brian Hartsock
2410
+ Fixed issues with loading all LB params. thanks Brian Hartsock
2411
+ Requests for nodes. thanks Brian Hartsock
2412
+ Rackspace Load Balancers: model classes for nodes. thanks Brian Hartsock
2413
+ Rackspace Load Balancers: requests for virtual ips. thanks Brian Hartsock
2414
+ Added virtual IP models. thanks Brian Hartsock
2415
+ Rackspace LB: Made some updates from the pull request. thanks Brian Hartsock
2416
+ Rackspace LB: protocols, algorithms, and connection logging. thanks Brian Hartsock
2417
+ Added access list requests. thanks Brian Hartsock
2418
+ Rackspace LB: Added session persistence requests. thanks Brian Hartsock
2419
+ Rackspace LB: Connection throttling requests. thanks Brian Hartsock
2420
+ Rackspace LB: Fixed issues with connection logging model. thanks Brian Hartsock
2421
+ Rackspace LB: Health Monitor requests. thanks Brian Hartsock
2422
+ Rackspace LB: account usage request. thanks Brian Hartsock
2423
+ Rackspace LB: Load Balancer Usage requests. thanks Brian Hartsock
2424
+ Rackspace LB: Added model capabilities for a lot of additional actions. thanks Brian Hartsock
2425
+ Rackspace LB: models for access lists. thanks Brian Hartsock
2426
+ Rackspace LB: account usage call. thanks Brian Hartsock
2427
+ Rackspace LB: Refactoring and cleanup. thanks Brian Hartsock
2428
+ register_image mocking support. thanks Dylan Egan
2429
+ Remove GENTOO_AMI. thanks Dylan Egan
2430
+ Store it under the ID, not the name. thanks Dylan Egan
2431
+ Allow tag filtering for images. thanks Dylan Egan
2432
+ Set imageOwnerAlias to self. Not 100% on this, but it will allow you to search for images with 'owner-alias' => 'self'. thanks Dylan Egan
2433
+ Back to using Owner. A couple of tests for it too. thanks Dylan Egan
2434
+ Added support for delimiter option in Fog::Storage::AWS::Mock object. thanks Erik Terpstra
2435
+ Link to EBS snapshots blog post. thanks Gavin Sandie
2436
+ Add force stop functionality to AWS Instance. thanks John Ferlito
2437
+ * 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
2438
+ * Fix VirtualBox in compute case statement. thanks Mark A. Miller
2439
+ Update to the latest VirtualBox gem while we're at it for good measure. thanks Mark A. Miller
2440
+ add dynect DNS provider with session request implemented. thanks Michael Hale
2441
+ add dynect provider and cleanup extra requires. thanks Michael Hale
2442
+ enable mocking for dynect. thanks Michael Hale
2443
+ parse session request and fix mock for tests. thanks Michael Hale
2444
+ whoops forgot to add these files. thanks Michael Hale
2445
+ temporary rake task for convenient testing. thanks Michael Hale
2446
+ include /REST in all requests. thanks Michael Hale
2447
+ change API-Token to Auth-Token. thanks Michael Hale
2448
+ add zone request. thanks Michael Hale
2449
+ fix API-Token in mock session request. thanks Michael Hale
2450
+ always run both mock and non-mock tests. thanks Michael Hale
2451
+ parse the list of zones returned. thanks Michael Hale
2452
+ require builder in dynect. thanks Michael Hale
2453
+ WIP: add stub model classes. thanks Michael Hale
2454
+ tests passing. thanks Michael Hale
2455
+ rename zone request to zones. thanks Michael Hale
2456
+ add zone request to show information for a single zone. thanks Michael Hale
2457
+ hook up zones model. thanks Michael Hale
2458
+ hook up zones.get. thanks Michael Hale
2459
+ dynect: add a bunch of stuff: node_list, list_any_records, handle 307 job redirect,. thanks Michael Hale
2460
+ dynect: nicer filter api for records. thanks Michael Hale
2461
+ Escape source object name when copying. thanks Pratik Naik
2462
+ provide #providers for shared services. thanks geemus
2463
+
2464
+ [rackspace|load balancers]
2465
+ fixed broken tests. thanks Brian Hartsock
2466
+
2467
+ [rackspace|load_balancers]
2468
+ fixes to play nice with mock test runs. thanks geemus
2469
+ fix typo in tests. thanks geemus
2470
+
2471
+ [rackspace|loadbalancers]
2472
+ cleanup. thanks geemus
2473
+
2474
+ [release]
2475
+ add newest MVP to changelog task MVP omit list. thanks geemus
2476
+ add stats to changelog. thanks geemus
2477
+ remove un-needed rebuild of gem. thanks geemus
2478
+
2479
+ [storage]
2480
+ fix deprecated get_url usage. thanks geemus
2481
+
2482
+ [storage|aws]
2483
+ simplify region accessor. thanks geemus
2484
+
2485
+ [storage|ninefold]
2486
+ remove debug output. thanks geemus
2487
+
2488
+ [tests]
2489
+ non-destructively generate id for get('fake') == nil tests. thanks geemus
2490
+
2491
+
2492
+ 0.10.0 07/25/2011 9ca8cffc000c417a792235438c12855a277fe1ce
2493
+ ==========================================================
2494
+
2495
+ MVPs! Christopher Oliver, Dylan Egan and Henry Addison
2496
+
2497
+ [AWS Autoscaling]
2498
+ Fixed typo in put scaling policy request. thanks Christopher Oliver
2499
+ Fixed error in describe policies parser. thanks Christopher Oliver
2500
+ Got describe policies returning correctly. thanks Christopher Oliver
2501
+ Removed unnecessary options merge in Delete Policy request. thanks Christopher Oliver
2502
+
2503
+ [AWS IAM]
2504
+ Added Alias related functionality to IAM. Also added get_group_policy. thanks Christopher Oliver
2505
+ Added missing request file for list account aliases. thanks Christopher Oliver
2506
+
2507
+ [AWS RDS]
2508
+ 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
2509
+ Added LicenseModel to the db_parser. thanks Christopher Oliver
2510
+
2511
+ [AWS|ELB]
2512
+ fix bug that was causing availability zones to not parse properly on get/reload. thanks Blake Gentry
2513
+ default values for Listeners. thanks Blake Gentry
2514
+ offload Listener defaults to the Listener model. thanks Blake Gentry
2515
+
2516
+ [AWS|SNS]
2517
+ flesh out basics. thanks geemus
2518
+
2519
+ [AWS|SQS]
2520
+ flesh out basics. thanks geemus
2521
+
2522
+ [aws|auto_scaling]
2523
+ implement 2010-08-01 API. thanks Nick Osborn
2524
+
2525
+ [aws|autoscaling]
2526
+ metrics#get should return nil when not found. thanks geemus
2527
+ mark unimplemented/unsupported tests as pending. thanks geemus
2528
+
2529
+ [aws|cloudwatch]
2530
+ mark overly specific test as pending. thanks geemus
2531
+
2532
+ [aws|compute]
2533
+ improve model and tests. thanks Nick Osborn
2534
+
2535
+ [aws|elb]
2536
+ add test to verify that ListenerDescriptions work when creating an ELB. thanks Blake Gentry
2537
+ make describe_load_balancers parse SSLCertificateId. Verify with test. thanks Blake Gentry
2538
+ Raise proper IAM error for CertificateNotFound when creating an ELB or creating Listeners. thanks Blake Gentry
2539
+ move ELB error handling related to certs to the ELB service instead of duplicating at the request level. thanks Blake Gentry
2540
+ use slurp when raising errors to properly capture exception details. thanks Blake Gentry
2541
+ Add set_load_balancer_listener_ssl_certificate. thanks James Miller
2542
+ fix listener defaults to use merge_attributes and therefore aliases. thanks geemus
2543
+
2544
+ [aws|iam]
2545
+ add error handling for common failures resulting from upload_server_certificate. thanks Blake Gentry
2546
+ fix superclass mismatch. thanks Blake Gentry
2547
+ add get_server_certificate request. thanks Blake Gentry
2548
+ raise correct ValidationError when an empty cert or key is used. thanks Blake Gentry
2549
+ Simplify error handling code for errors with custom classes. thanks Blake Gentry
2550
+ raise EntityAlreadyExists when creating a duplicate cert name. thanks Blake Gentry
2551
+ tests and mocks to support many types of key/cert issues. thanks Blake Gentry
2552
+ add proper error messages. thanks Blake Gentry
2553
+ fix expected error result from login_profile_tests. thanks geemus
2554
+
2555
+ [aws|rds]
2556
+ add LicenseModel to format. thanks geemus
2557
+
2558
+ [aws|simpledb]
2559
+ provide for using ConsistentRead on get_attributes and select. thanks geemus
2560
+ fix get_attributes mock deprecation. thanks geemus
2561
+
2562
+ [compute]
2563
+ fix stormondemand namespace mismatch. thanks geemus
2564
+
2565
+ [compute|aws]
2566
+ cluster compute placement group implementation. thanks geemus
2567
+ add request level support for spot instances. thanks geemus
2568
+ fix describe_instances parser to get group ids correctly. thanks geemus
2569
+ fix compute accessor in tests. thanks geemus
2570
+
2571
+ [compute|bluebox]
2572
+ fixes for ip accessor usage. thanks geemus
2573
+
2574
+ [compute|brightbox]
2575
+ Fixed typo in deprecation warning. thanks Paul Thornthwaite
2576
+ Fixed deprecated use of Brightbox[:compute] to new Compute[:brightbox]. thanks Paul Thornthwaite
2577
+ New preference exposed in API added to format test. thanks Paul Thornthwaite
2578
+
2579
+ [compute|ninefold]
2580
+ add default serviceofferingid (flavor). thanks geemus
2581
+ fix zone format. thanks geemus
2582
+ small consistency fixes for server. thanks geemus
2583
+
2584
+ [compute|rackspace]
2585
+ fix for token expiry/reauth. thanks geemus
2586
+
2587
+ [compute|virtualbox]
2588
+ backwards compatibility for gem availability check. thanks geemus
2589
+
2590
+ [compute|voxel]
2591
+ fix server format. thanks geemus
2592
+
2593
+ [core]
2594
+ avoid ArgumentError with Ruby 1.8.5 on CentOS. thanks Nick Osborn
2595
+ fix to_date_header to use self.utc instead of self.class.now.utc. thanks geemus
2596
+ avoid ||= in timeout lookup. thanks geemus
2597
+
2598
+ [docs]
2599
+ update index to use non-deprecated service accessor. thanks geemus
2600
+
2601
+ [misc]
2602
+ Fix ::AWS[] syntax that's only valid in Fog tests when bin/aws.rb is loaded. thanks Blake Gentry
2603
+ Typos. thanks Blake Gentry
2604
+ Require json needed for both Real and Mock implementation of Rackspace; SSH commands in Mock just print to command line. thanks Brian Hartsock
2605
+ Revert "Require json needed for both Real and Mock implementation of Rackspace; SSH commands in Mock just print to command line". thanks Brian Hartsock
2606
+ require json for rackspace compute mock. thanks Brian Hartsock
2607
+ Fixed #444 - Unable to squash kvp with false values. thanks Brian Hartsock
2608
+ Fix make OpenStack swift working properly. thanks Chmouel Boudjnah
2609
+ Move the timeout to Mock and stop hardcoding. thanks Christopher Meiklejohn
2610
+ Fix failures in the simpledb testing due to attribute array option deprecation. thanks Christopher Meiklejohn
2611
+ Guard against item_name not being a valid key. thanks Christopher Meiklejohn
2612
+ Switch to the has_key? syntax for cleanliness. thanks Christopher Meiklejohn
2613
+ Move timeout up to Fog from Fog::Mock. thanks Christopher Meiklejohn
2614
+ Fix deprecation messages. thanks Claudio Poli
2615
+ Make Rails' respond_with play nice with to_json. thanks Claudio Poli
2616
+ Use multi_json gem. thanks Claudio Poli
2617
+ Public API for force_detach on Fog::Compute::AWS::Volume. thanks Dylan Egan
2618
+ Should actually use the attachment_aliases hash. thanks Dylan Egan
2619
+ server method for Fog::Compute::AWS::Volume to easily get the server instance. thanks Dylan Egan
2620
+ requires_one, allows you to require at least one of the specified attributes. thanks Dylan Egan
2621
+ Remove pending on iam/server_certificate_tests. Start the mocking. thanks Dylan Egan
2622
+ list_server_certificates and delete_server_certificates. thanks Dylan Egan
2623
+ Yes, yes it is better. thanks Dylan Egan
2624
+ Start ELB mocks. Support create_load_balancer and describe_load_balancers. thanks Dylan Egan
2625
+ configure_health_check and create_app_cookie_stickiness_policy. thanks Dylan Egan
2626
+ create_lb_cookie_stickiness_policy and delete_load_balancer_policy. thanks Dylan Egan
2627
+ create_load_balancer_listeneners and set_load_balancer_policies_of_listener. thanks Dylan Egan
2628
+ delete_load_balancer_listeners and delete_load_balancer (with two more tests). thanks Dylan Egan
2629
+ 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
2630
+ Remove requirement of basic parsers. thanks Dylan Egan
2631
+ Move things around a bit. Separate ELB test file per concerns. thanks Dylan Egan
2632
+ SSL for ELB mocking. thanks Dylan Egan
2633
+ Tested against AWS. Needed this. Apparently SSLCertificateId == Arn. thanks Dylan Egan
2634
+ Use available availability_zones. thanks Dylan Egan
2635
+ Wait for volume to be ready again. thanks Dylan Egan
2636
+ AWS instance tests 100% against real. thanks Dylan Egan
2637
+ Make stuff pending if you're mocking. Need to fix spot_price_history_tests, see comment. thanks Dylan Egan
2638
+ Let's just sleep forever. thanks Dylan Egan
2639
+ Reinstate ipAddress and privateIpAddress as they're provided for non-terminated instances. thanks Dylan Egan
2640
+ Reinstate ramdiskId. thanks Dylan Egan
2641
+ Revert "Reinstate ramdiskId." - fuckit! Seems like AWS doesn't return ramdiskId for. thanks Dylan Egan
2642
+ Clean up timeout and add tests. thanks Dylan Egan
2643
+ Quick fix, ith != i. thanks Dylan Egan
2644
+ Begin work on mocking reserved instances. Provide describe_reserved_instances_offerings for mocking and real. REAL TALK. thanks Dylan Egan
2645
+ reserved_instances mocking. I think, it's hard to test against a real AWS account since it costs money. thanks Dylan Egan
2646
+ Default to 1. thanks Dylan Egan
2647
+ add spot instance request models. thanks Edward Middleton
2648
+ fixed spot_requests. thanks Edward Middleton
2649
+ spot instance fixes. thanks Edward Middleton
2650
+ cloud_watch toplevel. thanks Frederick Cheung
2651
+ add get/put/list metrics. thanks Frederick Cheung
2652
+ Corrected a couple of syntax errors in the put and get metric cloudwatch requests. thanks Henry Addison
2653
+ Fixed the parser for list metrics cloudwatch request. thanks Henry Addison
2654
+ Added first test of successful list metrics. thanks Henry Addison
2655
+ simplified a bit the long case statement in end element in list_metrics parser. thanks Henry Addison
2656
+ added a few more cloudwatch request metric tests. thanks Henry Addison
2657
+ added metrics collection and model for cloudwatch with all and get methods. thanks Henry Addison
2658
+ split out and got passing get metric statistics request tests. thanks Henry Addison
2659
+ Added metric statistics model and collection. thanks Henry Addison
2660
+ removed old test file. thanks Henry Addison
2661
+ removed empty test for for metric model (nothing to test at the moment). thanks Henry Addison
2662
+ removed unnecessary attributes from metrics collection (naughty copy and pasting). thanks Henry Addison
2663
+ got put_metric_data request working and tested. thanks Henry Addison
2664
+ added model and collection methods and tests to allow putting of metric data. thanks Henry Addison
2665
+ renamed argument for all method in cloud watch metric_statistics from filters to conditions as filters has a meaning in fog. thanks Henry Addison
2666
+ added a conditions method to all metrics method to help filter all metrics. thanks Henry Addison
2667
+ Added some defaults for StartTime, EndTime and Period to model for MetricStatistics. thanks Henry Addison
2668
+ Begin SQS support. thanks Jon Crosby
2669
+ Continued SQS support. thanks Jon Crosby
2670
+ Add SQS get_queue_attributes. thanks Jon Crosby
2671
+ Fix rubygems warning. thanks Jonas Pfenniger
2672
+ Patch for AWS S3 Metadata problem. thanks Kenji Kabashima
2673
+ Changed number of cores reported for rackspace flavors in order to match current rackspace documentation. thanks Steven Danna
2674
+ Checking path for nil. thanks Timothy Klim
2675
+ Fixed escaping in Fog::AWS.escape. thanks croaker
2676
+ Changed the encoding of the space character. thanks croaker
2677
+ rebuild gemfile during release to include updated changelog. thanks geemus
2678
+ bump excon dep. thanks geemus
2679
+ loosen dependencies to avoid conflicts. thanks geemus
2680
+ bump formatador dep. thanks geemus
2681
+ to_json calls to use MultiJson. thanks geemus
2682
+ make collection class_eval more consistent. thanks geemus
2683
+ update gem deps to latest/greatest. thanks geemus
2684
+ Return nil if HOME is non-absolute. Fixes #397. thanks jc00ke
2685
+ Fix a bunch of paths. thanks phiggins
2686
+ Start of SNS. thanks phiggins
2687
+ Working ListUsers for SNS. thanks phiggins
2688
+ Remove copied-and-pasted documentation. thanks phiggins
2689
+ Add SNS's get_topic_attributes command. thanks phiggins
2690
+ SNS ListSubscriptions. thanks phiggins
2691
+ SNS ListSubscriptionsByTopic. thanks phiggins
2692
+ SNS CreateTopic and DeleteTopic. thanks phiggins
2693
+ SNS Publish. thanks phiggins
2694
+ SNS AddPermission. thanks phiggins
2695
+ SNS RemovePermission. thanks phiggins
2696
+ SNS SetTopicAttributes. thanks phiggins
2697
+ SNS Subscribe. thanks phiggins
2698
+ SNS ConfirmSubscription and Unsubscribe. thanks phiggins
2699
+ Add sns to fog bin. thanks phiggins
2700
+ Start SNS tests. thanks phiggins
2701
+
2702
+ [ninefold|storage]
2703
+ Framework + request method for Ninefold storage. thanks Lincoln Stoll
2704
+ Directories Functionality. thanks Lincoln Stoll
2705
+ Nested directories. thanks Lincoln Stoll
2706
+ File operations. thanks Lincoln Stoll
2707
+ Update an existing file. thanks Lincoln Stoll
2708
+ set content type correctly. thanks Lincoln Stoll
2709
+
2710
+ [release]
2711
+ add mvps and fix fog.io uploader. thanks geemus
2712
+ remove problematic pbcopy from changelog rake task. thanks geemus
2713
+ make changelog build separate from release. thanks geemus
2714
+
2715
+ [storage]
2716
+ provide http/https options for signed urls. thanks geemus
2717
+
2718
+ [storage|aws]
2719
+ properly format modified headers in get_object. thanks geemus
2720
+ fix escaping for file#public_url. thanks geemus
2721
+
2722
+ [storage|google]
2723
+ fix get_object_https_url namespace copy/paste error. thanks geemus
2724
+
2725
+ [storage|ninefold]
2726
+ fix file#destroy and test cleanup. thanks geemus
2727
+
2728
+ [storage|rackspace]
2729
+ add large object support via put_object_manifest. thanks geemus
2730
+ cleanup formatting/style. thanks geemus
2731
+
2732
+ [tests]
2733
+ make unimplemented mock tests pending. thanks geemus
2734
+ fix collection helper to play nice with numeric ids. thanks geemus
2735
+ replace letters with letters and numbers with numbers in collection#get failure test. thanks geemus
2736
+
2737
+ [vcloud|compute]
2738
+ create server now takes :catalog_items_uri as an option. thanks Kunal Parikh
2739
+ now referencing catalog_item_uri from options. thanks Kunal Parikh
2740
+ saving server attributes (uncommented code). thanks Kunal Parikh
2741
+ Revert "saving server attributes (uncommented code)". thanks Kunal Parikh
2742
+ duplicate ecloud code for vcloud, remove obvious terremark specific code. thanks Lincoln Stoll
2743
+ update catalog models for 1.0. thanks Lincoln Stoll
2744
+ make auth work. thanks Lincoln Stoll
2745
+ filter non-server items from server list. thanks Lincoln Stoll
2746
+ update for 1.0 functionality, server operations working. thanks Lincoln Stoll
2747
+ use correct power status ID for 'off'. thanks Lincoln Stoll
2748
+ allow specifying a default VDC uri as 'vcloud_default_vdc'. thanks Lincoln Stoll
2749
+ Add description field to server model. thanks Lincoln Stoll
2750
+ Correct friendly status power off check. thanks Lincoln Stoll
2751
+ correct hardware attribute reading. thanks Lincoln Stoll
2752
+ no longer possible to specify memory & cpu on vapp creation. thanks Lincoln Stoll
2753
+ remove outdated/invalid mocking & specs. thanks Lincoln Stoll
2754
+ fix deleting servers. thanks Lincoln Stoll
2755
+ server creation outside of VDC. thanks Lincoln Stoll
2756
+ undeploy request. thanks Lincoln Stoll
2757
+ memory reconfiguration. thanks Lincoln Stoll
2758
+ make status/ready handling more reliable. thanks Lincoln Stoll
2759
+ server tests. thanks Lincoln Stoll
2760
+ only require template name for tests. thanks Lincoln Stoll
2761
+ add and remove disks. thanks Lincoln Stoll
2762
+ ruby 1.8 compatibility. thanks Lincoln Stoll
2763
+ fix error messages in test helper. thanks Lincoln Stoll
2764
+ Fix setting of description. thanks Lincoln Stoll
2765
+ method to find catalog item by name across all catalogs. thanks Lincoln Stoll
2766
+ correct provider lookup. thanks Lincoln Stoll
2767
+
2768
+
2769
+ 0.9.0 06/24/2011 32960d165a65f12d41785f924e6b6b6d8442516a
2770
+ =========================================================
2771
+
2772
+ MVPs! Lincoln Stoll and Luqman Amjad
2773
+
2774
+ [aws]
2775
+ use AWS.escape instead of CGI.escape. thanks geemus
2776
+
2777
+ [aws|compute]
2778
+ Use #public_ip_address instead of deprecated #ip_address in Server#setup. thanks Martin Emde
2779
+ mock: make address detach others before associating. thanks geemus
2780
+
2781
+ [aws|elb]
2782
+ 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
2783
+ Update ELB API to version 2011-04-05. thanks Blake Gentry
2784
+ Fix typo in usage documentation and add 'ap-northeast-1' to regions list. thanks Blake Gentry
2785
+ Rearrange DescribeLoadBalancersResult contents to alphabetical order to match the official AWS docs and make it easier to update the list. thanks Blake Gentry
2786
+ Add new attributes for 2011-04-05 API. thanks Blake Gentry
2787
+
2788
+ [aws|rds]
2789
+ Add parameter group tests. thanks Aaron Suggs
2790
+ Add server model & collection tests. thanks Aaron Suggs
2791
+ Add security_groups collection and model tests. thanks Aaron Suggs
2792
+ Server#destroy argument is optional. thanks Aaron Suggs
2793
+ Refactor RDS model & collection tests. thanks Aaron Suggs
2794
+
2795
+ [aws|simpledb]
2796
+ recognize :region option in SimpleDB.new(). thanks Nick Osborn
2797
+
2798
+ [aws|storage]
2799
+ Add get/put bucket policy support. thanks Michael Linderman
2800
+ Add options argument to delete_object to set headers. thanks Michael Linderman
2801
+ Add delete bucket policy. thanks Michael Linderman
2802
+ discern between no file and no directory for files.get. thanks geemus
2803
+ fix error type for non-directories in files.get. thanks geemus
2804
+
2805
+ [brightbox|compute]
2806
+ Added missing Image#compatibility_mode attribute. thanks Paul Thornthwaite
2807
+ Fixed Format of Account representation. thanks Paul Thornthwaite
2808
+ Fixed Format of nested CloudIP's server attribute. thanks Paul Thornthwaite
2809
+ New account limits exposed in API, updating format test. thanks Paul Thornthwaite
2810
+ ApiClient revoked time exposed in API. Updated format test. thanks Paul Thornthwaite
2811
+
2812
+ [cdn]
2813
+ refactor provider/service namespacing. thanks geemus
2814
+ fix top level class/module mismatch. thanks geemus
2815
+
2816
+ [compute]
2817
+ first pass at examples. thanks geemus
2818
+ refactor provider/service namespacing. thanks geemus
2819
+ fixes/skips to get examples working. thanks geemus
2820
+
2821
+ [compute|aws]
2822
+ fix helpers to use Fog::AWS. thanks geemus
2823
+ simplify describe_instances parser. thanks geemus
2824
+ fix deprecated compute service accessor usage. thanks geemus
2825
+ improve consistency of waiting for ssh to be ready. thanks geemus
2826
+ remove debug output from last commit. thanks geemus
2827
+
2828
+ [compute|bluebox]
2829
+ fix format and template id in tests. thanks geemus
2830
+
2831
+ [compute|brightbox]
2832
+ Fixed missed lookup in broken tests caused by namespace rename. thanks Paul Thornthwaite
2833
+
2834
+ [compute|ecloud]
2835
+ fix namespace leftovers. thanks geemus
2836
+
2837
+ [compute|ninefold]
2838
+ test cleanup. thanks geemus
2839
+
2840
+ [compute|rackspace]
2841
+ fix nil check for auth token. thanks geemus
2842
+
2843
+ [compute|stormondemand]
2844
+ fix namespace issue. thanks geemus
2845
+
2846
+ [compute|voxel]
2847
+ fix flavor tests to properly skip voxel. thanks geemus
2848
+ fix namespace issue. thanks geemus
2849
+
2850
+ [core]
2851
+ add namespaced errors for better messaging. thanks geemus
2852
+ making collection.new error more idiomatic. thanks geemus
2853
+ fix mock reset to work with new namespaces. thanks geemus
2854
+
2855
+ [dns]
2856
+ rename ip to value for record. thanks geemus
2857
+ refactor provider/service namespacing. thanks geemus
2858
+
2859
+ [dns|dnsmadeeasy]
2860
+ skip model/collection tests for now (timing issue). thanks geemus
2861
+
2862
+ [dns|examples]
2863
+ fix deprecated record#ip= usage. thanks geemus
2864
+
2865
+ [dns|zerigo]
2866
+ fixes for namespacing. thanks geemus
2867
+ namespace related fixes. thanks geemus
2868
+
2869
+ [docs]
2870
+ main index redirects to /latest. thanks geemus
2871
+ fix rdoc link on index. thanks geemus
2872
+ update to match refactorings. thanks geemus
2873
+
2874
+ [examples]
2875
+ fix descriptions. thanks geemus
2876
+
2877
+ [linode|compute]
2878
+ mark format test for stackscripts pending due to inconsistency of string/float for a value. thanks geemus
2879
+
2880
+ [misc]
2881
+ add braces for new into the documents. thanks Chris Mague
2882
+ use correct variable name in test description. thanks Dr Nic Williams
2883
+ Not sure if I'm missing something here, but rake did not work. thanks Dylan Egan
2884
+ You only need either the size or the snapshot_id. thanks Dylan Egan
2885
+ Provide mocked console output if server has been up for over the delay time. thanks Dylan Egan
2886
+ LIES!. thanks Dylan Egan
2887
+ Add support for specifying a CDN CNAME when getting a Rackspace Cloud Files directory. thanks H. Wade Minter
2888
+ add missing comma. thanks Joseph Anthony Pasquale Holsten
2889
+ skip rackspace get_object test when mocking. thanks Joseph Anthony Pasquale Holsten
2890
+ give a more useful error if someone tries to say connection.directories.create('dir'). thanks Joseph Anthony Pasquale Holsten
2891
+ Added my blog post. thanks Larry Wright
2892
+ Add recursive argument to server scp methods. Set to false by default. thanks Luke Robins
2893
+ Add an options hash to scp. Set to {} by default. thanks Luke Robins
2894
+ Added new DNS provider => DNS Made Easy. thanks Luqman Amjad
2895
+ Removed sandbox url for DNS Made Easy. thanks Luqman Amjad
2896
+ Added missing method "delete all domains". thanks Luqman Amjad
2897
+ (DNSMadeEasy) added support for updating records via PUT. thanks Luqman Amjad
2898
+ Added missing reference to delete_all_domains. thanks Luqman Amjad
2899
+ Rescue 404 when fetching zone. thanks Luqman Amjad
2900
+ Added new blog posting about fog and Carrierwave. thanks Mike Gehard
2901
+ Edited docs/about/press.markdown via GitHub. thanks Mike Gehard
2902
+ Typo fix. thanks Oge Nnadi
2903
+ Fixed Fog::AWS::SimpleDB#delete_attributes. thanks Pan Thomakos
2904
+ add Net::SCP options parameter to Fog::SCP proxy. thanks Phil Cohen
2905
+ use a hash not nil for default scp_options. thanks Phil Cohen
2906
+ rackspace auth url only prepend protocol as needed. thanks Todd Willey
2907
+ Allow auth tokens to be shared among connections to rackspace api. thanks Todd Willey
2908
+ OpenStack responds 200 when creating servers. thanks Todd Willey
2909
+ added 0.8.2 changelog contents. thanks geemus
2910
+ separate fog.io and rdoc tasks. thanks geemus
2911
+ remove provider attribute from shared services. thanks geemus
2912
+ [storage][aws] fix leftover namespace mismatch. thanks geemus
2913
+ [storage][google] fix leftover namespace mismatch. thanks geemus
2914
+ Edited lib/fog/storage/rackspace.rb via GitHub. thanks kbockmanrs
2915
+
2916
+ [ninefold|compute]
2917
+ Boilerplate for ninefold. thanks Lincoln Stoll
2918
+ Ninefold List Functionality. thanks Lincoln Stoll
2919
+ VM Operations + dependencies. thanks Lincoln Stoll
2920
+ Fix data formats for virtual machines. thanks Lincoln Stoll
2921
+ IP Address requests. thanks Lincoln Stoll
2922
+ Refactor out job waiting functionality, test correct data. thanks Lincoln Stoll
2923
+ NAT functionality. thanks Lincoln Stoll
2924
+ Core model functionality. thanks Lincoln Stoll
2925
+ Public IPs and Rules. thanks Lincoln Stoll
2926
+ use lowest network ID as default, correct assignment. thanks Lincoln Stoll
2927
+ No mocks, simplify code. thanks Lincoln Stoll
2928
+ Save operations not supported. thanks Lincoln Stoll
2929
+
2930
+ [rake]
2931
+ add examples back into default rake task. thanks geemus
2932
+
2933
+ [release]
2934
+ update changelog during release process. thanks geemus
2935
+
2936
+ [storage]
2937
+ refactor provider/service namespacing. thanks geemus
2938
+
2939
+ [storage|aws]
2940
+ more robust query handling for signed url. thanks geemus
2941
+ make url a bit more robust. thanks geemus
2942
+ fix url to check for query. thanks geemus
2943
+ fix whitespace errors. thanks geemus
2944
+ more precise mocked get_object. thanks geemus
2945
+
2946
+ [storage|rackspace]
2947
+ fix files#get_url. thanks geemus
2948
+
2949
+ [tests]
2950
+ add dnsmadeeasy and ninefold to mock credentials. thanks geemus
2951
+ nuke rake task for test related cleanup. thanks geemus
2952
+ make collection gsub to find nils a bit more resilient/unique. thanks geemus
2953
+ trying again to make collection gsub to get nils more resilient/unique. thanks geemus
2954
+
2955
+
2956
+ 0.8.2 05/26/2011 9e6ebb6f7316273eb489f8cb60eb1642e6df357b
2957
+ =========================================================
2958
+
2959
+ MVP! nightshade427
2960
+
2961
+ [aws|compute]
2962
+ better region/zone handling for mocks. thanks geemus
2963
+ indentation fix for last commit. thanks geemus
2964
+ add class level reset for Fog::AWS::Compute::Mock. thanks geemus
2965
+ make mock delay comparison >= so that delay 0 will work properly. thanks geemus
2966
+ respect security zone choice in mocked run_instances closes #314. thanks geemus
2967
+ respect key_name in mocked run_instances. thanks geemus
2968
+ fix instance format in tests. thanks geemus
2969
+
2970
+ [brightbox|compute]
2971
+ fix format for account in tests. thanks geemus
2972
+
2973
+ [compute]
2974
+ Test server reloading. thanks Aaron Suggs
2975
+ consistency in #state call and mock test fixes. thanks geemus
2976
+
2977
+ [compute|aws]
2978
+ Fix server tests. thanks Aaron Suggs
2979
+ Mock get_password_data request. thanks Aaron Suggs
2980
+ Fix default region when mocking. thanks Aaron Suggs
2981
+ Better key_pair tests. thanks Aaron Suggs
2982
+ Make volumes format more flexible. thanks Aaron Suggs
2983
+
2984
+ [core]
2985
+ Fixed credential tests. thanks Aaron Suggs
2986
+ Fix responds_to test helper. thanks Aaron Suggs
2987
+ omit Release commits from changelog. thanks geemus
2988
+ put changelog in clipboard to finish release. thanks geemus
2989
+ more consistent redirector for fog.io. thanks geemus
2990
+ create Fog.available_providers for bin rather than overriding Fog.providers. thanks geemus
2991
+
2992
+ [dnsimple|dns]
2993
+ add dnsimple_url param to facilitate using https://test.dnsimple.com closes #323. thanks geemus
2994
+
2995
+ [docs]
2996
+ first pass at compute doc. thanks geemus
2997
+ update version in header/layout. thanks geemus
2998
+ also build/deploy rdocs. thanks geemus
2999
+ make fog.io/latest/foo link to newest versioned docs. thanks geemus
3000
+
3001
+ [ecloud]
3002
+ mark bin specs pending unless credentials provided closes #325. thanks geemus
3003
+
3004
+ [local|storage]
3005
+ fixes for pending mocked tests. thanks geemus
3006
+
3007
+ [misc]
3008
+ Flatten list of security groups. thanks Dan Peterson
3009
+ Added an example of the head method. thanks Larry Wright
3010
+ Clarified my example. thanks Larry Wright
3011
+ Add a link to fog's Rubydocs. thanks Mathias Meyer
3012
+ :size should be a number in GB, not an instance size (e.g. t1.micro). thanks Michael Conigliaro
3013
+ tests. thanks Nicholas Ricketts
3014
+ added rdoc comments. thanks Nicholas Ricketts
3015
+ Add Amazon API reference link to requests' documentation. thanks Peter Weldon
3016
+ Add reset method to mock classes. thanks anomalousthought
3017
+ Add a reset method to Fog::Mock that resets all providers/services. thanks anomalousthought
3018
+ Add reset method to other providers in addition to Compute providers. thanks anomalousthought
3019
+ Add a reset method to Fog::Mock that resets all providers/services in addition to Compute providers. thanks anomalousthought
3020
+ Public key results are cached, avoid a bug by using that cache. thanks bigfleet
3021
+ 0.8.1 changelog. thanks geemus
3022
+ messy first pass at parallelization of testing. thanks geemus
3023
+ fix deprecated rdoc rake tasks. thanks geemus
3024
+ add mvp suggestion to changelog task. thanks geemus
3025
+ started linode models. thanks nightshade427
3026
+ added images models. thanks nightshade427
3027
+ added kernel modes. thanks nightshade427
3028
+ added datacenters models. thanks nightshade427
3029
+ server provisioning completed. thanks nightshade427
3030
+ server creation and deletion working. thanks nightshade427
3031
+ generalize code. thanks nightshade427
3032
+ creating via stackscripts with callbacks working. thanks nightshade427
3033
+ added shutdown, reboot, boot. thanks nightshade427
3034
+ made config private. thanks nightshade427
3035
+ tests passing. thanks nightshade427
3036
+ revert tests to proper error codes, waiting on fix from linode to support correct error codes. thanks nightshade427
3037
+ code cleanup, tests passing. thanks nightshade427
3038
+ more passing tests. thanks nightshade427
3039
+ more test passing. thanks nightshade427
3040
+ more test passing. thanks nightshade427
3041
+ more test passing. thanks nightshade427
3042
+ more test passing. thanks nightshade427
3043
+ more test passing. thanks nightshade427
3044
+
3045
+ [mock]
3046
+ fix Fog::Mock.reset. thanks Dan Peterson
3047
+ error sooner for completely unimplemented services. thanks geemus
3048
+ cleanup and reset related fixes. thanks geemus
3049
+
3050
+ [rackspace|compute]
3051
+ make mocks respect Fog::Mock.delay. thanks geemus
3052
+
3053
+ [storage]
3054
+ fix/consolidate content-length for utf8. thanks geemus
3055
+
3056
+ [tests]
3057
+ add additional fake credentials for mocked tests. thanks geemus
3058
+
3059
+ [voxel|compute]
3060
+ fix format for servers in tests. thanks geemus
3061
+
3062
+
3063
+ 0.8.1 05/13/2011 3a452347a396f0ad1fea7f5475fb3c349b10f527
3064
+ =========================================================
3065
+
3066
+ [aws|compute]
3067
+ less confusing explanation comment. thanks geemus
3068
+
3069
+ [compute|aws]
3070
+ Fix describe_instances filtering. thanks ktheory
3071
+ Add get_password_data request. thanks ktheory
3072
+
3073
+ [core]
3074
+ Add test for Fog::Parsers::Base. thanks ktheory
3075
+ handle busted ENV['HOME']. thanks pfalcone closes #301. thanks geemus
3076
+ update fog.io in release task. thanks geemus
3077
+ add hash to changelog. thanks geemus
3078
+ work toward automating changelog. thanks geemus
3079
+
3080
+ 0.8.0 05/12/2011 27bf76d1f881bec0f900cd11d5c2a10dce4856ca
3081
+ =========================================================
3082
+
3083
+ MVP! ktheory
3084
+
3085
+ [aws|cloudformation] tests sleep to avoid throttling error :(
3086
+
3087
+ [aws|elb]
3088
+ Add tests for create, describe, and delete. thanks ktheory
3089
+ Fix Policies in describe_load_balancers parser. thanks ktheory
3090
+ Stub out missing requests. thanks ktheory
3091
+ Add configure_health_check request. thanks ktheory
3092
+ Add support for creating and deleting listeners. thanks ktheory
3093
+ Add requests for creating cookie policies. thanks ktheory
3094
+ Add request ELB#delete_load_balancer_policy. thanks ktheory
3095
+ Add request ELB#set_load_balancer_policies_of_listener. thanks ktheory
3096
+ Create a model and collection for load_balancers. thanks ktheory
3097
+ Create Policies collection and model. thanks ktheory
3098
+ Create Listeners collection and model. thanks ktheory
3099
+ Remove redundant NotFound error class. thanks ktheory
3100
+ reorg model files for consistency
3101
+
3102
+ [aws|iam]
3103
+ Added server certificate tests. thanks ktheory
3104
+ Parse server certificate UploadDate. thanks ktheory
3105
+ Add list_server_certificates request. thanks ktheory
3106
+ fix test description for update_login_profile
3107
+
3108
+ [aws|rds]
3109
+ Fix exception for missing DB security groups. thanks ktheory
3110
+ Remove redundant NotFound class. thanks ktheory
3111
+ Improve instance tests. thanks ktheory
3112
+ reorg model files for consistency
3113
+ change status waits for more consistent testing
3114
+
3115
+ [aws|ses]
3116
+ fix format of Destinations in send_raw_email and correct doc. thanks jhawthorne
3117
+ Make specifying Destinations for send_raw_email work and match amazon docs. thanks jhawthorne
3118
+ fix indent in doc. thanks jhawthorne
3119
+
3120
+ [aws|simpledb]
3121
+ correction for item and attribute counters in encode_batch_attributes. thanks joshounapoli
3122
+ 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
3123
+ Correction to the regular expression for unreserved characters. thanks joshounapoli
3124
+ 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
3125
+
3126
+ [compute]
3127
+ default to Ubuntu 10.04 LTS 64bit for image id
3128
+ [aws]
3129
+ Fix server tests. thanks ktheory
3130
+ Fixes trailing whitespace in attributes. thanks ktheory
3131
+ Fix & improve some tests. thanks ktheory
3132
+ Use default AMI in tests. thanks ktheory
3133
+ Add failing tests for keypair parsing. thanks ktheory
3134
+ Add different availability zones for each region to the mock. thanks smerritt
3135
+ Update docs for Compute::Real#initialize to include ap-* regions. thanks smerritt
3136
+ change default flavor to t1.micro (so it will be 64-bit)
3137
+ use old style, more consistent call to get single instance
3138
+ fix console output format in tests
3139
+ [bluebox]
3140
+ Adding lb_applications, lb_services, lb_backends attributes to the model. thanks cparades
3141
+ Adding in a few more tests for LB's. thanks cparades
3142
+ Rolling back change. thanks cparades
3143
+ Added in some data for testing. thanks cparades
3144
+ Fixed typo in Bluebox test. thanks tokengeek
3145
+ don't use a lb_application I don't own in tests
3146
+ [brightbox]
3147
+ Updated Image identifiers to match latest available Ubuntu Lucid 10.04 LTS 64bit image. thanks tokengeek
3148
+ [ecloud]
3149
+ 1.9.2 compat, String#[] doesn't return nil as we expected. thanks dpiddy
3150
+ [stormondemand]
3151
+ Implement Stormondemand API. thanks seeingidog
3152
+ cleanup
3153
+ fixes for tests
3154
+ [voxel]
3155
+ Prevent voxel tests running if missing credentials. thanks tokengeek
3156
+ minor fixes for voxel tests
3157
+
3158
+ [core]
3159
+ Parser does not concatenates all the strings when parsing. thanks geraud
3160
+ Drop default_executable line from gemspec. thanks mattsa
3161
+ Fix small logic error in Model#wait_for. thanks pvande
3162
+ Make Model#reload more resilient against errors. thanks pvande
3163
+ Simplify dup-ing of @attributes for models. thanks smerritt
3164
+ Make Model#dup copy the attributes too. thanks smerritt
3165
+ Fix typo in spec output. thanks smerritt
3166
+ tighten excon dependency. Closes #250
3167
+ cleanup gemspec. closes #251
3168
+ Fixes error messaging when credentials missing
3169
+ update parser to better handle whitespace
3170
+
3171
+ [docs]
3172
+ Add link to multipart upload and threads article. thanks gsandie
3173
+ restructure toward same organization as rest of repo
3174
+ simplify redirector to just point at directory instead of specifically index.html
3175
+ generalize version subbing in href to catch src too
3176
+ style cleanup for cdn/dns/storage
3177
+ storage shouldn't be all caps
3178
+ link to fog.io more prominently
3179
+ fix new links to properly include version
3180
+ replace getting started link
3181
+ add link to learn_fog
3182
+ remove confusion by linking to fog.io instead of wiki
3183
+ reworking getting started guide
3184
+ add requires
3185
+
3186
+ [dns|aws] fix error handling for getting unknown keys
3187
+
3188
+ [storage]
3189
+ auto-paginate for #each closes #268
3190
+ [aws]
3191
+ Add #each_file method to directory model. thanks smerritt
3192
+ Add documentation for #each_file method. thanks smerritt
3193
+ Emit warning from Files#each. thanks smerritt
3194
+ Make Files#each iterate all files, not just the first page. thanks smerritt
3195
+ Fix docs to say files.each, not each_file. thanks smerritt
3196
+ Issue #283: S3 get_object request doesn't really support the Range header. thanks yalon
3197
+ fix format for multipart upload tests
3198
+ [google]
3199
+ fix format in bucket_tests
3200
+ [rackspace]
3201
+ mark get_object with block test pending when mocked
3202
+
3203
+ 0.7.2 04/05/2011
3204
+ ================
3205
+
3206
+ [aws|cloudformation]
3207
+ enabling region parameter for AWS cloud formation requests. thanks flessa
3208
+
3209
+ [compute]
3210
+ [aws]
3211
+ remove CGI escape from create_security_group. thanks coliver
3212
+ replace remaining specs with shindo tests
3213
+ update #keypairs reference to #key_pairs. thanks pvande
3214
+ Emulate volume unavailability when mocking. thanks mtodd
3215
+ Raise error on non-existent snapshot for create_volume. thanks mtodd
3216
+ Add tag to resource data when creating a mock tag. thanks betamatt
3217
+ Add tag filtering to mocks for snapshots, volumes, instances. thanks betamatt
3218
+ Add delete_tags mock. thanks betamatt
3219
+ Support tag-key, tag-value, tag:key filters. thanks betamatt
3220
+ Correct name of dns-filter filter. thanks betamatt
3221
+ allow key pair to write into properly chmodded files. thanks gerred
3222
+ Making key pair names a little less potentially brittle. thanks gerred
3223
+ [rackspace]
3224
+ fix public_ip_address accessors
3225
+
3226
+ [core]
3227
+ updated base parser to not eagerly strip return data. thanks bdorry
3228
+ don't escape ssh commands. thanks pvande
3229
+ Deal with missing FOG_RC/HOME env vars better. thanks outerim
3230
+ fix push parser block passed to excon > 0.6.0
3231
+
3232
+ [docs]
3233
+ move fog.io stuff into docs directory
3234
+ pull in and format data from README, wiki, blog posts
3235
+
3236
+ [storage|rackspace]
3237
+ head_object should use HEAD. thanks nate
3238
+ Support for serving Rackspace CDN objects via SSL. thanks minter
3239
+ Use URI.escape instead of CGI.escape. thanks minter
3240
+
3241
+ 0.7.1 03/21/2011
3242
+ ================
3243
+
3244
+ [aws|storage] normalize headers. thanks pweldon
3245
+
3246
+ [mock] fix reset_data to not be called in Mock#initialize
3247
+
3248
+ [rackspace] add support for using servicenet. thanks minter
3249
+
3250
+ [storage] provide for non file/string files. thanks pweldon
3251
+
3252
+ 0.7.0 03/14/2011
3253
+ ================
3254
+
3255
+ [aws] added ap-northeast-1 (tokyo) region options
3256
+
3257
+ [aws|cloudformation] add basic support. thanks crazed
3258
+
3259
+ [aws|elb] add support for configuring https
3260
+
3261
+ [aws|iam]
3262
+ add support for server certificates. thanks bensie
3263
+ add support for login profiles. thanks fcheung
3264
+
3265
+ [aws|rds]
3266
+ support basic rds operations. thanks fcheung
3267
+ add support for restoring servers and security groups. thanks ktheory
3268
+
3269
+ [cdn|rackspace] use post_container to update
3270
+
3271
+ [compute]
3272
+ [aws]
3273
+ fix tag.destroy. thanks eabbott
3274
+ allow deleting all tags (instead of just specific ones)
3275
+ fix revoke_security_group method signature
3276
+ FLAVORS is now a constant
3277
+ allow for modifying server monitoring. thanks gilles
3278
+ [brightbox] thanks tokengeek
3279
+ Added listener management (add/remove) requests for Load Balancers
3280
+ Added new Server console activation request
3281
+ Added activate_console method to Brightbox servers
3282
+ Set Server#private_ip_address to be the first interface
3283
+ [rackspace] 'official' workaround for awful caching
3284
+ [virtualbox] rough proof of concept/initial implementation
3285
+
3286
+ [core]
3287
+ fix behavior of slice on collections. thanks eabbott
3288
+ fix reset_data to be instance method on mock connection (and work)
3289
+ [credentials]
3290
+ handle undefined ENV['HOME']
3291
+ Allow string keys in credentials file [issue 179]. thanks ryanlower
3292
+
3293
+ [dns|dnsimple] fix misc bugs in models. thanks ijonas
3294
+
3295
+ [storage]
3296
+ use shared parse_data across providers
3297
+ [rackspace]
3298
+ pass through explicit content-type
3299
+ fix bug preventing file uploads to be streamed
3300
+
3301
+ 0.6.0 02/28/2011
3302
+ ================
3303
+
3304
+ [aws|compute] fix method signature for security group requests. Thanks crazed
3305
+
3306
+ [aws|iam]
3307
+ fleshing out support. Thanks bdorry and coliver
3308
+ fix get_group parser to set Arn on group/member as appropriate
3309
+
3310
+ [bluebox|dns] added support. Thanks ggoodale
3311
+
3312
+ [compute]
3313
+ add basic scp support. Thanks crazed
3314
+ consolidate ip accessors
3315
+
3316
+ [core]
3317
+ added changelog, covering 0.5+
3318
+ reset credentials when changing key or path. Thanks ctennis
3319
+
3320
+ [dnsimple|dns] added support. Thanks dje
3321
+
3322
+ [ecloud|compute] cleaned up and reworked as basis for future ecloud work
3323
+
3324
+ [aws|storage] add static website configuration methods
3325
+
3326
+ [local|storage] rewrite using nested directories (NOTE: not backwards compatible)
3327
+
3328
+ [rackspace|storage] disable cdn when deleting container
3329
+
3330
+ [voxel|compute] added support. Thanks splaspood
3331
+
3332
+ remove long standing deprecations
3333
+
3334
+
3335
+ 0.5.3 02/15/11
3336
+ ==============
3337
+
3338
+ [terremark|ecloud] (thanks freeformz)
3339
+ initial support for Disabled monitor types
3340
+ InternetService#disable_monitor and #enable_ping_monitor
3341
+ spec fixes and tests for the new monitor functions
3342
+ fix logic error which prevented turning off persistent connections
3343
+ fix _dump for collections/models
3344
+ require json for to_json of collection/model
3345
+ add some missing parens to fix warnings
3346
+
3347
+
3348
+ 0.5.2 02/11/11
3349
+ ==============
3350
+
3351
+ [aws|compute] fix delete AWS tags to use proper method. Thanks ody
3352
+ [aws|storage]
3353
+ add sort for multi part upload fields. Thanks gavin
3354
+ better RRS docs. Thanks bensie
3355
+ Temporary redirect should not execute the block. Thanks vivienschillis
3356
+ [tests] fix mock_helper load path to allow test runs in 1.9.2. Thanks aeden
3357
+ [compute] disable password auth for current user, rather than always root
3358
+ [aws&google|storage] properly handle custom headers in mocks
3359
+ [aws&google|storage] make signature public method
3360
+ [aws&google] finish fixing headers in mocks
3361
+ [core] cleanup providers/services setup
3362
+ [README] add contributing section, recommendations for blue shirts, move providers to fog.io, cleanup resources
3363
+ implicitly add not_implemented mocks
3364
+
3365
+
3366
+ 0.5.1 01/31/11
3367
+ ==============
3368
+
3369
+ Bug fixes.
3370
+ [aws|iam] add signing certificate and list groups for user. thanks crazed
3371
+ [gogrid|compute] added support for password api calls. thanks lum
3372
+ [fog|time] add date header formatting that is non-localized
3373
+
3374
+
3375
+ 0.5.0 01/27/11
3376
+ ==============
3377
+
3378
+ [aws|compute] describe reserved instances offerings
3379
+ [aws|dns] Fix variable typo create_hosted_zone. Thanks mitchellh
3380
+ [aws|ses] basic support. Thanks adelcambre
3381
+ [aws|storage] Escape the path for signatures. Thanks croaker
3382
+ [aws&google|storage] mock fixes
3383
+ [local|storage] support file#content_type
3384
+ [ssh] use an agent if available instead of requiring explicit keys. thanks davidx and tomstuart
3385
+ [gogrid|compute] fix several issues. Thanks cardmagic
3386
+ [rackspace|compute] get new auth token when one expires
3387
+ [rackspace|storage] remove nil query params in requests
3388
+ [terremark|ecloud] getting started on ecloud specific implementation
3389
+