fog-aws 3.1.0 → 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (387) hide show
  1. checksums.yaml +4 -4
  2. data/lib/fog/aws.rb +5 -14
  3. data/lib/fog/aws/compute.rb +19 -6
  4. data/lib/fog/aws/credential_fetcher.rb +1 -1
  5. data/lib/fog/aws/dns.rb +18 -5
  6. data/lib/fog/aws/efs.rb +1 -1
  7. data/lib/fog/aws/models/compute/address.rb +2 -2
  8. data/lib/fog/aws/models/compute/addresses.rb +3 -3
  9. data/lib/fog/aws/models/compute/dhcp_option.rb +2 -2
  10. data/lib/fog/aws/models/compute/dhcp_options.rb +7 -7
  11. data/lib/fog/aws/models/compute/flavor.rb +2 -2
  12. data/lib/fog/aws/models/compute/flavors.rb +6 -6
  13. data/lib/fog/aws/models/compute/image.rb +2 -2
  14. data/lib/fog/aws/models/compute/images.rb +3 -3
  15. data/lib/fog/aws/models/compute/internet_gateway.rb +2 -2
  16. data/lib/fog/aws/models/compute/internet_gateways.rb +7 -7
  17. data/lib/fog/aws/models/compute/key_pair.rb +2 -2
  18. data/lib/fog/aws/models/compute/key_pairs.rb +3 -3
  19. data/lib/fog/aws/models/compute/network_acl.rb +4 -4
  20. data/lib/fog/aws/models/compute/network_acls.rb +6 -6
  21. data/lib/fog/aws/models/compute/network_interface.rb +2 -2
  22. data/lib/fog/aws/models/compute/network_interfaces.rb +4 -4
  23. data/lib/fog/aws/models/compute/route_table.rb +2 -2
  24. data/lib/fog/aws/models/compute/route_tables.rb +7 -7
  25. data/lib/fog/aws/models/compute/security_group.rb +2 -2
  26. data/lib/fog/aws/models/compute/security_groups.rb +3 -3
  27. data/lib/fog/aws/models/compute/server.rb +2 -2
  28. data/lib/fog/aws/models/compute/servers.rb +5 -5
  29. data/lib/fog/aws/models/compute/snapshot.rb +2 -2
  30. data/lib/fog/aws/models/compute/snapshots.rb +3 -3
  31. data/lib/fog/aws/models/compute/spot_request.rb +2 -2
  32. data/lib/fog/aws/models/compute/spot_requests.rb +3 -3
  33. data/lib/fog/aws/models/compute/subnet.rb +2 -2
  34. data/lib/fog/aws/models/compute/subnets.rb +3 -3
  35. data/lib/fog/aws/models/compute/tag.rb +2 -2
  36. data/lib/fog/aws/models/compute/tags.rb +3 -3
  37. data/lib/fog/aws/models/compute/volume.rb +3 -3
  38. data/lib/fog/aws/models/compute/volumes.rb +3 -3
  39. data/lib/fog/aws/models/compute/vpc.rb +2 -2
  40. data/lib/fog/aws/models/compute/vpcs.rb +3 -3
  41. data/lib/fog/aws/models/dns/record.rb +2 -2
  42. data/lib/fog/aws/models/dns/records.rb +4 -4
  43. data/lib/fog/aws/models/dns/zone.rb +3 -3
  44. data/lib/fog/aws/models/dns/zones.rb +4 -4
  45. data/lib/fog/aws/models/storage/directories.rb +3 -3
  46. data/lib/fog/aws/models/storage/directory.rb +5 -5
  47. data/lib/fog/aws/models/storage/file.rb +4 -4
  48. data/lib/fog/aws/models/storage/files.rb +4 -4
  49. data/lib/fog/aws/models/storage/version.rb +2 -2
  50. data/lib/fog/aws/models/storage/versions.rb +3 -3
  51. data/lib/fog/aws/parsers/compute/allocate_address.rb +2 -2
  52. data/lib/fog/aws/parsers/compute/assign_private_ip_addresses.rb +2 -2
  53. data/lib/fog/aws/parsers/compute/associate_address.rb +2 -2
  54. data/lib/fog/aws/parsers/compute/associate_route_table.rb +2 -2
  55. data/lib/fog/aws/parsers/compute/attach_network_interface.rb +2 -2
  56. data/lib/fog/aws/parsers/compute/attach_volume.rb +2 -2
  57. data/lib/fog/aws/parsers/compute/basic.rb +2 -2
  58. data/lib/fog/aws/parsers/compute/cancel_spot_instance_requests.rb +2 -2
  59. data/lib/fog/aws/parsers/compute/copy_image.rb +2 -2
  60. data/lib/fog/aws/parsers/compute/copy_snapshot.rb +2 -2
  61. data/lib/fog/aws/parsers/compute/create_dhcp_options.rb +2 -2
  62. data/lib/fog/aws/parsers/compute/create_image.rb +2 -2
  63. data/lib/fog/aws/parsers/compute/create_internet_gateway.rb +2 -2
  64. data/lib/fog/aws/parsers/compute/create_key_pair.rb +2 -2
  65. data/lib/fog/aws/parsers/compute/create_network_acl.rb +2 -2
  66. data/lib/fog/aws/parsers/compute/create_network_interface.rb +2 -2
  67. data/lib/fog/aws/parsers/compute/create_route_table.rb +2 -2
  68. data/lib/fog/aws/parsers/compute/create_security_group.rb +2 -2
  69. data/lib/fog/aws/parsers/compute/create_snapshot.rb +2 -2
  70. data/lib/fog/aws/parsers/compute/create_subnet.rb +2 -2
  71. data/lib/fog/aws/parsers/compute/create_volume.rb +2 -2
  72. data/lib/fog/aws/parsers/compute/create_vpc.rb +2 -2
  73. data/lib/fog/aws/parsers/compute/deregister_image.rb +2 -2
  74. data/lib/fog/aws/parsers/compute/describe_account_attributes.rb +2 -2
  75. data/lib/fog/aws/parsers/compute/describe_addresses.rb +2 -2
  76. data/lib/fog/aws/parsers/compute/describe_availability_zones.rb +2 -2
  77. data/lib/fog/aws/parsers/compute/describe_classic_link_instances.rb +2 -2
  78. data/lib/fog/aws/parsers/compute/describe_dhcp_options.rb +2 -2
  79. data/lib/fog/aws/parsers/compute/describe_images.rb +2 -2
  80. data/lib/fog/aws/parsers/compute/describe_instance_attribute.rb +2 -2
  81. data/lib/fog/aws/parsers/compute/describe_instance_status.rb +2 -2
  82. data/lib/fog/aws/parsers/compute/describe_instances.rb +2 -2
  83. data/lib/fog/aws/parsers/compute/describe_internet_gateways.rb +2 -2
  84. data/lib/fog/aws/parsers/compute/describe_key_pairs.rb +2 -2
  85. data/lib/fog/aws/parsers/compute/describe_network_acls.rb +2 -2
  86. data/lib/fog/aws/parsers/compute/describe_network_interface_attribute.rb +2 -2
  87. data/lib/fog/aws/parsers/compute/describe_network_interfaces.rb +2 -2
  88. data/lib/fog/aws/parsers/compute/describe_placement_groups.rb +2 -2
  89. data/lib/fog/aws/parsers/compute/describe_regions.rb +2 -2
  90. data/lib/fog/aws/parsers/compute/describe_reserved_instances.rb +2 -2
  91. data/lib/fog/aws/parsers/compute/describe_reserved_instances_offerings.rb +2 -2
  92. data/lib/fog/aws/parsers/compute/describe_route_tables.rb +2 -2
  93. data/lib/fog/aws/parsers/compute/describe_security_groups.rb +2 -2
  94. data/lib/fog/aws/parsers/compute/describe_snapshots.rb +2 -2
  95. data/lib/fog/aws/parsers/compute/describe_spot_price_history.rb +2 -2
  96. data/lib/fog/aws/parsers/compute/describe_subnets.rb +2 -2
  97. data/lib/fog/aws/parsers/compute/describe_tags.rb +2 -2
  98. data/lib/fog/aws/parsers/compute/describe_volume_status.rb +2 -2
  99. data/lib/fog/aws/parsers/compute/describe_volumes.rb +2 -2
  100. data/lib/fog/aws/parsers/compute/describe_volumes_modifications.rb +2 -2
  101. data/lib/fog/aws/parsers/compute/describe_vpc_attribute.rb +2 -2
  102. data/lib/fog/aws/parsers/compute/describe_vpc_classic_link.rb +2 -2
  103. data/lib/fog/aws/parsers/compute/describe_vpc_classic_link_dns_support.rb +2 -2
  104. data/lib/fog/aws/parsers/compute/describe_vpcs.rb +2 -2
  105. data/lib/fog/aws/parsers/compute/detach_volume.rb +2 -2
  106. data/lib/fog/aws/parsers/compute/get_console_output.rb +2 -2
  107. data/lib/fog/aws/parsers/compute/get_password_data.rb +2 -2
  108. data/lib/fog/aws/parsers/compute/import_key_pair.rb +2 -2
  109. data/lib/fog/aws/parsers/compute/modify_subnet_attribute.rb +2 -2
  110. data/lib/fog/aws/parsers/compute/modify_volume.rb +2 -2
  111. data/lib/fog/aws/parsers/compute/monitor_unmonitor_instances.rb +2 -2
  112. data/lib/fog/aws/parsers/compute/move_address_to_vpc.rb +2 -2
  113. data/lib/fog/aws/parsers/compute/network_acl_parser.rb +2 -2
  114. data/lib/fog/aws/parsers/compute/network_interface_parser.rb +2 -2
  115. data/lib/fog/aws/parsers/compute/purchase_reserved_instances_offering.rb +2 -2
  116. data/lib/fog/aws/parsers/compute/register_image.rb +2 -2
  117. data/lib/fog/aws/parsers/compute/replace_network_acl_association.rb +2 -2
  118. data/lib/fog/aws/parsers/compute/restore_address_to_classic.rb +2 -2
  119. data/lib/fog/aws/parsers/compute/run_instances.rb +2 -2
  120. data/lib/fog/aws/parsers/compute/spot_datafeed_subscription.rb +2 -2
  121. data/lib/fog/aws/parsers/compute/spot_instance_requests.rb +2 -2
  122. data/lib/fog/aws/parsers/compute/start_stop_instances.rb +2 -2
  123. data/lib/fog/aws/parsers/compute/terminate_instances.rb +2 -2
  124. data/lib/fog/aws/parsers/dns/change_resource_record_sets.rb +2 -2
  125. data/lib/fog/aws/parsers/dns/create_hosted_zone.rb +2 -2
  126. data/lib/fog/aws/parsers/dns/delete_hosted_zone.rb +2 -2
  127. data/lib/fog/aws/parsers/dns/get_change.rb +2 -2
  128. data/lib/fog/aws/parsers/dns/get_hosted_zone.rb +2 -2
  129. data/lib/fog/aws/parsers/dns/health_check.rb +2 -2
  130. data/lib/fog/aws/parsers/dns/list_health_checks.rb +2 -2
  131. data/lib/fog/aws/parsers/dns/list_hosted_zones.rb +2 -2
  132. data/lib/fog/aws/parsers/dns/list_resource_record_sets.rb +2 -2
  133. data/lib/fog/aws/parsers/storage/access_control_list.rb +2 -2
  134. data/lib/fog/aws/parsers/storage/complete_multipart_upload.rb +2 -2
  135. data/lib/fog/aws/parsers/storage/copy_object.rb +2 -2
  136. data/lib/fog/aws/parsers/storage/cors_configuration.rb +2 -2
  137. data/lib/fog/aws/parsers/storage/delete_multiple_objects.rb +2 -2
  138. data/lib/fog/aws/parsers/storage/get_bucket.rb +2 -2
  139. data/lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb +2 -2
  140. data/lib/fog/aws/parsers/storage/get_bucket_location.rb +2 -2
  141. data/lib/fog/aws/parsers/storage/get_bucket_logging.rb +2 -2
  142. data/lib/fog/aws/parsers/storage/get_bucket_notification.rb +2 -2
  143. data/lib/fog/aws/parsers/storage/get_bucket_object_versions.rb +2 -2
  144. data/lib/fog/aws/parsers/storage/get_bucket_tagging.rb +2 -2
  145. data/lib/fog/aws/parsers/storage/get_bucket_versioning.rb +2 -2
  146. data/lib/fog/aws/parsers/storage/get_bucket_website.rb +2 -2
  147. data/lib/fog/aws/parsers/storage/get_request_payment.rb +2 -2
  148. data/lib/fog/aws/parsers/storage/get_service.rb +2 -2
  149. data/lib/fog/aws/parsers/storage/initiate_multipart_upload.rb +2 -2
  150. data/lib/fog/aws/parsers/storage/list_multipart_uploads.rb +2 -2
  151. data/lib/fog/aws/parsers/storage/list_parts.rb +2 -2
  152. data/lib/fog/aws/requests/cloud_watch/put_metric_alarm.rb +2 -2
  153. data/lib/fog/aws/requests/compute/allocate_address.rb +4 -4
  154. data/lib/fog/aws/requests/compute/assign_private_ip_addresses.rb +5 -5
  155. data/lib/fog/aws/requests/compute/associate_address.rb +7 -7
  156. data/lib/fog/aws/requests/compute/associate_dhcp_options.rb +4 -4
  157. data/lib/fog/aws/requests/compute/associate_route_table.rb +5 -5
  158. data/lib/fog/aws/requests/compute/attach_classic_link_vpc.rb +7 -7
  159. data/lib/fog/aws/requests/compute/attach_internet_gateway.rb +4 -4
  160. data/lib/fog/aws/requests/compute/attach_network_interface.rb +6 -6
  161. data/lib/fog/aws/requests/compute/attach_volume.rb +7 -7
  162. data/lib/fog/aws/requests/compute/authorize_security_group_egress.rb +6 -6
  163. data/lib/fog/aws/requests/compute/authorize_security_group_ingress.rb +11 -11
  164. data/lib/fog/aws/requests/compute/cancel_spot_instance_requests.rb +4 -4
  165. data/lib/fog/aws/requests/compute/copy_image.rb +3 -3
  166. data/lib/fog/aws/requests/compute/copy_snapshot.rb +3 -3
  167. data/lib/fog/aws/requests/compute/create_dhcp_options.rb +3 -3
  168. data/lib/fog/aws/requests/compute/create_image.rb +3 -3
  169. data/lib/fog/aws/requests/compute/create_internet_gateway.rb +3 -3
  170. data/lib/fog/aws/requests/compute/create_key_pair.rb +4 -4
  171. data/lib/fog/aws/requests/compute/create_network_acl.rb +4 -4
  172. data/lib/fog/aws/requests/compute/create_network_acl_entry.rb +5 -5
  173. data/lib/fog/aws/requests/compute/create_network_interface.rb +6 -6
  174. data/lib/fog/aws/requests/compute/create_placement_group.rb +3 -3
  175. data/lib/fog/aws/requests/compute/create_route.rb +10 -10
  176. data/lib/fog/aws/requests/compute/create_route_table.rb +4 -4
  177. data/lib/fog/aws/requests/compute/create_security_group.rb +4 -4
  178. data/lib/fog/aws/requests/compute/create_snapshot.rb +3 -3
  179. data/lib/fog/aws/requests/compute/create_spot_datafeed_subscription.rb +3 -3
  180. data/lib/fog/aws/requests/compute/create_subnet.rb +6 -6
  181. data/lib/fog/aws/requests/compute/create_tags.rb +3 -3
  182. data/lib/fog/aws/requests/compute/create_volume.rb +11 -11
  183. data/lib/fog/aws/requests/compute/create_vpc.rb +5 -5
  184. data/lib/fog/aws/requests/compute/delete_dhcp_options.rb +4 -4
  185. data/lib/fog/aws/requests/compute/delete_internet_gateway.rb +4 -4
  186. data/lib/fog/aws/requests/compute/delete_key_pair.rb +3 -3
  187. data/lib/fog/aws/requests/compute/delete_network_acl.rb +5 -5
  188. data/lib/fog/aws/requests/compute/delete_network_acl_entry.rb +5 -5
  189. data/lib/fog/aws/requests/compute/delete_network_interface.rb +5 -5
  190. data/lib/fog/aws/requests/compute/delete_placement_group.rb +3 -3
  191. data/lib/fog/aws/requests/compute/delete_route.rb +6 -6
  192. data/lib/fog/aws/requests/compute/delete_route_table.rb +5 -5
  193. data/lib/fog/aws/requests/compute/delete_security_group.rb +9 -9
  194. data/lib/fog/aws/requests/compute/delete_snapshot.rb +4 -4
  195. data/lib/fog/aws/requests/compute/delete_spot_datafeed_subscription.rb +3 -3
  196. data/lib/fog/aws/requests/compute/delete_subnet.rb +4 -4
  197. data/lib/fog/aws/requests/compute/delete_tags.rb +3 -3
  198. data/lib/fog/aws/requests/compute/delete_volume.rb +5 -5
  199. data/lib/fog/aws/requests/compute/delete_vpc.rb +4 -4
  200. data/lib/fog/aws/requests/compute/deregister_image.rb +4 -4
  201. data/lib/fog/aws/requests/compute/describe_account_attributes.rb +3 -3
  202. data/lib/fog/aws/requests/compute/describe_addresses.rb +3 -3
  203. data/lib/fog/aws/requests/compute/describe_availability_zones.rb +3 -3
  204. data/lib/fog/aws/requests/compute/describe_classic_link_instances.rb +3 -3
  205. data/lib/fog/aws/requests/compute/describe_dhcp_options.rb +3 -3
  206. data/lib/fog/aws/requests/compute/describe_images.rb +3 -3
  207. data/lib/fog/aws/requests/compute/describe_instance_attribute.rb +4 -4
  208. data/lib/fog/aws/requests/compute/describe_instance_status.rb +3 -3
  209. data/lib/fog/aws/requests/compute/describe_instances.rb +4 -4
  210. data/lib/fog/aws/requests/compute/describe_internet_gateways.rb +3 -3
  211. data/lib/fog/aws/requests/compute/describe_key_pairs.rb +3 -3
  212. data/lib/fog/aws/requests/compute/describe_network_acls.rb +3 -3
  213. data/lib/fog/aws/requests/compute/describe_network_interface_attribute.rb +5 -5
  214. data/lib/fog/aws/requests/compute/describe_network_interfaces.rb +3 -3
  215. data/lib/fog/aws/requests/compute/describe_placement_groups.rb +3 -3
  216. data/lib/fog/aws/requests/compute/describe_regions.rb +3 -3
  217. data/lib/fog/aws/requests/compute/describe_reserved_instances.rb +3 -3
  218. data/lib/fog/aws/requests/compute/describe_reserved_instances_offerings.rb +3 -3
  219. data/lib/fog/aws/requests/compute/describe_route_tables.rb +3 -3
  220. data/lib/fog/aws/requests/compute/describe_security_groups.rb +3 -3
  221. data/lib/fog/aws/requests/compute/describe_snapshots.rb +3 -3
  222. data/lib/fog/aws/requests/compute/describe_spot_datafeed_subscription.rb +3 -3
  223. data/lib/fog/aws/requests/compute/describe_spot_instance_requests.rb +3 -3
  224. data/lib/fog/aws/requests/compute/describe_spot_price_history.rb +5 -5
  225. data/lib/fog/aws/requests/compute/describe_subnets.rb +3 -3
  226. data/lib/fog/aws/requests/compute/describe_tags.rb +3 -3
  227. data/lib/fog/aws/requests/compute/describe_volume_status.rb +3 -3
  228. data/lib/fog/aws/requests/compute/describe_volumes.rb +3 -3
  229. data/lib/fog/aws/requests/compute/describe_volumes_modifications.rb +3 -3
  230. data/lib/fog/aws/requests/compute/describe_vpc_attribute.rb +5 -5
  231. data/lib/fog/aws/requests/compute/describe_vpc_classic_link.rb +4 -4
  232. data/lib/fog/aws/requests/compute/describe_vpc_classic_link_dns_support.rb +3 -3
  233. data/lib/fog/aws/requests/compute/describe_vpcs.rb +3 -3
  234. data/lib/fog/aws/requests/compute/detach_classic_link_vpc.rb +5 -5
  235. data/lib/fog/aws/requests/compute/detach_internet_gateway.rb +4 -4
  236. data/lib/fog/aws/requests/compute/detach_network_interface.rb +4 -4
  237. data/lib/fog/aws/requests/compute/detach_volume.rb +5 -5
  238. data/lib/fog/aws/requests/compute/disable_vpc_classic_link.rb +4 -4
  239. data/lib/fog/aws/requests/compute/disable_vpc_classic_link_dns_support.rb +4 -4
  240. data/lib/fog/aws/requests/compute/disassociate_address.rb +5 -5
  241. data/lib/fog/aws/requests/compute/disassociate_route_table.rb +5 -5
  242. data/lib/fog/aws/requests/compute/enable_vpc_classic_link.rb +4 -4
  243. data/lib/fog/aws/requests/compute/enable_vpc_classic_link_dns_support.rb +4 -4
  244. data/lib/fog/aws/requests/compute/get_console_output.rb +4 -4
  245. data/lib/fog/aws/requests/compute/get_password_data.rb +4 -4
  246. data/lib/fog/aws/requests/compute/import_key_pair.rb +4 -4
  247. data/lib/fog/aws/requests/compute/modify_image_attribute.rb +4 -4
  248. data/lib/fog/aws/requests/compute/modify_instance_attribute.rb +3 -3
  249. data/lib/fog/aws/requests/compute/modify_network_interface_attribute.rb +8 -8
  250. data/lib/fog/aws/requests/compute/modify_snapshot_attribute.rb +3 -3
  251. data/lib/fog/aws/requests/compute/modify_subnet_attribute.rb +3 -3
  252. data/lib/fog/aws/requests/compute/modify_volume.rb +5 -5
  253. data/lib/fog/aws/requests/compute/modify_volume_attribute.rb +4 -4
  254. data/lib/fog/aws/requests/compute/modify_vpc_attribute.rb +7 -7
  255. data/lib/fog/aws/requests/compute/monitor_instances.rb +4 -4
  256. data/lib/fog/aws/requests/compute/move_address_to_vpc.rb +4 -4
  257. data/lib/fog/aws/requests/compute/purchase_reserved_instances_offering.rb +3 -3
  258. data/lib/fog/aws/requests/compute/reboot_instances.rb +4 -4
  259. data/lib/fog/aws/requests/compute/register_image.rb +4 -4
  260. data/lib/fog/aws/requests/compute/release_address.rb +5 -5
  261. data/lib/fog/aws/requests/compute/replace_network_acl_association.rb +5 -5
  262. data/lib/fog/aws/requests/compute/replace_network_acl_entry.rb +5 -5
  263. data/lib/fog/aws/requests/compute/replace_route.rb +10 -10
  264. data/lib/fog/aws/requests/compute/request_spot_instances.rb +7 -7
  265. data/lib/fog/aws/requests/compute/reset_network_interface_attribute.rb +6 -6
  266. data/lib/fog/aws/requests/compute/restore_address_to_classic.rb +5 -5
  267. data/lib/fog/aws/requests/compute/revoke_security_group_egress.rb +4 -4
  268. data/lib/fog/aws/requests/compute/revoke_security_group_ingress.rb +4 -4
  269. data/lib/fog/aws/requests/compute/run_instances.rb +4 -4
  270. data/lib/fog/aws/requests/compute/start_instances.rb +4 -4
  271. data/lib/fog/aws/requests/compute/stop_instances.rb +4 -4
  272. data/lib/fog/aws/requests/compute/terminate_instances.rb +4 -4
  273. data/lib/fog/aws/requests/compute/unmonitor_instances.rb +4 -4
  274. data/lib/fog/aws/requests/dns/change_resource_record_sets.rb +5 -5
  275. data/lib/fog/aws/requests/dns/create_health_check.rb +3 -3
  276. data/lib/fog/aws/requests/dns/create_hosted_zone.rb +4 -4
  277. data/lib/fog/aws/requests/dns/delete_health_check.rb +2 -2
  278. data/lib/fog/aws/requests/dns/delete_hosted_zone.rb +4 -4
  279. data/lib/fog/aws/requests/dns/get_change.rb +4 -4
  280. data/lib/fog/aws/requests/dns/get_health_check.rb +3 -3
  281. data/lib/fog/aws/requests/dns/get_hosted_zone.rb +4 -4
  282. data/lib/fog/aws/requests/dns/list_health_checks.rb +3 -3
  283. data/lib/fog/aws/requests/dns/list_hosted_zones.rb +3 -3
  284. data/lib/fog/aws/requests/dns/list_resource_record_sets.rb +5 -5
  285. data/lib/fog/aws/requests/elb/create_load_balancer.rb +7 -7
  286. data/lib/fog/aws/requests/elb/deregister_instances_from_load_balancer.rb +1 -1
  287. data/lib/fog/aws/requests/elb/describe_instance_health.rb +1 -1
  288. data/lib/fog/aws/requests/elb/describe_tags.rb +1 -1
  289. data/lib/fog/aws/requests/elb/register_instances_with_load_balancer.rb +1 -1
  290. data/lib/fog/aws/requests/rds/authorize_db_security_group_ingress.rb +1 -1
  291. data/lib/fog/aws/requests/rds/create_db_instance.rb +1 -1
  292. data/lib/fog/aws/requests/rds/create_db_subnet_group.rb +2 -2
  293. data/lib/fog/aws/requests/rds/modify_db_instance.rb +1 -1
  294. data/lib/fog/aws/requests/rds/revoke_db_security_group_ingress.rb +1 -1
  295. data/lib/fog/aws/requests/storage/abort_multipart_upload.rb +3 -3
  296. data/lib/fog/aws/requests/storage/acl_utils.rb +3 -3
  297. data/lib/fog/aws/requests/storage/complete_multipart_upload.rb +4 -4
  298. data/lib/fog/aws/requests/storage/copy_object.rb +3 -3
  299. data/lib/fog/aws/requests/storage/cors_utils.rb +3 -3
  300. data/lib/fog/aws/requests/storage/delete_bucket.rb +2 -2
  301. data/lib/fog/aws/requests/storage/delete_bucket_cors.rb +2 -2
  302. data/lib/fog/aws/requests/storage/delete_bucket_lifecycle.rb +2 -2
  303. data/lib/fog/aws/requests/storage/delete_bucket_policy.rb +2 -2
  304. data/lib/fog/aws/requests/storage/delete_bucket_tagging.rb +2 -2
  305. data/lib/fog/aws/requests/storage/delete_bucket_website.rb +2 -2
  306. data/lib/fog/aws/requests/storage/delete_multiple_objects.rb +3 -3
  307. data/lib/fog/aws/requests/storage/delete_object.rb +2 -2
  308. data/lib/fog/aws/requests/storage/delete_object_url.rb +2 -2
  309. data/lib/fog/aws/requests/storage/get_bucket.rb +3 -3
  310. data/lib/fog/aws/requests/storage/get_bucket_acl.rb +4 -4
  311. data/lib/fog/aws/requests/storage/get_bucket_cors.rb +4 -4
  312. data/lib/fog/aws/requests/storage/get_bucket_lifecycle.rb +3 -3
  313. data/lib/fog/aws/requests/storage/get_bucket_location.rb +3 -3
  314. data/lib/fog/aws/requests/storage/get_bucket_logging.rb +3 -3
  315. data/lib/fog/aws/requests/storage/get_bucket_notification.rb +3 -3
  316. data/lib/fog/aws/requests/storage/get_bucket_object_versions.rb +3 -3
  317. data/lib/fog/aws/requests/storage/get_bucket_policy.rb +2 -2
  318. data/lib/fog/aws/requests/storage/get_bucket_tagging.rb +3 -3
  319. data/lib/fog/aws/requests/storage/get_bucket_versioning.rb +3 -3
  320. data/lib/fog/aws/requests/storage/get_bucket_website.rb +3 -3
  321. data/lib/fog/aws/requests/storage/get_object.rb +2 -2
  322. data/lib/fog/aws/requests/storage/get_object_acl.rb +4 -4
  323. data/lib/fog/aws/requests/storage/get_object_http_url.rb +2 -2
  324. data/lib/fog/aws/requests/storage/get_object_https_url.rb +2 -2
  325. data/lib/fog/aws/requests/storage/get_object_torrent.rb +2 -2
  326. data/lib/fog/aws/requests/storage/get_object_url.rb +2 -2
  327. data/lib/fog/aws/requests/storage/get_request_payment.rb +3 -3
  328. data/lib/fog/aws/requests/storage/get_service.rb +3 -3
  329. data/lib/fog/aws/requests/storage/head_bucket.rb +2 -2
  330. data/lib/fog/aws/requests/storage/head_object.rb +2 -2
  331. data/lib/fog/aws/requests/storage/head_object_url.rb +2 -2
  332. data/lib/fog/aws/requests/storage/initiate_multipart_upload.rb +4 -4
  333. data/lib/fog/aws/requests/storage/list_multipart_uploads.rb +3 -3
  334. data/lib/fog/aws/requests/storage/list_parts.rb +3 -3
  335. data/lib/fog/aws/requests/storage/post_object_hidden_fields.rb +2 -2
  336. data/lib/fog/aws/requests/storage/post_object_restore.rb +2 -2
  337. data/lib/fog/aws/requests/storage/put_bucket.rb +2 -2
  338. data/lib/fog/aws/requests/storage/put_bucket_acl.rb +4 -4
  339. data/lib/fog/aws/requests/storage/put_bucket_cors.rb +4 -4
  340. data/lib/fog/aws/requests/storage/put_bucket_lifecycle.rb +2 -2
  341. data/lib/fog/aws/requests/storage/put_bucket_logging.rb +2 -2
  342. data/lib/fog/aws/requests/storage/put_bucket_notification.rb +2 -2
  343. data/lib/fog/aws/requests/storage/put_bucket_policy.rb +2 -2
  344. data/lib/fog/aws/requests/storage/put_bucket_tagging.rb +2 -2
  345. data/lib/fog/aws/requests/storage/put_bucket_versioning.rb +2 -2
  346. data/lib/fog/aws/requests/storage/put_bucket_website.rb +2 -2
  347. data/lib/fog/aws/requests/storage/put_object.rb +4 -4
  348. data/lib/fog/aws/requests/storage/put_object_acl.rb +4 -4
  349. data/lib/fog/aws/requests/storage/put_object_url.rb +2 -2
  350. data/lib/fog/aws/requests/storage/put_request_payment.rb +2 -2
  351. data/lib/fog/aws/requests/storage/shared_mock_methods.rb +2 -2
  352. data/lib/fog/aws/requests/storage/sync_clock.rb +2 -2
  353. data/lib/fog/aws/requests/storage/upload_part.rb +3 -3
  354. data/lib/fog/aws/service_mapper.rb +3 -3
  355. data/lib/fog/aws/storage.rb +16 -3
  356. data/lib/fog/aws/version.rb +1 -1
  357. data/tests/credentials_tests.rb +7 -7
  358. data/tests/models/compute/address_tests.rb +1 -1
  359. data/tests/models/compute/network_acl_tests.rb +4 -4
  360. data/tests/models/compute/security_group_tests.rb +1 -1
  361. data/tests/models/compute/volume_tests.rb +1 -1
  362. data/tests/models/elb/model_tests.rb +1 -1
  363. data/tests/parsers/compute/describe_images_tests.rb +2 -2
  364. data/tests/requests/compute/address_tests.rb +9 -9
  365. data/tests/requests/compute/assign_private_ip_tests.rb +3 -3
  366. data/tests/requests/compute/image_tests.rb +2 -2
  367. data/tests/requests/compute/instance_attrib_tests.rb +1 -1
  368. data/tests/requests/compute/instance_tests.rb +5 -5
  369. data/tests/requests/compute/internet_gateway_tests.rb +1 -1
  370. data/tests/requests/compute/key_pair_tests.rb +1 -1
  371. data/tests/requests/compute/network_acl_tests.rb +2 -2
  372. data/tests/requests/compute/network_interface_tests.rb +6 -6
  373. data/tests/requests/compute/placement_group_tests.rb +2 -2
  374. data/tests/requests/compute/region_tests.rb +4 -4
  375. data/tests/requests/compute/route_tests.rb +24 -24
  376. data/tests/requests/compute/security_group_tests.rb +14 -14
  377. data/tests/requests/compute/snapshot_tests.rb +1 -1
  378. data/tests/requests/compute/spot_datafeed_subscription_tests.rb +1 -1
  379. data/tests/requests/compute/subnet_tests.rb +3 -3
  380. data/tests/requests/compute/tag_tests.rb +3 -3
  381. data/tests/requests/compute/volume_tests.rb +11 -11
  382. data/tests/requests/compute/vpc_tests.rb +3 -3
  383. data/tests/requests/dns/change_resource_record_sets_tests.rb +3 -3
  384. data/tests/requests/storage/acl_utils_tests.rb +24 -24
  385. data/tests/requests/storage/cors_utils_tests.rb +14 -14
  386. data/tests/storage_tests.rb +1 -1
  387. metadata +1 -1
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Compute
4
- module AWS
3
+ module AWS
4
+ module Compute
5
5
  class SpotInstanceRequests < Fog::Parsers::Base
6
6
  def reset
7
7
  @block_device_mapping = {}
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Compute
4
- module AWS
3
+ module AWS
4
+ module Compute
5
5
  class StartStopInstances < Fog::Parsers::Base
6
6
  def reset
7
7
  @instance = { 'currentState' => {}, 'previousState' => {} }
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Compute
4
- module AWS
3
+ module AWS
4
+ module Compute
5
5
  class TerminateInstances < Fog::Parsers::Base
6
6
  def reset
7
7
  @instance = { 'previousState' => {}, 'currentState' => {} }
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module DNS
4
- module AWS
3
+ module AWS
4
+ module DNS
5
5
  class ChangeResourceRecordSets < Fog::Parsers::Base
6
6
  def reset
7
7
  @response = {}
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module DNS
4
- module AWS
3
+ module AWS
4
+ module DNS
5
5
  class CreateHostedZone < Fog::Parsers::Base
6
6
  def reset
7
7
  @hosted_zone = {}
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module DNS
4
- module AWS
3
+ module AWS
4
+ module DNS
5
5
  class DeleteHostedZone < Fog::Parsers::Base
6
6
  def reset
7
7
  @response = {}
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module DNS
4
- module AWS
3
+ module AWS
4
+ module DNS
5
5
  class GetChange < Fog::Parsers::Base
6
6
  def reset
7
7
  @response = {}
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module DNS
4
- module AWS
3
+ module AWS
4
+ module DNS
5
5
  class GetHostedZone < Fog::Parsers::Base
6
6
  def reset
7
7
  @hosted_zone = {}
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module DNS
4
- module AWS
3
+ module AWS
4
+ module DNS
5
5
  class HealthCheck < Fog::Parsers::Base
6
6
  def reset
7
7
  @health_check = {}
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module DNS
4
- module AWS
3
+ module AWS
4
+ module DNS
5
5
  class ListHealthChecks < Fog::Parsers::Base
6
6
  def reset
7
7
  @health_checks = []
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module DNS
4
- module AWS
3
+ module AWS
4
+ module DNS
5
5
  class ListHostedZones < Fog::Parsers::Base
6
6
  def reset
7
7
  @hosted_zones = []
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module DNS
4
- module AWS
3
+ module AWS
4
+ module DNS
5
5
  class ListResourceRecordSets < Fog::Parsers::Base
6
6
  def reset
7
7
  @resource_record = []
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class AccessControlList < Fog::Parsers::Base
6
6
  def reset
7
7
  @in_access_control_list = false
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class CompleteMultipartUpload < Fog::Parsers::Base
6
6
  def reset
7
7
  @response = {}
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class CopyObject < Fog::Parsers::Base
6
6
  def end_element(name)
7
7
  case name
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class CorsConfiguration < Fog::Parsers::Base
6
6
  def reset
7
7
  @in_cors_configuration_list = false
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class DeleteMultipleObjects < Fog::Parsers::Base
6
6
  def reset
7
7
  @deleted = { 'Deleted' => {} }
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class GetBucket < Fog::Parsers::Base
6
6
  def reset
7
7
  @object = { 'Owner' => {} }
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class GetBucketLifecycle < Fog::Parsers::Base
6
6
  def reset
7
7
  @expiration = {}
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class GetBucketLocation < Fog::Parsers::Base
6
6
  def end_element(name)
7
7
  case name
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class GetBucketLogging < Fog::Parsers::Base
6
6
  def reset
7
7
  @grant = { 'Grantee' => {} }
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class GetBucketNotification < Fog::Parsers::Base
6
6
  def reset
7
7
  @func = {}
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class GetBucketObjectVersions < Fog::Parsers::Base
6
6
  def reset
7
7
  @delete_marker = { 'Owner' => {} }
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class GetBucketTagging < Fog::Parsers::Base
6
6
  def reset
7
7
  @in_tag = {}
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class GetBucketVersioning < Fog::Parsers::Base
6
6
  def reset
7
7
  @response = { 'VersioningConfiguration' => {} }
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
 
6
6
  # http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETwebsite.html
7
7
  class GetBucketWebsite < Fog::Parsers::Base
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class GetRequestPayment < Fog::Parsers::Base
6
6
  def end_element(name)
7
7
  case name
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class GetService < Fog::Parsers::Base
6
6
  def reset
7
7
  @bucket = {}
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class InitiateMultipartUpload < Fog::Parsers::Base
6
6
  def reset
7
7
  @response = {}
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class ListMultipartUploads < Fog::Parsers::Base
6
6
  def reset
7
7
  @upload = { 'Initiator' => {}, 'Owner' => {} }
@@ -1,7 +1,7 @@
1
1
  module Fog
2
2
  module Parsers
3
- module Storage
4
- module AWS
3
+ module AWS
4
+ module Storage
5
5
  class ListParts < Fog::Parsers::Base
6
6
  def reset
7
7
  @part = {}
@@ -61,13 +61,13 @@ module Fog
61
61
  supported_actions = [ "InsufficientDataActions", "OKActions", "AlarmActions" ]
62
62
  found_actions = options.keys.select {|key| supported_actions.include? key }
63
63
  if found_actions.empty?
64
- raise Fog::Compute::AWS::Error.new("The request must contain at least one of #{supported_actions.join(", ")}'")
64
+ raise Fog::AWS::Compute::Error.new("The request must contain at least one of #{supported_actions.join(", ")}'")
65
65
  end
66
66
 
67
67
  requirements = [ "AlarmName", "ComparisonOperator", "EvaluationPeriods", "Namespace", "Period", "Statistic", "Threshold" ]
68
68
  requirements.each do |req|
69
69
  unless options.key?(req)
70
- raise Fog::Compute::AWS::Error.new("The request must contain a the parameter '%s'" % req)
70
+ raise Fog::AWS::Compute::Error.new("The request must contain a the parameter '%s'" % req)
71
71
  end
72
72
  end
73
73
 
@@ -1,6 +1,6 @@
1
1
  module Fog
2
- module Compute
3
- class AWS
2
+ module AWS
3
+ class Compute
4
4
  class Real
5
5
  require 'fog/aws/parsers/compute/allocate_address'
6
6
 
@@ -20,7 +20,7 @@ module Fog
20
20
  request(
21
21
  'Action' => 'AllocateAddress',
22
22
  'Domain' => domain,
23
- :parser => Fog::Parsers::Compute::AWS::AllocateAddress.new
23
+ :parser => Fog::Parsers::AWS::Compute::AllocateAddress.new
24
24
  )
25
25
  end
26
26
  end
@@ -28,7 +28,7 @@ module Fog
28
28
  class Mock
29
29
  def allocate_address(domain = 'standard')
30
30
  unless describe_addresses.body['addressesSet'].size < self.data[:limits][:addresses]
31
- raise Fog::Compute::AWS::Error, "AddressLimitExceeded => Too many addresses allocated"
31
+ raise Fog::AWS::Compute::Error, "AddressLimitExceeded => Too many addresses allocated"
32
32
  end
33
33
 
34
34
  response = Excon::Response.new
@@ -1,6 +1,6 @@
1
1
  module Fog
2
- module Compute
3
- class AWS
2
+ module AWS
3
+ class Compute
4
4
  class Real
5
5
  require 'fog/aws/parsers/compute/assign_private_ip_addresses'
6
6
 
@@ -20,7 +20,7 @@ module Fog
20
20
  # {Amazon API Reference}[http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-AssignPrivateIpAddresses.html]
21
21
  def assign_private_ip_addresses(network_interface_id, options={})
22
22
  if options['PrivateIpAddresses'] && options['SecondaryPrivateIpAddressCount']
23
- raise Fog::Compute::AWS::Error.new("You may specify secondaryPrivateIpAddressCount or specific secondary private IP addresses, but not both.")
23
+ raise Fog::AWS::Compute::Error.new("You may specify secondaryPrivateIpAddressCount or specific secondary private IP addresses, but not both.")
24
24
  end
25
25
 
26
26
  if private_ip_addresses = options.delete('PrivateIpAddresses')
@@ -30,7 +30,7 @@ module Fog
30
30
  request({
31
31
  'Action' => 'AssignPrivateIpAddresses',
32
32
  'NetworkInterfaceId' => network_interface_id,
33
- :parser => Fog::Parsers::Compute::AWS::AssignPrivateIpAddresses.new
33
+ :parser => Fog::Parsers::AWS::Compute::AssignPrivateIpAddresses.new
34
34
  }.merge(options))
35
35
  end
36
36
  end
@@ -38,7 +38,7 @@ module Fog
38
38
  class Mock
39
39
  def assign_private_ip_addresses(network_interface_id, options={})
40
40
  if options['PrivateIpAddresses'] && options['SecondaryPrivateIpAddressCount']
41
- raise Fog::Compute::AWS::Error.new("You may specify secondaryPrivateIpAddressCount or specific secondary private IP addresses, but not both.")
41
+ raise Fog::AWS::Compute::Error.new("You may specify secondaryPrivateIpAddressCount or specific secondary private IP addresses, but not both.")
42
42
  end
43
43
 
44
44
  response = Excon::Response.new
@@ -1,6 +1,6 @@
1
1
  module Fog
2
- module Compute
3
- class AWS
2
+ module AWS
3
+ class Compute
4
4
  class Real
5
5
  require 'fog/aws/parsers/compute/associate_address'
6
6
 
@@ -48,7 +48,7 @@ module Fog
48
48
  'PrivateIpAddress' => params[:private_ip_address],
49
49
  'AllowReassociation' => params[:allow_reassociation],
50
50
  :idempotent => true,
51
- :parser => Fog::Parsers::Compute::AWS::AssociateAddress.new
51
+ :parser => Fog::Parsers::AWS::Compute::AssociateAddress.new
52
52
  )
53
53
  end
54
54
  end
@@ -119,13 +119,13 @@ module Fog
119
119
  end
120
120
  response
121
121
  elsif !instance
122
- raise Fog::Compute::AWS::NotFound.new("You must specify either an InstanceId or a NetworkInterfaceID")
122
+ raise Fog::AWS::Compute::NotFound.new("You must specify either an InstanceId or a NetworkInterfaceID")
123
123
  elsif !address
124
- raise Fog::Compute::AWS::Error.new("AuthFailure => The address '#{public_ip}' does not belong to you.")
124
+ raise Fog::AWS::Compute::Error.new("AuthFailure => The address '#{public_ip}' does not belong to you.")
125
125
  elsif params[:network_interface_id].nil? && params[:allocation_id].nil?
126
- raise Fog::Compute::AWS::NotFound.new("You must specify an AllocationId when specifying a NetworkInterfaceID")
126
+ raise Fog::AWS::Compute::NotFound.new("You must specify an AllocationId when specifying a NetworkInterfaceID")
127
127
  else (!instance.nil? && params[:network_interface_id].nil?) || (params[:instance_id].nil? && !params[:network_interface_id].nil?)
128
- raise Fog::Compute::AWS::Error.new("You must specify either an InstanceId or a NetworkInterfaceID")
128
+ raise Fog::AWS::Compute::Error.new("You must specify either an InstanceId or a NetworkInterfaceID")
129
129
  end
130
130
  end
131
131
  end