fog-aws 0.11.0 → 3.18.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (794) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +813 -22
  3. data/CONTRIBUTING.md +6 -6
  4. data/CONTRIBUTORS.md +104 -1
  5. data/LICENSE.md +1 -1
  6. data/README.md +121 -7
  7. data/fog-aws.gemspec +12 -9
  8. data/lib/fog/aws/auto_scaling.rb +4 -1
  9. data/lib/fog/aws/cdn.rb +15 -2
  10. data/lib/fog/aws/cloud_formation.rb +14 -0
  11. data/lib/fog/aws/compute.rb +158 -27
  12. data/lib/fog/aws/credential_fetcher.rb +81 -13
  13. data/lib/fog/aws/data_pipeline.rb +65 -2
  14. data/lib/fog/aws/dns.rb +154 -5
  15. data/lib/fog/aws/efs.rb +177 -0
  16. data/lib/fog/aws/elasticache.rb +4 -2
  17. data/lib/fog/aws/elb.rb +3 -2
  18. data/lib/fog/aws/elbv2.rb +72 -0
  19. data/lib/fog/aws/glacier.rb +83 -21
  20. data/lib/fog/aws/iam/default_policy_versions.json +1 -0
  21. data/lib/fog/aws/iam.rb +3 -0
  22. data/lib/fog/aws/kinesis.rb +23 -15
  23. data/lib/fog/aws/mock.rb +12 -0
  24. data/lib/fog/aws/models/auto_scaling/group.rb +24 -0
  25. data/lib/fog/aws/models/cdn/distribution.rb +4 -4
  26. data/lib/fog/aws/models/cdn/distribution_helper.rb +2 -2
  27. data/lib/fog/aws/models/cdn/distributions.rb +4 -4
  28. data/lib/fog/aws/models/cdn/distributions_helper.rb +2 -2
  29. data/lib/fog/aws/models/cdn/invalidation.rb +2 -2
  30. data/lib/fog/aws/models/cdn/invalidations.rb +3 -3
  31. data/lib/fog/aws/models/cdn/streaming_distribution.rb +3 -3
  32. data/lib/fog/aws/models/cdn/streaming_distributions.rb +4 -4
  33. data/lib/fog/aws/models/compute/address.rb +19 -3
  34. data/lib/fog/aws/models/compute/addresses.rb +3 -3
  35. data/lib/fog/aws/models/compute/dhcp_option.rb +2 -2
  36. data/lib/fog/aws/models/compute/dhcp_options.rb +7 -7
  37. data/lib/fog/aws/models/compute/flavor.rb +2 -2
  38. data/lib/fog/aws/models/compute/flavors.rb +3138 -296
  39. data/lib/fog/aws/models/compute/image.rb +4 -2
  40. data/lib/fog/aws/models/compute/images.rb +6 -4
  41. data/lib/fog/aws/models/compute/internet_gateway.rb +2 -2
  42. data/lib/fog/aws/models/compute/internet_gateways.rb +7 -7
  43. data/lib/fog/aws/models/compute/key_pair.rb +2 -2
  44. data/lib/fog/aws/models/compute/key_pairs.rb +3 -3
  45. data/lib/fog/aws/models/compute/network_acl.rb +4 -4
  46. data/lib/fog/aws/models/compute/network_acls.rb +6 -6
  47. data/lib/fog/aws/models/compute/network_interface.rb +2 -2
  48. data/lib/fog/aws/models/compute/network_interfaces.rb +4 -4
  49. data/lib/fog/aws/models/compute/route_table.rb +2 -2
  50. data/lib/fog/aws/models/compute/route_tables.rb +7 -7
  51. data/lib/fog/aws/models/compute/security_group.rb +61 -30
  52. data/lib/fog/aws/models/compute/security_groups.rb +3 -3
  53. data/lib/fog/aws/models/compute/server.rb +8 -4
  54. data/lib/fog/aws/models/compute/servers.rb +13 -8
  55. data/lib/fog/aws/models/compute/snapshot.rb +9 -8
  56. data/lib/fog/aws/models/compute/snapshots.rb +3 -3
  57. data/lib/fog/aws/models/compute/spot_request.rb +5 -4
  58. data/lib/fog/aws/models/compute/spot_requests.rb +3 -3
  59. data/lib/fog/aws/models/compute/subnet.rb +7 -2
  60. data/lib/fog/aws/models/compute/subnets.rb +3 -3
  61. data/lib/fog/aws/models/compute/tag.rb +2 -2
  62. data/lib/fog/aws/models/compute/tags.rb +3 -3
  63. data/lib/fog/aws/models/compute/volume.rb +46 -38
  64. data/lib/fog/aws/models/compute/volumes.rb +3 -3
  65. data/lib/fog/aws/models/compute/vpc.rb +64 -3
  66. data/lib/fog/aws/models/compute/vpcs.rb +3 -3
  67. data/lib/fog/aws/models/dns/record.rb +2 -2
  68. data/lib/fog/aws/models/dns/records.rb +4 -4
  69. data/lib/fog/aws/models/dns/zone.rb +3 -3
  70. data/lib/fog/aws/models/dns/zones.rb +4 -4
  71. data/lib/fog/aws/models/efs/file_system.rb +46 -0
  72. data/lib/fog/aws/models/efs/file_systems.rb +23 -0
  73. data/lib/fog/aws/models/efs/mount_target.rb +59 -0
  74. data/lib/fog/aws/models/efs/mount_targets.rb +25 -0
  75. data/lib/fog/aws/models/elb/backend_server_descriptions.rb +1 -1
  76. data/lib/fog/aws/models/elb/listeners.rb +3 -4
  77. data/lib/fog/aws/models/elb/load_balancer.rb +10 -2
  78. data/lib/fog/aws/models/elb/load_balancers.rb +5 -6
  79. data/lib/fog/aws/models/iam/access_keys.rb +0 -2
  80. data/lib/fog/aws/models/iam/instance_profile.rb +40 -0
  81. data/lib/fog/aws/models/iam/instance_profiles.rb +24 -0
  82. data/lib/fog/aws/models/iam/managed_policies.rb +12 -0
  83. data/lib/fog/aws/models/iam/managed_policy.rb +20 -0
  84. data/lib/fog/aws/models/iam/role.rb +35 -0
  85. data/lib/fog/aws/models/rds/cluster.rb +9 -1
  86. data/lib/fog/aws/models/rds/instance_option.rb +6 -0
  87. data/lib/fog/aws/models/rds/security_group.rb +4 -2
  88. data/lib/fog/aws/models/rds/server.rb +66 -63
  89. data/lib/fog/aws/models/storage/directories.rb +4 -3
  90. data/lib/fog/aws/models/storage/directory.rb +40 -6
  91. data/lib/fog/aws/models/storage/file.rb +175 -25
  92. data/lib/fog/aws/models/storage/files.rb +36 -6
  93. data/lib/fog/aws/models/storage/version.rb +2 -2
  94. data/lib/fog/aws/models/storage/versions.rb +3 -3
  95. data/lib/fog/aws/models/support/flagged_resource.rb +14 -0
  96. data/lib/fog/aws/models/support/flagged_resources.rb +11 -0
  97. data/lib/fog/aws/models/support/trusted_advisor_check.rb +65 -0
  98. data/lib/fog/aws/models/support/trusted_advisor_checks.rb +21 -0
  99. data/lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb +8 -0
  100. data/lib/fog/aws/parsers/cdn/distribution.rb +2 -2
  101. data/lib/fog/aws/parsers/cdn/get_distribution_list.rb +2 -2
  102. data/lib/fog/aws/parsers/cdn/get_invalidation.rb +2 -2
  103. data/lib/fog/aws/parsers/cdn/get_invalidation_list.rb +2 -2
  104. data/lib/fog/aws/parsers/cdn/get_streaming_distribution_list.rb +2 -2
  105. data/lib/fog/aws/parsers/cdn/post_invalidation.rb +2 -2
  106. data/lib/fog/aws/parsers/cdn/streaming_distribution.rb +1 -1
  107. data/lib/fog/aws/parsers/cloud_formation/basic.rb +8 -0
  108. data/lib/fog/aws/parsers/cloud_formation/create_change_set.rb +16 -0
  109. data/lib/fog/aws/parsers/cloud_formation/describe_account_limits.rb +26 -0
  110. data/lib/fog/aws/parsers/cloud_formation/describe_change_set.rb +135 -0
  111. data/lib/fog/aws/parsers/cloud_formation/describe_stack_resource.rb +28 -0
  112. data/lib/fog/aws/parsers/cloud_formation/estimate_template_cost.rb +16 -0
  113. data/lib/fog/aws/parsers/cloud_formation/get_stack_policy.rb +16 -0
  114. data/lib/fog/aws/parsers/cloud_formation/get_template_summary.rb +62 -0
  115. data/lib/fog/aws/parsers/cloud_formation/list_change_sets.rb +30 -0
  116. data/lib/fog/aws/parsers/compute/allocate_address.rb +2 -2
  117. data/lib/fog/aws/parsers/compute/assign_private_ip_addresses.rb +2 -2
  118. data/lib/fog/aws/parsers/compute/associate_address.rb +2 -2
  119. data/lib/fog/aws/parsers/compute/associate_route_table.rb +2 -2
  120. data/lib/fog/aws/parsers/compute/attach_network_interface.rb +2 -2
  121. data/lib/fog/aws/parsers/compute/attach_volume.rb +2 -2
  122. data/lib/fog/aws/parsers/compute/basic.rb +2 -2
  123. data/lib/fog/aws/parsers/compute/cancel_spot_instance_requests.rb +2 -2
  124. data/lib/fog/aws/parsers/compute/copy_image.rb +2 -2
  125. data/lib/fog/aws/parsers/compute/copy_snapshot.rb +2 -2
  126. data/lib/fog/aws/parsers/compute/create_dhcp_options.rb +2 -2
  127. data/lib/fog/aws/parsers/compute/create_image.rb +2 -2
  128. data/lib/fog/aws/parsers/compute/create_internet_gateway.rb +2 -2
  129. data/lib/fog/aws/parsers/compute/create_key_pair.rb +2 -2
  130. data/lib/fog/aws/parsers/compute/create_network_acl.rb +2 -2
  131. data/lib/fog/aws/parsers/compute/create_network_interface.rb +2 -2
  132. data/lib/fog/aws/parsers/compute/create_route_table.rb +2 -2
  133. data/lib/fog/aws/parsers/compute/create_security_group.rb +2 -2
  134. data/lib/fog/aws/parsers/compute/create_snapshot.rb +3 -3
  135. data/lib/fog/aws/parsers/compute/create_subnet.rb +37 -8
  136. data/lib/fog/aws/parsers/compute/create_volume.rb +2 -2
  137. data/lib/fog/aws/parsers/compute/create_vpc.rb +2 -2
  138. data/lib/fog/aws/parsers/compute/deregister_image.rb +2 -2
  139. data/lib/fog/aws/parsers/compute/describe_account_attributes.rb +2 -2
  140. data/lib/fog/aws/parsers/compute/describe_addresses.rb +32 -11
  141. data/lib/fog/aws/parsers/compute/describe_availability_zones.rb +2 -2
  142. data/lib/fog/aws/parsers/compute/describe_classic_link_instances.rb +2 -2
  143. data/lib/fog/aws/parsers/compute/describe_dhcp_options.rb +2 -2
  144. data/lib/fog/aws/parsers/compute/describe_image_attribute.rb +122 -0
  145. data/lib/fog/aws/parsers/compute/describe_images.rb +5 -3
  146. data/lib/fog/aws/parsers/compute/describe_instance_attribute.rb +2 -2
  147. data/lib/fog/aws/parsers/compute/describe_instance_status.rb +2 -2
  148. data/lib/fog/aws/parsers/compute/describe_instances.rb +2 -2
  149. data/lib/fog/aws/parsers/compute/describe_internet_gateways.rb +2 -2
  150. data/lib/fog/aws/parsers/compute/describe_key_pairs.rb +2 -2
  151. data/lib/fog/aws/parsers/compute/describe_network_acls.rb +2 -2
  152. data/lib/fog/aws/parsers/compute/describe_network_interface_attribute.rb +2 -2
  153. data/lib/fog/aws/parsers/compute/describe_network_interfaces.rb +2 -2
  154. data/lib/fog/aws/parsers/compute/describe_placement_groups.rb +2 -2
  155. data/lib/fog/aws/parsers/compute/describe_regions.rb +2 -2
  156. data/lib/fog/aws/parsers/compute/describe_reserved_instances.rb +19 -8
  157. data/lib/fog/aws/parsers/compute/describe_reserved_instances_offerings.rb +3 -3
  158. data/lib/fog/aws/parsers/compute/describe_route_tables.rb +5 -5
  159. data/lib/fog/aws/parsers/compute/describe_security_groups.rb +21 -7
  160. data/lib/fog/aws/parsers/compute/describe_snapshots.rb +2 -2
  161. data/lib/fog/aws/parsers/compute/describe_spot_price_history.rb +2 -2
  162. data/lib/fog/aws/parsers/compute/describe_subnets.rb +36 -9
  163. data/lib/fog/aws/parsers/compute/describe_tags.rb +2 -2
  164. data/lib/fog/aws/parsers/compute/describe_volume_status.rb +2 -2
  165. data/lib/fog/aws/parsers/compute/describe_volumes.rb +2 -2
  166. data/lib/fog/aws/parsers/compute/describe_volumes_modifications.rb +30 -0
  167. data/lib/fog/aws/parsers/compute/describe_vpc_attribute.rb +2 -2
  168. data/lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb +5 -3
  169. data/lib/fog/aws/parsers/compute/describe_vpc_classic_link_dns_support.rb +26 -0
  170. data/lib/fog/aws/parsers/compute/describe_vpcs.rb +73 -25
  171. data/lib/fog/aws/parsers/compute/detach_volume.rb +2 -2
  172. data/lib/fog/aws/parsers/compute/get_console_output.rb +2 -2
  173. data/lib/fog/aws/parsers/compute/get_password_data.rb +2 -2
  174. data/lib/fog/aws/parsers/compute/import_key_pair.rb +2 -2
  175. data/lib/fog/aws/parsers/compute/modify_subnet_attribute.rb +2 -2
  176. data/lib/fog/aws/parsers/compute/modify_volume.rb +26 -0
  177. data/lib/fog/aws/parsers/compute/monitor_unmonitor_instances.rb +2 -2
  178. data/lib/fog/aws/parsers/compute/move_address_to_vpc.rb +16 -0
  179. data/lib/fog/aws/parsers/compute/network_acl_parser.rb +2 -2
  180. data/lib/fog/aws/parsers/compute/network_interface_parser.rb +2 -2
  181. data/lib/fog/aws/parsers/compute/purchase_reserved_instances_offering.rb +2 -2
  182. data/lib/fog/aws/parsers/compute/register_image.rb +2 -2
  183. data/lib/fog/aws/parsers/compute/replace_network_acl_association.rb +2 -2
  184. data/lib/fog/aws/parsers/compute/restore_address_to_classic.rb +16 -0
  185. data/lib/fog/aws/parsers/compute/run_instances.rb +2 -2
  186. data/lib/fog/aws/parsers/compute/spot_datafeed_subscription.rb +2 -2
  187. data/lib/fog/aws/parsers/compute/spot_instance_requests.rb +2 -2
  188. data/lib/fog/aws/parsers/compute/start_stop_instances.rb +2 -2
  189. data/lib/fog/aws/parsers/compute/terminate_instances.rb +2 -2
  190. data/lib/fog/aws/parsers/dns/change_resource_record_sets.rb +2 -2
  191. data/lib/fog/aws/parsers/dns/create_hosted_zone.rb +3 -3
  192. data/lib/fog/aws/parsers/dns/delete_hosted_zone.rb +2 -2
  193. data/lib/fog/aws/parsers/dns/get_change.rb +2 -2
  194. data/lib/fog/aws/parsers/dns/get_hosted_zone.rb +5 -5
  195. data/lib/fog/aws/parsers/dns/health_check.rb +2 -2
  196. data/lib/fog/aws/parsers/dns/list_health_checks.rb +2 -2
  197. data/lib/fog/aws/parsers/dns/list_hosted_zones.rb +5 -3
  198. data/lib/fog/aws/parsers/dns/list_resource_record_sets.rb +2 -2
  199. data/lib/fog/aws/parsers/elb/describe_load_balancers.rb +3 -3
  200. data/lib/fog/aws/parsers/elbv2/create_load_balancer.rb +88 -0
  201. data/lib/fog/aws/parsers/elbv2/describe_listeners.rb +110 -0
  202. data/lib/fog/aws/parsers/elbv2/describe_load_balancers.rb +88 -0
  203. data/lib/fog/aws/parsers/elbv2/describe_tags.rb +53 -0
  204. data/lib/fog/aws/parsers/elbv2/empty.rb +10 -0
  205. data/lib/fog/aws/parsers/iam/get_group_policy.rb +1 -1
  206. data/lib/fog/aws/parsers/iam/get_role_policy.rb +1 -1
  207. data/lib/fog/aws/parsers/iam/get_user_policy.rb +1 -1
  208. data/lib/fog/aws/parsers/iam/list_access_keys.rb +1 -1
  209. data/lib/fog/aws/parsers/iam/policy_version.rb +1 -1
  210. data/lib/fog/aws/parsers/rds/db_parser.rb +41 -2
  211. data/lib/fog/aws/parsers/rds/describe_orderable_db_instance_options.rb +4 -3
  212. data/lib/fog/aws/parsers/rds/modify_db_subnet_group.rb +24 -0
  213. data/lib/fog/aws/parsers/storage/access_control_list.rb +2 -2
  214. data/lib/fog/aws/parsers/storage/complete_multipart_upload.rb +2 -2
  215. data/lib/fog/aws/parsers/storage/copy_object.rb +2 -2
  216. data/lib/fog/aws/parsers/storage/cors_configuration.rb +2 -2
  217. data/lib/fog/aws/parsers/storage/delete_multiple_objects.rb +2 -2
  218. data/lib/fog/aws/parsers/storage/get_bucket.rb +3 -3
  219. data/lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb +2 -2
  220. data/lib/fog/aws/parsers/storage/get_bucket_location.rb +2 -2
  221. data/lib/fog/aws/parsers/storage/get_bucket_logging.rb +2 -2
  222. data/lib/fog/aws/parsers/storage/get_bucket_notification.rb +2 -2
  223. data/lib/fog/aws/parsers/storage/get_bucket_object_versions.rb +2 -2
  224. data/lib/fog/aws/parsers/storage/get_bucket_tagging.rb +2 -2
  225. data/lib/fog/aws/parsers/storage/get_bucket_versioning.rb +2 -2
  226. data/lib/fog/aws/parsers/storage/get_bucket_website.rb +2 -2
  227. data/lib/fog/aws/parsers/storage/get_object_tagging.rb +33 -0
  228. data/lib/fog/aws/parsers/storage/get_request_payment.rb +2 -2
  229. data/lib/fog/aws/parsers/storage/get_service.rb +2 -2
  230. data/lib/fog/aws/parsers/storage/initiate_multipart_upload.rb +2 -2
  231. data/lib/fog/aws/parsers/storage/list_multipart_uploads.rb +2 -2
  232. data/lib/fog/aws/parsers/storage/list_parts.rb +2 -2
  233. data/lib/fog/aws/parsers/storage/upload_part_copy_object.rb +18 -0
  234. data/lib/fog/aws/parsers/sts/assume_role_with_web_identity.rb +1 -1
  235. data/lib/fog/aws/rds.rb +2 -2
  236. data/lib/fog/aws/requests/auto_scaling/attach_load_balancer_target_groups.rb +58 -0
  237. data/lib/fog/aws/requests/auto_scaling/create_auto_scaling_group.rb +3 -4
  238. data/lib/fog/aws/requests/auto_scaling/detach_instances.rb +3 -4
  239. data/lib/fog/aws/requests/auto_scaling/detach_load_balancer_target_groups.rb +57 -0
  240. data/lib/fog/aws/requests/auto_scaling/put_scaling_policy.rb +1 -1
  241. data/lib/fog/aws/requests/auto_scaling/set_instance_protection.rb +67 -0
  242. data/lib/fog/aws/requests/cdn/delete_distribution.rb +6 -6
  243. data/lib/fog/aws/requests/cdn/delete_streaming_distribution.rb +6 -6
  244. data/lib/fog/aws/requests/cdn/get_distribution.rb +5 -5
  245. data/lib/fog/aws/requests/cdn/get_distribution_list.rb +3 -3
  246. data/lib/fog/aws/requests/cdn/get_invalidation.rb +5 -5
  247. data/lib/fog/aws/requests/cdn/get_invalidation_list.rb +4 -4
  248. data/lib/fog/aws/requests/cdn/get_streaming_distribution.rb +5 -5
  249. data/lib/fog/aws/requests/cdn/get_streaming_distribution_list.rb +3 -3
  250. data/lib/fog/aws/requests/cdn/post_distribution.rb +6 -6
  251. data/lib/fog/aws/requests/cdn/post_invalidation.rb +5 -5
  252. data/lib/fog/aws/requests/cdn/post_streaming_distribution.rb +6 -6
  253. data/lib/fog/aws/requests/cdn/put_distribution_config.rb +7 -7
  254. data/lib/fog/aws/requests/cdn/put_streaming_distribution_config.rb +7 -7
  255. data/lib/fog/aws/requests/cloud_formation/cancel_update_stack.rb +25 -0
  256. data/lib/fog/aws/requests/cloud_formation/continue_update_rollback.rb +26 -0
  257. data/lib/fog/aws/requests/cloud_formation/create_change_set.rb +75 -0
  258. data/lib/fog/aws/requests/cloud_formation/create_stack.rb +14 -0
  259. data/lib/fog/aws/requests/cloud_formation/delete_change_set.rb +26 -0
  260. data/lib/fog/aws/requests/cloud_formation/delete_stack.rb +1 -1
  261. data/lib/fog/aws/requests/cloud_formation/describe_account_limits.rb +27 -0
  262. data/lib/fog/aws/requests/cloud_formation/describe_change_set.rb +43 -0
  263. data/lib/fog/aws/requests/cloud_formation/describe_stack_resource.rb +40 -0
  264. data/lib/fog/aws/requests/cloud_formation/estimate_template_cost.rb +48 -0
  265. data/lib/fog/aws/requests/cloud_formation/execute_change_set.rb +26 -0
  266. data/lib/fog/aws/requests/cloud_formation/get_stack_policy.rb +27 -0
  267. data/lib/fog/aws/requests/cloud_formation/get_template_summary.rb +46 -0
  268. data/lib/fog/aws/requests/cloud_formation/list_change_sets.rb +40 -0
  269. data/lib/fog/aws/requests/cloud_formation/set_stack_policy.rb +38 -0
  270. data/lib/fog/aws/requests/cloud_formation/signal_resource.rb +32 -0
  271. data/lib/fog/aws/requests/cloud_formation/update_stack.rb +49 -0
  272. data/lib/fog/aws/requests/cloud_watch/put_metric_alarm.rb +2 -2
  273. data/lib/fog/aws/requests/compute/allocate_address.rb +6 -5
  274. data/lib/fog/aws/requests/compute/assign_private_ip_addresses.rb +5 -5
  275. data/lib/fog/aws/requests/compute/associate_address.rb +16 -8
  276. data/lib/fog/aws/requests/compute/associate_dhcp_options.rb +4 -4
  277. data/lib/fog/aws/requests/compute/associate_route_table.rb +5 -5
  278. data/lib/fog/aws/requests/compute/attach_classic_link_vpc.rb +10 -10
  279. data/lib/fog/aws/requests/compute/attach_internet_gateway.rb +4 -4
  280. data/lib/fog/aws/requests/compute/attach_network_interface.rb +6 -6
  281. data/lib/fog/aws/requests/compute/attach_volume.rb +7 -7
  282. data/lib/fog/aws/requests/compute/authorize_security_group_egress.rb +114 -0
  283. data/lib/fog/aws/requests/compute/authorize_security_group_ingress.rb +49 -30
  284. data/lib/fog/aws/requests/compute/cancel_spot_instance_requests.rb +20 -3
  285. data/lib/fog/aws/requests/compute/copy_image.rb +3 -3
  286. data/lib/fog/aws/requests/compute/copy_snapshot.rb +24 -11
  287. data/lib/fog/aws/requests/compute/create_dhcp_options.rb +3 -3
  288. data/lib/fog/aws/requests/compute/create_image.rb +3 -3
  289. data/lib/fog/aws/requests/compute/create_internet_gateway.rb +3 -3
  290. data/lib/fog/aws/requests/compute/create_key_pair.rb +4 -4
  291. data/lib/fog/aws/requests/compute/create_network_acl.rb +4 -4
  292. data/lib/fog/aws/requests/compute/create_network_acl_entry.rb +5 -5
  293. data/lib/fog/aws/requests/compute/create_network_interface.rb +15 -12
  294. data/lib/fog/aws/requests/compute/create_placement_group.rb +3 -3
  295. data/lib/fog/aws/requests/compute/create_route.rb +10 -10
  296. data/lib/fog/aws/requests/compute/create_route_table.rb +5 -5
  297. data/lib/fog/aws/requests/compute/create_security_group.rb +27 -22
  298. data/lib/fog/aws/requests/compute/create_snapshot.rb +3 -3
  299. data/lib/fog/aws/requests/compute/create_spot_datafeed_subscription.rb +3 -3
  300. data/lib/fog/aws/requests/compute/create_subnet.rb +23 -19
  301. data/lib/fog/aws/requests/compute/create_tags.rb +3 -3
  302. data/lib/fog/aws/requests/compute/create_volume.rb +11 -11
  303. data/lib/fog/aws/requests/compute/create_vpc.rb +42 -13
  304. data/lib/fog/aws/requests/compute/delete_dhcp_options.rb +4 -4
  305. data/lib/fog/aws/requests/compute/delete_internet_gateway.rb +4 -4
  306. data/lib/fog/aws/requests/compute/delete_key_pair.rb +3 -3
  307. data/lib/fog/aws/requests/compute/delete_network_acl.rb +5 -5
  308. data/lib/fog/aws/requests/compute/delete_network_acl_entry.rb +5 -5
  309. data/lib/fog/aws/requests/compute/delete_network_interface.rb +5 -5
  310. data/lib/fog/aws/requests/compute/delete_placement_group.rb +3 -3
  311. data/lib/fog/aws/requests/compute/delete_route.rb +6 -6
  312. data/lib/fog/aws/requests/compute/delete_route_table.rb +5 -5
  313. data/lib/fog/aws/requests/compute/delete_security_group.rb +17 -17
  314. data/lib/fog/aws/requests/compute/delete_snapshot.rb +4 -4
  315. data/lib/fog/aws/requests/compute/delete_spot_datafeed_subscription.rb +3 -3
  316. data/lib/fog/aws/requests/compute/delete_subnet.rb +4 -4
  317. data/lib/fog/aws/requests/compute/delete_tags.rb +3 -3
  318. data/lib/fog/aws/requests/compute/delete_volume.rb +5 -5
  319. data/lib/fog/aws/requests/compute/delete_vpc.rb +4 -4
  320. data/lib/fog/aws/requests/compute/deregister_image.rb +4 -4
  321. data/lib/fog/aws/requests/compute/describe_account_attributes.rb +3 -3
  322. data/lib/fog/aws/requests/compute/describe_addresses.rb +3 -3
  323. data/lib/fog/aws/requests/compute/describe_availability_zones.rb +16 -3
  324. data/lib/fog/aws/requests/compute/describe_classic_link_instances.rb +3 -3
  325. data/lib/fog/aws/requests/compute/describe_dhcp_options.rb +3 -3
  326. data/lib/fog/aws/requests/compute/describe_image_attribute.rb +74 -0
  327. data/lib/fog/aws/requests/compute/describe_images.rb +5 -3
  328. data/lib/fog/aws/requests/compute/describe_instance_attribute.rb +4 -4
  329. data/lib/fog/aws/requests/compute/describe_instance_status.rb +3 -3
  330. data/lib/fog/aws/requests/compute/describe_instances.rb +5 -5
  331. data/lib/fog/aws/requests/compute/describe_internet_gateways.rb +3 -3
  332. data/lib/fog/aws/requests/compute/describe_key_pairs.rb +3 -3
  333. data/lib/fog/aws/requests/compute/describe_network_acls.rb +3 -3
  334. data/lib/fog/aws/requests/compute/describe_network_interface_attribute.rb +19 -17
  335. data/lib/fog/aws/requests/compute/describe_network_interfaces.rb +7 -3
  336. data/lib/fog/aws/requests/compute/describe_placement_groups.rb +3 -3
  337. data/lib/fog/aws/requests/compute/describe_regions.rb +3 -3
  338. data/lib/fog/aws/requests/compute/describe_reserved_instances.rb +8 -4
  339. data/lib/fog/aws/requests/compute/describe_reserved_instances_offerings.rb +9 -5
  340. data/lib/fog/aws/requests/compute/describe_route_tables.rb +9 -3
  341. data/lib/fog/aws/requests/compute/describe_security_groups.rb +47 -10
  342. data/lib/fog/aws/requests/compute/describe_snapshots.rb +3 -3
  343. data/lib/fog/aws/requests/compute/describe_spot_datafeed_subscription.rb +3 -3
  344. data/lib/fog/aws/requests/compute/describe_spot_instance_requests.rb +36 -3
  345. data/lib/fog/aws/requests/compute/describe_spot_price_history.rb +5 -5
  346. data/lib/fog/aws/requests/compute/describe_subnets.rb +15 -14
  347. data/lib/fog/aws/requests/compute/describe_tags.rb +3 -3
  348. data/lib/fog/aws/requests/compute/describe_volume_status.rb +3 -3
  349. data/lib/fog/aws/requests/compute/describe_volumes.rb +3 -3
  350. data/lib/fog/aws/requests/compute/describe_volumes_modifications.rb +93 -0
  351. data/lib/fog/aws/requests/compute/describe_vpc_attribute.rb +5 -5
  352. data/lib/fog/aws/requests/compute/describe_vpc_classic_link.rb +6 -5
  353. data/lib/fog/aws/requests/compute/describe_vpc_classic_link_dns_support.rb +53 -0
  354. data/lib/fog/aws/requests/compute/describe_vpcs.rb +3 -3
  355. data/lib/fog/aws/requests/compute/detach_classic_link_vpc.rb +6 -8
  356. data/lib/fog/aws/requests/compute/detach_internet_gateway.rb +4 -4
  357. data/lib/fog/aws/requests/compute/detach_network_interface.rb +4 -4
  358. data/lib/fog/aws/requests/compute/detach_volume.rb +5 -5
  359. data/lib/fog/aws/requests/compute/disable_vpc_classic_link.rb +4 -4
  360. data/lib/fog/aws/requests/compute/disable_vpc_classic_link_dns_support.rb +45 -0
  361. data/lib/fog/aws/requests/compute/disassociate_address.rb +8 -5
  362. data/lib/fog/aws/requests/compute/disassociate_route_table.rb +5 -5
  363. data/lib/fog/aws/requests/compute/enable_vpc_classic_link.rb +4 -4
  364. data/lib/fog/aws/requests/compute/enable_vpc_classic_link_dns_support.rb +45 -0
  365. data/lib/fog/aws/requests/compute/get_console_output.rb +4 -4
  366. data/lib/fog/aws/requests/compute/get_password_data.rb +4 -4
  367. data/lib/fog/aws/requests/compute/import_key_pair.rb +4 -4
  368. data/lib/fog/aws/requests/compute/modify_image_attribute.rb +4 -4
  369. data/lib/fog/aws/requests/compute/modify_instance_attribute.rb +3 -3
  370. data/lib/fog/aws/requests/compute/modify_instance_placement.rb +33 -0
  371. data/lib/fog/aws/requests/compute/modify_network_interface_attribute.rb +11 -11
  372. data/lib/fog/aws/requests/compute/modify_snapshot_attribute.rb +3 -3
  373. data/lib/fog/aws/requests/compute/modify_subnet_attribute.rb +3 -3
  374. data/lib/fog/aws/requests/compute/modify_volume.rb +88 -0
  375. data/lib/fog/aws/requests/compute/modify_volume_attribute.rb +4 -4
  376. data/lib/fog/aws/requests/compute/modify_vpc_attribute.rb +7 -7
  377. data/lib/fog/aws/requests/compute/monitor_instances.rb +4 -4
  378. data/lib/fog/aws/requests/compute/move_address_to_vpc.rb +52 -0
  379. data/lib/fog/aws/requests/compute/purchase_reserved_instances_offering.rb +3 -3
  380. data/lib/fog/aws/requests/compute/reboot_instances.rb +4 -4
  381. data/lib/fog/aws/requests/compute/register_image.rb +4 -4
  382. data/lib/fog/aws/requests/compute/release_address.rb +5 -5
  383. data/lib/fog/aws/requests/compute/replace_network_acl_association.rb +5 -5
  384. data/lib/fog/aws/requests/compute/replace_network_acl_entry.rb +5 -5
  385. data/lib/fog/aws/requests/compute/replace_route.rb +10 -10
  386. data/lib/fog/aws/requests/compute/request_spot_instances.rb +41 -30
  387. data/lib/fog/aws/requests/compute/reset_network_interface_attribute.rb +6 -6
  388. data/lib/fog/aws/requests/compute/restore_address_to_classic.rb +55 -0
  389. data/lib/fog/aws/requests/compute/revoke_security_group_egress.rb +92 -0
  390. data/lib/fog/aws/requests/compute/revoke_security_group_ingress.rb +21 -28
  391. data/lib/fog/aws/requests/compute/run_instances.rb +95 -29
  392. data/lib/fog/aws/requests/compute/start_instances.rb +4 -4
  393. data/lib/fog/aws/requests/compute/stop_instances.rb +15 -7
  394. data/lib/fog/aws/requests/compute/terminate_instances.rb +5 -5
  395. data/lib/fog/aws/requests/compute/unmonitor_instances.rb +4 -4
  396. data/lib/fog/aws/requests/data_pipeline/activate_pipeline.rb +8 -4
  397. data/lib/fog/aws/requests/data_pipeline/create_pipeline.rb +24 -3
  398. data/lib/fog/aws/requests/data_pipeline/deactivate_pipeline.rb +36 -0
  399. data/lib/fog/aws/requests/data_pipeline/delete_pipeline.rb +6 -1
  400. data/lib/fog/aws/requests/data_pipeline/describe_objects.rb +17 -3
  401. data/lib/fog/aws/requests/data_pipeline/describe_pipelines.rb +3 -3
  402. data/lib/fog/aws/requests/data_pipeline/get_pipeline_definition.rb +7 -4
  403. data/lib/fog/aws/requests/data_pipeline/list_pipelines.rb +3 -3
  404. data/lib/fog/aws/requests/data_pipeline/put_pipeline_definition.rb +53 -32
  405. data/lib/fog/aws/requests/data_pipeline/query_objects.rb +6 -3
  406. data/lib/fog/aws/requests/dns/change_resource_record_sets.rb +6 -131
  407. data/lib/fog/aws/requests/dns/create_health_check.rb +3 -3
  408. data/lib/fog/aws/requests/dns/create_hosted_zone.rb +4 -4
  409. data/lib/fog/aws/requests/dns/delete_health_check.rb +2 -2
  410. data/lib/fog/aws/requests/dns/delete_hosted_zone.rb +4 -4
  411. data/lib/fog/aws/requests/dns/get_change.rb +4 -4
  412. data/lib/fog/aws/requests/dns/get_health_check.rb +3 -3
  413. data/lib/fog/aws/requests/dns/get_hosted_zone.rb +4 -4
  414. data/lib/fog/aws/requests/dns/list_health_checks.rb +3 -3
  415. data/lib/fog/aws/requests/dns/list_hosted_zones.rb +3 -3
  416. data/lib/fog/aws/requests/dns/list_resource_record_sets.rb +5 -5
  417. data/lib/fog/aws/requests/dynamodb/update_item.rb +6 -5
  418. data/lib/fog/aws/requests/efs/create_file_system.rb +63 -0
  419. data/lib/fog/aws/requests/efs/create_mount_target.rb +73 -0
  420. data/lib/fog/aws/requests/efs/delete_file_system.rb +41 -0
  421. data/lib/fog/aws/requests/efs/delete_mount_target.rb +38 -0
  422. data/lib/fog/aws/requests/efs/describe_file_systems.rb +62 -0
  423. data/lib/fog/aws/requests/efs/describe_mount_target_security_groups.rb +34 -0
  424. data/lib/fog/aws/requests/efs/describe_mount_targets.rb +61 -0
  425. data/lib/fog/aws/requests/efs/modify_mount_target_security_groups.rb +39 -0
  426. data/lib/fog/aws/requests/elb/create_load_balancer.rb +11 -42
  427. data/lib/fog/aws/requests/elb/create_load_balancer_listeners.rb +24 -21
  428. data/lib/fog/aws/requests/elb/deregister_instances_from_load_balancer.rb +1 -1
  429. data/lib/fog/aws/requests/elb/describe_instance_health.rb +1 -1
  430. data/lib/fog/aws/requests/elb/describe_tags.rb +1 -1
  431. data/lib/fog/aws/requests/elb/register_instances_with_load_balancer.rb +1 -1
  432. data/lib/fog/aws/requests/elbv2/add_tags.rb +45 -0
  433. data/lib/fog/aws/requests/elbv2/create_load_balancer.rb +160 -0
  434. data/lib/fog/aws/requests/elbv2/describe_listeners.rb +38 -0
  435. data/lib/fog/aws/requests/elbv2/describe_load_balancers.rb +100 -0
  436. data/lib/fog/aws/requests/elbv2/describe_tags.rb +50 -0
  437. data/lib/fog/aws/requests/elbv2/remove_tags.rb +45 -0
  438. data/lib/fog/aws/requests/iam/add_role_to_instance_profile.rb +19 -0
  439. data/lib/fog/aws/requests/iam/attach_group_policy.rb +1 -0
  440. data/lib/fog/aws/requests/iam/attach_role_policy.rb +30 -4
  441. data/lib/fog/aws/requests/iam/attach_user_policy.rb +1 -0
  442. data/lib/fog/aws/requests/iam/create_instance_profile.rb +20 -0
  443. data/lib/fog/aws/requests/iam/create_policy.rb +26 -2
  444. data/lib/fog/aws/requests/iam/delete_instance_profile.rb +15 -0
  445. data/lib/fog/aws/requests/iam/delete_policy.rb +15 -0
  446. data/lib/fog/aws/requests/iam/detach_group_policy.rb +1 -0
  447. data/lib/fog/aws/requests/iam/detach_role_policy.rb +27 -0
  448. data/lib/fog/aws/requests/iam/detach_user_policy.rb +1 -0
  449. data/lib/fog/aws/requests/iam/get_instance_profile.rb +17 -0
  450. data/lib/fog/aws/requests/iam/list_attached_user_policies.rb +2 -1
  451. data/lib/fog/aws/requests/iam/list_instance_profiles.rb +9 -0
  452. data/lib/fog/aws/requests/iam/list_instance_profiles_for_role.rb +10 -0
  453. data/lib/fog/aws/requests/iam/list_policies.rb +4 -0
  454. data/lib/fog/aws/requests/iam/remove_role_from_instance_profile.rb +19 -0
  455. data/lib/fog/aws/requests/kinesis/put_record.rb +1 -2
  456. data/lib/fog/aws/requests/kinesis/put_records.rb +1 -2
  457. data/lib/fog/aws/requests/lambda/invoke.rb +8 -8
  458. data/lib/fog/aws/requests/rds/add_tags_to_resource.rb +12 -10
  459. data/lib/fog/aws/requests/rds/authorize_db_security_group_ingress.rb +10 -5
  460. data/lib/fog/aws/requests/rds/create_db_instance.rb +1 -1
  461. data/lib/fog/aws/requests/rds/create_db_subnet_group.rb +4 -5
  462. data/lib/fog/aws/requests/rds/delete_db_subnet_group.rb +2 -0
  463. data/lib/fog/aws/requests/rds/describe_orderable_db_instance_options.rb +12 -6
  464. data/lib/fog/aws/requests/rds/list_tags_for_resource.rb +10 -7
  465. data/lib/fog/aws/requests/rds/modify_db_instance.rb +1 -1
  466. data/lib/fog/aws/requests/rds/modify_db_subnet_group.rb +27 -0
  467. data/lib/fog/aws/requests/rds/remove_tags_from_resource.rb +9 -8
  468. data/lib/fog/aws/requests/rds/revoke_db_security_group_ingress.rb +9 -4
  469. data/lib/fog/aws/requests/storage/abort_multipart_upload.rb +3 -3
  470. data/lib/fog/aws/requests/storage/acl_utils.rb +3 -3
  471. data/lib/fog/aws/requests/storage/complete_multipart_upload.rb +4 -4
  472. data/lib/fog/aws/requests/storage/copy_object.rb +3 -3
  473. data/lib/fog/aws/requests/storage/cors_utils.rb +3 -3
  474. data/lib/fog/aws/requests/storage/delete_bucket.rb +2 -2
  475. data/lib/fog/aws/requests/storage/delete_bucket_cors.rb +2 -2
  476. data/lib/fog/aws/requests/storage/delete_bucket_lifecycle.rb +2 -2
  477. data/lib/fog/aws/requests/storage/delete_bucket_policy.rb +3 -3
  478. data/lib/fog/aws/requests/storage/delete_bucket_tagging.rb +2 -2
  479. data/lib/fog/aws/requests/storage/delete_bucket_website.rb +2 -2
  480. data/lib/fog/aws/requests/storage/delete_multiple_objects.rb +22 -12
  481. data/lib/fog/aws/requests/storage/delete_object.rb +2 -2
  482. data/lib/fog/aws/requests/storage/delete_object_url.rb +40 -0
  483. data/lib/fog/aws/requests/storage/get_bucket.rb +3 -3
  484. data/lib/fog/aws/requests/storage/get_bucket_acl.rb +4 -4
  485. data/lib/fog/aws/requests/storage/get_bucket_cors.rb +4 -4
  486. data/lib/fog/aws/requests/storage/get_bucket_lifecycle.rb +3 -3
  487. data/lib/fog/aws/requests/storage/get_bucket_location.rb +5 -6
  488. data/lib/fog/aws/requests/storage/get_bucket_logging.rb +3 -3
  489. data/lib/fog/aws/requests/storage/get_bucket_notification.rb +3 -3
  490. data/lib/fog/aws/requests/storage/get_bucket_object_versions.rb +4 -3
  491. data/lib/fog/aws/requests/storage/get_bucket_policy.rb +2 -2
  492. data/lib/fog/aws/requests/storage/get_bucket_tagging.rb +3 -3
  493. data/lib/fog/aws/requests/storage/get_bucket_versioning.rb +3 -3
  494. data/lib/fog/aws/requests/storage/get_bucket_website.rb +3 -3
  495. data/lib/fog/aws/requests/storage/get_object.rb +7 -3
  496. data/lib/fog/aws/requests/storage/get_object_acl.rb +4 -4
  497. data/lib/fog/aws/requests/storage/get_object_http_url.rb +2 -2
  498. data/lib/fog/aws/requests/storage/get_object_https_url.rb +2 -2
  499. data/lib/fog/aws/requests/storage/get_object_tagging.rb +41 -0
  500. data/lib/fog/aws/requests/storage/get_object_torrent.rb +2 -2
  501. data/lib/fog/aws/requests/storage/get_object_url.rb +2 -2
  502. data/lib/fog/aws/requests/storage/get_request_payment.rb +3 -3
  503. data/lib/fog/aws/requests/storage/get_service.rb +5 -5
  504. data/lib/fog/aws/requests/storage/head_bucket.rb +2 -2
  505. data/lib/fog/aws/requests/storage/head_object.rb +2 -2
  506. data/lib/fog/aws/requests/storage/head_object_url.rb +2 -2
  507. data/lib/fog/aws/requests/storage/initiate_multipart_upload.rb +4 -4
  508. data/lib/fog/aws/requests/storage/list_multipart_uploads.rb +3 -3
  509. data/lib/fog/aws/requests/storage/list_parts.rb +3 -3
  510. data/lib/fog/aws/requests/storage/post_object_hidden_fields.rb +2 -2
  511. data/lib/fog/aws/requests/storage/post_object_restore.rb +2 -2
  512. data/lib/fog/aws/requests/storage/put_bucket.rb +2 -2
  513. data/lib/fog/aws/requests/storage/put_bucket_acl.rb +4 -4
  514. data/lib/fog/aws/requests/storage/put_bucket_cors.rb +4 -4
  515. data/lib/fog/aws/requests/storage/put_bucket_lifecycle.rb +2 -2
  516. data/lib/fog/aws/requests/storage/put_bucket_logging.rb +2 -2
  517. data/lib/fog/aws/requests/storage/put_bucket_notification.rb +2 -2
  518. data/lib/fog/aws/requests/storage/put_bucket_policy.rb +2 -2
  519. data/lib/fog/aws/requests/storage/put_bucket_tagging.rb +2 -2
  520. data/lib/fog/aws/requests/storage/put_bucket_versioning.rb +2 -2
  521. data/lib/fog/aws/requests/storage/put_bucket_website.rb +2 -2
  522. data/lib/fog/aws/requests/storage/put_object.rb +9 -8
  523. data/lib/fog/aws/requests/storage/put_object_acl.rb +4 -4
  524. data/lib/fog/aws/requests/storage/put_object_tagging.rb +42 -0
  525. data/lib/fog/aws/requests/storage/put_object_url.rb +2 -2
  526. data/lib/fog/aws/requests/storage/put_request_payment.rb +2 -2
  527. data/lib/fog/aws/requests/storage/shared_mock_methods.rb +4 -3
  528. data/lib/fog/aws/requests/storage/sync_clock.rb +3 -3
  529. data/lib/fog/aws/requests/storage/upload_part.rb +3 -3
  530. data/lib/fog/aws/requests/storage/upload_part_copy.rb +119 -0
  531. data/lib/fog/aws/requests/sts/assume_role.rb +25 -0
  532. data/lib/fog/aws/requests/sts/assume_role_with_web_identity.rb +7 -6
  533. data/lib/fog/aws/requests/support/describe_trusted_advisor_check_result.rb +31 -0
  534. data/lib/fog/aws/requests/support/describe_trusted_advisor_checks.rb +29 -0
  535. data/lib/fog/aws/service_mapper.rb +129 -0
  536. data/lib/fog/aws/sqs.rb +1 -1
  537. data/lib/fog/aws/storage.rb +98 -19
  538. data/lib/fog/aws/support.rb +170 -0
  539. data/lib/fog/aws/version.rb +1 -1
  540. data/lib/fog/aws.rb +32 -19
  541. data/lib/fog-aws.rb +1 -0
  542. metadata +118 -285
  543. data/.gitignore +0 -16
  544. data/.travis.yml +0 -52
  545. data/Gemfile +0 -10
  546. data/Rakefile +0 -8
  547. data/gemfiles/Gemfile-edge +0 -14
  548. data/gemfiles/Gemfile-ruby-1.8.7 +0 -6
  549. data/gemfiles/Gemfile-ruby-1.9 +0 -6
  550. data/tests/credentials_tests.rb +0 -75
  551. data/tests/helper.rb +0 -28
  552. data/tests/helpers/collection_helper.rb +0 -97
  553. data/tests/helpers/compute/flavors_helper.rb +0 -32
  554. data/tests/helpers/compute/server_helper.rb +0 -25
  555. data/tests/helpers/compute/servers_helper.rb +0 -10
  556. data/tests/helpers/dns_helper.rb +0 -55
  557. data/tests/helpers/formats_helper.rb +0 -98
  558. data/tests/helpers/formats_helper_tests.rb +0 -110
  559. data/tests/helpers/mock_helper.rb +0 -109
  560. data/tests/helpers/model_helper.rb +0 -31
  561. data/tests/helpers/responds_to_helper.rb +0 -11
  562. data/tests/helpers/schema_validator_tests.rb +0 -107
  563. data/tests/helpers/succeeds_helper.rb +0 -9
  564. data/tests/lorem.txt +0 -1
  565. data/tests/models/auto_scaling/activities_tests.rb +0 -6
  566. data/tests/models/auto_scaling/configuration_test.rb +0 -13
  567. data/tests/models/auto_scaling/configurations_tests.rb +0 -11
  568. data/tests/models/auto_scaling/groups_test.rb +0 -27
  569. data/tests/models/auto_scaling/helper.rb +0 -0
  570. data/tests/models/auto_scaling/instance_tests.rb +0 -15
  571. data/tests/models/auto_scaling/instances_tests.rb +0 -6
  572. data/tests/models/beanstalk/application_tests.rb +0 -69
  573. data/tests/models/beanstalk/applications_tests.rb +0 -7
  574. data/tests/models/beanstalk/environment_tests.rb +0 -131
  575. data/tests/models/beanstalk/environments_tests.rb +0 -34
  576. data/tests/models/beanstalk/template_tests.rb +0 -47
  577. data/tests/models/beanstalk/templates_tests.rb +0 -62
  578. data/tests/models/beanstalk/version_tests.rb +0 -66
  579. data/tests/models/beanstalk/versions_tests.rb +0 -60
  580. data/tests/models/cdn/distribution_tests.rb +0 -15
  581. data/tests/models/cdn/distributions_tests.rb +0 -15
  582. data/tests/models/cdn/invalidation_tests.rb +0 -31
  583. data/tests/models/cdn/invalidations_tests.rb +0 -14
  584. data/tests/models/cdn/streaming_distribution_tests.rb +0 -15
  585. data/tests/models/cdn/streaming_distributions_tests.rb +0 -15
  586. data/tests/models/cloud_watch/alarm_data_tests.rb +0 -42
  587. data/tests/models/cloud_watch/alarm_history_tests.rb +0 -22
  588. data/tests/models/cloud_watch/metric_statistics_tests.rb +0 -51
  589. data/tests/models/cloud_watch/metrics_tests.rb +0 -32
  590. data/tests/models/compute/address_tests.rb +0 -24
  591. data/tests/models/compute/addresses_tests.rb +0 -5
  592. data/tests/models/compute/dhcp_option_tests.rb +0 -3
  593. data/tests/models/compute/dhcp_options_tests.rb +0 -3
  594. data/tests/models/compute/internet_gateway_tests.rb +0 -3
  595. data/tests/models/compute/internet_gateways_tests.rb +0 -3
  596. data/tests/models/compute/key_pair_tests.rb +0 -26
  597. data/tests/models/compute/key_pairs_tests.rb +0 -5
  598. data/tests/models/compute/network_acl_tests.rb +0 -109
  599. data/tests/models/compute/network_acls_tests.rb +0 -20
  600. data/tests/models/compute/network_interfaces_test.rb +0 -12
  601. data/tests/models/compute/security_group_tests.rb +0 -74
  602. data/tests/models/compute/security_groups_tests.rb +0 -5
  603. data/tests/models/compute/server_tests.rb +0 -94
  604. data/tests/models/compute/snapshot_tests.rb +0 -10
  605. data/tests/models/compute/snapshots_tests.rb +0 -10
  606. data/tests/models/compute/subnet_tests.rb +0 -5
  607. data/tests/models/compute/subnets_tests.rb +0 -5
  608. data/tests/models/compute/volume_tests.rb +0 -43
  609. data/tests/models/compute/volumes_tests.rb +0 -5
  610. data/tests/models/compute/vpc_tests.rb +0 -4
  611. data/tests/models/compute/vpcs_tests.rb +0 -19
  612. data/tests/models/data_pipeline/pipeline_tests.rb +0 -8
  613. data/tests/models/data_pipeline/pipelines_tests.rb +0 -8
  614. data/tests/models/dns/record_tests.rb +0 -33
  615. data/tests/models/dns/records_tests.rb +0 -41
  616. data/tests/models/dns/zone_tests.rb +0 -4
  617. data/tests/models/dns/zones_tests.rb +0 -4
  618. data/tests/models/elasticache/cluster_tests.rb +0 -30
  619. data/tests/models/elasticache/parameter_groups_tests.rb +0 -15
  620. data/tests/models/elasticache/security_groups_tests.rb +0 -52
  621. data/tests/models/elasticache/subnet_groups_tests.rb +0 -44
  622. data/tests/models/elb/model_tests.rb +0 -360
  623. data/tests/models/elb/tagging_tests.rb +0 -15
  624. data/tests/models/glacier/model_tests.rb +0 -47
  625. data/tests/models/iam/access_keys_tests.rb +0 -53
  626. data/tests/models/iam/groups_tests.rb +0 -59
  627. data/tests/models/iam/managed_policies_tests.rb +0 -67
  628. data/tests/models/iam/policies_tests.rb +0 -57
  629. data/tests/models/iam/roles_tests.rb +0 -71
  630. data/tests/models/iam/users_tests.rb +0 -119
  631. data/tests/models/rds/cluster_tests.rb +0 -54
  632. data/tests/models/rds/clusters_tests.rb +0 -5
  633. data/tests/models/rds/event_subscription_tests.rb +0 -9
  634. data/tests/models/rds/event_subscriptions_tests.rb +0 -6
  635. data/tests/models/rds/helper.rb +0 -25
  636. data/tests/models/rds/instance_option_tests.rb +0 -14
  637. data/tests/models/rds/parameter_group_tests.rb +0 -24
  638. data/tests/models/rds/parameter_groups_tests.rb +0 -8
  639. data/tests/models/rds/security_group_tests.rb +0 -53
  640. data/tests/models/rds/security_groups_tests.rb +0 -5
  641. data/tests/models/rds/server_tests.rb +0 -131
  642. data/tests/models/rds/servers_tests.rb +0 -24
  643. data/tests/models/rds/snapshot_tests.rb +0 -12
  644. data/tests/models/rds/snapshots_tests.rb +0 -12
  645. data/tests/models/rds/tagging_tests.rb +0 -20
  646. data/tests/models/sns/topic_tests.rb +0 -15
  647. data/tests/models/sns/topics_tests.rb +0 -6
  648. data/tests/models/storage/directory_tests.rb +0 -91
  649. data/tests/models/storage/file_tests.rb +0 -121
  650. data/tests/models/storage/files_tests.rb +0 -58
  651. data/tests/models/storage/url_tests.rb +0 -44
  652. data/tests/models/storage/version_tests.rb +0 -52
  653. data/tests/models/storage/versions_tests.rb +0 -56
  654. data/tests/parsers/elb/describe_load_balancers.rb +0 -65
  655. data/tests/requests/auto_scaling/auto_scaling_tests.rb +0 -93
  656. data/tests/requests/auto_scaling/describe_types_tests.rb +0 -102
  657. data/tests/requests/auto_scaling/helper.rb +0 -228
  658. data/tests/requests/auto_scaling/model_tests.rb +0 -233
  659. data/tests/requests/auto_scaling/notification_configuration_tests.rb +0 -124
  660. data/tests/requests/auto_scaling/tag_tests.rb +0 -63
  661. data/tests/requests/beanstalk/application_tests.rb +0 -140
  662. data/tests/requests/beanstalk/solution_stack_tests.rb +0 -22
  663. data/tests/requests/cdn/cdn_tests.rb +0 -252
  664. data/tests/requests/cloud_formation/stack_tests.rb +0 -167
  665. data/tests/requests/cloud_watch/get_metric_statistics_tests.rb +0 -28
  666. data/tests/requests/cloud_watch/list_metrics_test.rb +0 -64
  667. data/tests/requests/cloud_watch/put_metric_data_tests.rb +0 -36
  668. data/tests/requests/compute/address_tests.rb +0 -121
  669. data/tests/requests/compute/assign_private_ip_tests.rb +0 -55
  670. data/tests/requests/compute/availability_zone_tests.rb +0 -25
  671. data/tests/requests/compute/client_tests.rb +0 -25
  672. data/tests/requests/compute/dhcp_options_tests.rb +0 -39
  673. data/tests/requests/compute/helper.rb +0 -10
  674. data/tests/requests/compute/image_tests.rb +0 -158
  675. data/tests/requests/compute/instance_attrib_tests.rb +0 -168
  676. data/tests/requests/compute/instance_tests.rb +0 -338
  677. data/tests/requests/compute/internet_gateway_tests.rb +0 -49
  678. data/tests/requests/compute/key_pair_tests.rb +0 -67
  679. data/tests/requests/compute/network_acl_tests.rb +0 -112
  680. data/tests/requests/compute/network_interface_tests.rb +0 -250
  681. data/tests/requests/compute/placement_group_tests.rb +0 -48
  682. data/tests/requests/compute/region_tests.rb +0 -52
  683. data/tests/requests/compute/route_tests.rb +0 -340
  684. data/tests/requests/compute/security_group_tests.rb +0 -446
  685. data/tests/requests/compute/snapshot_tests.rb +0 -77
  686. data/tests/requests/compute/spot_datafeed_subscription_tests.rb +0 -47
  687. data/tests/requests/compute/spot_instance_tests.rb +0 -57
  688. data/tests/requests/compute/spot_price_history_tests.rb +0 -23
  689. data/tests/requests/compute/subnet_tests.rb +0 -85
  690. data/tests/requests/compute/tag_tests.rb +0 -101
  691. data/tests/requests/compute/volume_tests.rb +0 -223
  692. data/tests/requests/compute/vpc_tests.rb +0 -178
  693. data/tests/requests/data_pipeline/helper.rb +0 -72
  694. data/tests/requests/data_pipeline/pipeline_tests.rb +0 -78
  695. data/tests/requests/dns/change_resource_record_sets_tests.rb +0 -34
  696. data/tests/requests/dns/dns_tests.rb +0 -244
  697. data/tests/requests/dns/health_check_tests.rb +0 -159
  698. data/tests/requests/dns/helper.rb +0 -21
  699. data/tests/requests/dynamodb/item_tests.rb +0 -137
  700. data/tests/requests/dynamodb/table_tests.rb +0 -99
  701. data/tests/requests/ecs/cluster_tests.rb +0 -112
  702. data/tests/requests/ecs/container_instance_tests.rb +0 -119
  703. data/tests/requests/ecs/helper.rb +0 -276
  704. data/tests/requests/ecs/sample_task_definition1.json +0 -56
  705. data/tests/requests/ecs/service_tests.rb +0 -132
  706. data/tests/requests/ecs/task_definitions_tests.rb +0 -97
  707. data/tests/requests/ecs/task_tests.rb +0 -145
  708. data/tests/requests/elasticache/cache_cluster_tests.rb +0 -137
  709. data/tests/requests/elasticache/describe_events.rb +0 -17
  710. data/tests/requests/elasticache/describe_reserved_cache_nodes.rb +0 -17
  711. data/tests/requests/elasticache/helper.rb +0 -103
  712. data/tests/requests/elasticache/parameter_group_tests.rb +0 -105
  713. data/tests/requests/elasticache/security_group_tests.rb +0 -108
  714. data/tests/requests/elasticache/subnet_group_tests.rb +0 -52
  715. data/tests/requests/elb/helper.rb +0 -91
  716. data/tests/requests/elb/listener_tests.rb +0 -68
  717. data/tests/requests/elb/load_balancer_tests.rb +0 -89
  718. data/tests/requests/elb/policy_tests.rb +0 -132
  719. data/tests/requests/emr/helper.rb +0 -167
  720. data/tests/requests/emr/instance_group_tests.rb +0 -106
  721. data/tests/requests/emr/job_flow_tests.rb +0 -88
  722. data/tests/requests/federation/get_signin_token_tests.rb +0 -11
  723. data/tests/requests/glacier/archive_tests.rb +0 -13
  724. data/tests/requests/glacier/multipart_upload_tests.rb +0 -29
  725. data/tests/requests/glacier/tree_hash_tests.rb +0 -62
  726. data/tests/requests/glacier/vault_tests.rb +0 -35
  727. data/tests/requests/iam/access_key_tests.rb +0 -53
  728. data/tests/requests/iam/account_policy_tests.rb +0 -20
  729. data/tests/requests/iam/account_tests.rb +0 -34
  730. data/tests/requests/iam/group_policy_tests.rb +0 -48
  731. data/tests/requests/iam/group_tests.rb +0 -44
  732. data/tests/requests/iam/helper.rb +0 -136
  733. data/tests/requests/iam/login_profile_tests.rb +0 -62
  734. data/tests/requests/iam/managed_policy_tests.rb +0 -112
  735. data/tests/requests/iam/mfa_tests.rb +0 -23
  736. data/tests/requests/iam/role_tests.rb +0 -156
  737. data/tests/requests/iam/server_certificate_tests.rb +0 -130
  738. data/tests/requests/iam/user_policy_tests.rb +0 -45
  739. data/tests/requests/iam/user_tests.rb +0 -78
  740. data/tests/requests/iam/versioned_managed_policy_tests.rb +0 -114
  741. data/tests/requests/kinesis/helper.rb +0 -111
  742. data/tests/requests/kinesis/stream_tests.rb +0 -169
  743. data/tests/requests/kms/helper.rb +0 -27
  744. data/tests/requests/kms/key_tests.rb +0 -23
  745. data/tests/requests/lambda/function_sample_1.js +0 -9
  746. data/tests/requests/lambda/function_sample_2.js +0 -9
  747. data/tests/requests/lambda/function_tests.rb +0 -460
  748. data/tests/requests/lambda/helper.rb +0 -81
  749. data/tests/requests/rds/cluster_snapshot_tests.rb +0 -43
  750. data/tests/requests/rds/cluster_tests.rb +0 -37
  751. data/tests/requests/rds/db_engine_versions.rb +0 -7
  752. data/tests/requests/rds/db_snapshot_tests.rb +0 -62
  753. data/tests/requests/rds/describe_events.rb +0 -16
  754. data/tests/requests/rds/event_subscription_tests.rb +0 -30
  755. data/tests/requests/rds/helper.rb +0 -401
  756. data/tests/requests/rds/instance_option_tests.rb +0 -21
  757. data/tests/requests/rds/instance_tests.rb +0 -149
  758. data/tests/requests/rds/log_file_tests.rb +0 -19
  759. data/tests/requests/rds/parameter_group_tests.rb +0 -62
  760. data/tests/requests/rds/parameter_request_tests.rb +0 -32
  761. data/tests/requests/rds/security_group_tests.rb +0 -101
  762. data/tests/requests/rds/subnet_groups_tests.rb +0 -52
  763. data/tests/requests/rds/tagging_tests.rb +0 -78
  764. data/tests/requests/redshift/cluster_parameter_group_tests.rb +0 -76
  765. data/tests/requests/redshift/cluster_security_group_tests.rb +0 -42
  766. data/tests/requests/redshift/cluster_snapshot_tests.rb +0 -73
  767. data/tests/requests/redshift/cluster_tests.rb +0 -80
  768. data/tests/requests/ses/helper.rb +0 -9
  769. data/tests/requests/ses/verified_domain_identity_tests.rb +0 -16
  770. data/tests/requests/ses/verified_email_address_tests.rb +0 -27
  771. data/tests/requests/simpledb/attributes_tests.rb +0 -86
  772. data/tests/requests/simpledb/domain_tests.rb +0 -51
  773. data/tests/requests/simpledb/helper.rb +0 -10
  774. data/tests/requests/sns/helper.rb +0 -9
  775. data/tests/requests/sns/subscription_tests.rb +0 -86
  776. data/tests/requests/sns/topic_tests.rb +0 -53
  777. data/tests/requests/sqs/helper.rb +0 -9
  778. data/tests/requests/sqs/message_tests.rb +0 -51
  779. data/tests/requests/sqs/queue_tests.rb +0 -50
  780. data/tests/requests/storage/acl_utils_tests.rb +0 -209
  781. data/tests/requests/storage/bucket_tests.rb +0 -416
  782. data/tests/requests/storage/cors_utils_tests.rb +0 -108
  783. data/tests/requests/storage/delete_multiple_objects_tests.rb +0 -12
  784. data/tests/requests/storage/multipart_upload_tests.rb +0 -121
  785. data/tests/requests/storage/object_tests.rb +0 -195
  786. data/tests/requests/storage/versioning_tests.rb +0 -258
  787. data/tests/requests/sts/assume_role_tests.rb +0 -19
  788. data/tests/requests/sts/assume_role_with_saml_tests.rb +0 -18
  789. data/tests/requests/sts/assume_role_with_web_identity_tests.rb +0 -26
  790. data/tests/requests/sts/get_federation_token_tests.rb +0 -20
  791. data/tests/requests/sts/session_token_tests.rb +0 -16
  792. data/tests/signaturev4_tests.rb +0 -107
  793. data/tests/signed_params_tests.rb +0 -17
  794. data/tests/storage_tests.rb +0 -7
data/CHANGELOG.md CHANGED
@@ -1,8 +1,758 @@
1
- # Change Log
1
+ # Changelog
2
2
 
3
- ## [Unreleased](https://github.com/fog/fog-aws/tree/HEAD)
3
+ ## [v3.18.0](https://github.com/fog/fog-aws/tree/v3.18.0) (2023-02-16)
4
4
 
5
- [Full Changelog](https://github.com/fog/fog-aws/compare/v0.10.0...HEAD)
5
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.17.0...v3.18.0)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Only compute SSE-C headers when needed in multipart upload [\#669](https://github.com/fog/fog-aws/pull/669) ([stanhu](https://github.com/stanhu))
10
+
11
+ ## [v3.17.0](https://github.com/fog/fog-aws/tree/v3.17.0) (2023-02-09)
12
+
13
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.16.0...v3.17.0)
14
+
15
+ **Merged pull requests:**
16
+
17
+ - Support disabling of Content-MD5 for FIPS [\#668](https://github.com/fog/fog-aws/pull/668) ([stanhu](https://github.com/stanhu))
18
+
19
+ ## [v3.16.0](https://github.com/fog/fog-aws/tree/v3.16.0) (2023-01-26)
20
+
21
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.15.0...v3.16.0)
22
+
23
+ **Closed issues:**
24
+
25
+ - README lists incorrect usage of IAM auth [\#663](https://github.com/fog/fog-aws/issues/663)
26
+ - How can i config to use s3 in localstack [\#657](https://github.com/fog/fog-aws/issues/657)
27
+ - Fog::Storage::AWS::Files#each always iterates over entire collection [\#232](https://github.com/fog/fog-aws/issues/232)
28
+ - superclass mismatch for class AWS [\#655](https://github.com/fog/fog-aws/issues/655)
29
+ - Lambda IAM Role Not Working [\#650](https://github.com/fog/fog-aws/issues/650)
30
+
31
+ **Merged pull requests:**
32
+
33
+ - adding missing region ap-southeast-4 [\#665](https://github.com/fog/fog-aws/pull/665) ([emptyhammond](https://github.com/emptyhammond))
34
+ o
35
+ - adding missing region eu-south-2 [\#662](https://github.com/fog/fog-aws/pull/662) ([ivangool](https://github.com/ivangool))
36
+ - Bump actions/dependency-review-action from 2 to 3 [\#659](https://github.com/fog/fog-aws/pull/659) ([dependabot[bot]](https://github.com/apps/dependabot))
37
+ - Update aws.rb [\#658](https://github.com/fog/fog-aws/pull/658) ([ivangool](https://github.com/ivangool))
38
+ - Bump actions/stale from 5 to 6 [\#656](https://github.com/fog/fog-aws/pull/656) ([dependabot[bot]](https://github.com/apps/dependabot))
39
+
40
+ ## [v3.15.0](https://github.com/fog/fog-aws/tree/v3.15.0) (2022-09-12)
41
+
42
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.14.0...v3.15.0)
43
+
44
+ **Closed issues:**
45
+
46
+ - URI.decode is obsolete \(and not available in Ruby 3.0\) [\#653](https://github.com/fog/fog-aws/issues/653)
47
+ - S3: File copy not working outside us-east-1 region [\#645](https://github.com/fog/fog-aws/issues/645)
48
+ - Unable to list, update and remove RDS tags in AWS GovCloud Account regions. [\#644](https://github.com/fog/fog-aws/issues/644)
49
+ - Documentation links broken / 404 [\#642](https://github.com/fog/fog-aws/issues/642)
50
+
51
+ **Merged pull requests:**
52
+
53
+ - Replace URI.decode as obsolete, and removed in Ruby 3.0 [\#654](https://github.com/fog/fog-aws/pull/654) ([kuahyeow](https://github.com/kuahyeow))
54
+ - Fix typo in readme [\#652](https://github.com/fog/fog-aws/pull/652) ([geemus](https://github.com/geemus))
55
+ - change sync\_clock to plain GET [\#651](https://github.com/fog/fog-aws/pull/651) ([duckworth](https://github.com/duckworth))
56
+ - Update README file with download url example [\#649](https://github.com/fog/fog-aws/pull/649) ([lucasocon](https://github.com/lucasocon))
57
+ - Bump actions/dependency-review-action from 1 to 2 [\#648](https://github.com/fog/fog-aws/pull/648) ([dependabot[bot]](https://github.com/apps/dependabot))
58
+ - add x2gd and t4g instance flavours [\#647](https://github.com/fog/fog-aws/pull/647) ([mushyy](https://github.com/mushyy))
59
+ - Fix a typo in CHANGELOG [\#646](https://github.com/fog/fog-aws/pull/646) ([y-yagi](https://github.com/y-yagi))
60
+
61
+ ## [v3.14.0](https://github.com/fog/fog-aws/tree/v3.14.0) (2022-05-09)
62
+
63
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.13.0...v3.14.0)
64
+
65
+ **Closed issues:**
66
+
67
+ - Add a special note to the documentation around the danger of using directory.get [\#633](https://github.com/fog/fog-aws/issues/633)
68
+
69
+ **Merged pull requests:**
70
+
71
+ - RDS tags issue in AWS GovCloud Account regions. [\#643](https://github.com/fog/fog-aws/pull/643) ([svavhal](https://github.com/svavhal))
72
+ - Create codeql.yml [\#641](https://github.com/fog/fog-aws/pull/641) ([naveensrinivasan](https://github.com/naveensrinivasan))
73
+ - chore\(deps\): Included dependency review [\#640](https://github.com/fog/fog-aws/pull/640) ([naveensrinivasan](https://github.com/naveensrinivasan))
74
+ - Bump actions/stale from 4 to 5 [\#639](https://github.com/fog/fog-aws/pull/639) ([dependabot[bot]](https://github.com/apps/dependabot))
75
+ - Set permissions for GitHub actions [\#638](https://github.com/fog/fog-aws/pull/638) ([naveensrinivasan](https://github.com/naveensrinivasan))
76
+ - Add option to control IAM credential refresh [\#637](https://github.com/fog/fog-aws/pull/637) ([gl-gh-hchouraria](https://github.com/gl-gh-hchouraria))
77
+ - Add warning messages around directories.get [\#636](https://github.com/fog/fog-aws/pull/636) ([orrin-naylor-instacart](https://github.com/orrin-naylor-instacart))
78
+ - Bump actions/checkout from 2.4.0 to 3 [\#632](https://github.com/fog/fog-aws/pull/632) ([dependabot[bot]](https://github.com/apps/dependabot))
79
+ - Add Ruby 3.1 to the CI matrix [\#631](https://github.com/fog/fog-aws/pull/631) ([petergoldstein](https://github.com/petergoldstein))
80
+
81
+ ## [v3.13.0](https://github.com/fog/fog-aws/tree/v3.13.0) (2022-02-13)
82
+
83
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.12.0...v3.13.0)
84
+
85
+ **Closed issues:**
86
+
87
+ - Please include all files required for running tests in the gem [\#625](https://github.com/fog/fog-aws/issues/625)
88
+ - Using Hitachi compatible S3 and still see the AWS S3 host [\#624](https://github.com/fog/fog-aws/issues/624)
89
+ - Spawn compute node with Elastic Inference [\#617](https://github.com/fog/fog-aws/issues/617)
90
+
91
+ **Merged pull requests:**
92
+
93
+ - Drop ipaddress dependency in favor of built in ipaddr [\#630](https://github.com/fog/fog-aws/pull/630) ([ekohl](https://github.com/ekohl))
94
+ - Exclude test files from gem [\#629](https://github.com/fog/fog-aws/pull/629) ([ursm](https://github.com/ursm))
95
+ - Add Truffleruby head to CI [\#628](https://github.com/fog/fog-aws/pull/628) ([gogainda](https://github.com/gogainda))
96
+ - Bump actions/checkout from 2.3.5 to 2.4.0 [\#627](https://github.com/fog/fog-aws/pull/627) ([dependabot[bot]](https://github.com/apps/dependabot))
97
+ - Update Fog::AWS::Storage::File\#body [\#626](https://github.com/fog/fog-aws/pull/626) ([10io](https://github.com/10io))
98
+ - Bump actions/checkout from 2.3.4 to 2.3.5 [\#623](https://github.com/fog/fog-aws/pull/623) ([dependabot[bot]](https://github.com/apps/dependabot))
99
+ - Add json files to the gem file [\#622](https://github.com/fog/fog-aws/pull/622) ([acant](https://github.com/acant))
100
+
101
+ ## [v3.12.0](https://github.com/fog/fog-aws/tree/v3.12.0) (2021-08-23)
102
+
103
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.11.0...v3.12.0)
104
+
105
+ **Merged pull requests:**
106
+
107
+ - Add support for regional STS endpoints [\#620](https://github.com/fog/fog-aws/pull/620) ([stanhu](https://github.com/stanhu))
108
+ - Add IPv6 support for Ingress Security Groups [\#619](https://github.com/fog/fog-aws/pull/619) ([p8](https://github.com/p8))
109
+ - Separate CHANGELOG entry for 3.11.0 [\#618](https://github.com/fog/fog-aws/pull/618) ([sunny](https://github.com/sunny))
110
+
111
+ ## [v3.11.0](https://github.com/fog/fog-aws/tree/v3.11.0) (2021-08-05)
112
+
113
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.10.0...v3.11.0)
114
+
115
+ **Closed issues:**
116
+
117
+ - Support for Regional STS Endpoints [\#604](https://github.com/fog/fog-aws/issues/604)
118
+ - Pass tags when creating EBS ? [\#603](https://github.com/fog/fog-aws/issues/603)
119
+ - S3 multiple delete api should handle delete for multiple versions for a single object [\#598](https://github.com/fog/fog-aws/issues/598)
120
+ - Fog does not return error from s3 [\#586](https://github.com/fog/fog-aws/issues/586)
121
+ - Add support for r6g and c6g instance types [\#580](https://github.com/fog/fog-aws/issues/580)
122
+ - Using internal S3 provider ... and something funky is going on! [\#575](https://github.com/fog/fog-aws/issues/575)
123
+ - How to upload File to S3 with with accelerate? [\#554](https://github.com/fog/fog-aws/issues/554)
124
+ - How to use assume\_role\_with\_web\_identity auth for S3 storage? [\#543](https://github.com/fog/fog-aws/issues/543)
125
+ - Fog::AWS::Glacier::TreeHash::add\_part works only sometimes [\#520](https://github.com/fog/fog-aws/issues/520)
126
+ - fog-aws: Fog::AWS::Glacier::Job doesn't support RetrievalByteRange [\#519](https://github.com/fog/fog-aws/issues/519)
127
+ - Path style is being deprecated [\#516](https://github.com/fog/fog-aws/issues/516)
128
+ - Fog::DNS::AWS can't read zones [\#513](https://github.com/fog/fog-aws/issues/513)
129
+ - Lambda Parser can't handle VPC config, containing array of hash values [\#509](https://github.com/fog/fog-aws/issues/509)
130
+ - Excon::Error::Forbidden: Expected\(200\) \<=\> Actual\(403 Forbidden\) [\#508](https://github.com/fog/fog-aws/issues/508)
131
+ - file.save does not work with STDIN [\#500](https://github.com/fog/fog-aws/issues/500)
132
+ - ELBv2 Support ? [\#489](https://github.com/fog/fog-aws/issues/489)
133
+ - S3 Select Support? [\#484](https://github.com/fog/fog-aws/issues/484)
134
+ - nil:NilClass error [\#483](https://github.com/fog/fog-aws/issues/483)
135
+ - Mocks for VM creation require access and secret key when using instance profiles [\#482](https://github.com/fog/fog-aws/issues/482)
136
+ - Always use bucket virtual hostname? [\#464](https://github.com/fog/fog-aws/issues/464)
137
+ - Spot instance creation : Support for BlockDurationMinutes [\#461](https://github.com/fog/fog-aws/issues/461)
138
+ - How can I remove the `Content-Encoding` metadata properties if I upload from fog [\#447](https://github.com/fog/fog-aws/issues/447)
139
+ - AWS::ECS with `use_iam_profile` errors out [\#441](https://github.com/fog/fog-aws/issues/441)
140
+ - Option to turn off Warnings [\#426](https://github.com/fog/fog-aws/issues/426)
141
+ - Accessing AWS S3 using EC2 Instance Profile [\#423](https://github.com/fog/fog-aws/issues/423)
142
+ - Support step and target tracking auto scaling policies [\#422](https://github.com/fog/fog-aws/issues/422)
143
+ - could not create ec2 volume with custom encryption key, volume only create with default 'aws/ebs' encryption key [\#420](https://github.com/fog/fog-aws/issues/420)
144
+ - Download File with content\_disposition [\#418](https://github.com/fog/fog-aws/issues/418)
145
+ - Fog::Compute::AWS::Error iamInstanceProfile.name is invalid [\#410](https://github.com/fog/fog-aws/issues/410)
146
+ - Mocks for EC2 instance creation do not behave as expected [\#404](https://github.com/fog/fog-aws/issues/404)
147
+ - Cannot copy an encrypted snapshot from one account to another account [\#398](https://github.com/fog/fog-aws/issues/398)
148
+ - Fog::Compute::AWS::Image\#deregister ignores non-root snapshots. [\#380](https://github.com/fog/fog-aws/issues/380)
149
+ - AWS S3 overwrites files with same name [\#378](https://github.com/fog/fog-aws/issues/378)
150
+ - Support S3 object tagging [\#377](https://github.com/fog/fog-aws/issues/377)
151
+ - Reqeust to support Aws::DynamoDBStreams [\#373](https://github.com/fog/fog-aws/issues/373)
152
+ - Not all Rds versions and Instance Types are rendered [\#371](https://github.com/fog/fog-aws/issues/371)
153
+ - Tag instances upon creation of new instance [\#359](https://github.com/fog/fog-aws/issues/359)
154
+ - Creating instances in AWS fails with Socket Error [\#352](https://github.com/fog/fog-aws/issues/352)
155
+ - `NameError: uninitialized constant Fog::ServicesMixin` when requiring `fog/storage` [\#345](https://github.com/fog/fog-aws/issues/345)
156
+ - Add full support for target groups [\#328](https://github.com/fog/fog-aws/issues/328)
157
+ - Fog transfer acceleration endpoints [\#303](https://github.com/fog/fog-aws/issues/303)
158
+ - "Fog::DNS\[:aws\] | change\_resource\_record\_sets \(aws, dns\)" test suite flaky [\#301](https://github.com/fog/fog-aws/issues/301)
159
+ - Cross account access using IAM role [\#294](https://github.com/fog/fog-aws/issues/294)
160
+ - Write timeout trying to upload a large file to S3 [\#291](https://github.com/fog/fog-aws/issues/291)
161
+ - Support Autoscaling lifecycle hooks [\#289](https://github.com/fog/fog-aws/issues/289)
162
+ - directories ignore region option [\#287](https://github.com/fog/fog-aws/issues/287)
163
+ - Feature: Access logs for ELB [\#271](https://github.com/fog/fog-aws/issues/271)
164
+ - S3: retry on 500 internal server error [\#264](https://github.com/fog/fog-aws/issues/264)
165
+ - Alias for server side encryption not working [\#260](https://github.com/fog/fog-aws/issues/260)
166
+ - InvalidParameterCombination =\> You cannot move a DB instance with Single-Az enabled to a VPC \(Fog::AWS::RDS::Error\) [\#255](https://github.com/fog/fog-aws/issues/255)
167
+ - Using STS [\#253](https://github.com/fog/fog-aws/issues/253)
168
+ - Auto Scaling Group does not enable metrics [\#251](https://github.com/fog/fog-aws/issues/251)
169
+ - aws has no storage service [\#248](https://github.com/fog/fog-aws/issues/248)
170
+ - Timeouts on Compute\#describe\_volumes due to extreme numbers of volumes [\#244](https://github.com/fog/fog-aws/issues/244)
171
+ - Support CreateReusableDelegationSet [\#243](https://github.com/fog/fog-aws/issues/243)
172
+ - Tags server creation in Mock vs Real [\#239](https://github.com/fog/fog-aws/issues/239)
173
+ - Excon::Errors::SocketError Broken pipe \(Errno::EPIPE\) when use Activeadmin upload image by nested form [\#237](https://github.com/fog/fog-aws/issues/237)
174
+ - Fog Mock doesn't update [\#236](https://github.com/fog/fog-aws/issues/236)
175
+ - ECS service\_update does not support "deploymentConfig" [\#234](https://github.com/fog/fog-aws/issues/234)
176
+ - Fog::Storage::AWS::Files\#each always iterates over entire collection [\#232](https://github.com/fog/fog-aws/issues/232)
177
+ - repeated bucket name in the URL on AWS and issue with :path\_style [\#228](https://github.com/fog/fog-aws/issues/228)
178
+ - Already initialized constant warnings [\#212](https://github.com/fog/fog-aws/issues/212)
179
+ - SQS API version is outdated [\#198](https://github.com/fog/fog-aws/issues/198)
180
+ - Problem when using irb [\#195](https://github.com/fog/fog-aws/issues/195)
181
+ - compute.servers \(via DescribeInstances\) does not include tags reliably [\#192](https://github.com/fog/fog-aws/issues/192)
182
+ - EBS create volume io1 or gp2 [\#186](https://github.com/fog/fog-aws/issues/186)
183
+ - Aws cloudformation stack-policy-body [\#179](https://github.com/fog/fog-aws/issues/179)
184
+ - EXCON\_DEBUG and DEBUG env variables do not help debug -S key issues [\#177](https://github.com/fog/fog-aws/issues/177)
185
+ - AWS4 SignatureDoesNotMatch if header contains two spaces [\#160](https://github.com/fog/fog-aws/issues/160)
186
+ - Add support for elasticache redis replication groups [\#136](https://github.com/fog/fog-aws/issues/136)
187
+ - Getting SignatureDoesNotMatch error with eu-central-1 [\#127](https://github.com/fog/fog-aws/issues/127)
188
+ - Cannot saving auto scaling group [\#125](https://github.com/fog/fog-aws/issues/125)
189
+ - fog-aws not working with dynamoDB Local [\#118](https://github.com/fog/fog-aws/issues/118)
190
+ - Fog::Compute::AWS::Error InvalidParameterValue =\> secondary-addresses [\#115](https://github.com/fog/fog-aws/issues/115)
191
+ - Is there an equivalent to describe-instance-status? [\#66](https://github.com/fog/fog-aws/issues/66)
192
+ - No usage instructions in Readme [\#64](https://github.com/fog/fog-aws/issues/64)
193
+ - AWS - distributionConfig.enabled' failed to satisfy constraint: Member must not be null [\#48](https://github.com/fog/fog-aws/issues/48)
194
+ - Clarify versioning on README [\#42](https://github.com/fog/fog-aws/issues/42)
195
+ - AWS SQS AddPermission API missing [\#26](https://github.com/fog/fog-aws/issues/26)
196
+ - AWS China region [\#25](https://github.com/fog/fog-aws/issues/25)
197
+ - AWS CloudFormation ListStacks options [\#24](https://github.com/fog/fog-aws/issues/24)
198
+ - Setting region of AWS::Compute after initialization [\#23](https://github.com/fog/fog-aws/issues/23)
199
+ - Support AWS Support API [\#22](https://github.com/fog/fog-aws/issues/22)
200
+ - InvalidClientTokenId =\> The security token included in the request is invalid [\#21](https://github.com/fog/fog-aws/issues/21)
201
+ - Change architecture attribute in AWS::Compute::Server model [\#20](https://github.com/fog/fog-aws/issues/20)
202
+ - Add support for Amazon Kinesis [\#19](https://github.com/fog/fog-aws/issues/19)
203
+ - Bring AWS CloudFront API Models/Requests up to date [\#17](https://github.com/fog/fog-aws/issues/17)
204
+ - AWS security group tests have become unstable [\#16](https://github.com/fog/fog-aws/issues/16)
205
+ - AWS auto scaling: availability zones are not a required parameter [\#15](https://github.com/fog/fog-aws/issues/15)
206
+ - Is anyone going to add support for AWS ElasticTranscoder [\#14](https://github.com/fog/fog-aws/issues/14)
207
+ - add missing attributes to aws describe\_reserved\_instances parser [\#13](https://github.com/fog/fog-aws/issues/13)
208
+ - AWS AutoScaling group min\_size & max\_size getting set to 0 [\#12](https://github.com/fog/fog-aws/issues/12)
209
+ - auto\_scaling\_group.instances does not return only instances for that group [\#11](https://github.com/fog/fog-aws/issues/11)
210
+ - Why are the credential keys not generalized? [\#10](https://github.com/fog/fog-aws/issues/10)
211
+ - Invalid XML Character in S3 Response [\#8](https://github.com/fog/fog-aws/issues/8)
212
+ - reading s3 upload progress [\#7](https://github.com/fog/fog-aws/issues/7)
213
+ - delete\_on\_termination=true attribute on new volume is not set on create [\#6](https://github.com/fog/fog-aws/issues/6)
214
+ - user\_data is still base64 encoded in Real launch\_configurations [\#5](https://github.com/fog/fog-aws/issues/5)
215
+
216
+ **Merged pull requests:**
217
+
218
+ - Add storage option to configure multipart put/copy [\#616](https://github.com/fog/fog-aws/pull/616) ([slonopotamus](https://github.com/slonopotamus))
219
+ - Bump actions/stale from 3.0.19 to 4 [\#615](https://github.com/fog/fog-aws/pull/615) ([dependabot[bot]](https://github.com/apps/dependabot))
220
+ - Update file.rb [\#613](https://github.com/fog/fog-aws/pull/613) ([iqre8](https://github.com/iqre8))
221
+ - fix storage for ruby 3.0 [\#611](https://github.com/fog/fog-aws/pull/611) ([vincentjoseph](https://github.com/vincentjoseph))
222
+ - Implement AWS TagSpecifications \(closes \#603\) [\#610](https://github.com/fog/fog-aws/pull/610) ([eLvErDe](https://github.com/eLvErDe))
223
+ - Bump actions/stale from 3.0.18 to 3.0.19 [\#609](https://github.com/fog/fog-aws/pull/609) ([dependabot[bot]](https://github.com/apps/dependabot))
224
+ - Bump actions/stale from 3 to 3.0.18 [\#608](https://github.com/fog/fog-aws/pull/608) ([dependabot[bot]](https://github.com/apps/dependabot))
225
+ - Bump actions/checkout from 2 to 2.3.4 [\#607](https://github.com/fog/fog-aws/pull/607) ([dependabot[bot]](https://github.com/apps/dependabot))
226
+ - drop git in gemspec [\#602](https://github.com/fog/fog-aws/pull/602) ([abrahamparayil](https://github.com/abrahamparayil))
227
+ - Update rubyzip requirement from ~\> 1.3.0 to ~\> 2.3.0 [\#601](https://github.com/fog/fog-aws/pull/601) ([dependabot[bot]](https://github.com/apps/dependabot))
228
+
229
+ ## [v3.10.0](https://github.com/fog/fog-aws/tree/v3.10.0) (2021-03-22)
230
+
231
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.9.0...v3.10.0)
232
+
233
+ **Closed issues:**
234
+
235
+ - Fog::AWS::Storage timeout against S3 [\#599](https://github.com/fog/fog-aws/issues/599)
236
+ - Incorrect bucket redirection URL generation [\#594](https://github.com/fog/fog-aws/issues/594)
237
+ - Fully Support SSE-C encryption [\#571](https://github.com/fog/fog-aws/issues/571)
238
+ - Enable hibernation on creation of ec2 instance [\#566](https://github.com/fog/fog-aws/issues/566)
239
+ - Tests broken with fog-core 2.1.0 [\#504](https://github.com/fog/fog-aws/issues/504)
240
+ - changelog? [\#471](https://github.com/fog/fog-aws/issues/471)
241
+ - How to use iam\_instance\_profile? [\#342](https://github.com/fog/fog-aws/issues/342)
242
+ - how to support additional aws regions, e.g. cn-north-1 [\#164](https://github.com/fog/fog-aws/issues/164)
243
+ - Still empty content-encoding when it is not set [\#130](https://github.com/fog/fog-aws/issues/130)
244
+
245
+ **Merged pull requests:**
246
+
247
+ - Handle multiple versions of objects in multiple delete request [\#600](https://github.com/fog/fog-aws/pull/600) ([shanu-kr](https://github.com/shanu-kr))
248
+ - Add Truffleruby head to CI [\#596](https://github.com/fog/fog-aws/pull/596) ([gogainda](https://github.com/gogainda))
249
+ - Fixes domain name duplication in url [\#593](https://github.com/fog/fog-aws/pull/593) ([midhunkrishna](https://github.com/midhunkrishna))
250
+
251
+ ## [v3.9.0](https://github.com/fog/fog-aws/tree/v3.9.0) (2021-03-02)
252
+
253
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.8.0...v3.9.0)
254
+
255
+ **Merged pull requests:**
256
+
257
+ - Fix handling of lowercased HTTP headers [\#597](https://github.com/fog/fog-aws/pull/597) ([stanhu](https://github.com/stanhu))
258
+ - Generate a default session name if one is not provided [\#595](https://github.com/fog/fog-aws/pull/595) ([stanhu](https://github.com/stanhu))
259
+ - Enable test on Ruby 3.0 [\#591](https://github.com/fog/fog-aws/pull/591) ([voxik](https://github.com/voxik))
260
+
261
+ ## [v3.8.0](https://github.com/fog/fog-aws/tree/v3.8.0) (2021-01-13)
262
+
263
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.7.0...v3.8.0)
264
+
265
+ **Closed issues:**
266
+
267
+ - Getting Auth failure Exception for non enabled AWS regions in AWS account. [\#585](https://github.com/fog/fog-aws/issues/585)
268
+
269
+ **Merged pull requests:**
270
+
271
+ - Filter unknown UploadPartCopy parameters [\#589](https://github.com/fog/fog-aws/pull/589) ([stanhu](https://github.com/stanhu))
272
+ - Fix NameError in multipart copy [\#588](https://github.com/fog/fog-aws/pull/588) ([stanhu](https://github.com/stanhu))
273
+ - Rewind pointer if file is eof on put\_object mock [\#587](https://github.com/fog/fog-aws/pull/587) ([ekulz](https://github.com/ekulz))
274
+ - Update .travis.yml [\#584](https://github.com/fog/fog-aws/pull/584) ([nageshlop](https://github.com/nageshlop))
275
+
276
+ ## [v3.7.0](https://github.com/fog/fog-aws/tree/v3.7.0) (2020-12-01)
277
+
278
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.7...v3.7.0)
279
+
280
+ **Closed issues:**
281
+
282
+ - File\#copy does not support files above 5 GB [\#577](https://github.com/fog/fog-aws/issues/577)
283
+ - fog-aws: AWS extended length resource ID issues \(8-\>18\) [\#517](https://github.com/fog/fog-aws/issues/517)
284
+
285
+ **Merged pull requests:**
286
+
287
+ - Add all m6gd, r6g, r6gd, c6g, and c6gd instance classes [\#582](https://github.com/fog/fog-aws/pull/582) ([calebwoofenden](https://github.com/calebwoofenden))
288
+ - Test Ruby v2.6.6 and v2.7.2 in CI [\#581](https://github.com/fog/fog-aws/pull/581) ([stanhu](https://github.com/stanhu))
289
+ - Add multi-threaded support for File\#copy [\#579](https://github.com/fog/fog-aws/pull/579) ([stanhu](https://github.com/stanhu))
290
+ - Add support for multipart Fog::AWS::Storage::File\#copy [\#578](https://github.com/fog/fog-aws/pull/578) ([stanhu](https://github.com/stanhu))
291
+ - Add AssumeRoleWithWebIdentity to fetch\_credentials [\#576](https://github.com/fog/fog-aws/pull/576) ([jpac-run](https://github.com/jpac-run))
292
+
293
+ ## [v3.6.7](https://github.com/fog/fog-aws/tree/v3.6.7) (2020-08-26)
294
+
295
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.6...v3.6.7)
296
+
297
+ **Merged pull requests:**
298
+
299
+ - S3 dot Region endpoint structure applied [\#574](https://github.com/fog/fog-aws/pull/574) ([gharutyunyan-vineti](https://github.com/gharutyunyan-vineti))
300
+
301
+ ## [v3.6.6](https://github.com/fog/fog-aws/tree/v3.6.6) (2020-06-23)
302
+
303
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.5...v3.6.6)
304
+
305
+ **Closed issues:**
306
+
307
+ - max\_keys param in storage.directories.get.... what am I missing? [\#568](https://github.com/fog/fog-aws/issues/568)
308
+ - Fog Logs? [\#561](https://github.com/fog/fog-aws/issues/561)
309
+
310
+ **Merged pull requests:**
311
+
312
+ - added missing region EU South \(Milan\) [\#570](https://github.com/fog/fog-aws/pull/570) ([saldan](https://github.com/saldan))
313
+ - hibernation option to compute [\#569](https://github.com/fog/fog-aws/pull/569) ([taniahagan](https://github.com/taniahagan))
314
+ - Fix VPC model is\_default requires [\#567](https://github.com/fog/fog-aws/pull/567) ([biinari](https://github.com/biinari))
315
+
316
+ ## [v3.6.5](https://github.com/fog/fog-aws/tree/v3.6.5) (2020-05-22)
317
+
318
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.4...v3.6.5)
319
+
320
+ **Closed issues:**
321
+
322
+ - Fog::Compute::AWS is deprecated, please use Fog::AWS::Compute warning [\#565](https://github.com/fog/fog-aws/issues/565)
323
+ - Duplicate compute flavours [\#563](https://github.com/fog/fog-aws/issues/563)
324
+ - 3.6.4 does not fetch iam credentials using IMDSv2 when running from inside containers with IMDSv2 Defaults [\#560](https://github.com/fog/fog-aws/issues/560)
325
+
326
+ **Merged pull requests:**
327
+
328
+ - Fix naming of various AWS compute flavors [\#564](https://github.com/fog/fog-aws/pull/564) ([abrom](https://github.com/abrom))
329
+ - Gracefully handle failure of IMDSv2 and allow fallback to IMDSv1 [\#562](https://github.com/fog/fog-aws/pull/562) ([atyndall](https://github.com/atyndall))
330
+
331
+ ## [v3.6.4](https://github.com/fog/fog-aws/tree/v3.6.4) (2020-05-14)
332
+
333
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.3...v3.6.4)
334
+
335
+ **Closed issues:**
336
+
337
+ - Is fog-aws compatible with AWS Trust Services? [\#558](https://github.com/fog/fog-aws/issues/558)
338
+
339
+ **Merged pull requests:**
340
+
341
+ - Add support for IMDSv2 in CredentialFetcher [\#559](https://github.com/fog/fog-aws/pull/559) ([atyndall](https://github.com/atyndall))
342
+ - Don’t install development scripts [\#557](https://github.com/fog/fog-aws/pull/557) ([amarshall](https://github.com/amarshall))
343
+
344
+ ## [v3.6.3](https://github.com/fog/fog-aws/tree/v3.6.3) (2020-04-22)
345
+
346
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.6.2...v3.6.3)
347
+
348
+ **Merged pull requests:**
349
+
350
+ - Add South Africa \(Cape Town\) Region [\#556](https://github.com/fog/fog-aws/pull/556) ([lvangool](https://github.com/lvangool))
351
+ - Adds Instance Type r5.16xlarge and r5.8xlarge [\#555](https://github.com/fog/fog-aws/pull/555) ([rupikakapoor](https://github.com/rupikakapoor))
352
+ - Update kinesis.rb [\#553](https://github.com/fog/fog-aws/pull/553) ([ioquatix](https://github.com/ioquatix))
353
+
354
+ ## [v3.6.2](https://github.com/fog/fog-aws/tree/v3.6.2) (2020-03-24)
355
+
356
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.5.2...v3.6.2)
357
+
358
+ **Closed issues:**
359
+
360
+ - config.assets.prefix is being looked at as a bucket name [\#551](https://github.com/fog/fog-aws/issues/551)
361
+ - Class name typo: AssumeRoleWithWithWebIdentity [\#548](https://github.com/fog/fog-aws/issues/548)
362
+ - filename too long [\#544](https://github.com/fog/fog-aws/issues/544)
363
+
364
+ **Merged pull requests:**
365
+
366
+ - Adding two missing regions to Fog::AWS.regions [\#552](https://github.com/fog/fog-aws/pull/552) ([lvangool](https://github.com/lvangool))
367
+ - Adds missing param WebIdentityToken for the request to the AWS api [\#550](https://github.com/fog/fog-aws/pull/550) ([dgoradia](https://github.com/dgoradia))
368
+ - Fixes type in class name for STS assume\_role\_with\_web\_identity parser [\#549](https://github.com/fog/fog-aws/pull/549) ([dgoradia](https://github.com/dgoradia))
369
+ - Add missing AWS flavors [\#547](https://github.com/fog/fog-aws/pull/547) ([ybart](https://github.com/ybart))
370
+ - Update elasticache mocking regions [\#545](https://github.com/fog/fog-aws/pull/545) ([yads](https://github.com/yads))
371
+ - Feature/elbv2 creation endpoint [\#542](https://github.com/fog/fog-aws/pull/542) ([KevinLoiseau](https://github.com/KevinLoiseau))
372
+ - Fix/sd 8581/retrieve provider snapshot status from provider [\#541](https://github.com/fog/fog-aws/pull/541) ([toubs13](https://github.com/toubs13))
373
+ - Fix/missing implementation in listener parser [\#540](https://github.com/fog/fog-aws/pull/540) ([KevinLoiseau](https://github.com/KevinLoiseau))
374
+ - Enhance/elbv2 tag endpoints [\#539](https://github.com/fog/fog-aws/pull/539) ([KevinLoiseau](https://github.com/KevinLoiseau))
375
+ - Improve documentation and development setup [\#538](https://github.com/fog/fog-aws/pull/538) ([gustavosobral](https://github.com/gustavosobral))
376
+ - Add object tagging [\#537](https://github.com/fog/fog-aws/pull/537) ([gustavosobral](https://github.com/gustavosobral))
377
+ - Fix load balancers parser to handle more than one availability zone with addresses [\#536](https://github.com/fog/fog-aws/pull/536) ([KevinLoiseau](https://github.com/KevinLoiseau))
378
+ - Remove useless attribute location from directory model [\#535](https://github.com/fog/fog-aws/pull/535) ([KevinLoiseau](https://github.com/KevinLoiseau))
379
+ - Create service ELBV2 to handle specificities of 2015-12-01 API version [\#534](https://github.com/fog/fog-aws/pull/534) ([KevinLoiseau](https://github.com/KevinLoiseau))
380
+ - Add missing m5a flavors [\#533](https://github.com/fog/fog-aws/pull/533) ([ybart](https://github.com/ybart))
381
+ - Enhance/add some attributes to hosted zone parsers [\#531](https://github.com/fog/fog-aws/pull/531) ([KevinLoiseau](https://github.com/KevinLoiseau))
382
+ - Fix VPC tenancy on creation [\#530](https://github.com/fog/fog-aws/pull/530) ([ramonpm](https://github.com/ramonpm))
383
+ - Fix subnet's parsings [\#529](https://github.com/fog/fog-aws/pull/529) ([KevinLoiseau](https://github.com/KevinLoiseau))
384
+
385
+ ## [v3.5.2](https://github.com/fog/fog-aws/tree/v3.5.2) (2019-07-16)
386
+
387
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.5.1...v3.5.2)
388
+
389
+ **Closed issues:**
390
+
391
+ - Support for Hong Kong Region \(ap-east-1\)? [\#527](https://github.com/fog/fog-aws/issues/527)
392
+ - Make S3 Signature v4 Streaming Optional [\#523](https://github.com/fog/fog-aws/issues/523)
393
+
394
+ **Merged pull requests:**
395
+
396
+ - Add ap-east-1 \(Hong Kong\) to Fog::AWS.regions [\#528](https://github.com/fog/fog-aws/pull/528) ([tisba](https://github.com/tisba))
397
+ - Update shared\_mock\_methods.rb [\#526](https://github.com/fog/fog-aws/pull/526) ([MiWieczo](https://github.com/MiWieczo))
398
+ - Make S3 Signature v4 streaming optional [\#525](https://github.com/fog/fog-aws/pull/525) ([stanhu](https://github.com/stanhu))
399
+
400
+ ## [v3.5.1](https://github.com/fog/fog-aws/tree/v3.5.1) (2019-06-10)
401
+
402
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.5.0...v3.5.1)
403
+
404
+ **Merged pull requests:**
405
+
406
+ - Fixed issue with InvocationType header for AWS Lambda [\#524](https://github.com/fog/fog-aws/pull/524) ([GarrisonD](https://github.com/GarrisonD))
407
+ - Add support for generating tree hash tests by adding unaligned parts. [\#521](https://github.com/fog/fog-aws/pull/521) ([hkmaly](https://github.com/hkmaly))
408
+
409
+ ## [v3.5.0](https://github.com/fog/fog-aws/tree/v3.5.0) (2019-04-25)
410
+
411
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.4.0...v3.5.0)
412
+
413
+ **Closed issues:**
414
+
415
+ - Missing AWS region: EU \(Stockholm\) eu-north-1 [\#514](https://github.com/fog/fog-aws/issues/514)
416
+ - Support for AWS fargate [\#510](https://github.com/fog/fog-aws/issues/510)
417
+
418
+ **Merged pull requests:**
419
+
420
+ - Add AWS Stockholm region [\#515](https://github.com/fog/fog-aws/pull/515) ([fred-secludit](https://github.com/fred-secludit))
421
+ - Enhance/handle ELBv2 api version [\#512](https://github.com/fog/fog-aws/pull/512) ([KevinLoiseau](https://github.com/KevinLoiseau))
422
+ - Enhance/add attribute db subnet group for db instance [\#511](https://github.com/fog/fog-aws/pull/511) ([KevinLoiseau](https://github.com/KevinLoiseau))
423
+
424
+ ## [v3.4.0](https://github.com/fog/fog-aws/tree/v3.4.0) (2019-03-11)
425
+
426
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.3.0...v3.4.0)
427
+
428
+ **Closed issues:**
429
+
430
+ - Warning: possibly useless use of == in void context [\#498](https://github.com/fog/fog-aws/issues/498)
431
+ - Cluster.ready? returns false [\#496](https://github.com/fog/fog-aws/issues/496)
432
+ - With out AWS access key & secrect AWS services not working\(IAM Role associated\) [\#495](https://github.com/fog/fog-aws/issues/495)
433
+ - "AWS::STS | assume role with web identity \(aws\)" interferes with "Fog::Compute\[:iam\] | roles \(aws, iam\)" [\#491](https://github.com/fog/fog-aws/issues/491)
434
+ - Access S3 using a proxy [\#486](https://github.com/fog/fog-aws/issues/486)
435
+ - Warning that doesn't make sense [\#479](https://github.com/fog/fog-aws/issues/479)
436
+ - Undefined method `change\_resource\_record\_sets\_data' for Fog::AWS:Module called from fog/aws/requests/dns/change\_resource\_record\_sets.rb when attempting to modify a DNS record. [\#477](https://github.com/fog/fog-aws/issues/477)
437
+ - Is DescribeImageAttribute support missing? [\#473](https://github.com/fog/fog-aws/issues/473)
438
+ - How to fix deprecation warning: "The format Fog::CDN::AWS is deprecated" [\#466](https://github.com/fog/fog-aws/issues/466)
439
+ - Test suite failures in "Fog::Compute\[:iam\] | roles" [\#296](https://github.com/fog/fog-aws/issues/296)
440
+ - Support Amazon S3 Transfer Acceleration [\#250](https://github.com/fog/fog-aws/issues/250)
441
+ - Creating VPC instances in AWS [\#116](https://github.com/fog/fog-aws/issues/116)
442
+
443
+ **Merged pull requests:**
444
+
445
+ - Avoid using bucket\_name.host if host is overriden. [\#507](https://github.com/fog/fog-aws/pull/507) ([deepfryed](https://github.com/deepfryed))
446
+ - Fix some requests when S3 acceleration is enabled [\#506](https://github.com/fog/fog-aws/pull/506) ([NARKOZ](https://github.com/NARKOZ))
447
+ - Add support for S3 transfer acceleration [\#505](https://github.com/fog/fog-aws/pull/505) ([NARKOZ](https://github.com/NARKOZ))
448
+ - Correct DynamoDB update\_item method [\#503](https://github.com/fog/fog-aws/pull/503) ([postmodern](https://github.com/postmodern))
449
+ - Add MaxResults filter to describe security groups [\#502](https://github.com/fog/fog-aws/pull/502) ([KevinLoiseau](https://github.com/KevinLoiseau))
450
+ - Fix for Aurora Server Provisioning. [\#501](https://github.com/fog/fog-aws/pull/501) ([lockstone](https://github.com/lockstone))
451
+ - Fixes/fog/aws/rds/ready [\#497](https://github.com/fog/fog-aws/pull/497) ([villemuittari](https://github.com/villemuittari))
452
+ - Feature/adding modify instance placement [\#494](https://github.com/fog/fog-aws/pull/494) ([loperaja](https://github.com/loperaja))
453
+ - Add AMD CPU instance types [\#493](https://github.com/fog/fog-aws/pull/493) ([jfuechsl](https://github.com/jfuechsl))
454
+ - Update documentation for x-amz headers [\#492](https://github.com/fog/fog-aws/pull/492) ([knapo](https://github.com/knapo))
455
+ - Add missing generation 5 compute instance flavors [\#490](https://github.com/fog/fog-aws/pull/490) ([jfuechsl](https://github.com/jfuechsl))
456
+ - Add ability to force delete a bucket with objects [\#488](https://github.com/fog/fog-aws/pull/488) ([ramonpm](https://github.com/ramonpm))
457
+ - Modernize various tests to Ruby 2.x syntax [\#485](https://github.com/fog/fog-aws/pull/485) ([teancom](https://github.com/teancom))
458
+ - EYPP-6850 add m4.16xlarge flavor [\#480](https://github.com/fog/fog-aws/pull/480) ([thorn](https://github.com/thorn))
459
+ - pull request in attempt at fix for undefined method issue mentioned in fog/fog-aws\#477 [\#478](https://github.com/fog/fog-aws/pull/478) ([klarrimore](https://github.com/klarrimore))
460
+ - Changes to add describe\_image\_attribute support [\#476](https://github.com/fog/fog-aws/pull/476) ([keithjpaulson](https://github.com/keithjpaulson))
461
+ - add tags for describe address [\#474](https://github.com/fog/fog-aws/pull/474) ([toubs13](https://github.com/toubs13))
462
+
463
+ ## [v3.3.0](https://github.com/fog/fog-aws/tree/v3.3.0) (2018-09-18)
464
+
465
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.2.0...v3.3.0)
466
+
467
+ **Merged pull requests:**
468
+
469
+ - Rename CDN::AWS to AWS::CDN [\#467](https://github.com/fog/fog-aws/pull/467) ([jaredbeck](https://github.com/jaredbeck))
470
+
471
+ ## [v3.2.0](https://github.com/fog/fog-aws/tree/v3.2.0) (2018-09-17)
472
+
473
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.1.0...v3.2.0)
474
+
475
+ **Merged pull requests:**
476
+
477
+ - Rename Storage::AWS to AWS::Storage [\#470](https://github.com/fog/fog-aws/pull/470) ([sue445](https://github.com/sue445))
478
+ - Rename DNS::AWS to AWS::DNS [\#469](https://github.com/fog/fog-aws/pull/469) ([sue445](https://github.com/sue445))
479
+ - Rename Compute::AWS to AWS::Compute [\#468](https://github.com/fog/fog-aws/pull/468) ([sue445](https://github.com/sue445))
480
+
481
+ ## [v3.1.0](https://github.com/fog/fog-aws/tree/v3.1.0) (2018-09-17)
482
+
483
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.0.0...v3.1.0)
484
+
485
+ **Closed issues:**
486
+
487
+ - Option to disable ssl verification [\#465](https://github.com/fog/fog-aws/issues/465)
488
+ - s3: fog returns bad URL \(with correct signature\) [\#462](https://github.com/fog/fog-aws/issues/462)
489
+ - Getting permanent link without X-Amz-Expires=600 [\#459](https://github.com/fog/fog-aws/issues/459)
490
+ - add region cn-northwest-1 [\#455](https://github.com/fog/fog-aws/issues/455)
491
+ - Parameterize "RequestLimitExceeded" jitter magnitude [\#448](https://github.com/fog/fog-aws/issues/448)
492
+ - Release new version to RubyGems [\#442](https://github.com/fog/fog-aws/issues/442)
493
+ - Fog::Compute::AWS::Vpcs returns VPCs with nil ids [\#387](https://github.com/fog/fog-aws/issues/387)
494
+
495
+ **Merged pull requests:**
496
+
497
+ - Escape / in presigned URLs [\#463](https://github.com/fog/fog-aws/pull/463) ([alexcern](https://github.com/alexcern))
498
+ - Fix t1.micro bits [\#460](https://github.com/fog/fog-aws/pull/460) ([tas50](https://github.com/tas50))
499
+ - Storage region support for cn-northwest-1 [\#458](https://github.com/fog/fog-aws/pull/458) ([deepfryed](https://github.com/deepfryed))
500
+ - Simplify constructor [\#457](https://github.com/fog/fog-aws/pull/457) ([lvangool](https://github.com/lvangool))
501
+ - Add missing attribute to RDS server [\#456](https://github.com/fog/fog-aws/pull/456) ([brianknight10](https://github.com/brianknight10))
502
+ - Fix & update aws flavor \(provided in GiB\) to Megabytes \(floor rounded\). [\#454](https://github.com/fog/fog-aws/pull/454) ([xward](https://github.com/xward))
503
+ - Update aws flavors cpu count for gpu oriented flavor. [\#453](https://github.com/fog/fog-aws/pull/453) ([xward](https://github.com/xward))
504
+ - Update aws flavors cpu count. [\#452](https://github.com/fog/fog-aws/pull/452) ([xward](https://github.com/xward))
505
+ - Parameterized retry [\#451](https://github.com/fog/fog-aws/pull/451) ([lvangool](https://github.com/lvangool))
506
+ - Fix c1.xlarge cpu count [\#449](https://github.com/fog/fog-aws/pull/449) ([romaintb](https://github.com/romaintb))
507
+ - Retry if instance not found when adding EC2 tags [\#446](https://github.com/fog/fog-aws/pull/446) ([tracemeyers](https://github.com/tracemeyers))
508
+ - Support new Paris and AP Osaka load balancers in DNS [\#445](https://github.com/fog/fog-aws/pull/445) ([mattheworiordan](https://github.com/mattheworiordan))
509
+ - Docs: Update changelog for 3.0.0 [\#444](https://github.com/fog/fog-aws/pull/444) ([jaredbeck](https://github.com/jaredbeck))
510
+ - Add encryption to EFS FileSystem creation [\#438](https://github.com/fog/fog-aws/pull/438) ([acant](https://github.com/acant))
511
+ - SetInstanceProtection endpoint for auto scaling groups support [\#436](https://github.com/fog/fog-aws/pull/436) ([thorn](https://github.com/thorn))
512
+
513
+ ## [v3.0.0](https://github.com/fog/fog-aws/tree/v3.0.0) (2018-04-23)
514
+
515
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v2.0.1...v3.0.0)
516
+
517
+ **Closed issues:**
518
+
519
+ - Easily Delete S3 directory and it contents? [\#435](https://github.com/fog/fog-aws/issues/435)
520
+ - S3 upload help -- likely user error :\) [\#432](https://github.com/fog/fog-aws/issues/432)
521
+ - Fog not work without pry [\#317](https://github.com/fog/fog-aws/issues/317)
522
+
523
+ **Merged pull requests:**
524
+
525
+ - fix: attach volume on \#save, remove \#server= [\#443](https://github.com/fog/fog-aws/pull/443) ([lanej](https://github.com/lanej))
526
+ - Adding g3 flavors [\#440](https://github.com/fog/fog-aws/pull/440) ([AlexLamande](https://github.com/AlexLamande))
527
+ - Add c5 and m5 instance types. [\#439](https://github.com/fog/fog-aws/pull/439) ([rogersd](https://github.com/rogersd))
528
+ - Include link to full documentation [\#434](https://github.com/fog/fog-aws/pull/434) ([kylefox](https://github.com/kylefox))
529
+ - fog-core 2.x, fog-json 1.x [\#433](https://github.com/fog/fog-aws/pull/433) ([lanej](https://github.com/lanej))
530
+
531
+ ## [v2.0.1](https://github.com/fog/fog-aws/tree/v2.0.1) (2018-02-28)
532
+
533
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v2.0.0...v2.0.1)
534
+
535
+ **Closed issues:**
536
+
537
+ - Unable to use fog-aws with DigitalOcean Spaces: MissingContentLength [\#428](https://github.com/fog/fog-aws/issues/428)
538
+ - Add new France region [\#424](https://github.com/fog/fog-aws/issues/424)
539
+ - How to set root volume size with bootstrap method? [\#417](https://github.com/fog/fog-aws/issues/417)
540
+ - Update Dependencies [\#227](https://github.com/fog/fog-aws/issues/227)
541
+
542
+ **Merged pull requests:**
543
+
544
+ - Expose S3 pre-signed object delete url [\#431](https://github.com/fog/fog-aws/pull/431) ([nolith](https://github.com/nolith))
545
+ - Fronzen strings fix [\#430](https://github.com/fog/fog-aws/pull/430) ([zhulik](https://github.com/zhulik))
546
+ - Expose elastic ip's private\_ip\_address [\#427](https://github.com/fog/fog-aws/pull/427) ([KevinLoiseau](https://github.com/KevinLoiseau))
547
+ - add france \(eu-west-3\) new region, fix \#424 [\#425](https://github.com/fog/fog-aws/pull/425) ([Val](https://github.com/Val))
548
+
549
+ ## [v2.0.0](https://github.com/fog/fog-aws/tree/v2.0.0) (2017-11-28)
550
+
551
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v1.4.1...v2.0.0)
552
+
553
+ **Closed issues:**
554
+
555
+ - connect\_write timeout on AWS CodeBuild [\#413](https://github.com/fog/fog-aws/issues/413)
556
+ - cannot load such file -- fog \(LoadError\) [\#401](https://github.com/fog/fog-aws/issues/401)
557
+ - Missing file for extraction? [\#390](https://github.com/fog/fog-aws/issues/390)
558
+ - Regression: IO stream sent to AWS fails [\#388](https://github.com/fog/fog-aws/issues/388)
559
+ - Stack Level Too Deep on YAML Serialization [\#385](https://github.com/fog/fog-aws/issues/385)
560
+ - models/elb/model\_tests does not properly cleanup [\#347](https://github.com/fog/fog-aws/issues/347)
561
+ - Generates wrong url when region is not DEFAULT\_REGION [\#214](https://github.com/fog/fog-aws/issues/214)
562
+
563
+ **Merged pull requests:**
564
+
565
+ - upgrade rubyzip to \>= 1.2.1 [\#416](https://github.com/fog/fog-aws/pull/416) ([lanej](https://github.com/lanej))
566
+ - correction in iam/list\_access\_keys parser: Username should be UserName [\#415](https://github.com/fog/fog-aws/pull/415) ([patleb](https://github.com/patleb))
567
+ - Avoid creating connection if region is not nil [\#414](https://github.com/fog/fog-aws/pull/414) ([hideto0710](https://github.com/hideto0710))
568
+ - Resolving issue where `Fog::Json` was called instead of `Fog::JSON`. [\#412](https://github.com/fog/fog-aws/pull/412) ([mgarrick](https://github.com/mgarrick))
569
+ - Add t2.micro in flavors list [\#411](https://github.com/fog/fog-aws/pull/411) ([KevinLoiseau](https://github.com/KevinLoiseau))
570
+ - Adding AWS P3 Tesla GPU instance types [\#409](https://github.com/fog/fog-aws/pull/409) ([hamelsmu](https://github.com/hamelsmu))
571
+ - Add jitter to exponential backoff [\#408](https://github.com/fog/fog-aws/pull/408) ([masstamike](https://github.com/masstamike))
572
+ - Add emulation of default VPC to mocked mode. [\#407](https://github.com/fog/fog-aws/pull/407) ([rzaharenkov](https://github.com/rzaharenkov))
573
+ - Update rds instance options model [\#406](https://github.com/fog/fog-aws/pull/406) ([carloslima](https://github.com/carloslima))
574
+ - Drop Ruby\<2.0 support [\#405](https://github.com/fog/fog-aws/pull/405) ([tbrisker](https://github.com/tbrisker))
575
+ - allow Gemfile-edge travis builds to fail [\#403](https://github.com/fog/fog-aws/pull/403) ([lanej](https://github.com/lanej))
576
+ - Add `default_for_az` attribute to subnet [\#402](https://github.com/fog/fog-aws/pull/402) ([rzaharenkov](https://github.com/rzaharenkov))
577
+ - bundler ~\> 1.15 [\#399](https://github.com/fog/fog-aws/pull/399) ([lanej](https://github.com/lanej))
578
+ - Fix detaching instances from auto scaling group. [\#397](https://github.com/fog/fog-aws/pull/397) ([rzaharenkov](https://github.com/rzaharenkov))
579
+ - Issue \#387 Fog::Compute::AWS::Vpcs returns VPCs with nil ids [\#396](https://github.com/fog/fog-aws/pull/396) ([maguec](https://github.com/maguec))
580
+ - feat\(CONTRIBUTORS\): Update [\#394](https://github.com/fog/fog-aws/pull/394) ([plribeiro3000](https://github.com/plribeiro3000))
581
+ - fix\(Tests\):Remove debugging [\#393](https://github.com/fog/fog-aws/pull/393) ([plribeiro3000](https://github.com/plribeiro3000))
582
+ - Migrate Service mapper from Fog [\#392](https://github.com/fog/fog-aws/pull/392) ([plribeiro3000](https://github.com/plribeiro3000))
583
+ - Add ability to encrypt a copy of an unencrypted snapshot [\#391](https://github.com/fog/fog-aws/pull/391) ([nodecarter](https://github.com/nodecarter))
584
+ - Fix VPC parser [\#389](https://github.com/fog/fog-aws/pull/389) ([ddiachkov](https://github.com/ddiachkov))
585
+ - fix default\_security\_group detection [\#348](https://github.com/fog/fog-aws/pull/348) ([lanej](https://github.com/lanej))
586
+
587
+ ## [v1.4.1](https://github.com/fog/fog-aws/tree/v1.4.1) (2017-08-23)
588
+
589
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v1.4.0...v1.4.1)
590
+
591
+ **Closed issues:**
592
+
593
+ - retrieval of ipv6 vpc [\#379](https://github.com/fog/fog-aws/issues/379)
594
+ - Timeout when trying to bootstrap or ssh spot request instances [\#372](https://github.com/fog/fog-aws/issues/372)
595
+ - Why default VPC does not require Elastic IP to connect in internet [\#338](https://github.com/fog/fog-aws/issues/338)
596
+ - Chunked images response causing Nokogiri::XML::SyntaxError [\#273](https://github.com/fog/fog-aws/issues/273)
597
+
598
+ **Merged pull requests:**
599
+
600
+ - Update changelog for 1.4.0 [\#383](https://github.com/fog/fog-aws/pull/383) ([greysteil](https://github.com/greysteil))
601
+ - Allow specifying kms key id to use [\#382](https://github.com/fog/fog-aws/pull/382) ([fcheung](https://github.com/fcheung))
602
+ - added support to retrieve and create vpc with ipv6 cidr block [\#381](https://github.com/fog/fog-aws/pull/381) ([chanakyacool](https://github.com/chanakyacool))
603
+ - Add MaxResults filter to describe reserved instances offerings [\#376](https://github.com/fog/fog-aws/pull/376) ([KevinLoiseau](https://github.com/KevinLoiseau))
604
+ - Fix Fog::Compute::AWS::Images\#all [\#375](https://github.com/fog/fog-aws/pull/375) ([eddiej](https://github.com/eddiej))
605
+ - Fix AWS credential mocking [\#374](https://github.com/fog/fog-aws/pull/374) ([v-yarotsky](https://github.com/v-yarotsky))
606
+
607
+ ## [v1.4.0](https://github.com/fog/fog-aws/tree/v1.4.0) (2017-06-14)
608
+
609
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v1.3.0...v1.4.0)
610
+
611
+ **Closed issues:**
612
+
613
+ - Support REST Bucket Get v2 [\#369](https://github.com/fog/fog-aws/issues/369)
614
+ - Fog::AWS::IAM::Error: InvalidAction =\> Could not find operation "ReplaceIamInstanceProfileAssociation" for version 2010-05-08 [\#368](https://github.com/fog/fog-aws/issues/368)
615
+ - Multipart upload fails on empty files [\#364](https://github.com/fog/fog-aws/issues/364)
616
+ - The action `ModifyVolume` is not valid for this web service. [\#363](https://github.com/fog/fog-aws/issues/363)
617
+ - Cache/read local amazon data [\#354](https://github.com/fog/fog-aws/issues/354)
618
+
619
+ **Merged pull requests:**
620
+
621
+ - add NextContinuationToken support to GetBucket operation [\#370](https://github.com/fog/fog-aws/pull/370) ([khoan](https://github.com/khoan))
622
+ - Add a top-level require that matches the gem name [\#367](https://github.com/fog/fog-aws/pull/367) ([lanej](https://github.com/lanej))
623
+ - Fixed credential refresh when instance metadata host is inaccessible [\#366](https://github.com/fog/fog-aws/pull/366) ([ankane](https://github.com/ankane))
624
+ - Handle multipart upload of empty files [\#365](https://github.com/fog/fog-aws/pull/365) ([fcheung](https://github.com/fcheung))
625
+ - Add p2 instance types [\#362](https://github.com/fog/fog-aws/pull/362) ([caged](https://github.com/caged))
626
+ - Exponential backoff [\#361](https://github.com/fog/fog-aws/pull/361) ([VVMichaelSawyer](https://github.com/VVMichaelSawyer))
627
+ - Skip call to instance metadata host if region is specified [\#360](https://github.com/fog/fog-aws/pull/360) ([ankane](https://github.com/ankane))
628
+
629
+ ## [v1.3.0](https://github.com/fog/fog-aws/tree/v1.3.0) (2017-03-29)
630
+
631
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v1.2.1...v1.3.0)
632
+
633
+ **Closed issues:**
634
+
635
+ - Do we need to list all files before creating one? [\#357](https://github.com/fog/fog-aws/issues/357)
636
+
637
+ **Merged pull requests:**
638
+
639
+ - Authorize vpc to rds sg [\#356](https://github.com/fog/fog-aws/pull/356) ([ehowe](https://github.com/ehowe))
640
+ - classic link enhancements [\#355](https://github.com/fog/fog-aws/pull/355) ([ehowe](https://github.com/ehowe))
641
+ - Add new i3 class instances. [\#353](https://github.com/fog/fog-aws/pull/353) ([rogersd](https://github.com/rogersd))
642
+ - Add check for self.etag before running gsub [\#351](https://github.com/fog/fog-aws/pull/351) ([dmcorboy](https://github.com/dmcorboy))
643
+ - Modify volume [\#350](https://github.com/fog/fog-aws/pull/350) ([ehowe](https://github.com/ehowe))
644
+
645
+ ## [v1.2.1](https://github.com/fog/fog-aws/tree/v1.2.1) (2017-02-27)
646
+
647
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v1.2.0...v1.2.1)
648
+
649
+ **Closed issues:**
650
+
651
+ - Fog mock does not mimmick real behaviour for some Excon errors [\#341](https://github.com/fog/fog-aws/issues/341)
652
+
653
+ **Merged pull requests:**
654
+
655
+ - Spot fixes [\#349](https://github.com/fog/fog-aws/pull/349) ([ehowe](https://github.com/ehowe))
656
+ - add natGatewayId to describe\_route\_tables [\#346](https://github.com/fog/fog-aws/pull/346) ([mliao2](https://github.com/mliao2))
657
+ - Fog mock accuracy, fixes \#341 [\#344](https://github.com/fog/fog-aws/pull/344) ([easkay](https://github.com/easkay))
658
+ - Subnet [\#343](https://github.com/fog/fog-aws/pull/343) ([ehowe](https://github.com/ehowe))
659
+ - Fix multipart upload [\#340](https://github.com/fog/fog-aws/pull/340) ([nobmurakita](https://github.com/nobmurakita))
660
+
661
+ ## [v1.2.0](https://github.com/fog/fog-aws/tree/v1.2.0) (2017-01-20)
662
+
663
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v1.1.0...v1.2.0)
664
+
665
+ **Closed issues:**
666
+
667
+ - Support for AWS Application Load Balancer \(ALB\) [\#335](https://github.com/fog/fog-aws/issues/335)
668
+
669
+ **Merged pull requests:**
670
+
671
+ - Better iam policies [\#339](https://github.com/fog/fog-aws/pull/339) ([ehowe](https://github.com/ehowe))
672
+ - Pin nokogiri gem for Ruby 1.9 and Ruby 2.0 [\#337](https://github.com/fog/fog-aws/pull/337) ([sodabrew](https://github.com/sodabrew))
673
+ - Fix parsing of the Reserved Instance 'recurringCharge' field and add 'scope' field [\#336](https://github.com/fog/fog-aws/pull/336) ([sodabrew](https://github.com/sodabrew))
674
+ - Fixes / improvements for AutoScaling [\#334](https://github.com/fog/fog-aws/pull/334) ([lanej](https://github.com/lanej))
675
+
676
+ ## [v1.1.0](https://github.com/fog/fog-aws/tree/v1.1.0) (2016-12-16)
677
+
678
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v1.0.0...v1.1.0)
679
+
680
+ **Closed issues:**
681
+
682
+ - Support new Ohio region \(us-east-2\) [\#313](https://github.com/fog/fog-aws/issues/313)
683
+
684
+ **Merged pull requests:**
685
+
686
+ - Canada and London regions [\#333](https://github.com/fog/fog-aws/pull/333) ([mattheworiordan](https://github.com/mattheworiordan))
687
+ - Updated ELB Dual Stack hosted zone DNS records [\#332](https://github.com/fog/fog-aws/pull/332) ([mattheworiordan](https://github.com/mattheworiordan))
688
+ - Added support for attaching auto scaling groups to target groups [\#330](https://github.com/fog/fog-aws/pull/330) ([maf23](https://github.com/maf23))
689
+ - credential\_fetcher: Mark AWS metadata calls as idempotent [\#329](https://github.com/fog/fog-aws/pull/329) ([mtekel](https://github.com/mtekel))
690
+
691
+ ## [v1.0.0](https://github.com/fog/fog-aws/tree/v1.0.0) (2016-12-12)
692
+
693
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v0.13.0...v1.0.0)
694
+
695
+ **Merged pull requests:**
696
+
697
+ - fix host header with another port on s3 [\#327](https://github.com/fog/fog-aws/pull/327) ([rodrigoapereira](https://github.com/rodrigoapereira))
698
+ - Add new t2.xlarge, t2.2xlarge and r4 class instances. [\#326](https://github.com/fog/fog-aws/pull/326) ([rogersd](https://github.com/rogersd))
699
+ - Fix the bug that can't create fifo queue in SQS. [\#323](https://github.com/fog/fog-aws/pull/323) ([ebihara99999](https://github.com/ebihara99999))
700
+ - data pipeline mocks [\#318](https://github.com/fog/fog-aws/pull/318) ([ehowe](https://github.com/ehowe))
701
+
702
+ ## [v0.13.0](https://github.com/fog/fog-aws/tree/v0.13.0) (2016-11-29)
703
+
704
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v0.12.0...v0.13.0)
705
+
706
+ **Closed issues:**
707
+
708
+ - Fog::Compute::AWS::Image not properly loaded [\#324](https://github.com/fog/fog-aws/issues/324)
709
+ - Add creation\_date field for aws images [\#320](https://github.com/fog/fog-aws/issues/320)
710
+ - Bug: \[fog\]\[WARNING\] Unrecognized arguments: region, use\_iam\_profile [\#315](https://github.com/fog/fog-aws/issues/315)
711
+ - Better contributing documentation [\#311](https://github.com/fog/fog-aws/issues/311)
712
+ - AutoscalingGroups with a TargetGroup set are not parsed correctly [\#308](https://github.com/fog/fog-aws/issues/308)
713
+ - autoscaling create launch config doesn't work with BlockDeviceMappings [\#307](https://github.com/fog/fog-aws/issues/307)
714
+ - Is there a configuration setting for the AWS provider to adjust the url scheme for S3 buckets? [\#305](https://github.com/fog/fog-aws/issues/305)
715
+ - DB Subnet Group id for Cluster returns nil [\#292](https://github.com/fog/fog-aws/issues/292)
716
+
717
+ **Merged pull requests:**
718
+
719
+ - Fixed some missing parts in change sets [\#322](https://github.com/fog/fog-aws/pull/322) ([nilroy](https://github.com/nilroy))
720
+ - Add creation date and enhanced networking support for images [\#321](https://github.com/fog/fog-aws/pull/321) ([puneetloya](https://github.com/puneetloya))
721
+ - Fix warnings in running tests [\#319](https://github.com/fog/fog-aws/pull/319) ([ebihara99999](https://github.com/ebihara99999))
722
+ - Add `Fog::AWS::STS.Mock#assume_role` [\#316](https://github.com/fog/fog-aws/pull/316) ([pedrommonteiro](https://github.com/pedrommonteiro))
723
+ - Ohio region [\#314](https://github.com/fog/fog-aws/pull/314) ([chanakyacool](https://github.com/chanakyacool))
724
+ - mime types gem update [\#312](https://github.com/fog/fog-aws/pull/312) ([lucianosousa](https://github.com/lucianosousa))
725
+ - fix S3 \#delete\_multiple\_objects for UTF-8 names [\#310](https://github.com/fog/fog-aws/pull/310) ([alepore](https://github.com/alepore))
726
+ - Support for target groups \(fix for \#308\) [\#309](https://github.com/fog/fog-aws/pull/309) ([msiuts](https://github.com/msiuts))
727
+ - create, describe, and destroy elastic file systems [\#304](https://github.com/fog/fog-aws/pull/304) ([ehowe](https://github.com/ehowe))
728
+ - Correct optional parameter naming in documentation for Fog::AWS::Auto… [\#302](https://github.com/fog/fog-aws/pull/302) ([ehealy](https://github.com/ehealy))
729
+ - Modify Db subnet group [\#293](https://github.com/fog/fog-aws/pull/293) ([chanakyacool](https://github.com/chanakyacool))
730
+
731
+ ## [v0.12.0](https://github.com/fog/fog-aws/tree/v0.12.0) (2016-09-22)
732
+
733
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v0.11.0...v0.12.0)
734
+
735
+ **Implemented enhancements:**
736
+
737
+ - Add gestion of egress security group rules [\#290](https://github.com/fog/fog-aws/pull/290) ([KevinLoiseau](https://github.com/KevinLoiseau))
738
+
739
+ **Closed issues:**
740
+
741
+ - Fog directory appends local system path with amazon url when i try to give dynamic fog directory [\#295](https://github.com/fog/fog-aws/issues/295)
742
+ - Getting OperationAborted error on file storage operation [\#288](https://github.com/fog/fog-aws/issues/288)
743
+ - AWS Elasticsearch API [\#286](https://github.com/fog/fog-aws/issues/286)
744
+ - Disable chunked encoding [\#285](https://github.com/fog/fog-aws/issues/285)
745
+
746
+ **Merged pull requests:**
747
+
748
+ - add support endpoint and models/requests for trusted advisor checks [\#300](https://github.com/fog/fog-aws/pull/300) ([ehowe](https://github.com/ehowe))
749
+ - Add attribute is\_default in vpc [\#299](https://github.com/fog/fog-aws/pull/299) ([zhitongLBN](https://github.com/zhitongLBN))
750
+ - Cloud Formation: additional parameters [\#298](https://github.com/fog/fog-aws/pull/298) ([neillturner](https://github.com/neillturner))
751
+ - Cloud Formation: support for change sets, stack policy and other missing calls. [\#297](https://github.com/fog/fog-aws/pull/297) ([neillturner](https://github.com/neillturner))
752
+
753
+ ## [v0.11.0](https://github.com/fog/fog-aws/tree/v0.11.0) (2016-08-04)
754
+
755
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v0.10.0...v0.11.0)
6
756
 
7
757
  **Merged pull requests:**
8
758
 
@@ -13,13 +763,13 @@
13
763
  - Change DBSubnetGroup to DBSubnetGroupName model cluster while creation [\#279](https://github.com/fog/fog-aws/pull/279) ([chanakyacool](https://github.com/chanakyacool))
14
764
 
15
765
  ## [v0.10.0](https://github.com/fog/fog-aws/tree/v0.10.0) (2016-07-15)
766
+
16
767
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.4...v0.10.0)
17
768
 
18
769
  **Closed issues:**
19
770
 
20
771
  - How to setup private files with CloudFront? [\#275](https://github.com/fog/fog-aws/issues/275)
21
772
  - Feature: Custom Managed Policies [\#272](https://github.com/fog/fog-aws/issues/272)
22
- - Question: which aws-sdk version is used [\#270](https://github.com/fog/fog-aws/issues/270)
23
773
  - Support an IAM list\_attached\_role\_policies method [\#191](https://github.com/fog/fog-aws/issues/191)
24
774
 
25
775
  **Merged pull requests:**
@@ -30,6 +780,7 @@
30
780
  - add default region to use\_iam\_profile [\#268](https://github.com/fog/fog-aws/pull/268) ([shaiguitar](https://github.com/shaiguitar))
31
781
 
32
782
  ## [v0.9.4](https://github.com/fog/fog-aws/tree/v0.9.4) (2016-06-28)
783
+
33
784
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.3...v0.9.4)
34
785
 
35
786
  **Closed issues:**
@@ -44,6 +795,7 @@
44
795
  - AWS DNS - support newer DNS hosted zone IDs for dualstack ELBs [\#263](https://github.com/fog/fog-aws/pull/263) ([mattheworiordan](https://github.com/mattheworiordan))
45
796
 
46
797
  ## [v0.9.3](https://github.com/fog/fog-aws/tree/v0.9.3) (2016-06-20)
798
+
47
799
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.2...v0.9.3)
48
800
 
49
801
  **Closed issues:**
@@ -51,14 +803,14 @@
51
803
  - Users list is empty in Fog::AWS::IAM::Groups [\#256](https://github.com/fog/fog-aws/issues/256)
52
804
  - I'd like to configure my Excon read\_timeout and write\_timeout [\#254](https://github.com/fog/fog-aws/issues/254)
53
805
  - Bump fog-core to \>=1.38.0 [\#247](https://github.com/fog/fog-aws/issues/247)
54
- - no implicit conversion of Array into String in `aws/storage.rb` from `bucket\_name` in params. [\#246](https://github.com/fog/fog-aws/issues/246)
806
+ - no implicit conversion of Array into String in `aws/storage.rb` from `bucket_name` in params. [\#246](https://github.com/fog/fog-aws/issues/246)
55
807
  - \[S3\] Bucket name gets duplicated in case of redirect from AWS [\#242](https://github.com/fog/fog-aws/issues/242)
56
808
  - CloudFormation stack tags cause describe\_stacks to break [\#240](https://github.com/fog/fog-aws/issues/240)
57
809
 
58
810
  **Merged pull requests:**
59
811
 
60
812
  - Parse EbsOptimized parameter in launch configuration description [\#259](https://github.com/fog/fog-aws/pull/259) ([djudd](https://github.com/djudd))
61
- - Allow case-insensitive record comparison [\#258](https://github.com/fog/fog-aws/pull/258) ([mpick92](https://github.com/mpick92))
813
+ - Allow case-insensitive record comparison [\#258](https://github.com/fog/fog-aws/pull/258) ([matthewpick](https://github.com/matthewpick))
62
814
  - Fix for empty ETag values [\#257](https://github.com/fog/fog-aws/pull/257) ([baryshev](https://github.com/baryshev))
63
815
  - do not make requests if mocked. [\#252](https://github.com/fog/fog-aws/pull/252) ([shaiguitar](https://github.com/shaiguitar))
64
816
  - Parse CloudWatch alarm actions as arrays instead of strings [\#245](https://github.com/fog/fog-aws/pull/245) ([eherot](https://github.com/eherot))
@@ -66,6 +818,7 @@
66
818
  - Add log warning message about when not on us-region [\#200](https://github.com/fog/fog-aws/pull/200) ([kitofr](https://github.com/kitofr))
67
819
 
68
820
  ## [v0.9.2](https://github.com/fog/fog-aws/tree/v0.9.2) (2016-03-23)
821
+
69
822
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.1...v0.9.2)
70
823
 
71
824
  **Closed issues:**
@@ -77,9 +830,11 @@
77
830
  - Aurora [\#238](https://github.com/fog/fog-aws/pull/238) ([ehowe](https://github.com/ehowe))
78
831
 
79
832
  ## [v0.9.1](https://github.com/fog/fog-aws/tree/v0.9.1) (2016-03-04)
833
+
80
834
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.8.2...v0.9.1)
81
835
 
82
836
  ## [v0.8.2](https://github.com/fog/fog-aws/tree/v0.8.2) (2016-03-04)
837
+
83
838
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.9.0...v0.8.2)
84
839
 
85
840
  **Merged pull requests:**
@@ -87,6 +842,7 @@
87
842
  - autoscaler attach/detatch [\#229](https://github.com/fog/fog-aws/pull/229) ([shaiguitar](https://github.com/shaiguitar))
88
843
 
89
844
  ## [v0.9.0](https://github.com/fog/fog-aws/tree/v0.9.0) (2016-03-03)
845
+
90
846
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.8.1...v0.9.0)
91
847
 
92
848
  **Closed issues:**
@@ -107,6 +863,7 @@
107
863
  - restore db instance fom db snapshot [\#217](https://github.com/fog/fog-aws/pull/217) ([ehowe](https://github.com/ehowe))
108
864
 
109
865
  ## [v0.8.1](https://github.com/fog/fog-aws/tree/v0.8.1) (2016-01-08)
866
+
110
867
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.8.0...v0.8.1)
111
868
 
112
869
  **Merged pull requests:**
@@ -114,6 +871,7 @@
114
871
  - Add new aws regions [\#213](https://github.com/fog/fog-aws/pull/213) ([atmos](https://github.com/atmos))
115
872
 
116
873
  ## [v0.8.0](https://github.com/fog/fog-aws/tree/v0.8.0) (2016-01-04)
874
+
117
875
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.6...v0.8.0)
118
876
 
119
877
  **Fixed bugs:**
@@ -146,14 +904,15 @@
146
904
  - make net/ssh require optional [\#197](https://github.com/fog/fog-aws/pull/197) ([geemus](https://github.com/geemus))
147
905
  - Cache cluster security group parser [\#190](https://github.com/fog/fog-aws/pull/190) ([eherot](https://github.com/eherot))
148
906
  - Allow region to be set for STS [\#189](https://github.com/fog/fog-aws/pull/189) ([fcheung](https://github.com/fcheung))
149
- - add cn support for s3 [\#187](https://github.com/fog/fog-aws/pull/187) ([ming-relax](https://github.com/ming-relax))
907
+ - add cn support for s3 [\#187](https://github.com/fog/fog-aws/pull/187) ([ming535](https://github.com/ming535))
150
908
  - mock instance stop and start properly [\#184](https://github.com/fog/fog-aws/pull/184) ([ehowe](https://github.com/ehowe))
151
- - Disable idempotent option when block is passed to get\_object [\#183](https://github.com/fog/fog-aws/pull/183) ([wangteji](https://github.com/wangteji))
909
+ - Disable idempotent option when block is passed to get\_object [\#183](https://github.com/fog/fog-aws/pull/183) ([ghost](https://github.com/ghost))
152
910
  - Yield arguments to Mock\#get\_object block more similar to Excon [\#182](https://github.com/fog/fog-aws/pull/182) ([tdg5](https://github.com/tdg5))
153
911
  - add IAM role paging [\#178](https://github.com/fog/fog-aws/pull/178) ([lanej](https://github.com/lanej))
154
912
  - properly mock rds name update [\#170](https://github.com/fog/fog-aws/pull/170) ([ehowe](https://github.com/ehowe))
155
913
 
156
914
  ## [v0.7.6](https://github.com/fog/fog-aws/tree/v0.7.6) (2015-08-26)
915
+
157
916
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.5...v0.7.6)
158
917
 
159
918
  **Closed issues:**
@@ -166,6 +925,7 @@
166
925
  - Mocked put\_bucket no longer clobbers existing bucket [\#174](https://github.com/fog/fog-aws/pull/174) ([jgr](https://github.com/jgr))
167
926
 
168
927
  ## [v0.7.5](https://github.com/fog/fog-aws/tree/v0.7.5) (2015-08-24)
928
+
169
929
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.4...v0.7.5)
170
930
 
171
931
  **Closed issues:**
@@ -187,6 +947,7 @@
187
947
  - update \#promote\_read\_replica mock [\#158](https://github.com/fog/fog-aws/pull/158) ([lanej](https://github.com/lanej))
188
948
 
189
949
  ## [v0.7.4](https://github.com/fog/fog-aws/tree/v0.7.4) (2015-07-30)
950
+
190
951
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.3...v0.7.4)
191
952
 
192
953
  **Fixed bugs:**
@@ -198,6 +959,7 @@
198
959
  - AutoScaling attach/detach ELB support + tests [\#156](https://github.com/fog/fog-aws/pull/156) ([nbfowler](https://github.com/nbfowler))
199
960
 
200
961
  ## [v0.7.3](https://github.com/fog/fog-aws/tree/v0.7.3) (2015-07-10)
962
+
201
963
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.2...v0.7.3)
202
964
 
203
965
  **Closed issues:**
@@ -209,6 +971,7 @@
209
971
  - encrypted storage on rds [\#153](https://github.com/fog/fog-aws/pull/153) ([ehowe](https://github.com/ehowe))
210
972
 
211
973
  ## [v0.7.2](https://github.com/fog/fog-aws/tree/v0.7.2) (2015-07-08)
974
+
212
975
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.1...v0.7.2)
213
976
 
214
977
  **Fixed bugs:**
@@ -220,6 +983,7 @@
220
983
  - fix \#change\_resource\_record\_sets [\#151](https://github.com/fog/fog-aws/pull/151) ([lanej](https://github.com/lanej))
221
984
 
222
985
  ## [v0.7.1](https://github.com/fog/fog-aws/tree/v0.7.1) (2015-07-08)
986
+
223
987
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.7.0...v0.7.1)
224
988
 
225
989
  **Merged pull requests:**
@@ -228,6 +992,7 @@
228
992
  - Fix blank content-encoding headers [\#147](https://github.com/fog/fog-aws/pull/147) ([fcheung](https://github.com/fcheung))
229
993
 
230
994
  ## [v0.7.0](https://github.com/fog/fog-aws/tree/v0.7.0) (2015-07-07)
995
+
231
996
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.6.0...v0.7.0)
232
997
 
233
998
  **Closed issues:**
@@ -244,6 +1009,7 @@
244
1009
  - list\_hosted\_zones expects that options to be hash with symbol as key [\#139](https://github.com/fog/fog-aws/pull/139) ([slashmili](https://github.com/slashmili))
245
1010
 
246
1011
  ## [v0.6.0](https://github.com/fog/fog-aws/tree/v0.6.0) (2015-06-23)
1012
+
247
1013
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.5.0...v0.6.0)
248
1014
 
249
1015
  **Merged pull requests:**
@@ -251,6 +1017,7 @@
251
1017
  - Add support for AWS Lambda service [\#123](https://github.com/fog/fog-aws/pull/123) ([nomadium](https://github.com/nomadium))
252
1018
 
253
1019
  ## [v0.5.0](https://github.com/fog/fog-aws/tree/v0.5.0) (2015-06-17)
1020
+
254
1021
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.4.1...v0.5.0)
255
1022
 
256
1023
  **Merged pull requests:**
@@ -260,6 +1027,7 @@
260
1027
  - Add support for EC2 Container Service [\#120](https://github.com/fog/fog-aws/pull/120) ([nomadium](https://github.com/nomadium))
261
1028
 
262
1029
  ## [v0.4.1](https://github.com/fog/fog-aws/tree/v0.4.1) (2015-06-15)
1030
+
263
1031
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.4.0...v0.4.1)
264
1032
 
265
1033
  **Closed issues:**
@@ -279,6 +1047,7 @@
279
1047
  - model managed policies [\#126](https://github.com/fog/fog-aws/pull/126) ([lanej](https://github.com/lanej))
280
1048
 
281
1049
  ## [v0.4.0](https://github.com/fog/fog-aws/tree/v0.4.0) (2015-05-27)
1050
+
282
1051
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.3.0...v0.4.0)
283
1052
 
284
1053
  **Merged pull requests:**
@@ -286,6 +1055,7 @@
286
1055
  - model iam groups [\#121](https://github.com/fog/fog-aws/pull/121) ([lanej](https://github.com/lanej))
287
1056
 
288
1057
  ## [v0.3.0](https://github.com/fog/fog-aws/tree/v0.3.0) (2015-05-21)
1058
+
289
1059
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.2.2...v0.3.0)
290
1060
 
291
1061
  **Closed issues:**
@@ -298,9 +1068,11 @@
298
1068
  - Added a new request - describe\_instance\_attribute [\#110](https://github.com/fog/fog-aws/pull/110) ([nilroy](https://github.com/nilroy))
299
1069
 
300
1070
  ## [v0.2.2](https://github.com/fog/fog-aws/tree/v0.2.2) (2015-05-13)
1071
+
301
1072
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.2.1...v0.2.2)
302
1073
 
303
1074
  ## [v0.2.1](https://github.com/fog/fog-aws/tree/v0.2.1) (2015-05-13)
1075
+
304
1076
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.2.0...v0.2.1)
305
1077
 
306
1078
  **Merged pull requests:**
@@ -308,6 +1080,7 @@
308
1080
  - mocks for topic permissions [\#111](https://github.com/fog/fog-aws/pull/111) ([lanej](https://github.com/lanej))
309
1081
 
310
1082
  ## [v0.2.0](https://github.com/fog/fog-aws/tree/v0.2.0) (2015-05-13)
1083
+
311
1084
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.1.2...v0.2.0)
312
1085
 
313
1086
  **Implemented enhancements:**
@@ -334,13 +1107,14 @@
334
1107
  - Fix mock VPC ELB creation in regions other than us-east-1 [\#94](https://github.com/fog/fog-aws/pull/94) ([mrpoundsign](https://github.com/mrpoundsign))
335
1108
  - Fix repository URL in README.md [\#91](https://github.com/fog/fog-aws/pull/91) ([tricknotes](https://github.com/tricknotes))
336
1109
  - adding support for d2 instance type [\#90](https://github.com/fog/fog-aws/pull/90) ([yumminhuang](https://github.com/yumminhuang))
337
- - Support weight round robin mock [\#89](https://github.com/fog/fog-aws/pull/89) ([freddy1666](https://github.com/freddy1666))
1110
+ - Support weight round robin mock [\#89](https://github.com/fog/fog-aws/pull/89) ([freddy61025](https://github.com/freddy61025))
338
1111
  - Update README.md [\#87](https://github.com/fog/fog-aws/pull/87) ([nomadium](https://github.com/nomadium))
339
1112
  - Add mock for EC2 request\_spot\_instances API request [\#86](https://github.com/fog/fog-aws/pull/86) ([nomadium](https://github.com/nomadium))
340
1113
  - Move more requires to autoload [\#85](https://github.com/fog/fog-aws/pull/85) ([plribeiro3000](https://github.com/plribeiro3000))
341
1114
  - Add mock for EC2 describe\_spot\_price\_history API request [\#84](https://github.com/fog/fog-aws/pull/84) ([nomadium](https://github.com/nomadium))
342
1115
 
343
1116
  ## [v0.1.2](https://github.com/fog/fog-aws/tree/v0.1.2) (2015-04-07)
1117
+
344
1118
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.1.1...v0.1.2)
345
1119
 
346
1120
  **Closed issues:**
@@ -370,6 +1144,7 @@
370
1144
  - Add support for cname buckets [\#61](https://github.com/fog/fog-aws/pull/61) ([dsgh](https://github.com/dsgh))
371
1145
 
372
1146
  ## [v0.1.1](https://github.com/fog/fog-aws/tree/v0.1.1) (2015-02-25)
1147
+
373
1148
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.1.0...v0.1.1)
374
1149
 
375
1150
  **Closed issues:**
@@ -391,6 +1166,7 @@
391
1166
  - don't allow sg authorization to unknown sgs [\#49](https://github.com/fog/fog-aws/pull/49) ([lanej](https://github.com/lanej))
392
1167
 
393
1168
  ## [v0.1.0](https://github.com/fog/fog-aws/tree/v0.1.0) (2015-02-03)
1169
+
394
1170
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.8...v0.1.0)
395
1171
 
396
1172
  **Closed issues:**
@@ -402,30 +1178,29 @@
402
1178
  - Fix v4 signature when path has repeated slashes in the middle [\#46](https://github.com/fog/fog-aws/pull/46) ([fcheung](https://github.com/fcheung))
403
1179
  - get signin token for federation [\#45](https://github.com/fog/fog-aws/pull/45) ([ehowe](https://github.com/ehowe))
404
1180
  - add 'volumeType' and 'encrypted' to blockDeviceMapping parser [\#43](https://github.com/fog/fog-aws/pull/43) ([ichii386](https://github.com/ichii386))
405
- - default namespace and evaluation period on alarm [\#37](https://github.com/fog/fog-aws/pull/37) ([michelleN](https://github.com/michelleN))
406
-
407
- ## [v0.0.8](https://github.com/fog/fog-aws/tree/v0.0.8) (2015-01-27)
408
- [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.7...v0.0.8)
409
-
410
- **Closed issues:**
411
-
412
- - NoMethodError - undefined method `signature\_parameters' for nil:NilClass [\#28](https://github.com/fog/fog-aws/issues/28)
413
-
414
- **Merged pull requests:**
415
-
416
1181
  - add missing mocks [\#41](https://github.com/fog/fog-aws/pull/41) ([michelleN](https://github.com/michelleN))
417
1182
  - Add idempotent excon option to some route53 API calls [\#40](https://github.com/fog/fog-aws/pull/40) ([josacar](https://github.com/josacar))
418
1183
  - Allow for AWS errors not specifying region [\#39](https://github.com/fog/fog-aws/pull/39) ([greysteil](https://github.com/greysteil))
419
1184
  - correct engine version param on rds replicas [\#38](https://github.com/fog/fog-aws/pull/38) ([lanej](https://github.com/lanej))
1185
+ - default namespace and evaluation period on alarm [\#37](https://github.com/fog/fog-aws/pull/37) ([michelleN](https://github.com/michelleN))
420
1186
  - \[AWS|Autoscaling\] Add missing ebs attributes to describe\_launch\_configurations [\#35](https://github.com/fog/fog-aws/pull/35) ([fcheung](https://github.com/fcheung))
421
1187
  - \[AWS|Storage\] signed\_url should use v2 signature when aws\_signature\_version is 2 [\#34](https://github.com/fog/fog-aws/pull/34) ([fcheung](https://github.com/fcheung))
422
1188
  - BUGFIX: When fog\_credentials endpoint is set @region defaults to nil [\#33](https://github.com/fog/fog-aws/pull/33) ([nicholasklick](https://github.com/nicholasklick))
423
1189
  - \[AWS|Autoscaling\] Support classic link related properties for launch configurations [\#32](https://github.com/fog/fog-aws/pull/32) ([fcheung](https://github.com/fcheung))
424
1190
  - fix autoscaling activities collection setup [\#31](https://github.com/fog/fog-aws/pull/31) ([fcheung](https://github.com/fcheung))
425
1191
  - Add PlacementTenancy to launch configuration parser and test case [\#29](https://github.com/fog/fog-aws/pull/29) ([benpillet](https://github.com/benpillet))
426
- - Use Fog::Formatador [\#27](https://github.com/fog/fog-aws/pull/27) ([starbelly](https://github.com/starbelly))
1192
+ - Use Fog::Formatador [\#27](https://github.com/fog/fog-aws/pull/27) ([ghost](https://github.com/ghost))
1193
+
1194
+ ## [v0.0.8](https://github.com/fog/fog-aws/tree/v0.0.8) (2015-01-27)
1195
+
1196
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.7...v0.0.8)
1197
+
1198
+ **Closed issues:**
1199
+
1200
+ - NoMethodError - undefined method `signature\_parameters' for nil:NilClass [\#28](https://github.com/fog/fog-aws/issues/28)
427
1201
 
428
1202
  ## [v0.0.7](https://github.com/fog/fog-aws/tree/v0.0.7) (2015-01-23)
1203
+
429
1204
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.6...v0.0.7)
430
1205
 
431
1206
  **Closed issues:**
@@ -438,6 +1213,7 @@
438
1213
  - Support for VPC Classic Link [\#3](https://github.com/fog/fog-aws/pull/3) ([fcheung](https://github.com/fcheung))
439
1214
 
440
1215
  ## [v0.0.6](https://github.com/fog/fog-aws/tree/v0.0.6) (2015-01-12)
1216
+
441
1217
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.5...v0.0.6)
442
1218
 
443
1219
  **Closed issues:**
@@ -450,18 +1226,33 @@
450
1226
  - another attempt at s3 region redirecting [\#2](https://github.com/fog/fog-aws/pull/2) ([geemus](https://github.com/geemus))
451
1227
 
452
1228
  ## [v0.0.5](https://github.com/fog/fog-aws/tree/v0.0.5) (2015-01-06)
1229
+
453
1230
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.4...v0.0.5)
454
1231
 
455
1232
  ## [v0.0.4](https://github.com/fog/fog-aws/tree/v0.0.4) (2015-01-04)
1233
+
456
1234
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.3...v0.0.4)
457
1235
 
458
1236
  ## [v0.0.3](https://github.com/fog/fog-aws/tree/v0.0.3) (2015-01-02)
1237
+
459
1238
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.2...v0.0.3)
460
1239
 
461
1240
  ## [v0.0.2](https://github.com/fog/fog-aws/tree/v0.0.2) (2015-01-02)
1241
+
462
1242
  [Full Changelog](https://github.com/fog/fog-aws/compare/v0.0.1...v0.0.2)
463
1243
 
464
1244
  ## [v0.0.1](https://github.com/fog/fog-aws/tree/v0.0.1) (2015-01-02)
465
1245
 
1246
+ [Full Changelog](https://github.com/fog/fog-aws/compare/rm...v0.0.1)
1247
+
1248
+ ## [rm](https://github.com/fog/fog-aws/tree/rm) (2014-11-27)
1249
+
1250
+ [Full Changelog](https://github.com/fog/fog-aws/compare/fog-brightbox_v0.0.1...rm)
1251
+
1252
+ ## [fog-brightbox_v0.0.1](https://github.com/fog/fog-aws/tree/fog-brightbox_v0.0.1) (2014-02-19)
1253
+
1254
+ [Full Changelog](https://github.com/fog/fog-aws/compare/d496bcd266d584ffcded6e265e8166138a3fb22a...fog-brightbox_v0.0.1)
1255
+
1256
+
466
1257
 
467
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
1258
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*