fog 1.9.0 → 1.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (548) hide show
  1. data/Gemfile +1 -1
  2. data/README.md +1 -1
  3. data/changelog.txt +743 -0
  4. data/fog.gemspec +3 -5
  5. data/lib/fog/aws.rb +1 -0
  6. data/lib/fog/aws/credential_fetcher.rb +1 -1
  7. data/lib/fog/aws/data_pipeline.rb +114 -0
  8. data/lib/fog/aws/dynamodb.rb +1 -1
  9. data/lib/fog/aws/models/compute/flavors.rb +1 -1
  10. data/lib/fog/aws/models/compute/spot_request.rb +2 -0
  11. data/lib/fog/aws/models/data_pipeline/pipeline.rb +67 -0
  12. data/lib/fog/aws/models/data_pipeline/pipelines.rb +36 -0
  13. data/lib/fog/aws/parsers/cloud_watch/list_metrics.rb +1 -1
  14. data/lib/fog/aws/parsers/compute/describe_instances.rb +1 -1
  15. data/lib/fog/aws/parsers/compute/spot_instance_requests.rb +2 -0
  16. data/lib/fog/aws/requests/compute/request_spot_instances.rb +1 -0
  17. data/lib/fog/aws/requests/data_pipeline/activate_pipeline.rb +35 -0
  18. data/lib/fog/aws/requests/data_pipeline/create_pipeline.rb +41 -0
  19. data/lib/fog/aws/requests/data_pipeline/delete_pipeline.rb +35 -0
  20. data/lib/fog/aws/requests/data_pipeline/describe_pipelines.rb +36 -0
  21. data/lib/fog/aws/requests/data_pipeline/list_pipelines.rb +36 -0
  22. data/lib/fog/aws/requests/data_pipeline/put_pipeline_definition.rb +72 -0
  23. data/lib/fog/aws/requests/rds/describe_db_instances.rb +8 -9
  24. data/lib/fog/aws/requests/storage/get_service.rb +1 -2
  25. data/lib/fog/aws/requests/storage/list_multipart_uploads.rb +3 -3
  26. data/lib/fog/aws/requests/storage/put_bucket_policy.rb +2 -2
  27. data/lib/fog/aws/storage.rb +1 -1
  28. data/lib/fog/bin.rb +2 -1
  29. data/lib/fog/bin/aws.rb +4 -0
  30. data/lib/fog/bin/bluebox.rb +2 -0
  31. data/lib/fog/bin/dreamhost.rb +31 -0
  32. data/lib/fog/bin/hp.rb +7 -0
  33. data/lib/fog/bin/internet_archive.rb +34 -0
  34. data/lib/fog/bin/openstack.rb +17 -2
  35. data/lib/fog/bluebox.rb +1 -0
  36. data/lib/fog/bluebox/blb.rb +85 -0
  37. data/lib/fog/bluebox/models/blb/lb_application.rb +32 -0
  38. data/lib/fog/bluebox/models/blb/lb_applications.rb +26 -0
  39. data/lib/fog/bluebox/models/blb/lb_backend.rb +22 -0
  40. data/lib/fog/bluebox/models/blb/lb_backends.rb +30 -0
  41. data/lib/fog/bluebox/models/blb/lb_service.rb +35 -0
  42. data/lib/fog/bluebox/models/blb/lb_services.rb +29 -0
  43. data/lib/fog/bluebox/requests/blb/add_machine_to_lb_application.rb +33 -0
  44. data/lib/fog/bluebox/requests/blb/add_machine_to_lb_backend.rb +31 -0
  45. data/lib/fog/bluebox/requests/blb/get_lb_application.rb +33 -0
  46. data/lib/fog/bluebox/requests/blb/get_lb_applications.rb +31 -0
  47. data/lib/fog/bluebox/requests/blb/get_lb_backend.rb +36 -0
  48. data/lib/fog/bluebox/requests/blb/get_lb_backends.rb +36 -0
  49. data/lib/fog/bluebox/requests/blb/get_lb_machine.rb +35 -0
  50. data/lib/fog/bluebox/requests/blb/get_lb_machines.rb +35 -0
  51. data/lib/fog/bluebox/requests/blb/get_lb_service.rb +36 -0
  52. data/lib/fog/bluebox/requests/blb/get_lb_services.rb +36 -0
  53. data/lib/fog/bluebox/requests/blb/remove_machine_from_lb_backend.rb +28 -0
  54. data/lib/fog/bluebox/requests/blb/update_lb_backend_machine.rb +29 -0
  55. data/lib/fog/brightbox/compute.rb +1 -0
  56. data/lib/fog/brightbox/requests/compute/create_firewall_policy.rb +1 -0
  57. data/lib/fog/brightbox/requests/compute/update_firewall_policy.rb +25 -0
  58. data/lib/fog/brightbox/requests/compute/update_server.rb +1 -0
  59. data/lib/fog/cdn.rb +5 -12
  60. data/lib/fog/compute.rb +7 -68
  61. data/lib/fog/core/errors.rb +5 -1
  62. data/lib/fog/core/scp.rb +1 -0
  63. data/lib/fog/core/ssh.rb +1 -0
  64. data/lib/fog/dns.rb +7 -27
  65. data/lib/fog/dreamhost.rb +11 -0
  66. data/lib/fog/dreamhost/dns.rb +86 -0
  67. data/lib/fog/dreamhost/examples/dns/getting_started.md +105 -0
  68. data/lib/fog/dreamhost/models/dns/record.rb +35 -0
  69. data/lib/fog/dreamhost/models/dns/records.rb +38 -0
  70. data/lib/fog/dreamhost/models/dns/zone.rb +59 -0
  71. data/lib/fog/dreamhost/models/dns/zones.rb +41 -0
  72. data/lib/fog/dreamhost/requests/dns/create_record.rb +32 -0
  73. data/lib/fog/dreamhost/requests/dns/delete_record.rb +31 -0
  74. data/lib/fog/dreamhost/requests/dns/list_records.rb +25 -0
  75. data/lib/fog/ecloud/models/compute/detached_disks.rb +1 -5
  76. data/lib/fog/ecloud/models/compute/internet_services.rb +1 -5
  77. data/lib/fog/ecloud/models/compute/nodes.rb +1 -5
  78. data/lib/fog/ecloud/models/compute/public_ips.rb +1 -5
  79. data/lib/fog/ecloud/models/compute/servers.rb +2 -6
  80. data/lib/fog/ecloud/requests/compute/get_detached_disk.rb +1 -1
  81. data/lib/fog/ecloud/requests/compute/get_internet_service.rb +1 -1
  82. data/lib/fog/ecloud/requests/compute/get_node.rb +1 -1
  83. data/lib/fog/ecloud/requests/compute/get_public_ip.rb +1 -1
  84. data/lib/fog/ecloud/requests/compute/get_server.rb +1 -1
  85. data/lib/fog/ecloud/requests/compute/virtual_machine_create_from_template.rb +1 -1
  86. data/lib/fog/glesys/compute.rb +5 -1
  87. data/lib/fog/glesys/models/compute/ip.rb +47 -46
  88. data/lib/fog/glesys/models/compute/ips.rb +95 -12
  89. data/lib/fog/glesys/models/compute/server.rb +66 -5
  90. data/lib/fog/glesys/models/compute/servers.rb +7 -1
  91. data/lib/fog/glesys/models/compute/template.rb +8 -16
  92. data/lib/fog/glesys/models/compute/templates.rb +23 -5
  93. data/lib/fog/glesys/requests/compute/ip_details.rb +2 -2
  94. data/lib/fog/glesys/requests/compute/server_details.rb +2 -2
  95. data/lib/fog/glesys/requests/compute/template_list.rb +2 -2
  96. data/lib/fog/hp.rb +56 -26
  97. data/lib/fog/hp/CHANGELOG.hp +113 -0
  98. data/lib/fog/hp/README_HP.rdoc +7 -6
  99. data/lib/fog/hp/block_storage.rb +169 -0
  100. data/lib/fog/hp/cdn.rb +29 -7
  101. data/lib/fog/hp/compute.rb +88 -17
  102. data/lib/fog/hp/models/block_storage/bootable_volumes.rb +28 -0
  103. data/lib/fog/hp/models/block_storage/snapshot.rb +56 -0
  104. data/lib/fog/hp/models/block_storage/snapshots.rb +29 -0
  105. data/lib/fog/hp/models/block_storage/volume.rb +102 -0
  106. data/lib/fog/hp/models/block_storage/volumes.rb +28 -0
  107. data/lib/fog/hp/models/compute/address.rb +0 -1
  108. data/lib/fog/hp/models/compute/image.rb +43 -4
  109. data/lib/fog/hp/models/compute/images.rb +0 -5
  110. data/lib/fog/hp/models/compute/key_pair.rb +0 -5
  111. data/lib/fog/hp/models/compute/meta.rb +29 -0
  112. data/lib/fog/hp/models/compute/metadata.rb +79 -0
  113. data/lib/fog/hp/models/compute/server.rb +84 -20
  114. data/lib/fog/hp/models/meta_parent.rb +33 -0
  115. data/lib/fog/hp/models/storage/directories.rb +34 -9
  116. data/lib/fog/hp/models/storage/directory.rb +111 -26
  117. data/lib/fog/hp/models/storage/file.rb +10 -0
  118. data/lib/fog/hp/models/storage/files.rb +8 -0
  119. data/lib/fog/hp/models/storage/shared_directories.rb +55 -0
  120. data/lib/fog/hp/models/storage/shared_directory.rb +39 -0
  121. data/lib/fog/hp/models/storage/shared_file.rb +67 -0
  122. data/lib/fog/hp/models/storage/shared_files.rb +64 -0
  123. data/lib/fog/hp/requests/block_storage/create_snapshot.rb +76 -0
  124. data/lib/fog/hp/requests/block_storage/create_volume.rb +87 -0
  125. data/lib/fog/hp/requests/block_storage/delete_snapshot.rb +38 -0
  126. data/lib/fog/hp/requests/block_storage/delete_volume.rb +38 -0
  127. data/lib/fog/hp/requests/block_storage/get_bootable_volume_details.rb +59 -0
  128. data/lib/fog/hp/requests/block_storage/get_snapshot_details.rb +54 -0
  129. data/lib/fog/hp/requests/block_storage/get_volume_details.rb +58 -0
  130. data/lib/fog/hp/requests/block_storage/list_bootable_volumes.rb +53 -0
  131. data/lib/fog/hp/requests/block_storage/list_snapshots.rb +48 -0
  132. data/lib/fog/hp/requests/block_storage/list_volumes.rb +52 -0
  133. data/lib/fog/hp/requests/compute/attach_volume.rb +78 -0
  134. data/lib/fog/hp/requests/compute/create_image.rb +5 -8
  135. data/lib/fog/hp/requests/compute/create_persistent_server.rb +168 -0
  136. data/lib/fog/hp/requests/compute/create_server.rb +36 -20
  137. data/lib/fog/hp/requests/compute/delete_meta.rb +55 -0
  138. data/lib/fog/hp/requests/compute/delete_security_group_rule.rb +4 -4
  139. data/lib/fog/hp/requests/compute/detach_volume.rb +47 -0
  140. data/lib/fog/hp/requests/compute/get_console_output.rb +43 -0
  141. data/lib/fog/hp/requests/compute/get_meta.rb +57 -0
  142. data/lib/fog/hp/requests/compute/get_windows_password.rb +43 -0
  143. data/lib/fog/hp/requests/compute/list_metadata.rb +56 -0
  144. data/lib/fog/hp/requests/compute/list_server_volumes.rb +49 -0
  145. data/lib/fog/hp/requests/compute/set_metadata.rb +60 -0
  146. data/lib/fog/hp/requests/compute/update_meta.rb +61 -0
  147. data/lib/fog/hp/requests/compute/update_metadata.rb +60 -0
  148. data/lib/fog/hp/requests/storage/delete_shared_object.rb +38 -0
  149. data/lib/fog/hp/requests/storage/get_object.rb +12 -10
  150. data/lib/fog/hp/requests/storage/get_object_temp_url.rb +31 -0
  151. data/lib/fog/hp/requests/storage/get_shared_container.rb +75 -0
  152. data/lib/fog/hp/requests/storage/get_shared_object.rb +66 -0
  153. data/lib/fog/hp/requests/storage/head_container.rb +1 -0
  154. data/lib/fog/hp/requests/storage/head_object.rb +1 -0
  155. data/lib/fog/hp/requests/storage/head_shared_container.rb +45 -0
  156. data/lib/fog/hp/requests/storage/head_shared_object.rb +39 -0
  157. data/lib/fog/hp/requests/storage/put_container.rb +6 -6
  158. data/lib/fog/hp/requests/storage/put_object.rb +12 -1
  159. data/lib/fog/hp/requests/storage/put_shared_object.rb +85 -0
  160. data/lib/fog/hp/storage.rb +175 -33
  161. data/lib/fog/identity.rb +5 -4
  162. data/lib/fog/image.rb +5 -6
  163. data/lib/fog/internet_archive.rb +290 -0
  164. data/lib/fog/internet_archive/models/storage/directories.rb +43 -0
  165. data/lib/fog/internet_archive/models/storage/directory.rb +126 -0
  166. data/lib/fog/internet_archive/models/storage/file.rb +286 -0
  167. data/lib/fog/internet_archive/models/storage/files.rb +122 -0
  168. data/lib/fog/internet_archive/models/storage/version.rb +36 -0
  169. data/lib/fog/internet_archive/models/storage/versions.rb +38 -0
  170. data/lib/fog/internet_archive/parsers/storage/access_control_list.rb +46 -0
  171. data/lib/fog/internet_archive/parsers/storage/complete_multipart_upload.rb +24 -0
  172. data/lib/fog/internet_archive/parsers/storage/copy_object.rb +22 -0
  173. data/lib/fog/internet_archive/parsers/storage/cors_configuration.rb +41 -0
  174. data/lib/fog/internet_archive/parsers/storage/delete_multiple_objects.rb +50 -0
  175. data/lib/fog/internet_archive/parsers/storage/get_bucket.rb +62 -0
  176. data/lib/fog/internet_archive/parsers/storage/get_bucket_lifecycle.rb +66 -0
  177. data/lib/fog/internet_archive/parsers/storage/get_bucket_location.rb +20 -0
  178. data/lib/fog/internet_archive/parsers/storage/get_bucket_logging.rb +40 -0
  179. data/lib/fog/internet_archive/parsers/storage/get_bucket_object_versions.rb +88 -0
  180. data/lib/fog/internet_archive/parsers/storage/get_bucket_versioning.rb +24 -0
  181. data/lib/fog/internet_archive/parsers/storage/get_bucket_website.rb +26 -0
  182. data/lib/fog/internet_archive/parsers/storage/get_request_payment.rb +20 -0
  183. data/lib/fog/internet_archive/parsers/storage/get_service.rb +32 -0
  184. data/lib/fog/internet_archive/parsers/storage/initiate_multipart_upload.rb +24 -0
  185. data/lib/fog/internet_archive/parsers/storage/list_multipart_uploads.rb +56 -0
  186. data/lib/fog/internet_archive/parsers/storage/list_parts.rb +40 -0
  187. data/lib/fog/internet_archive/requests/storage/abort_multipart_upload.rb +28 -0
  188. data/lib/fog/internet_archive/requests/storage/acl_utils.rb +62 -0
  189. data/lib/fog/internet_archive/requests/storage/complete_multipart_upload.rb +48 -0
  190. data/lib/fog/internet_archive/requests/storage/copy_object.rb +81 -0
  191. data/lib/fog/internet_archive/requests/storage/cors_utils.rb +41 -0
  192. data/lib/fog/internet_archive/requests/storage/delete_bucket.rb +47 -0
  193. data/lib/fog/internet_archive/requests/storage/delete_bucket_cors.rb +29 -0
  194. data/lib/fog/internet_archive/requests/storage/delete_bucket_lifecycle.rb +27 -0
  195. data/lib/fog/internet_archive/requests/storage/delete_bucket_policy.rb +29 -0
  196. data/lib/fog/internet_archive/requests/storage/delete_bucket_website.rb +29 -0
  197. data/lib/fog/internet_archive/requests/storage/delete_multiple_objects.rb +167 -0
  198. data/lib/fog/internet_archive/requests/storage/delete_object.rb +118 -0
  199. data/lib/fog/internet_archive/requests/storage/get_bucket.rb +112 -0
  200. data/lib/fog/internet_archive/requests/storage/get_bucket_acl.rb +69 -0
  201. data/lib/fog/internet_archive/requests/storage/get_bucket_cors.rb +65 -0
  202. data/lib/fog/internet_archive/requests/storage/get_bucket_lifecycle.rb +38 -0
  203. data/lib/fog/internet_archive/requests/storage/get_bucket_location.rb +58 -0
  204. data/lib/fog/internet_archive/requests/storage/get_bucket_logging.rb +47 -0
  205. data/lib/fog/internet_archive/requests/storage/get_bucket_object_versions.rb +162 -0
  206. data/lib/fog/internet_archive/requests/storage/get_bucket_policy.rb +34 -0
  207. data/lib/fog/internet_archive/requests/storage/get_bucket_versioning.rb +69 -0
  208. data/lib/fog/internet_archive/requests/storage/get_bucket_website.rb +40 -0
  209. data/lib/fog/internet_archive/requests/storage/get_object.rb +188 -0
  210. data/lib/fog/internet_archive/requests/storage/get_object_acl.rb +80 -0
  211. data/lib/fog/internet_archive/requests/storage/get_object_http_url.rb +55 -0
  212. data/lib/fog/internet_archive/requests/storage/get_object_https_url.rb +37 -0
  213. data/lib/fog/internet_archive/requests/storage/get_object_torrent.rb +47 -0
  214. data/lib/fog/internet_archive/requests/storage/get_object_url.rb +55 -0
  215. data/lib/fog/internet_archive/requests/storage/get_request_payment.rb +49 -0
  216. data/lib/fog/internet_archive/requests/storage/get_service.rb +55 -0
  217. data/lib/fog/internet_archive/requests/storage/head_object.rb +66 -0
  218. data/lib/fog/internet_archive/requests/storage/initiate_multipart_upload.rb +44 -0
  219. data/lib/fog/internet_archive/requests/storage/list_multipart_uploads.rb +55 -0
  220. data/lib/fog/internet_archive/requests/storage/list_parts.rb +55 -0
  221. data/lib/fog/internet_archive/requests/storage/post_object_hidden_fields.rb +38 -0
  222. data/lib/fog/internet_archive/requests/storage/put_bucket.rb +74 -0
  223. data/lib/fog/internet_archive/requests/storage/put_bucket_acl.rb +71 -0
  224. data/lib/fog/internet_archive/requests/storage/put_bucket_cors.rb +49 -0
  225. data/lib/fog/internet_archive/requests/storage/put_bucket_lifecycle.rb +77 -0
  226. data/lib/fog/internet_archive/requests/storage/put_bucket_logging.rb +81 -0
  227. data/lib/fog/internet_archive/requests/storage/put_bucket_policy.rb +28 -0
  228. data/lib/fog/internet_archive/requests/storage/put_bucket_versioning.rb +75 -0
  229. data/lib/fog/internet_archive/requests/storage/put_bucket_website.rb +64 -0
  230. data/lib/fog/internet_archive/requests/storage/put_object.rb +113 -0
  231. data/lib/fog/internet_archive/requests/storage/put_object_acl.rb +80 -0
  232. data/lib/fog/internet_archive/requests/storage/put_object_url.rb +48 -0
  233. data/lib/fog/internet_archive/requests/storage/put_request_payment.rb +49 -0
  234. data/lib/fog/internet_archive/requests/storage/sync_clock.rb +28 -0
  235. data/lib/fog/internet_archive/requests/storage/upload_part.rb +41 -0
  236. data/lib/fog/internet_archive/signaturev4.rb +73 -0
  237. data/lib/fog/internet_archive/storage.rb +402 -0
  238. data/lib/fog/joyent/models/compute/server.rb +1 -1
  239. data/lib/fog/joyent/requests/compute/resize_machine.rb +2 -0
  240. data/lib/fog/libvirt/models/compute/volume.rb +1 -1
  241. data/lib/fog/network.rb +5 -6
  242. data/lib/fog/openstack.rb +10 -0
  243. data/lib/fog/openstack/compute.rb +11 -4
  244. data/lib/fog/openstack/identity.rb +5 -2
  245. data/lib/fog/openstack/models/compute/images.rb +2 -1
  246. data/lib/fog/openstack/models/compute/metadata.rb +4 -5
  247. data/lib/fog/openstack/models/compute/server.rb +36 -21
  248. data/lib/fog/openstack/models/identity/role.rb +1 -1
  249. data/lib/fog/openstack/models/network/floating_ip.rb +1 -1
  250. data/lib/fog/openstack/models/network/floating_ips.rb +2 -2
  251. data/lib/fog/openstack/models/network/network.rb +8 -0
  252. data/lib/fog/openstack/models/storage/directories.rb +39 -0
  253. data/lib/fog/openstack/models/storage/directory.rb +50 -0
  254. data/lib/fog/openstack/models/storage/file.rb +150 -0
  255. data/lib/fog/openstack/models/storage/files.rb +94 -0
  256. data/lib/fog/openstack/requests/compute/allocate_address.rb +1 -1
  257. data/lib/fog/openstack/requests/compute/delete_meta.rb +43 -0
  258. data/lib/fog/openstack/requests/compute/get_limits.rb +1 -1
  259. data/lib/fog/openstack/requests/compute/get_snapshot_details.rb +1 -1
  260. data/lib/fog/openstack/requests/compute/get_volume_details.rb +1 -1
  261. data/lib/fog/openstack/requests/compute/list_servers.rb +1 -1
  262. data/lib/fog/openstack/requests/compute/list_tenants.rb +1 -0
  263. data/lib/fog/openstack/requests/compute/remove_fixed_ip.rb +1 -1
  264. data/lib/fog/openstack/requests/compute/update_meta.rb +46 -0
  265. data/lib/fog/openstack/requests/compute/update_server.rb +1 -1
  266. data/lib/fog/openstack/requests/identity/delete_user_role.rb +2 -2
  267. data/lib/fog/openstack/requests/identity/get_user_by_name.rb +2 -2
  268. data/lib/fog/openstack/requests/image/create_image.rb +1 -1
  269. data/lib/fog/openstack/requests/network/associate_floating_ip.rb +3 -3
  270. data/lib/fog/openstack/requests/network/create_floating_ip.rb +3 -3
  271. data/lib/fog/openstack/requests/network/delete_floating_ip.rb +1 -1
  272. data/lib/fog/openstack/requests/network/disassociate_floating_ip.rb +3 -3
  273. data/lib/fog/openstack/requests/network/get_floating_ip.rb +1 -1
  274. data/lib/fog/openstack/requests/network/list_floating_ips.rb +1 -1
  275. data/lib/fog/openstack/requests/storage/copy_object.rb +27 -0
  276. data/lib/fog/openstack/requests/storage/delete_container.rb +22 -0
  277. data/lib/fog/openstack/requests/storage/delete_object.rb +23 -0
  278. data/lib/fog/openstack/requests/storage/get_container.rb +44 -0
  279. data/lib/fog/openstack/requests/storage/get_containers.rb +33 -0
  280. data/lib/fog/openstack/requests/storage/get_object.rb +29 -0
  281. data/lib/fog/openstack/requests/storage/get_object_https_url.rb +51 -0
  282. data/lib/fog/openstack/requests/storage/head_container.rb +28 -0
  283. data/lib/fog/openstack/requests/storage/head_containers.rb +25 -0
  284. data/lib/fog/openstack/requests/storage/head_object.rb +23 -0
  285. data/lib/fog/openstack/requests/storage/post_set_meta_temp_url_key.rb +37 -0
  286. data/lib/fog/openstack/requests/storage/put_container.rb +22 -0
  287. data/lib/fog/openstack/requests/storage/put_object.rb +30 -0
  288. data/lib/fog/openstack/requests/storage/put_object_manifest.rb +25 -0
  289. data/lib/fog/openstack/storage.rb +159 -0
  290. data/lib/fog/openstack/volume.rb +4 -2
  291. data/lib/fog/ovirt/compute.rb +1 -0
  292. data/lib/fog/ovirt/models/compute/server.rb +2 -2
  293. data/lib/fog/ovirt/models/compute/volume.rb +1 -0
  294. data/lib/fog/ovirt/requests/compute/get_api_version.rb +16 -0
  295. data/lib/fog/providers.rb +2 -1
  296. data/lib/fog/rackspace/block_storage.rb +1 -0
  297. data/lib/fog/rackspace/cdn.rb +61 -7
  298. data/lib/fog/rackspace/compute_v2.rb +16 -3
  299. data/lib/fog/rackspace/databases.rb +4 -3
  300. data/lib/fog/rackspace/docs/compute_v2.md +663 -0
  301. data/lib/fog/rackspace/docs/getting_started.md +9 -9
  302. data/lib/fog/rackspace/examples/README.md +47 -0
  303. data/lib/fog/rackspace/examples/compute_v2/README.md +47 -0
  304. data/lib/fog/rackspace/examples/compute_v2/create_image.rb +61 -0
  305. data/lib/fog/rackspace/examples/compute_v2/create_server.rb +89 -0
  306. data/lib/fog/rackspace/examples/compute_v2/delete_image.rb +61 -0
  307. data/lib/fog/rackspace/examples/compute_v2/delete_server.rb +56 -0
  308. data/lib/fog/rackspace/examples/compute_v2/detach_volume.rb +93 -0
  309. data/lib/fog/rackspace/examples/compute_v2/resize_server.rb +106 -0
  310. data/lib/fog/rackspace/examples/compute_v2/server_attachments.rb +69 -0
  311. data/lib/fog/rackspace/examples/compute_v2/server_metadata.rb +85 -0
  312. data/lib/fog/rackspace/identity.rb +1 -1
  313. data/lib/fog/rackspace/load_balancers.rb +2 -2
  314. data/lib/fog/rackspace/mock_data.rb +114 -96
  315. data/lib/fog/rackspace/models/compute_v2/attachment.rb +16 -0
  316. data/lib/fog/rackspace/models/compute_v2/attachments.rb +6 -0
  317. data/lib/fog/rackspace/models/compute_v2/flavor.rb +18 -0
  318. data/lib/fog/rackspace/models/compute_v2/flavors.rb +9 -1
  319. data/lib/fog/rackspace/models/compute_v2/image.rb +52 -7
  320. data/lib/fog/rackspace/models/compute_v2/images.rb +9 -0
  321. data/lib/fog/rackspace/models/compute_v2/meta_parent.rb +9 -0
  322. data/lib/fog/rackspace/models/compute_v2/metadata.rb +30 -7
  323. data/lib/fog/rackspace/models/compute_v2/metadatum.rb +4 -0
  324. data/lib/fog/rackspace/models/compute_v2/network.rb +27 -0
  325. data/lib/fog/rackspace/models/compute_v2/networks.rb +23 -0
  326. data/lib/fog/rackspace/models/compute_v2/server.rb +235 -24
  327. data/lib/fog/rackspace/models/compute_v2/servers.rb +19 -1
  328. data/lib/fog/rackspace/models/dns/zones.rb +35 -2
  329. data/lib/fog/rackspace/models/identity/credentials.rb +3 -2
  330. data/lib/fog/rackspace/models/storage/account.rb +24 -0
  331. data/lib/fog/rackspace/models/storage/directories.rb +3 -0
  332. data/lib/fog/rackspace/models/storage/directory.rb +68 -39
  333. data/lib/fog/rackspace/models/storage/file.rb +38 -67
  334. data/lib/fog/rackspace/models/storage/files.rb +11 -4
  335. data/lib/fog/rackspace/models/storage/metadata.rb +129 -0
  336. data/lib/fog/rackspace/requests/cdn/delete_object.rb +37 -0
  337. data/lib/fog/rackspace/requests/cdn/get_containers.rb +34 -0
  338. data/lib/fog/rackspace/requests/cdn/head_container.rb +24 -0
  339. data/lib/fog/rackspace/requests/cdn/post_container.rb +21 -0
  340. data/lib/fog/rackspace/requests/cdn/put_container.rb +21 -0
  341. data/lib/fog/rackspace/requests/compute_v2/attach_volume.rb +13 -0
  342. data/lib/fog/rackspace/requests/compute_v2/change_server_password.rb +7 -0
  343. data/lib/fog/rackspace/requests/compute_v2/confirm_resize_server.rb +9 -0
  344. data/lib/fog/rackspace/requests/compute_v2/create_image.rb +9 -5
  345. data/lib/fog/rackspace/requests/compute_v2/create_network.rb +36 -0
  346. data/lib/fog/rackspace/requests/compute_v2/create_server.rb +38 -0
  347. data/lib/fog/rackspace/requests/compute_v2/delete_attachment.rb +5 -0
  348. data/lib/fog/rackspace/requests/compute_v2/delete_image.rb +2 -4
  349. data/lib/fog/rackspace/requests/compute_v2/delete_metadata_item.rb +6 -0
  350. data/lib/fog/rackspace/requests/compute_v2/delete_network.rb +21 -0
  351. data/lib/fog/rackspace/requests/compute_v2/delete_server.rb +4 -0
  352. data/lib/fog/rackspace/requests/compute_v2/get_attachment.rb +12 -0
  353. data/lib/fog/rackspace/requests/compute_v2/get_flavor.rb +14 -0
  354. data/lib/fog/rackspace/requests/compute_v2/get_image.rb +18 -0
  355. data/lib/fog/rackspace/requests/compute_v2/get_metadata_item.rb +9 -0
  356. data/lib/fog/rackspace/requests/compute_v2/get_network.rb +21 -0
  357. data/lib/fog/rackspace/requests/compute_v2/get_server.rb +32 -0
  358. data/lib/fog/rackspace/requests/compute_v2/list_addresses.rb +5 -0
  359. data/lib/fog/rackspace/requests/compute_v2/list_addresses_by_network.rb +12 -0
  360. data/lib/fog/rackspace/requests/compute_v2/list_attachments.rb +12 -0
  361. data/lib/fog/rackspace/requests/compute_v2/list_flavors.rb +10 -0
  362. data/lib/fog/rackspace/requests/compute_v2/list_images.rb +10 -0
  363. data/lib/fog/rackspace/requests/compute_v2/list_metadata.rb +8 -0
  364. data/lib/fog/rackspace/requests/compute_v2/list_networks.rb +18 -0
  365. data/lib/fog/rackspace/requests/compute_v2/list_servers.rb +31 -0
  366. data/lib/fog/rackspace/requests/compute_v2/reboot_server.rb +5 -0
  367. data/lib/fog/rackspace/requests/compute_v2/rebuild_server.rb +37 -0
  368. data/lib/fog/rackspace/requests/compute_v2/resize_server.rb +10 -0
  369. data/lib/fog/rackspace/requests/compute_v2/revert_resize_server.rb +10 -0
  370. data/lib/fog/rackspace/requests/compute_v2/set_metadata.rb +9 -0
  371. data/lib/fog/rackspace/requests/compute_v2/set_metadata_item.rb +10 -0
  372. data/lib/fog/rackspace/requests/compute_v2/update_metadata.rb +9 -0
  373. data/lib/fog/rackspace/requests/compute_v2/update_server.rb +9 -0
  374. data/lib/fog/rackspace/requests/storage/get_object.rb +0 -1
  375. data/lib/fog/rackspace/requests/storage/put_container.rb +2 -1
  376. data/lib/fog/rackspace/storage.rb +14 -2
  377. data/lib/fog/schema/data_validator.rb +154 -0
  378. data/lib/fog/storage.rb +8 -24
  379. data/lib/fog/terremark/models/shared/server.rb +5 -3
  380. data/lib/fog/terremark/parser.rb +14 -13
  381. data/lib/fog/terremark/parsers/shared/get_catalog.rb +5 -19
  382. data/lib/fog/terremark/parsers/shared/get_catalog_item.rb +4 -14
  383. data/lib/fog/terremark/parsers/shared/get_internet_services.rb +1 -1
  384. data/lib/fog/terremark/parsers/shared/get_keys_list.rb +4 -18
  385. data/lib/fog/terremark/parsers/shared/get_network_ips.rb +1 -1
  386. data/lib/fog/terremark/parsers/shared/get_node_services.rb +1 -1
  387. data/lib/fog/terremark/parsers/shared/get_organization.rb +4 -3
  388. data/lib/fog/terremark/parsers/shared/get_organizations.rb +3 -2
  389. data/lib/fog/terremark/parsers/shared/get_public_ips.rb +1 -1
  390. data/lib/fog/terremark/parsers/shared/get_tasks_list.rb +4 -17
  391. data/lib/fog/terremark/parsers/shared/get_vapp_template.rb +3 -14
  392. data/lib/fog/terremark/parsers/shared/get_vdc.rb +6 -38
  393. data/lib/fog/terremark/parsers/shared/instantiate_vapp_template.rb +3 -14
  394. data/lib/fog/terremark/parsers/shared/internet_service.rb +2 -5
  395. data/lib/fog/terremark/parsers/shared/network.rb +3 -11
  396. data/lib/fog/terremark/parsers/shared/node_service.rb +1 -1
  397. data/lib/fog/terremark/parsers/shared/public_ip.rb +1 -1
  398. data/lib/fog/terremark/parsers/shared/task.rb +3 -14
  399. data/lib/fog/terremark/parsers/shared/vapp.rb +3 -14
  400. data/lib/fog/vcloud/compute.rb +1 -0
  401. data/lib/fog/vcloud/models/compute/server.rb +15 -2
  402. data/lib/fog/vcloud/models/compute/vapp.rb +11 -0
  403. data/lib/fog/vcloud/requests/compute/configure_vm_network.rb +37 -0
  404. data/lib/fog/vcloud/requests/compute/instantiate_vapp_template.rb +8 -4
  405. data/lib/fog/version.rb +1 -1
  406. data/lib/fog/volume.rb +6 -6
  407. data/lib/fog/vsphere/requests/compute/create_vm.rb +18 -3
  408. data/lib/fog/vsphere/requests/compute/list_vm_interfaces.rb +1 -1
  409. data/lib/fog/vsphere/requests/compute/vm_reconfig_hardware.rb +1 -1
  410. data/tests/aws/models/data_pipeline/pipeline_tests.rb +8 -0
  411. data/tests/aws/models/data_pipeline/pipelines_tests.rb +8 -0
  412. data/tests/aws/models/rds/server_tests.rb +10 -9
  413. data/tests/aws/requests/compute/image_tests.rb +2 -2
  414. data/tests/aws/requests/compute/security_group_tests.rb +1 -1
  415. data/tests/aws/requests/compute/spot_instance_tests.rb +3 -2
  416. data/tests/aws/requests/data_pipeline/helper.rb +44 -0
  417. data/tests/aws/requests/data_pipeline/pipeline_tests.rb +54 -0
  418. data/tests/aws/requests/rds/instance_tests.rb +8 -5
  419. data/tests/bluebox/requests/blb/helper.rb +64 -0
  420. data/tests/bluebox/requests/blb/lb_tests.rb +75 -0
  421. data/tests/brightbox/requests/compute/firewall_policy_tests.rb +7 -0
  422. data/tests/brightbox/requests/compute/helper.rb +4 -2
  423. data/tests/compute/helper.rb +8 -0
  424. data/tests/core/user_agent_tests.rb +6 -0
  425. data/tests/dreamhost/README.md +56 -0
  426. data/tests/dreamhost/dns_tests.rb +20 -0
  427. data/tests/dreamhost/helper.rb +19 -0
  428. data/tests/dreamhost/models/dns/record_tests.rb +73 -0
  429. data/tests/dreamhost/models/dns/records_tests.rb +29 -0
  430. data/tests/dreamhost/models/dns/zone_tests.rb +62 -0
  431. data/tests/dreamhost/models/dns/zones_tests.rb +29 -0
  432. data/tests/dreamhost/requests/dns/create_record_tests.rb +39 -0
  433. data/tests/dreamhost/requests/dns/delete_record_tests.rb +26 -0
  434. data/tests/dreamhost/requests/dns/list_records_tests.rb +31 -0
  435. data/tests/glesys/requests/compute/helper.rb +5 -5
  436. data/tests/helper.rb +1 -1
  437. data/tests/helpers/formats_helper.rb +63 -50
  438. data/tests/helpers/formats_helper_tests.rb +87 -36
  439. data/tests/helpers/mock_helper.rb +4 -1
  440. data/tests/helpers/schema_validator_tests.rb +107 -0
  441. data/tests/hp/models/block_storage/bootable_volume_tests.rb +23 -0
  442. data/tests/hp/models/block_storage/snapshot_tests.rb +23 -0
  443. data/tests/hp/models/block_storage/volume_tests.rb +21 -0
  444. data/tests/hp/models/compute/address_tests.rb +1 -1
  445. data/tests/hp/models/compute/addresses_tests.rb +1 -1
  446. data/tests/hp/models/compute/key_pair_tests.rb +1 -1
  447. data/tests/hp/models/compute/key_pairs_tests.rb +1 -1
  448. data/tests/hp/models/compute/metadata_image_tests.rb +60 -0
  449. data/tests/hp/models/compute/metadata_server_tests.rb +54 -0
  450. data/tests/hp/models/compute/security_group_tests.rb +3 -1
  451. data/tests/hp/models/compute/security_groups_tests.rb +1 -1
  452. data/tests/hp/models/storage/directories_tests.rb +23 -0
  453. data/tests/hp/models/storage/directory_tests.rb +62 -0
  454. data/tests/hp/models/storage/file_tests.rb +44 -0
  455. data/tests/hp/models/storage/files_tests.rb +38 -0
  456. data/tests/hp/requests/block_storage/bootable_volume_tests.rb +78 -0
  457. data/tests/hp/requests/block_storage/snapshot_tests.rb +56 -0
  458. data/tests/hp/requests/block_storage/volume_tests.rb +94 -0
  459. data/tests/hp/requests/cdn/container_tests.rb +1 -1
  460. data/tests/hp/requests/compute/address_tests.rb +5 -6
  461. data/tests/hp/requests/compute/flavor_tests.rb +1 -1
  462. data/tests/hp/requests/compute/image_tests.rb +1 -1
  463. data/tests/hp/requests/compute/key_pair_tests.rb +1 -1
  464. data/tests/hp/requests/compute/metadata_tests.rb +70 -0
  465. data/tests/hp/requests/compute/persistent_server_tests.rb +66 -0
  466. data/tests/hp/requests/compute/security_group_rule_tests.rb +1 -1
  467. data/tests/hp/requests/compute/security_group_tests.rb +1 -1
  468. data/tests/hp/requests/compute/server_address_tests.rb +1 -1
  469. data/tests/hp/requests/compute/server_tests.rb +5 -6
  470. data/tests/hp/requests/compute/server_volume_tests.rb +76 -0
  471. data/tests/hp/requests/storage/container_tests.rb +1 -1
  472. data/tests/hp/requests/storage/object_tests.rb +9 -1
  473. data/tests/hp/user_agent_tests.rb +13 -0
  474. data/tests/internet_archive/models/storage/directory_tests.rb +51 -0
  475. data/tests/internet_archive/models/storage/file_tests.rb +80 -0
  476. data/tests/internet_archive/models/storage/files_tests.rb +56 -0
  477. data/tests/internet_archive/models/storage/url_tests.rb +28 -0
  478. data/tests/internet_archive/models/storage/version_tests.rb +52 -0
  479. data/tests/internet_archive/models/storage/versions_tests.rb +56 -0
  480. data/tests/internet_archive/requests/storage/acl_utils_tests.rb +209 -0
  481. data/tests/internet_archive/requests/storage/bucket_tests.rb +328 -0
  482. data/tests/internet_archive/requests/storage/cors_utils_tests.rb +108 -0
  483. data/tests/internet_archive/requests/storage/multipart_upload_tests.rb +132 -0
  484. data/tests/internet_archive/requests/storage/object_tests.rb +166 -0
  485. data/tests/internet_archive/requests/storage/versioning_tests.rb +258 -0
  486. data/tests/internet_archive/signaturev4_tests.rb +41 -0
  487. data/tests/internet_archive/signed_params_tests.rb +5 -0
  488. data/tests/openstack/models/compute/images_tests.rb +14 -0
  489. data/tests/openstack/models/compute/server_tests.rb +42 -1
  490. data/tests/openstack/models/identity/roles_tests.rb +1 -0
  491. data/tests/openstack/models/identity/user_tests.rb +2 -2
  492. data/tests/openstack/models/network/network_tests.rb +21 -1
  493. data/tests/openstack/models/storage/file_tests.rb +178 -0
  494. data/tests/openstack/requests/compute/limit_tests.rb +1 -1
  495. data/tests/openstack/requests/compute/tenant_tests.rb +2 -2
  496. data/tests/openstack/requests/identity/ec2_credentials_tests.rb +7 -4
  497. data/tests/openstack/requests/identity/helper.rb +17 -0
  498. data/tests/openstack/requests/identity/role_tests.rb +6 -0
  499. data/tests/openstack/requests/identity/tenant_tests.rb +14 -12
  500. data/tests/openstack/requests/identity/user_tests.rb +9 -5
  501. data/tests/openstack/requests/storage/container_tests.rb +64 -0
  502. data/tests/openstack/requests/storage/large_object_tests.rb +47 -0
  503. data/tests/openstack/requests/storage/object_tests.rb +84 -0
  504. data/tests/openstack/volume_tests.rb +15 -0
  505. data/tests/rackspace/cdn_tests.rb +78 -0
  506. data/tests/rackspace/helper.rb +9 -0
  507. data/tests/rackspace/models/compute_v2/flavors_tests.rb +1 -1
  508. data/tests/rackspace/models/compute_v2/image_tests.rb +2 -4
  509. data/tests/rackspace/models/compute_v2/images_tests.rb +1 -1
  510. data/tests/rackspace/models/compute_v2/metadata_tests.rb +5 -3
  511. data/tests/rackspace/models/compute_v2/network_tests.rb +10 -0
  512. data/tests/rackspace/models/compute_v2/networks_tests.rb +10 -0
  513. data/tests/rackspace/models/compute_v2/server_tests.rb +8 -7
  514. data/tests/rackspace/models/compute_v2/servers_tests.rb +5 -7
  515. data/tests/rackspace/models/dns/zones_tests.rb +22 -0
  516. data/tests/rackspace/models/identity/credentials_tests.rb +14 -5
  517. data/tests/rackspace/models/storage/account_tests.rb +28 -0
  518. data/tests/rackspace/models/storage/directories_tests.rb +29 -0
  519. data/tests/rackspace/models/storage/directory_tests.rb +141 -0
  520. data/tests/rackspace/models/storage/file_tests.rb +86 -11
  521. data/tests/rackspace/models/storage/metadata_tests.rb +174 -0
  522. data/tests/rackspace/requests/cdn/cdn_tests.rb +76 -0
  523. data/tests/rackspace/requests/compute/image_tests.rb +2 -2
  524. data/tests/rackspace/requests/compute_v2/image_tests.rb +6 -6
  525. data/tests/rackspace/requests/compute_v2/network_tests.rb +49 -0
  526. data/tests/rackspace/requests/identity/user_tests.rb +0 -4
  527. data/tests/rackspace/requests/storage/container_tests.rb +8 -1
  528. data/tests/rackspace/storage_tests.rb +8 -0
  529. data/tests/storage/helper.rb +3 -0
  530. metadata +341 -40
  531. data/docs/storage/aws.markdown +0 -21
  532. data/lib/fog/bin/virtual_box.rb +0 -57
  533. data/lib/fog/rackspace/docs/cloud_servers.md +0 -65
  534. data/lib/fog/rackspace/requests/identity/get_credentials.rb +0 -15
  535. data/lib/fog/virtual_box.rb +0 -11
  536. data/lib/fog/virtual_box/compute.rb +0 -59
  537. data/lib/fog/virtual_box/models/compute/medium.rb +0 -87
  538. data/lib/fog/virtual_box/models/compute/medium_format.rb +0 -34
  539. data/lib/fog/virtual_box/models/compute/mediums.rb +0 -32
  540. data/lib/fog/virtual_box/models/compute/nat_engine.rb +0 -65
  541. data/lib/fog/virtual_box/models/compute/nat_redirect.rb +0 -91
  542. data/lib/fog/virtual_box/models/compute/nat_redirects.rb +0 -41
  543. data/lib/fog/virtual_box/models/compute/network_adapter.rb +0 -82
  544. data/lib/fog/virtual_box/models/compute/network_adapters.rb +0 -42
  545. data/lib/fog/virtual_box/models/compute/server.rb +0 -199
  546. data/lib/fog/virtual_box/models/compute/servers.rb +0 -41
  547. data/lib/fog/virtual_box/models/compute/storage_controller.rb +0 -83
  548. data/lib/fog/virtual_box/models/compute/storage_controllers.rb +0 -38
data/Gemfile CHANGED
@@ -1,3 +1,3 @@
1
- source "http://rubygems.org"
1
+ source "https://rubygems.org"
2
2
 
3
3
  gemspec
data/README.md CHANGED
@@ -7,9 +7,9 @@ fog is the Ruby cloud services library, top to bottom:
7
7
  * Mocks make testing and integrating a breeze.
8
8
 
9
9
  [![Build Status](https://secure.travis-ci.org/fog/fog.png?branch=master)](http://travis-ci.org/fog/fog)
10
- [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/fog/fog)
11
10
  [![Gem Version](https://fury-badge.herokuapp.com/rb/fog.png)](http://badge.fury.io/rb/fog)
12
11
  [![Dependency Status](https://gemnasium.com/fog/fog.png)](https://gemnasium.com/fog/fog)
12
+ [![Code Climate](https://codeclimate.com/github/fog/fog.png)](https://codeclimate.com/github/fog/fog)
13
13
 
14
14
  ## Getting Started
15
15
 
@@ -1,3 +1,746 @@
1
+ 1.10.0 03/05/2013 2f30de2ab357a5bbdb505b94ada8aa637ba936f5
2
+ ==========================================================
3
+
4
+ Stats! { 'collaborators' => 45, 'downloads' => 1813647, 'forks' => 720, 'open_issues' => 117, 'watchers' => 2386 }
5
+
6
+ MVP! Rupak Ganguly
7
+
8
+ [Brightbox]
9
+ Adds update firewall request. thanks Paul Thornthwaite
10
+ Adds compatibility mode to template. thanks Paul Thornthwaite
11
+ Updates to requests. thanks Paul Thornthwaite
12
+
13
+ [Glesys]
14
+ Template list request does not take options. thanks Simon Gate
15
+ Only make one request when fetching templates. thanks Simon Gate
16
+ Fix template attributes, now they work. thanks Simon Gate
17
+ Attribute :keepip removed from server model. thanks Simon Gate
18
+ Clean up attributes on server model. thanks Simon Gate
19
+ Add public_ip_method to server model. thanks Simon Gate
20
+ Add setup method to copy fog ssh keys to server. thanks Simon Gate
21
+ Wrap ssh method to use rootpassword if present. thanks Simon Gate
22
+
23
+ [HP]
24
+ Add BlockStorage provider and add volumes and snapshots support. Add support for bootable volumes, persistent server, cross-tenant acls and temp urls. Add support for Windows instances. Merge the latest code from fog 1.9.0 release. thanks Rupak Ganguly
25
+
26
+ [HP|storage]
27
+ Fix generate_object_temp_url to use signer that is backward compatible to 1.8.7. thanks Rupak Ganguly
28
+
29
+ [Rackspace|Compute]
30
+ fixed issue with bootstrap method where server was ready, but it had not received an ipv4 address yet. Added check for ip address in server ready block as well as a timeout parameter. thanks Kyle Rames
31
+
32
+ [Rackspace|Storage]
33
+ This tests consistently fails on either ruby 1.8.7 or ruby 1.9.3 because hash order is indeterminate. I believe the spirt of this test is to ensure that only one header value is generated and thus I have updated the test to reflect that. thanks Kyle Rames
34
+
35
+ [aws]
36
+ Fixes typo in fetching credentials error. thanks Paul Thornthwaite
37
+ Fixes security group template. thanks Paul Thornthwaite
38
+
39
+ [aws|compute]
40
+ Fixes schema in image tests. thanks Paul Thornthwaite
41
+
42
+ [aws|dynamodb]
43
+ fix port to match https default closes #1531. thanks geemus
44
+
45
+ [aws|rds]
46
+ remove some superfluous reloads, hopefully help with travis test timing issues. thanks geemus
47
+
48
+ [aws|storage]
49
+ Fixes Yard tags. thanks Paul Thornthwaite
50
+
51
+ [bluebox|blb]
52
+ clean up, define types returned. thanks Josh Yotty
53
+ some cleanup of model stubs. thanks Josh Yotty
54
+ add model to application and server collections. thanks Josh Yotty
55
+ require model. thanks Josh Yotty
56
+ require model. thanks Josh Yotty
57
+ fix more stub/copypaste inanity. thanks Josh Yotty
58
+ lb_service collection implementation. thanks Josh Yotty
59
+ service must be passed from caller. thanks Josh Yotty
60
+ atone for additional sins in the lb service and backend models. thanks Josh Yotty
61
+ add last set of index requests for lb_machines. thanks Josh Yotty
62
+ add_machine. thanks Josh Yotty
63
+ rename for consistency. thanks Josh Yotty
64
+ typo, whitespace. thanks Josh Yotty
65
+ lb_machine API coverage. thanks Josh Yotty
66
+ missing end. thanks Josh Yotty
67
+ testing stubs. thanks Josh Yotty
68
+ rename to tests, plural. thanks Josh Yotty
69
+ more request tests, missing comma. thanks Josh Yotty
70
+ parsing is hard, let's go shopping. thanks Josh Yotty
71
+ account for text/plain endpoint. thanks Josh Yotty
72
+ update tests. thanks Josh Yotty
73
+
74
+ [core]
75
+ Uses Logger deprecation for Compute.new. thanks Paul Thornthwaite
76
+ Fix display_stdout to process multiple lines output. thanks Rupak Ganguly
77
+
78
+ [dreamhost|dns]
79
+ remove connection deprecation notices. thanks Sergio Rubio
80
+ Use the new fog-dream.com domain for testing. thanks Sergio Rubio
81
+ remove silly debugging code. thanks Sergio Rubio
82
+ do not delete the do-not-delete record when testing. thanks Sergio Rubio
83
+ added test helpers. thanks Sergio Rubio
84
+ Added README.md file documenting testing procedure. thanks Sergio Rubio
85
+ Removed get_record request. thanks Sergio Rubio
86
+ refactor dns requests tests. thanks Sergio Rubio
87
+ added Record model tests, fix Record.save. thanks Sergio Rubio
88
+ record tests fixes. thanks Sergio Rubio
89
+ Emulate zone model and collection, added tests. thanks Sergio Rubio
90
+ Do not add duplicated zones to the Zones collection. thanks Sergio Rubio
91
+ Moved getting started guide to examples/dns. thanks Sergio Rubio
92
+ Zone.records: list only records matching the current zone. thanks Sergio Rubio
93
+ Updated testing documentation. thanks Sergio Rubio
94
+ Updated Dreamhost/DNS getting started guide. thanks Sergio Rubio
95
+ drop uuid gem requirements, not needed. thanks Sergio Rubio
96
+ drop uuid gem dep from fog.gemspec. thanks Sergio Rubio
97
+ Add dreamhost to the list of providers. thanks Sergio Rubio
98
+
99
+ [dreamhost|docs]
100
+ Added getting started guide, initial release. thanks Sergio Rubio
101
+
102
+ [dremhost|dns]
103
+ added DNS service tests. thanks Sergio Rubio
104
+
105
+ [ecloud]
106
+ fixed object returns in mock. thanks Eugene Howe
107
+
108
+ [fog]
109
+ Typo fixed in identity. thanks Anshul Khandelwal
110
+ Cleanup: Use the service registry for requiring libs where possible. thanks Anshul Khandelwal
111
+
112
+ [glesys]
113
+ Add description to server model. thanks Simon Gate
114
+ Ability to pass in options to server details. thanks Simon Gate
115
+ Consistent naming of attributes. thanks Simon Gate
116
+ ip details should be ip details, not listfree. thanks Simon Gate
117
+ Fix ip model name to match nameing convention. thanks Simon Gate
118
+ Fix ip attributes, they didn't work. thanks Simon Gate
119
+ Return nil if there isn't any public ip address. thanks Simon Gate
120
+ Refactor the ip interface, did not work earlier. thanks Simon Gate
121
+ add take method to ip model. thanks Simon Gate
122
+ Fix error in ip tests. thanks Simon Gate
123
+ Make compute test pass. thanks Simon Gate
124
+ Attributes were overwritten when getting server details. thanks Simon Gate
125
+ Fix bug when trying to attach a ip to a server. thanks Simon Gate
126
+ Platform methods to templates. thanks Simon Gate
127
+ Rename template model to match Fog convention. thanks Simon Gate
128
+ Remove unused features from template model. thanks Simon Gate
129
+
130
+ [hp/openstack|compute]
131
+ remove erroneous block argument to get_object; fixes issue #1588 for OpenStack and HP. thanks Kyle Rames
132
+
133
+ [libvirt|volume]
134
+ Fix typo in image_suffix. thanks David Wittman
135
+
136
+ [misc]
137
+ Enable ebs-optimized spot instance requests. thanks Adam Bozanich
138
+ test spot instance request parser. thanks Adam Bozanich
139
+ add internet_archive to fog providers, bin, storage. thanks Andrew Kuklewicz
140
+ and internet_archive code, tests. thanks Andrew Kuklewicz
141
+ fix testing mock. thanks Andrew Kuklewicz
142
+ set defaults to be scheme http, port 80, as that is what internet_archive supports. thanks Andrew Kuklewicz
143
+ Pass the management URI if no public endpoint. thanks BK Box
144
+ Need to check for management variable as well. thanks BK Box
145
+ Add support for pulling out virtualization type when parsing AWS Describe Instances results. thanks Brad Heller
146
+ Ignore tags. thanks Brad Heller
147
+ NextMarker => NextToken. Maybe that's what it used to be...?. thanks Brad Heller
148
+ Fix Params related to network configuration. thanks Chirag Jog
149
+ Support to Configure the VM network. thanks Chirag Jog
150
+ Ability to track vApp level status of readiness. thanks Chirag Jog
151
+ Fix Params related to network configuration. thanks Chirag Jog
152
+ Support to Configure the VM network. thanks Chirag Jog
153
+ Ability to track vApp level status of readiness. thanks Chirag Jog
154
+ Remove extraneous print. thanks Chirag Jog
155
+ Remove existing (unused) parser module and introduce a TerremarkParser - which extends the base parser with the ability to extract relevant attributes. thanks Chirag Jog
156
+ Use the TerremarkParser to extract relevant attributes. thanks Chirag Jog
157
+ Minor Fix to delete the internet service. thanks Chirag Jog
158
+ OpenStack: update used limits tests. thanks Dan Prince
159
+ OpenStack: update tenant_list tests. thanks Dan Prince
160
+ OpenStack: get identity tests passing in real mode. thanks Dan Prince
161
+ Drop 'extras' from tenant test validations. thanks Dan Prince
162
+ Openstack: fix bin/openstack.rb errors. thanks Dan Prince
163
+ OpenStack Compute: Fix server model metadata. thanks Dan Prince
164
+ OpenStack: Add missing metadatum requests. thanks Dan Prince
165
+ vsphere: Support multiple NIC backings. thanks Ewoud Kohl van Wijngaarden
166
+ vsphere: Allow listing virtual port groups. thanks Ewoud Kohl van Wijngaarden
167
+ Add a zones.find(substring) method to return only zones whose name matches that substring. thanks H. Wade Minter
168
+ Add initial support for pulling in >100 zones via Zones.each. thanks H. Wade Minter
169
+ Get rid of the extra load() calls. thanks H. Wade Minter
170
+ copy & paste to get Blocks LB API working. thanks Josh Yotty
171
+ register blb feature. thanks Josh Yotty
172
+ Rudimentary CRUD for AWS Data Pipeline. thanks Keith Barrette
173
+ Simple model tests. thanks Keith Barrette
174
+ Simple request tests. thanks Keith Barrette
175
+ Fix failing model tests. thanks Keith Barrette
176
+ Mark data pipeline tests pending if mocked. thanks Keith Barrette
177
+ Make compatible with Ruby 1.8.7. thanks Keith Barrette
178
+ Finished initial draft of Cloud Server docs. thanks Kyle Rames
179
+ updating Rackspace Cloud Server Documentation. thanks Kyle Rames
180
+ moving documents to another branch. thanks Kyle Rames
181
+ adding white space to force travis build. thanks Kyle Rames
182
+ refined examples; moved samples into cloud_servers sub directory. thanks Kyle Rames
183
+ moving examples; added readme. thanks Kyle Rames
184
+ tweaking example readme file. thanks Kyle Rames
185
+ tweaking examples document. thanks Kyle Rames
186
+ merging with latest master. thanks Kyle Rames
187
+ Adding Rackspace getting started and compute documents back in. thanks Kyle Rames
188
+ apply edits to Rackspace compute documents. thanks Kyle Rames
189
+ fixing links to anchors in Rackspace Compute doc. thanks Kyle Rames
190
+ fixing links to anchors in Rackspace Compute doc one more time. thanks Kyle Rames
191
+ fixing links to anchors in Rackspace Compute doc AGAIN. thanks Kyle Rames
192
+ fixing merge conflicts. thanks Kyle Rames
193
+ added 30 second timeout for SSH and SCP connect. thanks Kyle Rames
194
+ moved cloud servers examples to lib/fog/rackspace/examples/compute_v2; renamed cloud_servers.md to compute_v2.md. thanks Kyle Rames
195
+ rebased with master. thanks Kyle Rames
196
+ merging with the latest file_metadata. thanks Kyle Rames
197
+ rebasing cdn branch with latest master. thanks Kyle Rames
198
+ rebasing with master. thanks Kyle Rames
199
+ rebasing with master. thanks Kyle Rames
200
+ rebasing with master. thanks Kyle Rames
201
+ fixing broken tests. thanks Kyle Rames
202
+ Revert "[rackspace] adding accept headers to block_storage, cdn, compute_v2, databases, identity, load_balancers, storage". thanks Kyle Rames
203
+ Revert "Revert "[rackspace] adding accept headers to block_storage, cdn, compute_v2, databases, identity, load_balancers, storage"". thanks Kyle Rames
204
+ Follow redirection from response even if response is a Hash. thanks Marc G Gauthier
205
+ Set the User-Agent as Fog, to help differentiate from HP's CLI tools that have a vendored 'hpfog'. thanks Matt Ray
206
+ Make sure no requests are ever sent to the wrong endpoint by default. thanks Matt Sanders
207
+ Bump release to 0.0.7. thanks Matt Sanders
208
+ Remove matt as contact. thanks Matt Sanders
209
+ Bumped net-scp dependency to ~>1.1. thanks Michael D. Hall
210
+ remove unneeded url param. thanks Michał Krzyżanowski
211
+ Fix Mock#allocate_address method arity. thanks Mike Moore
212
+ Fix Mock#get_snapshot_details argument. thanks Mike Moore
213
+ Fix Mock#get_volume_details argument. thanks Mike Moore
214
+ Fix Mock#list_servers method arity. thanks Mike Moore
215
+ Fix Mock#remove_fixed_ip arguments. thanks Mike Moore
216
+ Fix Mock#update_server arguments. thanks Mike Moore
217
+ Removes docs since they are in wrong repo. thanks Paul Thornthwaite
218
+ Adds new Code Climate badge to README. thanks Paul Thornthwaite
219
+ Disables tests with race conditions affecting CI. thanks Paul Thornthwaite
220
+ Update gitignore and add a rvmrc file. thanks Rupak Ganguly
221
+ Add a new HP provider. thanks Rupak Ganguly
222
+ Add a case for the new HP provider. thanks Rupak Ganguly
223
+ Add a new HP provider. thanks Rupak Ganguly
224
+ Add a storage service implementation to the HP provider. thanks Rupak Ganguly
225
+ Add #get_containers, #get_container, #put_container and #delete_container methods to the storage service. thanks Rupak Ganguly
226
+ Add #head_containers and #head_container methods. thanks Rupak Ganguly
227
+ Enable #get, #put, #head and #delete object methods. thanks Rupak Ganguly
228
+ Add implementation for #get_object method. thanks Rupak Ganguly
229
+ Add implementation for #put_object method. thanks Rupak Ganguly
230
+ Add implementation for #head_object method. thanks Rupak Ganguly
231
+ Add implementation for #delete_object method. thanks Rupak Ganguly
232
+ Enable models layer methods and return nil from cdn call. thanks Rupak Ganguly
233
+ Add the directories model implementation. thanks Rupak Ganguly
234
+ Add the directory model implementation. thanks Rupak Ganguly
235
+ Add the files model implementation. thanks Rupak Ganguly
236
+ Add the file model implementation. thanks Rupak Ganguly
237
+ Add an implementation of copy method to copy files between containers. thanks Rupak Ganguly
238
+ Require HP provider for the fog binary. thanks Rupak Ganguly
239
+ Add a HP provider class for the fog binary. thanks Rupak Ganguly
240
+ Enable compute service with HP provider. Refactor hp_auth_url into hp_host, hp_port and hp_auth_path to enable flexibility in specifying the host, port and auth path separately. thanks Rupak Ganguly
241
+ Add the new hp_host, hp_port and hp_auth_path attributes and remove hp_auth_url. thanks Rupak Ganguly
242
+ Add a new HP provider for compute service. Note the new hp_host, hp_port and hp_auth_path attributes. thanks Rupak Ganguly
243
+ Add a case for the new HP provider for compute service. thanks Rupak Ganguly
244
+ Add the #list_servers method. thanks Rupak Ganguly
245
+ Enable #create_server, #list_servers and #list_servers_detail services for Nova. thanks Rupak Ganguly
246
+ Add implementation for #list_servers_detail. thanks Rupak Ganguly
247
+ Enable #list_images and #list_images_detail services. thanks Rupak Ganguly
248
+ Add implementation for #list_images service. thanks Rupak Ganguly
249
+ Add implementation for #list_images_detail service. thanks Rupak Ganguly
250
+ Enable #list_flavors and #list_flavors_detail services for Nova. thanks Rupak Ganguly
251
+ Add implementation for #list_flavors service. thanks Rupak Ganguly
252
+ Add implementation for #list_flavors_detail service. thanks Rupak Ganguly
253
+ Add implementation for #get_server_details service. thanks Rupak Ganguly
254
+ Add implementation for #get_image_details service. thanks Rupak Ganguly
255
+ Add implementation for #get_flavor_details service. thanks Rupak Ganguly
256
+ Enable #get_server_details, #get_image_details and #get_flavor_details services for Nova. thanks Rupak Ganguly
257
+ Add implementation for #create_server service. thanks Rupak Ganguly
258
+ Enable #create_image and #delete_image services. thanks Rupak Ganguly
259
+ Add implementation for #create_image service. thanks Rupak Ganguly
260
+ Add implementation for #delete_image service. thanks Rupak Ganguly
261
+ Enable the #create_server, #update_server and #delete_server services for Nova. thanks Rupak Ganguly
262
+ Update code with differences from Rackspace API and OS, to make it work with the Nova instance. thanks Rupak Ganguly
263
+ Add the implementation for #update_server services. thanks Rupak Ganguly
264
+ Add the implementation for #delete_server services. thanks Rupak Ganguly
265
+ Enable #list_addresses, #list_public_addresses and #list_private_addresses services for Nova. thanks Rupak Ganguly
266
+ Add implementation for #list_addresses service. thanks Rupak Ganguly
267
+ Add implementation for #list_public_addresses service. thanks Rupak Ganguly
268
+ Add implementation for #list_private_addresses service. thanks Rupak Ganguly
269
+ Enable #server_action, #reboot_server, #resize_server, #confirm_resized_server and #revert_resized services for Nova. thanks Rupak Ganguly
270
+ Add implementation for #server_action, #reboot_server, #resize_server, #confirm_resized_server and #revert_resized services. thanks Rupak Ganguly
271
+ Enable flavors and flavor models. thanks Rupak Ganguly
272
+ Add implementation for flavors and flavor model layer. thanks Rupak Ganguly
273
+ Enable images and image models. thanks Rupak Ganguly
274
+ Add implementation for images and image model layers. thanks Rupak Ganguly
275
+ Enable models for servers and server for Nova services. thanks Rupak Ganguly
276
+ Add implementaion for servers model. thanks Rupak Ganguly
277
+ Add implementaion for server model. thanks Rupak Ganguly
278
+ Refactor connection parameters to accept a single endpoint and credentials. thanks Rupak Ganguly
279
+ Refactor Nova connection parameters to accept a single endpoint and credentials. thanks Rupak Ganguly
280
+ Add a options hash so that headers can be passed in to set acls. thanks Rupak Ganguly
281
+ Fix public_url property to generate a url when cdn is not enabled. Also, create a new url method that returns the full url. thanks Rupak Ganguly
282
+ Add a helper method to convert a acl string to a header name/value pair that Swift understands. thanks Rupak Ganguly
283
+ Add an acl property that will allow setting of acls strings. Also, add fix the public property to now toggle the appropriate acl string. thanks Rupak Ganguly
284
+ Remove Content-Length header incase Transfer-Encoding header is present. This was done to get the streaming for PUT working. thanks Rupak Ganguly
285
+ Fix a JSON parse error for Nova service methods like reboot. The server returns plain text instead of JSON text and hence JSON.parse barfs. thanks Rupak Ganguly
286
+ Revise fog gemspec to reflect hpfog name and tag it with v0.0.6. thanks Rupak Ganguly
287
+ Add mocking support to Swift HP provider calls. thanks Rupak Ganguly
288
+ Add a public? method to query a directory's state. thanks Rupak Ganguly
289
+ Add header_to_acl helper method to convert an acl header into corresponding acl strings. thanks Rupak Ganguly
290
+ Retrieve acl headers if present and set the acl string on a directory. thanks Rupak Ganguly
291
+ Add a check to see if acl string is nil and if so set it to 'private'. thanks Rupak Ganguly
292
+ Change serverRef to serverId. This was a change from Rackspace API but has been sync'd upon now. thanks Rupak Ganguly
293
+ Change flavorRef to flavorId and imageRef to imageId. This was a change from Rackspace API but has been sync'd upon now. thanks Rupak Ganguly
294
+ Fix DEVEX-634: Remove services that our out of scope. thanks Rupak Ganguly
295
+ Add CHANGELOG for HP specific fog extensions. thanks Rupak Ganguly
296
+ Add README with documentation for HP specific fog extensions. thanks Rupak Ganguly
297
+ Bump version. thanks Rupak Ganguly
298
+ Fix differences that were there in OS API. thanks Rupak Ganguly
299
+ Add special char. support including '?' in container and object names. thanks Rupak Ganguly
300
+ Add a helper method to expose some base info. for clients. thanks Rupak Ganguly
301
+ Bump version and update changelog. thanks Rupak Ganguly
302
+ Fix bug DEVEX-1296. Encode container and object names for public_url. thanks Rupak Ganguly
303
+ Update changelog. thanks Rupak Ganguly
304
+ Update date for release. thanks Rupak Ganguly
305
+ Change flavorId to flavorRef and imageId to imageRef as the specs changed. Also, change expected status to be 202 instead of 200. thanks Rupak Ganguly
306
+ Change expected status to be 204 instead of 202. thanks Rupak Ganguly
307
+ Change expected status to be 204 instead of 200. thanks Rupak Ganguly
308
+ Update date for fog merge with upstream milestone. thanks Rupak Ganguly
309
+ Add connection options param to the HP provider for Storage and Compute services that can be used to customize various connection related timeouts and other options. thanks Rupak Ganguly
310
+ Remove deprecated provider recognize clause. thanks Rupak Ganguly
311
+ Enable HP CDN provider. thanks Rupak Ganguly
312
+ Integrate HP CDN service with storage service. thanks Rupak Ganguly
313
+ Fix small bug with returning public url in the case when cdn is used. thanks Rupak Ganguly
314
+ Add initial implementation for cdn services i.e. GET, PUT, POST, HEAD and DELETE. thanks Rupak Ganguly
315
+ Hardcode X-Storage-Url as service is returning wrong url. thanks Rupak Ganguly
316
+ Assign hp_auth_uri to an instance var. so that CDN can use it. thanks Rupak Ganguly
317
+ Enable delete_container on the CDN service. thanks Rupak Ganguly
318
+ Add fix for special chars. in CDN-enabled container names. thanks Rupak Ganguly
319
+ Catch new exception that is being thrown. thanks Rupak Ganguly
320
+ Update code to call delete_container if CDN is enabled. thanks Rupak Ganguly
321
+ Make headers camel cased in public_url and remove manipulation of public_url in save method. Use delete_container in CDN context instead of out_container. thanks Rupak Ganguly
322
+ Remove CDN integration from within Storage service, till CDN service is more mature. thanks Rupak Ganguly
323
+ Update image and images model, and create_image call now uses server_action. Behavior change in Diablo 4. thanks Rupak Ganguly
324
+ Add new request layer method for rebuild_server and enable it for compute services. Behavior added in Diablo 4. thanks Rupak Ganguly
325
+ Enable new compute services. thanks Rupak Ganguly
326
+ Add name, accessIPv4 and accessIPv6 as properties. Change create_server signature to include the now required name param. Breaking change due to OS API. thanks Rupak Ganguly
327
+ Add new attributes, update flavor and image attributes and add corresponding accessors for them. Add new methods for rebuild, resize, revert_resize, confirm_resize, and create_image. Update save method to use new attributes. Update create_server call to pass in name param. thanks Rupak Ganguly
328
+ Remove resize related calls as they are not fully functional yet. thanks Rupak Ganguly
329
+ Update changelog for 0.0.10 tagged version. thanks Rupak Ganguly
330
+ Add a new option for CDN endpoint url and build the CDN mgmt url. thanks Rupak Ganguly
331
+ Add a new cdn uri to the Storage service to enable a CDN service from within the Storage service. thanks Rupak Ganguly
332
+ Update destroy and save methods to call appropriate CDN counterparts when CDN service is available and enabled. thanks Rupak Ganguly
333
+ Add some new attributes. Fix image_id and flavor_id getters. thanks Rupak Ganguly
334
+ Add request and model methods for change_password_server, and enable it for compute. thanks Rupak Ganguly
335
+ Add list_key_pairs compute request layer method, and mocks for it as well. thanks Rupak Ganguly
336
+ Add some mocking helper methods. thanks Rupak Ganguly
337
+ Fix issue with list in mock mode. thanks Rupak Ganguly
338
+ Enable create_key_pair service for compute. Add key_pairs array for mocking support. thanks Rupak Ganguly
339
+ Add implementation for creating keypair and also provide mocking support. thanks Rupak Ganguly
340
+ Remove a debug message. thanks Rupak Ganguly
341
+ Fix param name. thanks Rupak Ganguly
342
+ Enable delete_key_pair request method and implement it, along with mocking support. thanks Rupak Ganguly
343
+ Enable and implement key pairs model layer for compute service. thanks Rupak Ganguly
344
+ Add implementation for list_security_groups request layer method and enable it for compute services. Add mocking support as well. thanks Rupak Ganguly
345
+ Fix a small typo in mocks. thanks Rupak Ganguly
346
+ Enable and implemented create_security_groups method for request layer for compute services. thanks Rupak Ganguly
347
+ Fix code to remove from last modified hash afetr delete in mock code. thanks Rupak Ganguly
348
+ Use id instead of name to index the security groups hash in mock data structure. thanks Rupak Ganguly
349
+ Enable and implemented delete_security_groups method in requets layer for compute services. thanks Rupak Ganguly
350
+ Enable and implement create, get and delete security group methods for compute service. thanks Rupak Ganguly
351
+ Enable and add the security groups model layer implementation for the compute services. thanks Rupak Ganguly
352
+ Enable and add implementation for create security group rules for compute service. thanks Rupak Ganguly
353
+ Fix bugs in mocking support. thanks Rupak Ganguly
354
+ Small fix in mocks. thanks Rupak Ganguly
355
+ Enable and implement delete security group rules for compute service. thanks Rupak Ganguly
356
+ Add security group rule methods to security group model. thanks Rupak Ganguly
357
+ Fix create_rule to return response instead of boolean. thanks Rupak Ganguly
358
+ Add helper methods for mocking. thanks Rupak Ganguly
359
+ Enable and implement allocate address with mocking support for compute services. thanks Rupak Ganguly
360
+ Add options for keyname, security group and availability zone. thanks Rupak Ganguly
361
+ Enable and add implementation for release address for request layer for the compute service. thanks Rupak Ganguly
362
+ Fix documentation. thanks Rupak Ganguly
363
+ Enable and implement get address for request layer along with mocking support for the compute service. thanks Rupak Ganguly
364
+ Rename these to add a server prefix as they pertain to server addresses. thanks Rupak Ganguly
365
+ Enable and implement list addresses for request layer for the compute service. thanks Rupak Ganguly
366
+ Enable and implement the address model layer for the compute service. thanks Rupak Ganguly
367
+ Fix the documentation. thanks Rupak Ganguly
368
+ Enable and add associating and disassociating addresses to a server instance in the request layer for the compute service. thanks Rupak Ganguly
369
+ Add new attributes and revise addresses hash structure for the mock. thanks Rupak Ganguly
370
+ Fix doc, and status. thanks Rupak Ganguly
371
+ Revise implementation for returning private and public ip addresses for a given server, along with mocking support. thanks Rupak Ganguly
372
+ Revise mocking support to manage ip address collection in servers. thanks Rupak Ganguly
373
+ Add server attribute to associate and disassociate a server to an address. thanks Rupak Ganguly
374
+ Remove some attributes from object. thanks Rupak Ganguly
375
+ Add support for passing in key pairs, security groups, availability zone and min/max count to the create server request layer method. thanks Rupak Ganguly
376
+ Update the server model to support passing in keypairs and security groups. thanks Rupak Ganguly
377
+ Fix some verbiage and update some links. thanks Rupak Ganguly
378
+ Remove instance_id as an accessor. thanks Rupak Ganguly
379
+ Add vcpus as an attribute. thanks Rupak Ganguly
380
+ Add back some attributes. thanks Rupak Ganguly
381
+ Update inline docs to add some params. thanks Rupak Ganguly
382
+ Update changelog with changes for this version release. thanks Rupak Ganguly
383
+ Bump version to 0.0.11. thanks Rupak Ganguly
384
+ Update HP provider with the new CS authentication method and also refactor the legacy authentication method. Also, update HP Storage provider to use the CS authentication scheme. thanks Rupak Ganguly
385
+ Retrofit HP Storage provider to work with both legacy and CS authentication schemes. thanks Rupak Ganguly
386
+ Refactor code to get endpoints from service catalog for v1 and v2 auths. thanks Rupak Ganguly
387
+ Update Storage provider to work with v1 and v2 auths. thanks Rupak Ganguly
388
+ Update CDN provider to work with v1 and v2 auths. Also, patch code for incorrect endpoint via CS catalog. thanks Rupak Ganguly
389
+ Update for cdn endpoint fix in place. thanks Rupak Ganguly
390
+ Update inline docs as per real responses. thanks Rupak Ganguly
391
+ Update CDN integration with Storage with respect to CS authentication. thanks Rupak Ganguly
392
+ Update HP Compute provider to use CS authentication and retrofit code to use v1 auth as well. thanks Rupak Ganguly
393
+ Add cdn_enabled?, cdn_enable= and cdn_public_url for directory model. Also, add cdn_public_url for file model. thanks Rupak Ganguly
394
+ Add connection_options for AWS Compute provider. thanks Rupak Ganguly
395
+ Refactor to remove service_type param from provider call. thanks Rupak Ganguly
396
+ Update inline documentation. thanks Rupak Ganguly
397
+ Escape the key in the call. thanks Rupak Ganguly
398
+ Remove bits and cores from flavor. thanks Rupak Ganguly
399
+ Add cores as an attribute to alias vcpus. thanks Rupak Ganguly
400
+ Add some attributes that are implemented as methods. thanks Rupak Ganguly
401
+ Add copyright message for HP extensions for fog. thanks Rupak Ganguly
402
+ Bump version and update changelog. thanks Rupak Ganguly
403
+ Update copyright notice. thanks Rupak Ganguly
404
+ Update inline documentation. thanks Rupak Ganguly
405
+ Fix for auth uri using Identity service. thanks Rupak Ganguly
406
+ Add parameter :hp_avl_zone to access the az2 availability zone to the HP Compute provider. thanks Rupak Ganguly
407
+ Bump version and update changelog. thanks Rupak Ganguly
408
+ Bump version and update changelog. thanks Rupak Ganguly
409
+ Bump version and update changelog. thanks Rupak Ganguly
410
+ Add key_pair get/set methods for server model. thanks Rupak Ganguly
411
+ Hack to fix public_ip_address. thanks Rupak Ganguly
412
+ Fix for Fog::HP::CDN::NotFound exception. thanks Rupak Ganguly
413
+ Update public_ip_address method to return first public ip address. thanks Rupak Ganguly
414
+ Bump version and update changelog. thanks Rupak Ganguly
415
+ Add an Errors module for handling HP provider specific exceptions. thanks Rupak Ganguly
416
+ Refactor escape method for container and object names and move it to the HP provider from individual namespaces. thanks Rupak Ganguly
417
+ Remove obsolete method. thanks Rupak Ganguly
418
+ Remove bad service. thanks Rupak Ganguly
419
+ Fix mock to return integer value for count. thanks Rupak Ganguly
420
+ Raise the correct exception in the mock. thanks Rupak Ganguly
421
+ Add HP provider and credentials to support testing with mocks. thanks Rupak Ganguly
422
+ Fix mocks to match real implementation. thanks Rupak Ganguly
423
+ Add object tests for storage. thanks Rupak Ganguly
424
+ Add mocking support for copy operation using puut object. thanks Rupak Ganguly
425
+ Add more tests for containers and objects. thanks Rupak Ganguly
426
+ Fix an issue in copy mocking portion. thanks Rupak Ganguly
427
+ Add test for copy objects. thanks Rupak Ganguly
428
+ Add test for copying from one container to another. thanks Rupak Ganguly
429
+ Fix format of flavors in mocks. thanks Rupak Ganguly
430
+ Add tests for flavor. thanks Rupak Ganguly
431
+ Add implementation for mocks. thanks Rupak Ganguly
432
+ Add mocking support. thanks Rupak Ganguly
433
+ Minor fix for mocks. thanks Rupak Ganguly
434
+ Add tests for images. thanks Rupak Ganguly
435
+ Update mocking support. thanks Rupak Ganguly
436
+ Add tests for server requests. thanks Rupak Ganguly
437
+ Update mocking support. thanks Rupak Ganguly
438
+ Add tests for addresses and floating ips. thanks Rupak Ganguly
439
+ Fix minor things in tests. thanks Rupak Ganguly
440
+ Update mocking support. thanks Rupak Ganguly
441
+ Add tests for keypairs. thanks Rupak Ganguly
442
+ Update mocking support for security groups. thanks Rupak Ganguly
443
+ Add tests for security groups. thanks Rupak Ganguly
444
+ Update mocking support for security groups and security group rules. thanks Rupak Ganguly
445
+ Add tests for security group rules. thanks Rupak Ganguly
446
+ Fix mocks for create_key_pair. thanks Rupak Ganguly
447
+ Fix mocks for list_key_pairs. thanks Rupak Ganguly
448
+ Fix format for list_key_pairs. thanks Rupak Ganguly
449
+ Add tests for address model and addresses collection. thanks Rupak Ganguly
450
+ Add HP provider in the helper. thanks Rupak Ganguly
451
+ Add tests for key_pair model and key_pairs collection. thanks Rupak Ganguly
452
+ Add tests for security group model and collection. thanks Rupak Ganguly
453
+ Add HP credential params. thanks Rupak Ganguly
454
+ Add HP credential params for mocking support. thanks Rupak Ganguly
455
+ Add mocking support for HP CDN provider. thanks Rupak Ganguly
456
+ Add tests for CDN containers. thanks Rupak Ganguly
457
+ Update mocks to simulate real results in containers. thanks Rupak Ganguly
458
+ Update tests and mocks based on real pro data. thanks Rupak Ganguly
459
+ Update tests and mock formats based on real pro data. thanks Rupak Ganguly
460
+ Update mocks to simulate real behavior. thanks Rupak Ganguly
461
+ Update key pair tests to work with real pro results. thanks Rupak Ganguly
462
+ Update mocks to simulate real results. thanks Rupak Ganguly
463
+ Update mocks and tests to simulate real results. thanks Rupak Ganguly
464
+ Update mocks and tests to simulate real results. thanks Rupak Ganguly
465
+ Update mocks and tests for flavor to simulate real results. thanks Rupak Ganguly
466
+ Update mocks and tests to simulate real calls in pro. thanks Rupak Ganguly
467
+ Update mocks for address in create_server and corresponding tests. thanks Rupak Ganguly
468
+ Add hp_tenant_id as a required param for connection to HP providers. thanks Rupak Ganguly
469
+ Update default scheme from http to https in the v1 auth. thanks Rupak Ganguly
470
+ Add uuid and links atrributes to the list servers mock. thanks Rupak Ganguly
471
+ Pass connection_options hash to the cdn connection in the storage provider. thanks Rupak Ganguly
472
+ Fix a bug where cdn state was not preserved. thanks Rupak Ganguly
473
+ Add helper method for cdn public ssl url and remove check for hp_cdn_ssl flag. thanks Rupak Ganguly
474
+ Add helper method for cdn public url for file. thanks Rupak Ganguly
475
+ Add helper method to get cdn ssl url for the files collection. thanks Rupak Ganguly
476
+ Add and enable get_console_output request method and add server method console_output. Add test for get_console_output. thanks Rupak Ganguly
477
+ Add avl zone as required param. Update endpoint retrieving logic from catalog to allow future avl zones. Fix minor error in tests. thanks Rupak Ganguly
478
+ Add avl zone as required param. Update endpoint retrieving logic from catalog to allow future avl zones. Fix minor error in tests. thanks Rupak Ganguly
479
+ Add availability zone required parameter for storage and cdn services. thanks Rupak Ganguly
480
+ Add availability zone required parameter for storage and cdn services. thanks Rupak Ganguly
481
+ Minor fix. thanks Rupak Ganguly
482
+ Add security_groups attribute to the server model. thanks Rupak Ganguly
483
+ Change hp_service_type to check for 'name' in the service catalog rather than 'type'. thanks Rupak Ganguly
484
+ Update tests to reflect addition of security_groups attribute to server model. thanks Rupak Ganguly
485
+ Update to not raise exception if service is not active or not present. thanks Rupak Ganguly
486
+ Upgrade to excon version 0.13.0 to take advantage of the ssl_verify_peer and ssl_ca_file params via the connection_options hash. Also, remove the use of :hp_servicenet setting for ssl for storage and compute providers. thanks Rupak Ganguly
487
+ Add request layer code for metadata. thanks Rupak Ganguly
488
+ Update mocking support for metadata to match real responses. thanks Rupak Ganguly
489
+ Add tests for metadata requests methods. thanks Rupak Ganguly
490
+ Minor fix to mocks. thanks Rupak Ganguly
491
+ Add metadata models support. Also, include metadata attribute in server and image models, to manage metadata. thanks Rupak Ganguly
492
+ Add some more metadata requests tests. thanks Rupak Ganguly
493
+ Minor fix and add a destroy method. thanks Rupak Ganguly
494
+ Add metadata tests for servers and images. thanks Rupak Ganguly
495
+ Fix code to metadata to the create image call. thanks Rupak Ganguly
496
+ Add an attribute for network_name to make it easy to switch. thanks Rupak Ganguly
497
+ Add a multi_json require so that json parsing is available. thanks Rupak Ganguly
498
+ Bump version and update changelog. thanks Rupak Ganguly
499
+ Update call to include response_block rather than passing a block, to conform to excon deprecation message. thanks Rupak Ganguly
500
+ Add attributes to image model by extracting them from metadata. thanks Rupak Ganguly
501
+ Add a BlockStorage service to the HP provider. thanks Rupak Ganguly
502
+ Add list_volumes for block storage. thanks Rupak Ganguly
503
+ Add get_volume_details request method for block storage. thanks Rupak Ganguly
504
+ Add delete_volumes request method for block storage. thanks Rupak Ganguly
505
+ Add create_volume request method for block storage service. thanks Rupak Ganguly
506
+ Add ability to send in metadata to create_volume request method. thanks Rupak Ganguly
507
+ Fix mock for tests. thanks Rupak Ganguly
508
+ Fix typo in service folder. thanks Rupak Ganguly
509
+ Add the block storage service to the binary. thanks Rupak Ganguly
510
+ Fix mock for tests. thanks Rupak Ganguly
511
+ Add shindo tests for requests methods for block storage. thanks Rupak Ganguly
512
+ Add server attach block storage request methods. thanks Rupak Ganguly
513
+ Add list_server_volumes request method for block storage service. thanks Rupak Ganguly
514
+ Add attach_volume request method for block storage service. thanks Rupak Ganguly
515
+ Add detach_volume request method for block storage service. thanks Rupak Ganguly
516
+ Add shindo tests for server volume request methdos for block storage service. thanks Rupak Ganguly
517
+ Add volume model and volumes collection for block storage service. thanks Rupak Ganguly
518
+ Add shindo tests for volume models and collection. thanks Rupak Ganguly
519
+ Fix mock to provide correct status after creation. thanks Rupak Ganguly
520
+ Add a compute service attribute to peek into the compute service from within the block_storage service. thanks Rupak Ganguly
521
+ Add attach and detach methods to the volume model using the compute service attribute. thanks Rupak Ganguly
522
+ Add shindo tests for attach and detach. thanks Rupak Ganguly
523
+ Fix mock. Fix tests for mocking and real modes. thanks Rupak Ganguly
524
+ Add a head method for the directories collection. thanks Rupak Ganguly
525
+ Upgrade to excon 0.14.0 to take advantage of the new StandardInstrumentor for debug use. thanks Rupak Ganguly
526
+ Capture hp_auth_uri for passing down to compute provider. thanks Rupak Ganguly
527
+ Add a list_snapshot request method, a corresponding mock, and add support for it in the block storage provider. thanks Rupak Ganguly
528
+ Add a create_snapshot request method, a corresponding mock, and add support for it in the block storage provider. thanks Rupak Ganguly
529
+ Minor fix to the inline help. thanks Rupak Ganguly
530
+ Add a get_snapshot_details request method, a corresponding mock, and add support for it in the block storage provider. thanks Rupak Ganguly
531
+ Add a delete_snapshot request method, a corresponding mock, and add support for it in the block storage provider. thanks Rupak Ganguly
532
+ Add shindo tests for snapshots request layer methods. thanks Rupak Ganguly
533
+ Minor update to inline help. thanks Rupak Ganguly
534
+ Add snapshot model and collection to bloack storage provider. thanks Rupak Ganguly
535
+ Add snapshot model/collection and corresponding tests. thanks Rupak Ganguly
536
+ Add user_agent string to the core fog connection with corresponding tests. thanks Rupak Ganguly
537
+ Add customised user_agent string for HP providers. Also, enable passing a custom user_agent string from calling clients. Add corresponding tests. thanks Rupak Ganguly
538
+ Add volume_attachments to server model. thanks Rupak Ganguly
539
+ Bump version to 0.0.16 and update changelog. thanks Rupak Ganguly
540
+ Removed 'server' attribute from server model, and fixed 'all' method. thanks Rupak Ganguly
541
+ Removed 'images' attribute from server model. thanks Rupak Ganguly
542
+ Fix version info. that is used by user-agent. thanks Rupak Ganguly
543
+ Add object temp url generation capability with mock support. thanks Rupak Ganguly
544
+ Add object temp url functionality to file model layer. thanks Rupak Ganguly
545
+ Add request layer tests for object_temp_url functionality. thanks Rupak Ganguly
546
+ Add tenant_id to the mix to tighten security for the temp_url generation. thanks Rupak Ganguly
547
+ Update mock for tenp_url. thanks Rupak Ganguly
548
+ Call the request layer method instead of the generic util method. thanks Rupak Ganguly
549
+ Add model tests for storage service. thanks Rupak Ganguly
550
+ Add the request layer method to extract the windows password from the console log in case of a windows instance. thanks Rupak Ganguly
551
+ Update the server model with a method to retrieve the windows password. thanks Rupak Ganguly
552
+ Update the get_windows_password to return the encrypted password instead of the decrypted one. thanks Rupak Ganguly
553
+ Add grant, revoke and list methods for cross tenant object acls implementation. thanks Rupak Ganguly
554
+ Add request layer methods for shared container and shared object access. thanks Rupak Ganguly
555
+ Bump version and update changelog. thanks Rupak Ganguly
556
+ Fix response status for mocks. thanks Rupak Ganguly
557
+ Add mocks for shared container and objects calls. thanks Rupak Ganguly
558
+ Add a new exception class and handled exceptions in exception messages. thanks Rupak Ganguly
559
+ Add request method for put_shared_object. Add model and collection for shared_directory and shared_file. thanks Rupak Ganguly
560
+ Refactor common code into separate method. thanks Rupak Ganguly
561
+ Fix mock for put_container to reflect new acl changes. thanks Rupak Ganguly
562
+ Fix head call to return an empty body. thanks Rupak Ganguly
563
+ Removed comment. thanks Rupak Ganguly
564
+ Minor fix to allow options on save to pass in metadata. thanks Rupak Ganguly
565
+ Add method all. thanks Rupak Ganguly
566
+ Add methods for destroy and save. thanks Rupak Ganguly
567
+ Add method for destroy. thanks Rupak Ganguly
568
+ Add request layer method for put_shared_container. thanks Rupak Ganguly
569
+ Minor bug fix when acls are nil. Also, added support for specifying list of users for grant and revoke as a comma-separated list. thanks Rupak Ganguly
570
+ Allow the models to raise exception when there is insufficient access. thanks Rupak Ganguly
571
+ Add delete_shared_object and corresponding model support. thanks Rupak Ganguly
572
+ Update inline documentation. thanks Rupak Ganguly
573
+ Update method to remove availability_zone as input data parameter. thanks Rupak Ganguly
574
+ Allows creation of bootable volumes by passing in single part images. thanks Rupak Ganguly
575
+ Allows creation of server instances that use a bootable volume rather than an image as its base. This gives us persistant instances. thanks Rupak Ganguly
576
+ Fix failing shindo tests. thanks Rupak Ganguly
577
+ Fix some null checks. thanks Rupak Ganguly
578
+ Add request layer methods for listing and getting bootable volumes. thanks Rupak Ganguly
579
+ Update volume model and collection to handle bootable volumes as well. thanks Rupak Ganguly
580
+ Add code to accept config_drive and block_device_mapping parameters while creating a server instance. thanks Rupak Ganguly
581
+ Move CHANGELOG.hp under hp folder. thanks Rupak Ganguly
582
+ Bump the version and update the changelog. thanks Rupak Ganguly
583
+ Fix public_key attribute to be visible in table. thanks Rupak Ganguly
584
+ Add create_persistent_server request layer method to compute service. Add mocks and tests as well. thanks Rupak Ganguly
585
+ Remove block_device_mapping param from create_server request method call. thanks Rupak Ganguly
586
+ Add capability of creating regular and persistent servers via the server model. Make image_id an optional parameter for creating servers. thanks Rupak Ganguly
587
+ Add bootable_volumes collection for managing only bootable volumes. thanks Rupak Ganguly
588
+ Remove bootable volumes list and get methods and moved them under the bootable_volumes collection. thanks Rupak Ganguly
589
+ Update changelog and release date. thanks Rupak Ganguly
590
+ Updated the BlockStorage namespace to be Fog::HP::BlockStorage. thanks Rupak Ganguly
591
+ Updated the tests to reflect the BlockStorage namespace changes. thanks Rupak Ganguly
592
+ Fix case where invalid CDN endpoint was causing issues. thanks Rupak Ganguly
593
+ Update to new code and tests based on changes from upstream fog. thanks Rupak Ganguly
594
+ Deprecate hp_account_id to use hp_access_key instead. thanks Rupak Ganguly
595
+ Fix fog.gemspec. thanks Rupak Ganguly
596
+ * [dreamhost|dns] initial import. thanks Sergio Rubio
597
+ Switch gem source to https://rubygems.org. thanks Sergio Rubio
598
+ A whitespace fix :v:. thanks Simon Gate
599
+ add install.txt. thanks Terry Howe
600
+ remove file. thanks Terry Howe
601
+ Update put_object to accept blocks, and remove deprecation message. thanks Terry Howe
602
+ Fix warning. thanks William Lawson
603
+ version. thanks William Lawson
604
+ reverse version change. thanks William Lawson
605
+ joyent resize smartmachine incorrect class type. thanks angus
606
+ Typo in instantiate_vapp_template.rb. thanks dJason
607
+ fix for user agent tests excon usage. thanks geemus
608
+ fixed bug, quantum api need no underscore valiable name. (ex floatingips. thanks kanetann
609
+ Update lib/fog/ecloud/requests/compute/virtual_machine_create_from_template.rb. thanks tipt0e
610
+ Fog::Vsphere::Compute - misspelled method 'get_vm_by_ref' in vm_reconfig_hardware. thanks tipt0e
611
+
612
+ [openstack]
613
+ Register the image service. thanks Anshul Khandelwal
614
+ string interpolation problem image create fixes #1493. thanks Ruben Koster
615
+
616
+ [openstack|compute]
617
+ fix get_metadata call. thanks Ben Bleything
618
+ rename meta_hash to to_hash; make it public. thanks Ben Bleything
619
+ adds methods to retireve floating & fixed ip addresses. thanks Ohad Levy
620
+ ensures we clear ipaddresses cache upload reload. thanks Ohad Levy
621
+ configurable :openstack_endpoint_type. thanks Sergio Rubio
622
+ images collection should not return nil for #all. thanks Sergio Rubio
623
+
624
+ [openstack|identity]
625
+ Marks test as pending. thanks Paul Thornthwaite
626
+ Configurable :openstack_endpoint_type. thanks Sergio Rubio
627
+ user model tests fixes. thanks Sergio Rubio
628
+ cleanup the test role when no longer in use. thanks Sergio Rubio
629
+
630
+ [openstack|network]
631
+ Added missing Network model attributes. thanks Sergio Rubio
632
+
633
+ [openstack|storage]
634
+ intial import. thanks Sergio Rubio
635
+ added OpenStack Storage to lib/fog/storage.rb. thanks Sergio Rubio
636
+ Added OpenStack.escape utility method. thanks Sergio Rubio
637
+ Added storage service to lib/fog/bin/openstack.rb. thanks Sergio Rubio
638
+ Added OpenStack Storage service tests. thanks Sergio Rubio
639
+ configurable service_type and service_name. thanks Sergio Rubio
640
+ added openstack_tenant and openstack_region params. thanks Sergio Rubio
641
+ replace 'object_store' service type with 'object-store'. thanks Sergio Rubio
642
+
643
+ [openstack|volume]
644
+ Configurable :openstack_endpoint_type. thanks Sergio Rubio
645
+ remove extra comma. thanks Sergio Rubio
646
+ Added missing service declaration. thanks Sergio Rubio
647
+
648
+ [ovirt]
649
+ Add support for reading the oVirt api version. thanks Amos Benari
650
+ Added support for oVirt volume status. thanks Amos Benari
651
+ Updated the blocking start logic to fit oVirt 3.1 api. thanks Amos Benari
652
+
653
+ [rackspace]
654
+ adding accept headers to block_storage, cdn, compute_v2, databases, identity, load_balancers, storage. thanks Kyle Rames
655
+ fixing merge. thanks Kyle Rames
656
+
657
+ [rackspace|cdn]
658
+ implemented purge object from CDN; added CDN tests and mocks. thanks Kyle Rames
659
+ more refactoring. thanks Kyle Rames
660
+ more refactoring of cdn. thanks Kyle Rames
661
+
662
+ [rackspace|compute]
663
+ Fix typo in attachments model. thanks Brad Gignac
664
+ Handle malformed API responses. thanks Brad Gignac
665
+ Update server to use default networks. thanks Brad Gignac
666
+ Allow custom network on server. thanks Brad Gignac
667
+ this should address a metadata issue discovered in chef http://tickets.opscode.com/browse/KNIFE-217. thanks Kyle Rames
668
+ this should address a metadata issue discovered in chef http://tickets.opscode.com/browse/KNIFE-217(cherry picked from commit a859b9ecf550469ac43ea35402785dad59d7c7f2). thanks Kyle Rames
669
+ added create server example. thanks Kyle Rames
670
+ Adding more cloud server examples. thanks Kyle Rames
671
+ tweaking examples. thanks Kyle Rames
672
+ fixing typo in metadata class. thanks Kyle Rames
673
+ fixing connection deprecation warnings. thanks Kyle Rames
674
+ Adding API documentation. thanks Kyle Rames
675
+ updated to check for public_ip_address instead of ip4_address as setup uses the public_ip_address. thanks Kyle Rames
676
+ removed timeout from bootstrap method signature and hard coded it in method per geemus. thanks Kyle Rames
677
+ added test for put_container with an optional parameter. thanks Kyle Rames
678
+ updated mocking framework to support any flavor or image. thanks Kyle Rames
679
+ remove erroneous block argument to get_object fixes #1588. thanks geemus
680
+
681
+ [rackspace|compute_v2]
682
+ fixing merge issues; added metadata test for servers. thanks Kyle Rames
683
+ Added note indicating that RackConnect users should use Server personalization rather than the bootstrap method. thanks Kyle Rames
684
+ fixing bootstrap example. thanks Kyle Rames
685
+ compute_v2 tests were failing because the flavor used in the tests was too small for the image selected. I updating tests to use the an Ubuntu image in hopes of making the tests less brittle. thanks Kyle Rames
686
+
687
+ [rackspace|database]
688
+ remove extraneous colon. thanks Kyle Rames
689
+
690
+ [rackspace|databases]
691
+ removed trailing stash from hard coded endpoints; added accept header. thanks Kyle Rames
692
+
693
+ [rackspace|dns]
694
+ added tests for zones.find. thanks Brian Hartsock
695
+ fix issue in zones.find where results with no links throw exception. thanks Brian Hartsock
696
+
697
+ [rackspace|identity]
698
+ Correctly populate model from request data. thanks Brad Gignac
699
+ Remove unused get_credentials request. thanks Brad Gignac
700
+
701
+ [rackspace|lb]
702
+ fixed issue where double paths cause API errors. thanks Brian Hartsock
703
+ removed puts. thanks Brian Hartsock
704
+
705
+ [rackspace|networks]
706
+ Add Cloud Networks requests. thanks Brad Gignac
707
+ Add networks model and collection. thanks Brad Gignac
708
+ Add mock responses. thanks Brad Gignac
709
+
710
+ [rackspace|storage]
711
+ refactored storage/cdn. thanks Kyle Rames
712
+ fixed issue in ruby 1.8.7 where metadata was not being deleted when set to nil. thanks Kyle Rames
713
+ tweaked directory implementation; added directory model tests. thanks Kyle Rames
714
+ updating to return true after saving directory. thanks Kyle Rames
715
+ added support for container metadata; added directory tests. thanks Kyle Rames
716
+ Cloud Files will not process a header without a value so I added a stand in value for nil. thanks Kyle Rames
717
+ added delete method to metadata. thanks Kyle Rames
718
+ removing test of dubious distinction per geemus. thanks Kyle Rames
719
+ updated file class to use the same metadata implementation as the directory class. thanks Kyle Rames
720
+ added test to check for metadata on object creation; tweaked metadata on object creation test. thanks Kyle Rames
721
+ updated metadata class to decode incoming header values using FOG::JSON. thanks Kyle Rames
722
+ fixing Metadata#respond_to? method. thanks Kyle Rames
723
+ updated directory to lazy load metadata when necessary. thanks Kyle Rames
724
+ added tests for metadata class; fixed bug with method missing. thanks Kyle Rames
725
+ updated file class to use the same metadata implementation as the directory class. thanks Kyle Rames
726
+ added test to check for metadata on object creation; tweaked metadata on object creation test. thanks Kyle Rames
727
+ updated metadata class to decode incoming header values using FOG::JSON. thanks Kyle Rames
728
+ rebased with dir_metadata branch - https://github.com/fog/fog/pull/1563. thanks Kyle Rames
729
+ added ios_url and streaming_url methods to directory and file; added more tests. thanks Kyle Rames
730
+ added account model. thanks Kyle Rames
731
+ removing type conversion for metadata per https://github.com/fog/fog/pull/1587. thanks Kyle Rames
732
+ added the ability to determine meta prefixes from Class objects as well as Fog object. This addresses issue in Files#get method. thanks Kyle Rames
733
+
734
+ [tests]
735
+ Updates format tests. thanks Paul Thornthwaite
736
+ Changes to format testing helper. thanks Paul Thornthwaite
737
+ Extracts schema validator to class. thanks Paul Thornthwaite
738
+ Fixes schema validator for arrays. thanks Paul Thornthwaite
739
+
740
+ [virtualbox]
741
+ Removed VirtualBox since it has many problems and the gem it's based on is no longer maintained. thanks Kevin Menard
742
+
743
+
1
744
  1.9.0 01/19/2013 0283cac581edc36fe58681c51d6fa2a5d2db3f41
2
745
  =========================================================
3
746