fog 1.17.0 → 1.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (386) hide show
  1. data/Rakefile +19 -1
  2. data/changelog.txt +408 -0
  3. data/fog.gemspec +3 -3
  4. data/fogkeytest1.pem +27 -0
  5. data/lib/fog/aws/compute.rb +0 -1
  6. data/lib/fog/aws/data_pipeline.rb +0 -1
  7. data/lib/fog/aws/models/auto_scaling/group.rb +1 -1
  8. data/lib/fog/aws/models/compute/route_table.rb +1 -1
  9. data/lib/fog/aws/models/compute/server.rb +1 -1
  10. data/lib/fog/aws/parsers/compute/describe_internet_gateways.rb +1 -1
  11. data/lib/fog/aws/requests/compute/create_internet_gateway.rb +5 -4
  12. data/lib/fog/aws/requests/compute/create_tags.rb +2 -0
  13. data/lib/fog/aws/requests/compute/create_volume.rb +1 -1
  14. data/lib/fog/aws/requests/compute/delete_internet_gateway.rb +1 -1
  15. data/lib/fog/aws/requests/compute/describe_internet_gateways.rb +1 -1
  16. data/lib/fog/aws/requests/compute/run_instances.rb +1 -1
  17. data/lib/fog/bin/hp.rb +17 -0
  18. data/lib/fog/compute.rb +11 -0
  19. data/lib/fog/ecloud/compute.rb +8 -3
  20. data/lib/fog/ecloud/models/compute/admin_organization.rb +4 -4
  21. data/lib/fog/ecloud/models/compute/catalog_item.rb +1 -1
  22. data/lib/fog/ecloud/models/compute/compute_pool.rb +8 -8
  23. data/lib/fog/ecloud/models/compute/environment.rb +15 -15
  24. data/lib/fog/ecloud/models/compute/firewall_acl.rb +1 -1
  25. data/lib/fog/ecloud/models/compute/internet_service.rb +1 -1
  26. data/lib/fog/ecloud/models/compute/internet_services.rb +1 -1
  27. data/lib/fog/ecloud/models/compute/location.rb +1 -1
  28. data/lib/fog/ecloud/models/compute/monitor.rb +1 -1
  29. data/lib/fog/ecloud/models/compute/network.rb +1 -1
  30. data/lib/fog/ecloud/models/compute/node.rb +1 -1
  31. data/lib/fog/ecloud/models/compute/nodes.rb +1 -1
  32. data/lib/fog/ecloud/models/compute/organization.rb +10 -10
  33. data/lib/fog/ecloud/models/compute/row.rb +1 -1
  34. data/lib/fog/ecloud/models/compute/rows.rb +1 -1
  35. data/lib/fog/ecloud/models/compute/server.rb +9 -9
  36. data/lib/fog/ecloud/models/compute/templates.rb +3 -1
  37. data/lib/fog/ecloud/models/compute/user.rb +2 -2
  38. data/lib/fog/ecloud/models/compute/virtual_machine_assigned_ip.rb +1 -1
  39. data/lib/fog/ecloud/requests/compute/get_virtual_machine_assigned_ips.rb +1 -1
  40. data/lib/fog/google/models/compute/disk.rb +5 -5
  41. data/lib/fog/google/models/compute/disks.rb +9 -2
  42. data/lib/fog/hp.rb +108 -19
  43. data/lib/fog/hp/CHANGELOG.hp +33 -0
  44. data/lib/fog/hp/block_storage.rb +5 -3
  45. data/lib/fog/hp/block_storage_v2.rb +164 -0
  46. data/lib/fog/hp/cdn.rb +3 -2
  47. data/lib/fog/hp/compute.rb +5 -4
  48. data/lib/fog/hp/compute_v2.rb +312 -0
  49. data/lib/fog/hp/dns.rb +135 -0
  50. data/lib/fog/hp/lb.rb +170 -0
  51. data/lib/fog/hp/models/block_storage_v2/snapshot.rb +76 -0
  52. data/lib/fog/hp/models/block_storage_v2/snapshots.rb +43 -0
  53. data/lib/fog/hp/models/block_storage_v2/volume.rb +139 -0
  54. data/lib/fog/hp/models/block_storage_v2/volume_backup.rb +58 -0
  55. data/lib/fog/hp/models/block_storage_v2/volume_backups.rb +42 -0
  56. data/lib/fog/hp/models/block_storage_v2/volumes.rb +42 -0
  57. data/lib/fog/hp/models/compute/image.rb +1 -1
  58. data/lib/fog/hp/models/compute/server.rb +41 -20
  59. data/lib/fog/hp/models/compute_v2/address.rb +70 -0
  60. data/lib/fog/hp/models/compute_v2/addresses.rb +29 -0
  61. data/lib/fog/hp/models/compute_v2/availability_zone.rb +22 -0
  62. data/lib/fog/hp/models/compute_v2/availability_zones.rb +29 -0
  63. data/lib/fog/hp/models/compute_v2/flavor.rb +22 -0
  64. data/lib/fog/hp/models/compute_v2/flavors.rb +42 -0
  65. data/lib/fog/hp/models/compute_v2/image.rb +87 -0
  66. data/lib/fog/hp/models/compute_v2/images.rb +43 -0
  67. data/lib/fog/hp/models/compute_v2/key_pair.rb +54 -0
  68. data/lib/fog/hp/models/compute_v2/key_pairs.rb +31 -0
  69. data/lib/fog/hp/models/compute_v2/meta.rb +29 -0
  70. data/lib/fog/hp/models/compute_v2/meta_parent.rb +33 -0
  71. data/lib/fog/hp/models/compute_v2/metadata.rb +79 -0
  72. data/lib/fog/hp/models/compute_v2/server.rb +339 -0
  73. data/lib/fog/hp/models/compute_v2/servers.rb +56 -0
  74. data/lib/fog/hp/models/compute_v2/volume_attachment.rb +42 -0
  75. data/lib/fog/hp/models/compute_v2/volume_attachments.rb +30 -0
  76. data/lib/fog/hp/models/dns/domain.rb +55 -0
  77. data/lib/fog/hp/models/dns/domains.rb +28 -0
  78. data/lib/fog/hp/models/dns/record.rb +59 -0
  79. data/lib/fog/hp/models/dns/records.rb +32 -0
  80. data/lib/fog/hp/models/lb/algorithm.rb +24 -0
  81. data/lib/fog/hp/models/lb/algorithms.rb +26 -0
  82. data/lib/fog/hp/models/lb/load_balancer.rb +83 -0
  83. data/lib/fog/hp/models/lb/load_balancers.rb +26 -0
  84. data/lib/fog/hp/models/lb/node.rb +53 -0
  85. data/lib/fog/hp/models/lb/nodes.rb +30 -0
  86. data/lib/fog/hp/models/lb/protocol.rb +25 -0
  87. data/lib/fog/hp/models/lb/protocols.rb +26 -0
  88. data/lib/fog/hp/models/lb/virtual_ip.rb +34 -0
  89. data/lib/fog/hp/models/lb/virtual_ips.rb +33 -0
  90. data/lib/fog/hp/models/network/floating_ip.rb +45 -0
  91. data/lib/fog/hp/models/network/floating_ips.rb +36 -0
  92. data/lib/fog/hp/models/network/network.rb +56 -0
  93. data/lib/fog/hp/models/network/networks.rb +36 -0
  94. data/lib/fog/hp/models/network/port.rb +54 -0
  95. data/lib/fog/hp/models/network/ports.rb +36 -0
  96. data/lib/fog/hp/models/network/router.rb +66 -0
  97. data/lib/fog/hp/models/network/routers.rb +36 -0
  98. data/lib/fog/hp/models/network/security_group.rb +30 -0
  99. data/lib/fog/hp/models/network/security_group_rule.rb +35 -0
  100. data/lib/fog/hp/models/network/security_group_rules.rb +36 -0
  101. data/lib/fog/hp/models/network/security_groups.rb +36 -0
  102. data/lib/fog/hp/models/network/subnet.rb +49 -0
  103. data/lib/fog/hp/models/network/subnets.rb +36 -0
  104. data/lib/fog/hp/models/storage/directories.rb +1 -1
  105. data/lib/fog/hp/models/storage/directory.rb +41 -8
  106. data/lib/fog/hp/models/storage/meta.rb +29 -0
  107. data/lib/fog/hp/models/storage/meta_parent.rb +23 -0
  108. data/lib/fog/hp/models/storage/metadata.rb +82 -0
  109. data/lib/fog/hp/network.rb +198 -0
  110. data/lib/fog/hp/requests/block_storage_v2/create_snapshot.rb +76 -0
  111. data/lib/fog/hp/requests/block_storage_v2/create_volume.rb +90 -0
  112. data/lib/fog/hp/requests/block_storage_v2/create_volume_backup.rb +83 -0
  113. data/lib/fog/hp/requests/block_storage_v2/delete_snapshot.rb +38 -0
  114. data/lib/fog/hp/requests/block_storage_v2/delete_volume.rb +38 -0
  115. data/lib/fog/hp/requests/block_storage_v2/delete_volume_backup.rb +38 -0
  116. data/lib/fog/hp/requests/block_storage_v2/get_snapshot_details.rb +54 -0
  117. data/lib/fog/hp/requests/block_storage_v2/get_volume_backup_details.rb +55 -0
  118. data/lib/fog/hp/requests/block_storage_v2/get_volume_details.rb +58 -0
  119. data/lib/fog/hp/requests/block_storage_v2/list_snapshots.rb +57 -0
  120. data/lib/fog/hp/requests/block_storage_v2/list_snapshots_detail.rb +54 -0
  121. data/lib/fog/hp/requests/block_storage_v2/list_volume_backups.rb +52 -0
  122. data/lib/fog/hp/requests/block_storage_v2/list_volume_backups_detail.rb +58 -0
  123. data/lib/fog/hp/requests/block_storage_v2/list_volumes.rb +61 -0
  124. data/lib/fog/hp/requests/block_storage_v2/list_volumes_detail.rb +59 -0
  125. data/lib/fog/hp/requests/block_storage_v2/restore_volume_backup.rb +97 -0
  126. data/lib/fog/hp/requests/block_storage_v2/update_snapshot.rb +69 -0
  127. data/lib/fog/hp/requests/block_storage_v2/update_volume.rb +70 -0
  128. data/lib/fog/hp/requests/compute/get_console_output.rb +0 -2
  129. data/lib/fog/hp/requests/compute/get_vnc_console.rb +45 -0
  130. data/lib/fog/hp/requests/compute_v2/add_security_group.rb +40 -0
  131. data/lib/fog/hp/requests/compute_v2/allocate_address.rb +53 -0
  132. data/lib/fog/hp/requests/compute_v2/associate_address.rb +46 -0
  133. data/lib/fog/hp/requests/compute_v2/attach_volume.rb +80 -0
  134. data/lib/fog/hp/requests/compute_v2/create_image.rb +63 -0
  135. data/lib/fog/hp/requests/compute_v2/create_key_pair.rb +73 -0
  136. data/lib/fog/hp/requests/compute_v2/create_persistent_server.rb +183 -0
  137. data/lib/fog/hp/requests/compute_v2/create_server.rb +168 -0
  138. data/lib/fog/hp/requests/compute_v2/delete_image.rb +44 -0
  139. data/lib/fog/hp/requests/compute_v2/delete_key_pair.rb +38 -0
  140. data/lib/fog/hp/requests/compute_v2/delete_meta.rb +55 -0
  141. data/lib/fog/hp/requests/compute_v2/delete_server.rb +43 -0
  142. data/lib/fog/hp/requests/compute_v2/detach_volume.rb +47 -0
  143. data/lib/fog/hp/requests/compute_v2/disassociate_address.rb +39 -0
  144. data/lib/fog/hp/requests/compute_v2/get_address.rb +48 -0
  145. data/lib/fog/hp/requests/compute_v2/get_console_output.rb +41 -0
  146. data/lib/fog/hp/requests/compute_v2/get_flavor_details.rb +57 -0
  147. data/lib/fog/hp/requests/compute_v2/get_image_details.rb +55 -0
  148. data/lib/fog/hp/requests/compute_v2/get_key_pair.rb +44 -0
  149. data/lib/fog/hp/requests/compute_v2/get_meta.rb +57 -0
  150. data/lib/fog/hp/requests/compute_v2/get_server_details.rb +72 -0
  151. data/lib/fog/hp/requests/compute_v2/get_server_volume_details.rb +47 -0
  152. data/lib/fog/hp/requests/compute_v2/get_vnc_console.rb +45 -0
  153. data/lib/fog/hp/requests/compute_v2/get_windows_password.rb +43 -0
  154. data/lib/fog/hp/requests/compute_v2/list_addresses.rb +44 -0
  155. data/lib/fog/hp/requests/compute_v2/list_availability_zones.rb +47 -0
  156. data/lib/fog/hp/requests/compute_v2/list_flavors.rb +53 -0
  157. data/lib/fog/hp/requests/compute_v2/list_flavors_detail.rb +53 -0
  158. data/lib/fog/hp/requests/compute_v2/list_images.rb +52 -0
  159. data/lib/fog/hp/requests/compute_v2/list_images_detail.rb +66 -0
  160. data/lib/fog/hp/requests/compute_v2/list_key_pairs.rb +42 -0
  161. data/lib/fog/hp/requests/compute_v2/list_limits.rb +62 -0
  162. data/lib/fog/hp/requests/compute_v2/list_metadata.rb +56 -0
  163. data/lib/fog/hp/requests/compute_v2/list_server_addresses.rb +42 -0
  164. data/lib/fog/hp/requests/compute_v2/list_server_addresses_by_network.rb +46 -0
  165. data/lib/fog/hp/requests/compute_v2/list_server_volumes.rb +49 -0
  166. data/lib/fog/hp/requests/compute_v2/list_servers.rb +53 -0
  167. data/lib/fog/hp/requests/compute_v2/list_servers_detail.rb +80 -0
  168. data/lib/fog/hp/requests/compute_v2/reboot_server.rb +34 -0
  169. data/lib/fog/hp/requests/compute_v2/rebuild_server.rb +82 -0
  170. data/lib/fog/hp/requests/compute_v2/release_address.rb +38 -0
  171. data/lib/fog/hp/requests/compute_v2/remove_security_group.rb +37 -0
  172. data/lib/fog/hp/requests/compute_v2/server_action.rb +25 -0
  173. data/lib/fog/hp/requests/compute_v2/set_metadata.rb +60 -0
  174. data/lib/fog/hp/requests/compute_v2/update_meta.rb +61 -0
  175. data/lib/fog/hp/requests/compute_v2/update_metadata.rb +60 -0
  176. data/lib/fog/hp/requests/compute_v2/update_server.rb +73 -0
  177. data/lib/fog/hp/requests/dns/create_domain.rb +66 -0
  178. data/lib/fog/hp/requests/dns/create_record.rb +79 -0
  179. data/lib/fog/hp/requests/dns/delete_domain.rb +37 -0
  180. data/lib/fog/hp/requests/dns/delete_record.rb +36 -0
  181. data/lib/fog/hp/requests/dns/get_domain.rb +43 -0
  182. data/lib/fog/hp/requests/dns/get_record.rb +47 -0
  183. data/lib/fog/hp/requests/dns/get_servers_hosting_domain.rb +62 -0
  184. data/lib/fog/hp/requests/dns/list_domains.rb +38 -0
  185. data/lib/fog/hp/requests/dns/list_records_in_a_domain.rb +55 -0
  186. data/lib/fog/hp/requests/dns/update_domain.rb +62 -0
  187. data/lib/fog/hp/requests/dns/update_record.rb +70 -0
  188. data/lib/fog/hp/requests/lb/create_load_balancer.rb +110 -0
  189. data/lib/fog/hp/requests/lb/create_load_balancer_node.rb +72 -0
  190. data/lib/fog/hp/requests/lb/delete_load_balancer.rb +36 -0
  191. data/lib/fog/hp/requests/lb/delete_load_balancer_node.rb +47 -0
  192. data/lib/fog/hp/requests/lb/get_load_balancer.rb +60 -0
  193. data/lib/fog/hp/requests/lb/get_load_balancer_node.rb +54 -0
  194. data/lib/fog/hp/requests/lb/list_algorithms.rb +32 -0
  195. data/lib/fog/hp/requests/lb/list_limits.rb +40 -0
  196. data/lib/fog/hp/requests/lb/list_load_balancer_nodes.rb +41 -0
  197. data/lib/fog/hp/requests/lb/list_load_balancer_virtual_ips.rb +44 -0
  198. data/lib/fog/hp/requests/lb/list_load_balancers.rb +41 -0
  199. data/lib/fog/hp/requests/lb/list_protocols.rb +34 -0
  200. data/lib/fog/hp/requests/lb/list_versions.rb +27 -0
  201. data/lib/fog/hp/requests/lb/update_load_balancer.rb +47 -0
  202. data/lib/fog/hp/requests/lb/update_load_balancer_node.rb +59 -0
  203. data/lib/fog/hp/requests/network/add_router_interface.rb +75 -0
  204. data/lib/fog/hp/requests/network/associate_floating_ip.rb +71 -0
  205. data/lib/fog/hp/requests/network/create_floating_ip.rb +69 -0
  206. data/lib/fog/hp/requests/network/create_network.rb +68 -0
  207. data/lib/fog/hp/requests/network/create_port.rb +92 -0
  208. data/lib/fog/hp/requests/network/create_router.rb +64 -0
  209. data/lib/fog/hp/requests/network/create_security_group.rb +100 -0
  210. data/lib/fog/hp/requests/network/create_security_group_rule.rb +83 -0
  211. data/lib/fog/hp/requests/network/create_subnet.rb +97 -0
  212. data/lib/fog/hp/requests/network/delete_floating_ip.rb +34 -0
  213. data/lib/fog/hp/requests/network/delete_network.rb +34 -0
  214. data/lib/fog/hp/requests/network/delete_port.rb +34 -0
  215. data/lib/fog/hp/requests/network/delete_router.rb +34 -0
  216. data/lib/fog/hp/requests/network/delete_security_group.rb +36 -0
  217. data/lib/fog/hp/requests/network/delete_security_group_rule.rb +36 -0
  218. data/lib/fog/hp/requests/network/delete_subnet.rb +34 -0
  219. data/lib/fog/hp/requests/network/disassociate_floating_ip.rb +71 -0
  220. data/lib/fog/hp/requests/network/get_floating_ip.rb +47 -0
  221. data/lib/fog/hp/requests/network/get_network.rb +49 -0
  222. data/lib/fog/hp/requests/network/get_port.rb +53 -0
  223. data/lib/fog/hp/requests/network/get_router.rb +46 -0
  224. data/lib/fog/hp/requests/network/get_security_group.rb +56 -0
  225. data/lib/fog/hp/requests/network/get_security_group_rule.rb +51 -0
  226. data/lib/fog/hp/requests/network/get_subnet.rb +52 -0
  227. data/lib/fog/hp/requests/network/list_floating_ips.rb +46 -0
  228. data/lib/fog/hp/requests/network/list_networks.rb +48 -0
  229. data/lib/fog/hp/requests/network/list_ports.rb +52 -0
  230. data/lib/fog/hp/requests/network/list_routers.rb +45 -0
  231. data/lib/fog/hp/requests/network/list_security_group_rules.rb +52 -0
  232. data/lib/fog/hp/requests/network/list_security_groups.rb +57 -0
  233. data/lib/fog/hp/requests/network/list_subnets.rb +51 -0
  234. data/lib/fog/hp/requests/network/remove_router_interface.rb +67 -0
  235. data/lib/fog/hp/requests/network/update_network.rb +62 -0
  236. data/lib/fog/hp/requests/network/update_port.rb +75 -0
  237. data/lib/fog/hp/requests/network/update_router.rb +62 -0
  238. data/lib/fog/hp/requests/network/update_subnet.rb +72 -0
  239. data/lib/fog/hp/requests/storage/post_container.rb +38 -0
  240. data/lib/fog/hp/requests/storage/post_object.rb +56 -0
  241. data/lib/fog/hp/simple_http_instrumentor.rb +59 -0
  242. data/lib/fog/hp/storage.rb +6 -6
  243. data/lib/fog/internet_archive/models/storage/file.rb +1 -1
  244. data/lib/fog/internet_archive/requests/storage/head_object.rb +2 -2
  245. data/lib/fog/openstack/identity.rb +1 -1
  246. data/lib/fog/openstack/models/storage/file.rb +1 -1
  247. data/lib/fog/rackspace.rb +4 -1
  248. data/lib/fog/rackspace/docs/compute_v2.md +2 -2
  249. data/lib/fog/rackspace/docs/storage.md +1 -1
  250. data/lib/fog/rackspace/examples/compute_v2/create_image.rb +1 -1
  251. data/lib/fog/rackspace/examples/compute_v2/delete_image.rb +1 -1
  252. data/lib/fog/rackspace/examples/compute_v2/delete_server.rb +1 -1
  253. data/lib/fog/rackspace/examples/compute_v2/detach_volume.rb +2 -2
  254. data/lib/fog/rackspace/examples/compute_v2/resize_server.rb +1 -1
  255. data/lib/fog/rackspace/examples/compute_v2/server_attachments.rb +1 -1
  256. data/lib/fog/rackspace/examples/storage/create_cdn_directory.rb +1 -1
  257. data/lib/fog/rackspace/examples/storage/delete_directory.rb +1 -1
  258. data/lib/fog/rackspace/examples/storage/delete_file.rb +1 -1
  259. data/lib/fog/rackspace/examples/storage/download_file.rb +1 -1
  260. data/lib/fog/rackspace/models/compute_v2/images.rb +1 -1
  261. data/lib/fog/rackspace/models/compute_v2/metadata.rb +2 -2
  262. data/lib/fog/rackspace/models/compute_v2/server.rb +2 -2
  263. data/lib/fog/rackspace/models/compute_v2/servers.rb +1 -1
  264. data/lib/fog/rackspace/models/storage/file.rb +19 -0
  265. data/lib/fog/rackspace/models/storage/files.rb +25 -0
  266. data/lib/fog/rackspace/monitoring.rb +20 -1
  267. data/lib/fog/rackspace/requests/compute_v2/delete_image.rb +1 -1
  268. data/lib/fog/rackspace/requests/compute_v2/list_metadata.rb +1 -1
  269. data/lib/fog/rackspace/requests/compute_v2/list_servers.rb +1 -1
  270. data/lib/fog/rackspace/requests/compute_v2/resize_server.rb +1 -1
  271. data/lib/fog/rackspace/requests/compute_v2/set_metadata.rb +1 -1
  272. data/lib/fog/rackspace/requests/compute_v2/set_metadata_item.rb +1 -1
  273. data/lib/fog/rackspace/requests/compute_v2/update_metadata.rb +1 -1
  274. data/lib/fog/rackspace/requests/monitoring/get_monitoring_zone.rb +15 -0
  275. data/lib/fog/rackspace/requests/monitoring/list_monitoring_zones.rb +15 -0
  276. data/lib/fog/rackspace/requests/storage/get_object_http_url.rb +30 -0
  277. data/lib/fog/rackspace/requests/storage/get_object_https_url.rb +2 -1
  278. data/lib/fog/rackspace/storage.rb +1 -0
  279. data/lib/fog/vcloud_director/generators/compute/edge_gateway_service_configuration.rb +10 -8
  280. data/lib/fog/vcloud_director/requests/compute/get_edge_gateway.rb +2 -0
  281. data/lib/fog/vcloud_director/requests/compute/get_task.rb +10 -1
  282. data/lib/fog/version.rb +1 -1
  283. data/lib/fog/vsphere/compute.rb +1 -0
  284. data/lib/fog/vsphere/models/compute/server.rb +2 -2
  285. data/lib/fog/vsphere/models/compute/volume.rb +59 -4
  286. data/lib/fog/vsphere/models/compute/volumes.rb +22 -7
  287. data/lib/fog/vsphere/requests/compute/create_vm.rb +9 -3
  288. data/lib/fog/vsphere/requests/compute/list_vm_volumes.rb +3 -1
  289. data/lib/fog/vsphere/requests/compute/modify_vm_volume.rb +26 -0
  290. data/lib/tasks/changelog_task.rb +2 -0
  291. data/tests/aws/requests/compute/internet_gateway_tests.rb +5 -0
  292. data/tests/compute/helper.rb +6 -4
  293. data/tests/ecloud/compute/models/server_tests.rb +34 -41
  294. data/tests/hp/block_storage_tests.rb +47 -0
  295. data/tests/hp/cdn_tests.rb +23 -0
  296. data/tests/hp/compute_tests.rb +22 -0
  297. data/tests/hp/models/block_storage_v2/snapshot_tests.rb +22 -0
  298. data/tests/hp/models/block_storage_v2/snapshots_tests.rb +10 -0
  299. data/tests/hp/models/block_storage_v2/volume_backup_tests.rb +22 -0
  300. data/tests/hp/models/block_storage_v2/volume_backups_tests.rb +9 -0
  301. data/tests/hp/models/block_storage_v2/volume_tests.rb +22 -0
  302. data/tests/hp/models/block_storage_v2/volumes_tests.rb +5 -0
  303. data/tests/hp/models/compute_v2/address_tests.rb +23 -0
  304. data/tests/hp/models/compute_v2/addresses_tests.rb +7 -0
  305. data/tests/hp/models/compute_v2/availability_zone_tests.rb +13 -0
  306. data/tests/hp/models/compute_v2/availability_zones_tests.rb +13 -0
  307. data/tests/hp/models/compute_v2/key_pair_tests.rb +29 -0
  308. data/tests/hp/models/compute_v2/key_pairs_tests.rb +7 -0
  309. data/tests/hp/models/compute_v2/metadata_image_tests.rb +60 -0
  310. data/tests/hp/models/compute_v2/metadata_server_tests.rb +56 -0
  311. data/tests/hp/models/compute_v2/server_tests.rb +45 -0
  312. data/tests/hp/models/compute_v2/servers_tests.rb +9 -0
  313. data/tests/hp/models/compute_v2/volume_attachment_tests.rb +40 -0
  314. data/tests/hp/models/compute_v2/volume_attachments_tests.rb +17 -0
  315. data/tests/hp/models/dns/domain_tests.rb +25 -0
  316. data/tests/hp/models/dns/domains_tests.rb +14 -0
  317. data/tests/hp/models/dns/record_tests.rb +29 -0
  318. data/tests/hp/models/dns/records_tests.rb +9 -0
  319. data/tests/hp/models/lb/algorithms_tests.rb +15 -0
  320. data/tests/hp/models/lb/load_balancer_node_tests.rb +9 -0
  321. data/tests/hp/models/lb/load_balancer_nodes_tests.rb +27 -0
  322. data/tests/hp/models/lb/load_balancer_tests.rb +6 -0
  323. data/tests/hp/models/lb/load_balancer_virtual_ips_tests.rb +22 -0
  324. data/tests/hp/models/lb/load_balancers_tests.rb +22 -0
  325. data/tests/hp/models/lb/protocols_tests.rb +15 -0
  326. data/tests/hp/models/network/floating_ip_tests.rb +37 -0
  327. data/tests/hp/models/network/floating_ips_tests.rb +8 -0
  328. data/tests/hp/models/network/network_tests.rb +25 -0
  329. data/tests/hp/models/network/networks_tests.rb +15 -0
  330. data/tests/hp/models/network/port_tests.rb +30 -0
  331. data/tests/hp/models/network/ports_tests.rb +21 -0
  332. data/tests/hp/models/network/router_tests.rb +55 -0
  333. data/tests/hp/models/network/routers_tests.rb +19 -0
  334. data/tests/hp/models/network/security_group_rule_tests.rb +25 -0
  335. data/tests/hp/models/network/security_group_rules_tests.rb +23 -0
  336. data/tests/hp/models/network/security_group_tests.rb +20 -0
  337. data/tests/hp/models/network/security_groups_tests.rb +20 -0
  338. data/tests/hp/models/network/subnet_tests.rb +30 -0
  339. data/tests/hp/models/network/subnets_tests.rb +22 -0
  340. data/tests/hp/models/storage/directory_tests.rb +70 -0
  341. data/tests/hp/requests/block_storage_v2/snapshot_tests.rb +69 -0
  342. data/tests/hp/requests/block_storage_v2/volume_backup_tests.rb +117 -0
  343. data/tests/hp/requests/block_storage_v2/volume_tests.rb +106 -0
  344. data/tests/hp/requests/compute_v2/address_tests.rb +80 -0
  345. data/tests/hp/requests/compute_v2/availability_zone_tests.rb +19 -0
  346. data/tests/hp/requests/compute_v2/flavor_tests.rb +45 -0
  347. data/tests/hp/requests/compute_v2/image_tests.rb +86 -0
  348. data/tests/hp/requests/compute_v2/key_pair_tests.rb +66 -0
  349. data/tests/hp/requests/compute_v2/metadata_tests.rb +101 -0
  350. data/tests/hp/requests/compute_v2/persistent_server_tests.rb +67 -0
  351. data/tests/hp/requests/compute_v2/server_address_tests.rb +46 -0
  352. data/tests/hp/requests/compute_v2/server_security_group_tests.rb +43 -0
  353. data/tests/hp/requests/compute_v2/server_tests.rb +113 -0
  354. data/tests/hp/requests/compute_v2/server_volume_tests.rb +85 -0
  355. data/tests/hp/requests/dns/domain_tests.rb +72 -0
  356. data/tests/hp/requests/dns/records_tests.rb +65 -0
  357. data/tests/hp/requests/lb/algorithms_tests.rb +15 -0
  358. data/tests/hp/requests/lb/limits_tests.rb +18 -0
  359. data/tests/hp/requests/lb/load_balancer_nodes_tests.rb +47 -0
  360. data/tests/hp/requests/lb/load_balancer_tests.rb +56 -0
  361. data/tests/hp/requests/lb/protocols_tests.rb +15 -0
  362. data/tests/hp/requests/lb/versions_tests.rb +17 -0
  363. data/tests/hp/requests/lb/virtual_ips_tests.rb +34 -0
  364. data/tests/hp/requests/network/floating_ip_tests.rb +70 -0
  365. data/tests/hp/requests/network/network_tests.rb +57 -0
  366. data/tests/hp/requests/network/port_tests.rb +71 -0
  367. data/tests/hp/requests/network/router_tests.rb +108 -0
  368. data/tests/hp/requests/network/security_group_rule_tests.rb +58 -0
  369. data/tests/hp/requests/network/security_group_tests.rb +48 -0
  370. data/tests/hp/requests/network/subnet_tests.rb +71 -0
  371. data/tests/hp/requests/storage/container_tests.rb +9 -1
  372. data/tests/hp/requests/storage/object_tests.rb +15 -1
  373. data/tests/hp/storage_tests.rb +25 -0
  374. data/tests/rackspace/cdn_tests.rb +1 -1
  375. data/tests/rackspace/models/compute_v2/metadata_tests.rb +1 -1
  376. data/tests/rackspace/models/identity/service_catalog_tests.rb +1 -1
  377. data/tests/rackspace/models/storage/file_tests.rb +19 -6
  378. data/tests/rackspace/models/storage/files_tests.rb +44 -0
  379. data/tests/rackspace/requests/monitoring/helper.rb +64 -0
  380. data/tests/rackspace/requests/monitoring/list_tests.rb +14 -2
  381. data/tests/rackspace/requests/storage/large_object_tests.rb +8 -6
  382. data/tests/rackspace/requests/storage/object_tests.rb +11 -0
  383. data/tests/rackspace/storage_tests.rb +4 -4
  384. data/tests/vcloud_director/requests/compute/edge_gateway_tests.rb +48 -44
  385. data/tests/vcloud_director/requests/compute/network_tests.rb +2 -0
  386. metadata +356 -5
data/Rakefile CHANGED
@@ -65,6 +65,24 @@ namespace :test do
65
65
  end
66
66
  end
67
67
 
68
+ desc 'Run mocked tests for a specific provider'
69
+ task :mock, :provider do |t, args|
70
+ if args.to_a.size != 1
71
+ fail 'USAGE: rake mock[<provider>]'
72
+ end
73
+ provider = args[:provider]
74
+ sh("export FOG_MOCK=true && bundle exec shindont tests/#{provider}")
75
+ end
76
+
77
+ desc 'Run live tests against a specific provider'
78
+ task :live, :provider do |t, args|
79
+ if args.to_a.size != 1
80
+ fail 'USAGE: rake live[<provider>]'
81
+ end
82
+ provider = args[:provider]
83
+ sh("export FOG_MOCK=false && bundle exec shindont tests/#{provider}")
84
+ end
85
+
68
86
  task :nuke do
69
87
  Fog.providers.each do |provider|
70
88
  next if ['Vmfusion'].include?(provider)
@@ -195,4 +213,4 @@ task :coveralls_push_workaround do
195
213
  Coveralls::RakeTask.new
196
214
  Rake::Task["coveralls:push"].invoke
197
215
  end
198
- end
216
+ end
@@ -1,3 +1,411 @@
1
+ 1.18.0 10/31/2013 5442bc7e893eb73dae8bb5ee8ef0845c78c43627
2
+ ==========================================================
3
+
4
+ Stats! { 'collaborators' => 53, 'downloads' => 3557402, 'forks' => 967, 'open_issues' => 171, 'watchers' => 2767 }
5
+
6
+ MVP! Mike Hagedorn
7
+
8
+ [aws|compute]
9
+ mock instance tenancy on servers. thanks Eugene Howe
10
+ Fixed a typo. thanks Kevin Menard
11
+
12
+ [aws|data_pipeline]
13
+ don't pass host to request. thanks Matt Gillooly
14
+
15
+ [ecloud|compute]
16
+ Replace /cloudapi/ecloud with a configurable path. thanks Todd Willey
17
+
18
+ [hp]
19
+ Add a simple http instrumentor. thanks Rupak Ganguly
20
+ Fix a small issue with the simple instrumentor. Remove igonore_aweful_caching from compute provider. thanks Rupak Ganguly
21
+ Another fix to the simple instrumentor. thanks Rupak Ganguly
22
+ Bump version and update changelog. thanks Rupak Ganguly
23
+ Add a simple http instrumentor. thanks Rupak Ganguly
24
+ Fix a small issue with the simple instrumentor. Remove igonore_aweful_caching from compute provider. thanks Rupak Ganguly
25
+ Another fix to the simple instrumentor. thanks Rupak Ganguly
26
+ Bump version and update changelog. thanks Rupak Ganguly
27
+
28
+ [hp|block_storage_v2]
29
+ Add a new Block Storage V2 provider for next gen block storage services. thanks Rupak Ganguly
30
+ Add request methods for volumes, along with tests. thanks Rupak Ganguly
31
+ Add the compute_v2 instance helper method. thanks Rupak Ganguly
32
+ Add volume model, fix some mocks, and add volume tests. thanks Rupak Ganguly
33
+ Add request methods for snapshots, along with tests. thanks Rupak Ganguly
34
+ Add snapshot model along with tests. thanks Rupak Ganguly
35
+ Add request methods for volume backups, along with tests. thanks Rupak Ganguly
36
+ Fix status for request methods. thanks Rupak Ganguly
37
+ Add details to the volumes and snapshots collection. Add new helper methods for corresponding statuses. Add collection tests for volumes and snapshots. thanks Rupak Ganguly
38
+ Add volume backups model, along with tests. thanks Rupak Ganguly
39
+ Add a new Block Storage V2 provider for next gen block storage services. thanks Rupak Ganguly
40
+ Add request methods for volumes, along with tests. thanks Rupak Ganguly
41
+ Add the compute_v2 instance helper method. thanks Rupak Ganguly
42
+ Add volume model, fix some mocks, and add volume tests. thanks Rupak Ganguly
43
+ Add request methods for snapshots, along with tests. thanks Rupak Ganguly
44
+ Add snapshot model along with tests. thanks Rupak Ganguly
45
+ Add request methods for volume backups, along with tests. thanks Rupak Ganguly
46
+ Fix status for request methods. thanks Rupak Ganguly
47
+ Add details to the volumes and snapshots collection. Add new helper methods for corresponding statuses. Add collection tests for volumes and snapshots. thanks Rupak Ganguly
48
+ Add volume backups model, along with tests. thanks Rupak Ganguly
49
+
50
+ [hp|compute]
51
+ Add vnc console feature into request layer and server model. thanks Rupak Ganguly
52
+ Fix deprecation messaging. thanks Rupak Ganguly
53
+ Add vnc console feature into request layer and server model. thanks Rupak Ganguly
54
+ Fix deprecation messaging. thanks Rupak Ganguly
55
+
56
+ [hp|compute_v2]
57
+ Add new HP Compute V2 provider. Add request methods for servers. thanks Rupak Ganguly
58
+ Remove aweful caching from query. thanks Rupak Ganguly
59
+ Add filter options to query for servers. thanks Rupak Ganguly
60
+ Update attributes, mocks and inline help. thanks Rupak Ganguly
61
+ Add capability to pass networks while creating a server. thanks Rupak Ganguly
62
+ Add tests for request methods for server. thanks Rupak Ganguly
63
+ Add the request methods for reboot, rebuild and create_image for servers. thanks Rupak Ganguly
64
+ Add request methods for flavors, along with tests. thanks Rupak Ganguly
65
+ Add request methods for images, along with tests. thanks Rupak Ganguly
66
+ Add request methods for keypairs, along with tests. thanks Rupak Ganguly
67
+ Add metadata request methods for servers and images, along with tests. thanks Rupak Ganguly
68
+ Add request methods for console, along with tests. thanks Rupak Ganguly
69
+ Add request methods for floating ip addresses, along with tests. thanks Rupak Ganguly
70
+ Add request methods for server addresses, along with tests. thanks Rupak Ganguly
71
+ Add models for servers, images and metadata. thanks Rupak Ganguly
72
+ Add tests for servers, images and metadata. thanks Rupak Ganguly
73
+ Add models for flavors and key pairs, along with tests. thanks Rupak Ganguly
74
+ Add address model along with tests. thanks Rupak Ganguly
75
+ Fix some tests. thanks Rupak Ganguly
76
+ Fix mocks for server addresses. Fix create_server and server model to accept networks and availability zones params. thanks Rupak Ganguly
77
+ Add request methods and models for availability zones, along with tests. thanks Rupak Ganguly
78
+ Add request methods for volume attachments for server, along with tests. thanks Rupak Ganguly
79
+ Add volume attachment methods to the server model. thanks Rupak Ganguly
80
+ Add update_name for server model. thanks Rupak Ganguly
81
+ Update server model with flavor and image methods. Also, update the create_image method to return image model. Update tests as well. thanks Rupak Ganguly
82
+ Update rebuild method of the server model. thanks Rupak Ganguly
83
+ Refactor server model to add volume attachments. thanks Rupak Ganguly
84
+ Add method to retrieve windows instance password after it is created. Also, add tests for persistent server. thanks Rupak Ganguly
85
+ Fix network_name for 1.8.7 compatibility. thanks Rupak Ganguly
86
+ Add request method for limits. thanks Rupak Ganguly
87
+ Add request and server model methods to add security groups to server after creation, along with tests. thanks Rupak Ganguly
88
+ Fix a minor bug. thanks Rupak Ganguly
89
+ Add new HP Compute V2 provider. Add request methods for servers. thanks Rupak Ganguly
90
+ Remove aweful caching from query. thanks Rupak Ganguly
91
+ Add filter options to query for servers. thanks Rupak Ganguly
92
+ Update attributes, mocks and inline help. thanks Rupak Ganguly
93
+ Add capability to pass networks while creating a server. thanks Rupak Ganguly
94
+ Add tests for request methods for server. thanks Rupak Ganguly
95
+ Add the request methods for reboot, rebuild and create_image for servers. thanks Rupak Ganguly
96
+ Add request methods for flavors, along with tests. thanks Rupak Ganguly
97
+ Add request methods for images, along with tests. thanks Rupak Ganguly
98
+ Add request methods for keypairs, along with tests. thanks Rupak Ganguly
99
+ Add metadata request methods for servers and images, along with tests. thanks Rupak Ganguly
100
+ Add request methods for console, along with tests. thanks Rupak Ganguly
101
+ Add request methods for floating ip addresses, along with tests. thanks Rupak Ganguly
102
+ Add request methods for server addresses, along with tests. thanks Rupak Ganguly
103
+ Add models for servers, images and metadata. thanks Rupak Ganguly
104
+ Add tests for servers, images and metadata. thanks Rupak Ganguly
105
+ Add models for flavors and key pairs, along with tests. thanks Rupak Ganguly
106
+ Add address model along with tests. thanks Rupak Ganguly
107
+ Fix some tests. thanks Rupak Ganguly
108
+ Fix mocks for server addresses. Fix create_server and server model to accept networks and availability zones params. thanks Rupak Ganguly
109
+ Add request methods and models for availability zones, along with tests. thanks Rupak Ganguly
110
+ Add request methods for volume attachments for server, along with tests. thanks Rupak Ganguly
111
+ Add volume attachment methods to the server model. thanks Rupak Ganguly
112
+ Add update_name for server model. thanks Rupak Ganguly
113
+ Update server model with flavor and image methods. Also, update the create_image method to return image model. Update tests as well. thanks Rupak Ganguly
114
+ Update rebuild method of the server model. thanks Rupak Ganguly
115
+ Refactor server model to add volume attachments. thanks Rupak Ganguly
116
+ Add method to retrieve windows instance password after it is created. Also, add tests for persistent server. thanks Rupak Ganguly
117
+ Fix network_name for 1.8.7 compatibility. thanks Rupak Ganguly
118
+ Add request method for limits. thanks Rupak Ganguly
119
+ Add request and server model methods to add security groups to server after creation, along with tests. thanks Rupak Ganguly
120
+ Fix a minor bug. thanks Rupak Ganguly
121
+
122
+ [hp|dns]
123
+ Add the HP DNS provider along with the tests. thanks Rupak Ganguly
124
+ Add DNS model tests and updated models and mocks. thanks Rupak Ganguly
125
+ Fix update_record issue and fix tests. thanks Rupak Ganguly
126
+ Add the HP DNS provider along with the tests. thanks Rupak Ganguly
127
+ Add DNS model tests and updated models and mocks. thanks Rupak Ganguly
128
+ Fix update_record issue and fix tests. thanks Rupak Ganguly
129
+
130
+ [hp|dns,lb]
131
+ Add DNS and LB provider registration. thanks Rupak Ganguly
132
+ Add DNS and LB provider registration. thanks Rupak Ganguly
133
+
134
+ [hp|lb]
135
+ Add request layer for methods for load balancer along with tests. thanks Rupak Ganguly
136
+ Add HP provider models for Load Balancer along with tests. thanks Rupak Ganguly
137
+ Add request layer for methods for load balancer along with tests. thanks Rupak Ganguly
138
+ Add HP provider models for Load Balancer along with tests. thanks Rupak Ganguly
139
+
140
+ [hp|network]
141
+ Add the HP Network (Quantum) provider. thanks Rupak Ganguly
142
+ Add request method for list_networks. thanks Rupak Ganguly
143
+ Add request method for get_network. thanks Rupak Ganguly
144
+ Add request method for create_network. thanks Rupak Ganguly
145
+ Add request method for delete_network. thanks Rupak Ganguly
146
+ Add request method for update_network. thanks Rupak Ganguly
147
+ Add bin support for network provider. thanks Rupak Ganguly
148
+ Add tests for request methods for network provider. thanks Rupak Ganguly
149
+ Add request methods for subnets. thanks Rupak Ganguly
150
+ Add tests for request methods of subnets. thanks Rupak Ganguly
151
+ Add request methods for ports and tests to go along. thanks Rupak Ganguly
152
+ Update create_port to add security groups. thanks Rupak Ganguly
153
+ Minor edits. thanks Rupak Ganguly
154
+ Add the request methods for floating ips, along with the tests. thanks Rupak Ganguly
155
+ Minor chnages to inline docs and mocks. thanks Rupak Ganguly
156
+ Add the request methods for routers. thanks Rupak Ganguly
157
+ Fix the mocks for remove router logic. thanks Rupak Ganguly
158
+ Add tests for routers. thanks Rupak Ganguly
159
+ Add a mock external network. Fix some mocks and tests. thanks Rupak Ganguly
160
+ Add models for network, along with tests. thanks Rupak Ganguly
161
+ Minor changes to network model. thanks Rupak Ganguly
162
+ Add models for subnets, along with tests. thanks Rupak Ganguly
163
+ Add models for ports, along with tests. thanks Rupak Ganguly
164
+ Add models for floating ips, along with tests. thanks Rupak Ganguly
165
+ Add models for routers, along with tests. thanks Rupak Ganguly
166
+ Add router interface methods and tests to router models. thanks Rupak Ganguly
167
+ Fix minor bug. thanks Rupak Ganguly
168
+ Add request methods for networking security groups. thanks Rupak Ganguly
169
+ Add tests for request methods for networking security groups. thanks Rupak Ganguly
170
+ Add request methods for networking security group rules, along with tests. thanks Rupak Ganguly
171
+ Add models for security groups, along with tests. thanks Rupak Ganguly
172
+ Add security group rules model, along with tests. thanks Rupak Ganguly
173
+ Add a ready? method to the network model. thanks Rupak Ganguly
174
+ Add the request methods for floating ips, along with the tests. thanks Rupak Ganguly
175
+ Minor chnages to inline docs and mocks. thanks Rupak Ganguly
176
+ Add the request methods for routers. thanks Rupak Ganguly
177
+ Update network provider to cache credentials. thanks Rupak Ganguly
178
+ Add ready? method for port and router model. thanks Rupak Ganguly
179
+ Add a extra check for responses that return not JSON data. thanks Rupak Ganguly
180
+ Add the HP Network (Quantum) provider. thanks Rupak Ganguly
181
+ Add request method for list_networks. thanks Rupak Ganguly
182
+ Add request method for get_network. thanks Rupak Ganguly
183
+ Add request method for create_network. thanks Rupak Ganguly
184
+ Add request method for delete_network. thanks Rupak Ganguly
185
+ Add request method for update_network. thanks Rupak Ganguly
186
+ Add bin support for network provider. thanks Rupak Ganguly
187
+ Add tests for request methods for network provider. thanks Rupak Ganguly
188
+ Add request methods for subnets. thanks Rupak Ganguly
189
+ Add tests for request methods of subnets. thanks Rupak Ganguly
190
+ Add request methods for ports and tests to go along. thanks Rupak Ganguly
191
+ Update create_port to add security groups. thanks Rupak Ganguly
192
+ Minor edits. thanks Rupak Ganguly
193
+ Add the request methods for floating ips, along with the tests. thanks Rupak Ganguly
194
+ Minor chnages to inline docs and mocks. thanks Rupak Ganguly
195
+ Add the request methods for routers. thanks Rupak Ganguly
196
+ Fix the mocks for remove router logic. thanks Rupak Ganguly
197
+ Add tests for routers. thanks Rupak Ganguly
198
+ Add a mock external network. Fix some mocks and tests. thanks Rupak Ganguly
199
+ Add models for network, along with tests. thanks Rupak Ganguly
200
+ Minor changes to network model. thanks Rupak Ganguly
201
+ Add models for subnets, along with tests. thanks Rupak Ganguly
202
+ Add models for ports, along with tests. thanks Rupak Ganguly
203
+ Add models for floating ips, along with tests. thanks Rupak Ganguly
204
+ Add models for routers, along with tests. thanks Rupak Ganguly
205
+ Add router interface methods and tests to router models. thanks Rupak Ganguly
206
+ Fix minor bug. thanks Rupak Ganguly
207
+ Add request methods for networking security groups. thanks Rupak Ganguly
208
+ Add tests for request methods for networking security groups. thanks Rupak Ganguly
209
+ Add request methods for networking security group rules, along with tests. thanks Rupak Ganguly
210
+ Add models for security groups, along with tests. thanks Rupak Ganguly
211
+ Add security group rules model, along with tests. thanks Rupak Ganguly
212
+ Add a ready? method to the network model. thanks Rupak Ganguly
213
+ Add the request methods for floating ips, along with the tests. thanks Rupak Ganguly
214
+ Minor chnages to inline docs and mocks. thanks Rupak Ganguly
215
+ Add the request methods for routers. thanks Rupak Ganguly
216
+ Update network provider to cache credentials. thanks Rupak Ganguly
217
+ Add ready? method for port and router model. thanks Rupak Ganguly
218
+ Add a extra check for responses that return not JSON data. thanks Rupak Ganguly
219
+
220
+ [hp|storage]
221
+ Minor fixes to post_container and post_object methods and tests. thanks Rupak Ganguly
222
+ Add attributes to directory model and update collection to save these for the static web. thanks Rupak Ganguly
223
+ Add a metadata implementation for object storage directory. thanks Rupak Ganguly
224
+ Minor fixes to directory metadata and along with tests for metadata. thanks Rupak Ganguly
225
+ Minor fixes to post_container and post_object methods and tests. thanks Rupak Ganguly
226
+ Add attributes to directory model and update collection to save these for the static web. thanks Rupak Ganguly
227
+ Add a metadata implementation for object storage directory. thanks Rupak Ganguly
228
+ Minor fixes to directory metadata and along with tests for metadata. thanks Rupak Ganguly
229
+
230
+ [misc]
231
+ Fix parser typo that caused failure in #describe_internet_gateways when the gateway had tags. thanks David Faber
232
+ Add support to #create_tags mock for internet gateways. thanks David Faber
233
+ Fix initialization of instances array in AWS autoscaling group. thanks David Faber
234
+ Fix initialization of instances array in AWS autoscaling group. thanks David Faber
235
+ Remove override of instances instance-setting in autoscale groups. thanks Jose Diaz-Gonzalez
236
+ rake mock[<provider>] and live[<provider] tasks. thanks Max Lincoln
237
+ fix usage for mock. thanks Max Lincoln
238
+ added dns files. thanks Mike Hagedorn
239
+ added dns stuff. thanks Mike Hagedorn
240
+ added to bin for provider. thanks Mike Hagedorn
241
+ added lb to bin. thanks Mike Hagedorn
242
+ cleaned up dns stuff. thanks Mike Hagedorn
243
+ beginnings for LB adapter. thanks Mike Hagedorn
244
+ more requests... thanks Mike Hagedorn
245
+ versioning logic. thanks Mike Hagedorn
246
+ create lb node request logic. thanks Mike Hagedorn
247
+ clean up copy and paste error. thanks Mike Hagedorn
248
+ took dns refs out of lbaas branch. thanks Mike Hagedorn
249
+ model tweaks. thanks Mike Hagedorn
250
+ fixed request registration. thanks Mike Hagedorn
251
+ file rename. thanks Mike Hagedorn
252
+ added list tests. thanks Mike Hagedorn
253
+ added limits unit test. thanks Mike Hagedorn
254
+ get load balancer tests. thanks Mike Hagedorn
255
+ more node tests. thanks Mike Hagedorn
256
+ delete node/lb tests. thanks Mike Hagedorn
257
+ added dns files. thanks Mike Hagedorn
258
+ added dns stuff. thanks Mike Hagedorn
259
+ added to bin for provider. thanks Mike Hagedorn
260
+ added lb to bin. thanks Mike Hagedorn
261
+ cleaned up dns stuff. thanks Mike Hagedorn
262
+ beginnings for LB adapter. thanks Mike Hagedorn
263
+ more requests... thanks Mike Hagedorn
264
+ versioning logic. thanks Mike Hagedorn
265
+ create lb node request logic. thanks Mike Hagedorn
266
+ clean up copy and paste error. thanks Mike Hagedorn
267
+ took dns refs out of lbaas branch. thanks Mike Hagedorn
268
+ model tweaks. thanks Mike Hagedorn
269
+ fixed request registration. thanks Mike Hagedorn
270
+ file rename. thanks Mike Hagedorn
271
+ added list tests. thanks Mike Hagedorn
272
+ added limits unit test. thanks Mike Hagedorn
273
+ get load balancer tests. thanks Mike Hagedorn
274
+ more node tests. thanks Mike Hagedorn
275
+ delete node/lb tests. thanks Mike Hagedorn
276
+ make Disks model zone agnostic. thanks Nat Welch
277
+ small typo. thanks Nat Welch
278
+ expand variable names. thanks Nat Welch
279
+ added tests for monigtoring zones. thanks Paul Vudmaska
280
+ add pending if mocking to tests. thanks Paul Vudmaska
281
+ using Fog.mocking rather than mocking?. thanks Paul Vudmaska
282
+ Update changelog and bump version. thanks Rupak Ganguly
283
+ Fix minor thing. thanks Rupak Ganguly
284
+ Fix minor things in console request methods. thanks Rupak Ganguly
285
+ Minor fix to failing test. thanks Rupak Ganguly
286
+ Minor inline doc updates. thanks Rupak Ganguly
287
+ Minor fix to desc. of tests. thanks Rupak Ganguly
288
+ Minor fix to inline help. thanks Rupak Ganguly
289
+ Remove the metadata attribute, and let it be lazy loaded as needed per image object. thanks Rupak Ganguly
290
+ Add a capability to filter collections based on aliased or original attributes. Also, add capability to specify :details => true to fetch details, non-details call being the default. thanks Rupak Ganguly
291
+ Remove the metadata attribute, and let it be lazy loaded as needed per server object. thanks Rupak Ganguly
292
+ Add subnets collection to the network model. thanks Rupak Ganguly
293
+ Add a helper method for network_names. Also, update network_name methdo to set itself to the first network with a public ip address by default. thanks Rupak Ganguly
294
+ Bump version and update changelog. thanks Rupak Ganguly
295
+ Minor fix to mocks. thanks Rupak Ganguly
296
+ Fix small typo. thanks Rupak Ganguly
297
+ [hp|compute_v2]Minor fixes to mocks. thanks Rupak Ganguly
298
+ Add a body for the request portion for the instrumentor. thanks Rupak Ganguly
299
+ Remove HP version info from user-agent. thanks Rupak Ganguly
300
+ Update newer providers to expose hp_service_type as was done in #2177. thanks Rupak Ganguly
301
+ Remove some files that were added during merge. thanks Rupak Ganguly
302
+ Update changelog and bump version. thanks Rupak Ganguly
303
+ Fix minor thing. thanks Rupak Ganguly
304
+ Fix minor things in console request methods. thanks Rupak Ganguly
305
+ Minor fix to failing test. thanks Rupak Ganguly
306
+ Minor inline doc updates. thanks Rupak Ganguly
307
+ Minor fix to desc. of tests. thanks Rupak Ganguly
308
+ Minor fix to inline help. thanks Rupak Ganguly
309
+ Remove the metadata attribute, and let it be lazy loaded as needed per image object. thanks Rupak Ganguly
310
+ Add a capability to filter collections based on aliased or original attributes. Also, add capability to specify :details => true to fetch details, non-details call being the default. thanks Rupak Ganguly
311
+ Remove the metadata attribute, and let it be lazy loaded as needed per server object. thanks Rupak Ganguly
312
+ Add subnets collection to the network model. thanks Rupak Ganguly
313
+ Add a helper method for network_names. Also, update network_name methdo to set itself to the first network with a public ip address by default. thanks Rupak Ganguly
314
+ Bump version and update changelog. thanks Rupak Ganguly
315
+ Minor fix to mocks. thanks Rupak Ganguly
316
+ Fix small typo. thanks Rupak Ganguly
317
+ [hp|compute_v2]Minor fixes to mocks. thanks Rupak Ganguly
318
+ Add a body for the request portion for the instrumentor. thanks Rupak Ganguly
319
+ Remove HP version info from user-agent. thanks Rupak Ganguly
320
+ Update newer providers to expose hp_service_type as was done in #2177. thanks Rupak Ganguly
321
+ Remove some files that were added during merge. thanks Rupak Ganguly
322
+ Remove tests temporarily. thanks Rupak Ganguly
323
+ Fix tests temporarily for 1.8.7. thanks Rupak Ganguly
324
+ fixing firewall config to follow api documentation. thanks Sneha Somwanshi
325
+ Added missing health check uri and pool description. thanks Sneha Somwanshi
326
+ Should define the username only if empty. thanks Sylvain Kalache
327
+ Update lib/fog/hp.rb. thanks Terry Howe
328
+ Update lib/fog/hp/models/compute_v2/server.rb. thanks Terry Howe
329
+ Update lib/fog/hp/models/compute_v2/server.rb. thanks Terry Howe
330
+ fix error in volumes. thanks Terry Howe
331
+ Update create_record.rb. thanks Terry Howe
332
+ Update version.rb. thanks Terry Howe
333
+ Update versions.rb. thanks Terry Howe
334
+ make HP a bit more like openstack generic. thanks Terry Howe
335
+ changes to make old ips work better and activate network for HP. thanks Terry Howe
336
+ excon update fix. thanks Terry Howe
337
+ Update lib/fog/hp.rb. thanks Terry Howe
338
+ Update lib/fog/hp/models/compute_v2/server.rb. thanks Terry Howe
339
+ Update lib/fog/hp/models/compute_v2/server.rb. thanks Terry Howe
340
+ fix error in volumes. thanks Terry Howe
341
+ Update create_record.rb. thanks Terry Howe
342
+ Update version.rb. thanks Terry Howe
343
+ Update versions.rb. thanks Terry Howe
344
+ make HP a bit more like openstack generic. thanks Terry Howe
345
+ changes to make old ips work better and activate network for HP. thanks Terry Howe
346
+ excon update fix. thanks Terry Howe
347
+ When not mocked, test against LiveSpec api endpoint. thanks Todd Willey
348
+ Map a single-value hash to arrays when needed. thanks Todd Willey
349
+ Specify tests to come from Living Spec. thanks Todd Willey
350
+ add Chris Roberts to MVP list. thanks geemus
351
+ bump excon dependency. thanks geemus
352
+ syntax fix. thanks geemus
353
+ dxsdk-27 authentication caching. thanks howete
354
+ dxsdk-27 add the test back in. thanks howete
355
+ dxsdk-27 modification as pre rupak. thanks howete
356
+ dxsdk-27 make generic credentials. thanks howete
357
+ dxsdk-27 make generic credentials. thanks howete
358
+ dxsdk-321 add credentials for convenience methods. thanks howete
359
+ add a post object request for after and at deletes. thanks howete
360
+ correcting mock. thanks howete
361
+ dxsdk-335 add tests and a post_container request. thanks howete
362
+ monkey patch start. thanks howete
363
+ add service catalog call. thanks howete
364
+ merge. thanks howete
365
+ update LBaaS to what works with the current version in pro. thanks howete
366
+ make the updates for version and virtual ip. thanks howete
367
+ dxcli-847 fixes for 1.8.7 ruby. thanks howete
368
+ dxcli-847 add mikes tests back in. thanks howete
369
+ dxcli-863 versions error from fog call. thanks howete
370
+ dxsdk-27 authentication caching. thanks howete
371
+ dxsdk-27 add the test back in. thanks howete
372
+ dxsdk-27 modification as pre rupak. thanks howete
373
+ dxsdk-27 make generic credentials. thanks howete
374
+ dxsdk-27 make generic credentials. thanks howete
375
+ dxsdk-321 add credentials for convenience methods. thanks howete
376
+ add a post object request for after and at deletes. thanks howete
377
+ correcting mock. thanks howete
378
+ dxsdk-335 add tests and a post_container request. thanks howete
379
+ monkey patch start. thanks howete
380
+ add service catalog call. thanks howete
381
+ merge. thanks howete
382
+ update LBaaS to what works with the current version in pro. thanks howete
383
+ make the updates for version and virtual ip. thanks howete
384
+ dxcli-847 fixes for 1.8.7 ruby. thanks howete
385
+ dxcli-847 add mikes tests back in. thanks howete
386
+ dxcli-863 versions error from fog call. thanks howete
387
+
388
+ [rackspace]
389
+ fixing broken tests. thanks Kyle Rames
390
+
391
+ [rackspace|monitoring]
392
+ updating BadRequest exceptions to include validation errors. thanks Kyle Rames
393
+
394
+ [rackspace|storage]
395
+ implement get_http_url and get_https_url. See issue #2103 for more information. thanks Kyle Rames
396
+ set tests to pending if mocking. thanks Kyle Rames
397
+
398
+ [vcloud_director]
399
+ fix or skip tests that fail in real environment. thanks Dan Abel
400
+ test should fail fast, and use a clearly test id and description. thanks Dan Abel
401
+ Ensure task :Owner is always present. thanks Nick Osborn
402
+
403
+ [vsphere|compute]
404
+ Added the ability to create and destroy new volumes. thanks Kevin Menard
405
+ Be more intelligent about auto-picking a unit number for a volume. thanks Kevin Menard
406
+ Refresh the local volume attributes upon successful save and accurately report save failures. thanks Kevin Menard
407
+
408
+
1
409
  1.17.0 10/29/2013 9f0627eec16e636bfe86895bbd36f89d7a017737
2
410
  ==========================================================
3
411
 
@@ -6,8 +6,8 @@ Gem::Specification.new do |s|
6
6
  ## If your rubyforge_project name is different, then edit it and comment out
7
7
  ## the sub! line in the Rakefile
8
8
  s.name = 'fog'
9
- s.version = '1.17.0'
10
- s.date = '2013-10-29'
9
+ s.version = '1.18.0'
10
+ s.date = '2013-10-31'
11
11
  s.rubyforge_project = 'fog'
12
12
 
13
13
  ## Make sure your summary is short. The description may be as long
@@ -42,7 +42,7 @@ Gem::Specification.new do |s|
42
42
  ## List your runtime dependencies here. Runtime dependencies are those
43
43
  ## that are needed for an end user to actually USE your code.
44
44
  s.add_dependency('builder')
45
- s.add_dependency('excon', '~>0.27.0')
45
+ s.add_dependency('excon', '~>0.28.0')
46
46
  s.add_dependency('formatador', '~>0.2.0')
47
47
  s.add_dependency('multi_json', '~>1.0')
48
48
  s.add_dependency('mime-types')