fog 1.26.0 → 1.27.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1450) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +4 -3
  3. data/CHANGELOG.md +99 -0
  4. data/Rakefile +4 -0
  5. data/fog.gemspec +6 -4
  6. data/gemfiles/Gemfile-ruby-1.8.7 +2 -0
  7. data/lib/fog/aws.rb +1 -0
  8. data/lib/fog/aws/service_mapper.rb +129 -0
  9. data/lib/fog/bare_metal_cloud/compute.rb +1 -1
  10. data/lib/fog/bin/aws.rb +10 -116
  11. data/lib/fog/bin/rackspace.rb +8 -0
  12. data/lib/fog/cloudstack/compute.rb +107 -9
  13. data/lib/fog/cloudstack/models/compute/egress_firewall_rule.rb +38 -0
  14. data/lib/fog/cloudstack/models/compute/egress_firewall_rules.rb +25 -0
  15. data/lib/fog/cloudstack/models/compute/firewall_rule.rb +24 -0
  16. data/lib/fog/cloudstack/models/compute/firewall_rules.rb +25 -0
  17. data/lib/fog/cloudstack/models/compute/flavor.rb +6 -3
  18. data/lib/fog/cloudstack/models/compute/image.rb +5 -5
  19. data/lib/fog/cloudstack/models/compute/images.rb +0 -2
  20. data/lib/fog/cloudstack/models/compute/job.rb +10 -0
  21. data/lib/fog/cloudstack/models/compute/network.rb +72 -0
  22. data/lib/fog/cloudstack/models/compute/network_offering.rb +25 -0
  23. data/lib/fog/cloudstack/models/compute/network_offerings.rb +39 -0
  24. data/lib/fog/cloudstack/models/compute/networks.rb +38 -0
  25. data/lib/fog/cloudstack/models/compute/port_forwarding_rule.rb +25 -0
  26. data/lib/fog/cloudstack/models/compute/port_forwarding_rules.rb +25 -0
  27. data/lib/fog/cloudstack/models/compute/project.rb +58 -0
  28. data/lib/fog/cloudstack/models/compute/projects.rb +39 -0
  29. data/lib/fog/cloudstack/models/compute/public_ip_address.rb +53 -0
  30. data/lib/fog/cloudstack/models/compute/public_ip_addresses.rb +25 -0
  31. data/lib/fog/cloudstack/models/compute/server.rb +3 -2
  32. data/lib/fog/cloudstack/models/compute/servers.rb +4 -1
  33. data/lib/fog/cloudstack/models/compute/volume.rb +2 -0
  34. data/lib/fog/cloudstack/models/compute/zone.rb +1 -0
  35. data/lib/fog/cloudstack/requests/compute/associate_ip_address.rb +32 -1
  36. data/lib/fog/cloudstack/requests/compute/create_egress_firewall_rule.rb +22 -4
  37. data/lib/fog/cloudstack/requests/compute/create_firewall_rule.rb +25 -3
  38. data/lib/fog/cloudstack/requests/compute/create_network.rb +7 -5
  39. data/lib/fog/cloudstack/requests/compute/create_network_offering.rb +32 -6
  40. data/lib/fog/cloudstack/requests/compute/create_port_forwarding_rule.rb +32 -6
  41. data/lib/fog/cloudstack/requests/compute/create_service_offering.rb +32 -3
  42. data/lib/fog/cloudstack/requests/compute/create_ssh_key_pair.rb +4 -2
  43. data/lib/fog/cloudstack/requests/compute/create_volume.rb +6 -4
  44. data/lib/fog/cloudstack/requests/compute/delete_egress_firewall_rule.rb +11 -2
  45. data/lib/fog/cloudstack/requests/compute/delete_firewall_rule.rb +11 -2
  46. data/lib/fog/cloudstack/requests/compute/delete_network_offering.rb +11 -2
  47. data/lib/fog/cloudstack/requests/compute/delete_service_offering.rb +11 -2
  48. data/lib/fog/cloudstack/requests/compute/delete_ssh_key_pair.rb +4 -2
  49. data/lib/fog/cloudstack/requests/compute/deploy_virtual_machine.rb +8 -6
  50. data/lib/fog/cloudstack/requests/compute/disassociate_ip_address.rb +12 -2
  51. data/lib/fog/cloudstack/requests/compute/list_egress_firewall_rules.rb +12 -1
  52. data/lib/fog/cloudstack/requests/compute/list_firewall_rules.rb +12 -1
  53. data/lib/fog/cloudstack/requests/compute/list_network_offerings.rb +8 -1
  54. data/lib/fog/cloudstack/requests/compute/list_networks.rb +5 -1
  55. data/lib/fog/cloudstack/requests/compute/list_port_forwarding_rules.rb +17 -1
  56. data/lib/fog/cloudstack/requests/compute/list_public_ip_addresses.rb +12 -1
  57. data/lib/fog/cloudstack/requests/compute/list_service_offerings.rb +15 -16
  58. data/lib/fog/cloudstack/requests/compute/list_snapshots.rb +5 -3
  59. data/lib/fog/cloudstack/requests/compute/list_ssh_key_pairs.rb +3 -1
  60. data/lib/fog/cloudstack/requests/compute/list_templates.rb +8 -4
  61. data/lib/fog/cloudstack/requests/compute/list_virtual_machines.rb +5 -3
  62. data/lib/fog/cloudstack/requests/compute/list_vm_snapshot.rb +3 -1
  63. data/lib/fog/cloudstack/requests/compute/list_volumes.rb +5 -3
  64. data/lib/fog/cloudstack/requests/compute/register_ssh_key_pair.rb +5 -3
  65. data/lib/fog/cloudstack/requests/compute/reset_ssh_key_for_virtual_machine.rb +5 -3
  66. data/lib/fog/cloudstack/requests/compute/upload_volume.rb +7 -5
  67. data/lib/fog/hp/models/block_storage_v2/snapshots.rb +3 -3
  68. data/lib/fog/hp/models/block_storage_v2/volume_backups.rb +3 -3
  69. data/lib/fog/hp/models/block_storage_v2/volumes.rb +3 -3
  70. data/lib/fog/hp/models/compute_v2/flavors.rb +3 -3
  71. data/lib/fog/hp/models/compute_v2/images.rb +3 -3
  72. data/lib/fog/hp/models/compute_v2/servers.rb +3 -3
  73. data/lib/fog/hp/models/network/floating_ips.rb +2 -2
  74. data/lib/fog/hp/models/network/networks.rb +2 -2
  75. data/lib/fog/hp/models/network/ports.rb +2 -2
  76. data/lib/fog/hp/models/network/routers.rb +2 -2
  77. data/lib/fog/hp/models/network/security_group_rules.rb +2 -2
  78. data/lib/fog/hp/models/network/security_groups.rb +2 -2
  79. data/lib/fog/hp/models/network/subnets.rb +2 -2
  80. data/lib/fog/libvirt/models/compute/server.rb +9 -9
  81. data/lib/fog/openstack/examples/compute/block_device_mapping_v2.rb +21 -19
  82. data/lib/fog/openstack/models/compute/images.rb +2 -2
  83. data/lib/fog/openstack/models/compute/servers.rb +2 -2
  84. data/lib/fog/openstack/models/network/floating_ips.rb +2 -2
  85. data/lib/fog/openstack/models/network/lb_health_monitors.rb +2 -2
  86. data/lib/fog/openstack/models/network/lb_members.rb +2 -2
  87. data/lib/fog/openstack/models/network/lb_pools.rb +2 -2
  88. data/lib/fog/openstack/models/network/lb_vips.rb +2 -2
  89. data/lib/fog/openstack/models/network/networks.rb +2 -2
  90. data/lib/fog/openstack/models/network/ports.rb +2 -2
  91. data/lib/fog/openstack/models/network/routers.rb +2 -2
  92. data/lib/fog/openstack/models/network/security_group_rules.rb +2 -2
  93. data/lib/fog/openstack/models/network/security_groups.rb +2 -2
  94. data/lib/fog/openstack/models/network/subnets.rb +2 -2
  95. data/lib/fog/openstack/models/storage/file.rb +3 -2
  96. data/lib/fog/openstack/volume.rb +1 -0
  97. data/lib/fog/ovirt/compute.rb +3 -1
  98. data/lib/fog/ovirt/models/compute/server.rb +11 -4
  99. data/lib/fog/ovirt/requests/compute/vm_start_with_cloudinit.rb +19 -0
  100. data/lib/fog/rackspace.rb +2 -0
  101. data/lib/fog/rackspace/cdn_v2.rb +123 -0
  102. data/lib/fog/rackspace/core.rb +2 -0
  103. data/lib/fog/rackspace/docs/cdn_v2.md +351 -0
  104. data/lib/fog/rackspace/docs/networking_v2.md +422 -0
  105. data/lib/fog/rackspace/models/cdn_v2/flavor.rb +14 -0
  106. data/lib/fog/rackspace/models/cdn_v2/flavors.rb +24 -0
  107. data/lib/fog/rackspace/models/cdn_v2/service.rb +66 -0
  108. data/lib/fog/rackspace/models/cdn_v2/services.rb +24 -0
  109. data/lib/fog/rackspace/models/networking_v2/network.rb +36 -0
  110. data/lib/fog/rackspace/models/networking_v2/networks.rb +23 -0
  111. data/lib/fog/rackspace/models/networking_v2/port.rb +39 -0
  112. data/lib/fog/rackspace/models/networking_v2/ports.rb +23 -0
  113. data/lib/fog/rackspace/models/networking_v2/subnet.rb +38 -0
  114. data/lib/fog/rackspace/models/networking_v2/subnets.rb +23 -0
  115. data/lib/fog/rackspace/networking_v2.rb +205 -0
  116. data/lib/fog/rackspace/requests/cdn_v2/create_service.rb +10 -0
  117. data/lib/fog/rackspace/requests/cdn_v2/delete_assets.rb +12 -0
  118. data/lib/fog/rackspace/requests/cdn_v2/delete_service.rb +9 -0
  119. data/lib/fog/rackspace/requests/cdn_v2/get_flavor.rb +9 -0
  120. data/lib/fog/rackspace/requests/cdn_v2/get_home_document.rb +9 -0
  121. data/lib/fog/rackspace/requests/cdn_v2/get_ping.rb +10 -0
  122. data/lib/fog/rackspace/requests/cdn_v2/get_service.rb +9 -0
  123. data/lib/fog/rackspace/requests/cdn_v2/list_flavors.rb +9 -0
  124. data/lib/fog/rackspace/requests/cdn_v2/list_services.rb +9 -0
  125. data/lib/fog/rackspace/requests/cdn_v2/update_service.rb +10 -0
  126. data/lib/fog/rackspace/requests/identity/create_token.rb +5 -0
  127. data/lib/fog/rackspace/requests/networking_v2/create_network.rb +18 -0
  128. data/lib/fog/rackspace/requests/networking_v2/create_port.rb +18 -0
  129. data/lib/fog/rackspace/requests/networking_v2/create_subnet.rb +18 -0
  130. data/lib/fog/rackspace/requests/networking_v2/delete_network.rb +11 -0
  131. data/lib/fog/rackspace/requests/networking_v2/delete_port.rb +11 -0
  132. data/lib/fog/rackspace/requests/networking_v2/delete_subnet.rb +11 -0
  133. data/lib/fog/rackspace/requests/networking_v2/list_networks.rb +11 -0
  134. data/lib/fog/rackspace/requests/networking_v2/list_ports.rb +11 -0
  135. data/lib/fog/rackspace/requests/networking_v2/list_subnets.rb +11 -0
  136. data/lib/fog/rackspace/requests/networking_v2/show_network.rb +11 -0
  137. data/lib/fog/rackspace/requests/networking_v2/show_port.rb +11 -0
  138. data/lib/fog/rackspace/requests/networking_v2/show_subnet.rb +11 -0
  139. data/lib/fog/rackspace/requests/networking_v2/update_network.rb +18 -0
  140. data/lib/fog/rackspace/requests/networking_v2/update_port.rb +18 -0
  141. data/lib/fog/rackspace/requests/networking_v2/update_subnet.rb +23 -0
  142. data/lib/fog/riakcs/provisioning.rb +3 -1
  143. data/lib/fog/version.rb +1 -1
  144. data/lib/fog/vsphere/models/compute/cluster.rb +1 -0
  145. data/lib/fog/vsphere/requests/compute/cloudinit_to_customspec.rb +28 -0
  146. data/lib/fog/vsphere/requests/compute/list_clusters.rb +6 -0
  147. data/lib/fog/xenserver/compute.rb +20 -7
  148. data/lib/fog/xenserver/core.rb +15 -1
  149. data/lib/fog/xenserver/models/compute/network.rb +3 -0
  150. data/lib/fog/xenserver/models/compute/server.rb +3 -0
  151. data/lib/fog/xenserver/requests/compute/clone_server.rb +5 -2
  152. data/lib/fog/xenserver/requests/compute/create_network.rb +17 -8
  153. data/lib/fog/xenserver/requests/compute/create_server.rb +74 -54
  154. data/lib/fog/xenserver/requests/compute/create_sr.rb +51 -28
  155. data/lib/fog/xenserver/requests/compute/create_vbd.rb +26 -18
  156. data/lib/fog/xenserver/requests/compute/create_vdi.rb +29 -10
  157. data/lib/fog/xenserver/requests/compute/create_vif.rb +14 -4
  158. data/lib/fog/xenserver/requests/compute/create_vlan.rb +15 -2
  159. data/lib/fog/xenserver/requests/compute/destroy_network.rb +3 -0
  160. data/lib/fog/xenserver/requests/compute/destroy_record.rb +11 -0
  161. data/lib/fog/xenserver/requests/compute/destroy_server.rb +3 -0
  162. data/lib/fog/xenserver/requests/compute/destroy_sr.rb +3 -0
  163. data/lib/fog/xenserver/requests/compute/destroy_vdi.rb +3 -0
  164. data/lib/fog/xenserver/requests/compute/destroy_vif.rb +3 -0
  165. data/lib/fog/xenserver/requests/compute/destroy_vlan.rb +3 -0
  166. data/lib/fog/xenserver/requests/compute/get_record.rb +8 -0
  167. data/lib/fog/xenserver/requests/compute/snapshot_revert.rb +9 -2
  168. data/lib/tasks/changelog_task.rb +1 -0
  169. data/spec/fog/account_spec.rb +15 -0
  170. data/spec/fog/billing_spec.rb +15 -0
  171. data/spec/fog/bin/aws_spec.rb +89 -0
  172. data/spec/fog/cdn_spec.rb +15 -0
  173. data/spec/fog/compute_spec.rb +14 -2
  174. data/spec/fog/dns_spec.rb +20 -0
  175. data/spec/fog/identity_spec.rb +15 -0
  176. data/spec/fog/image_spec.rb +15 -0
  177. data/spec/fog/metering_spec.rb +15 -0
  178. data/spec/fog/monitoring_spec.rb +15 -0
  179. data/spec/fog/network_spec.rb +15 -0
  180. data/spec/fog/orchestration_spec.rb +15 -0
  181. data/spec/fog/storage_spec.rb +15 -0
  182. data/spec/fog/support_spec.rb +15 -0
  183. data/spec/fog/volume_spec.rb +15 -0
  184. data/spec/fog/vpn_spec.rb +15 -0
  185. data/tests/cloudstack/compute/models/egress_firewall_rule_tests.rb +6 -0
  186. data/tests/cloudstack/requests/egress_firewall_rule_tests.rb +25 -0
  187. data/tests/cloudstack/requests/firewall_rule_tests.rb +29 -0
  188. data/tests/cloudstack/requests/network_offering_tests.rb +32 -0
  189. data/tests/cloudstack/requests/port_forwarding_rule_tests.rb +33 -0
  190. data/tests/cloudstack/requests/public_ip_address_tests.rb +38 -0
  191. data/tests/cloudstack/requests/service_offering_tests.rb +8 -15
  192. data/tests/cloudstack/requests/volume_tests.rb +5 -6
  193. data/tests/compute/helper.rb +1 -0
  194. data/tests/helpers/mock_helper.rb +1 -0
  195. metadata +131 -1461
  196. data/lib/fog/aws/auto_scaling.rb +0 -279
  197. data/lib/fog/aws/beanstalk.rb +0 -156
  198. data/lib/fog/aws/cdn.rb +0 -205
  199. data/lib/fog/aws/cloud_formation.rb +0 -133
  200. data/lib/fog/aws/cloud_watch.rb +0 -167
  201. data/lib/fog/aws/compute.rb +0 -543
  202. data/lib/fog/aws/core.rb +0 -343
  203. data/lib/fog/aws/credential_fetcher.rb +0 -63
  204. data/lib/fog/aws/data_pipeline.rb +0 -126
  205. data/lib/fog/aws/dns.rb +0 -154
  206. data/lib/fog/aws/dynamodb.rb +0 -152
  207. data/lib/fog/aws/elasticache.rb +0 -216
  208. data/lib/fog/aws/elb.rb +0 -240
  209. data/lib/fog/aws/elb/policy_types.rb +0 -477
  210. data/lib/fog/aws/emr.rb +0 -139
  211. data/lib/fog/aws/glacier.rb +0 -179
  212. data/lib/fog/aws/iam.rb +0 -260
  213. data/lib/fog/aws/models/auto_scaling/activities.rb +0 -37
  214. data/lib/fog/aws/models/auto_scaling/activity.rb +0 -27
  215. data/lib/fog/aws/models/auto_scaling/configuration.rb +0 -69
  216. data/lib/fog/aws/models/auto_scaling/configurations.rb +0 -33
  217. data/lib/fog/aws/models/auto_scaling/group.rb +0 -150
  218. data/lib/fog/aws/models/auto_scaling/groups.rb +0 -37
  219. data/lib/fog/aws/models/auto_scaling/instance.rb +0 -58
  220. data/lib/fog/aws/models/auto_scaling/instances.rb +0 -28
  221. data/lib/fog/aws/models/auto_scaling/policies.rb +0 -37
  222. data/lib/fog/aws/models/auto_scaling/policy.rb +0 -46
  223. data/lib/fog/aws/models/beanstalk/application.rb +0 -59
  224. data/lib/fog/aws/models/beanstalk/applications.rb +0 -23
  225. data/lib/fog/aws/models/beanstalk/environment.rb +0 -145
  226. data/lib/fog/aws/models/beanstalk/environments.rb +0 -27
  227. data/lib/fog/aws/models/beanstalk/event.rb +0 -18
  228. data/lib/fog/aws/models/beanstalk/events.rb +0 -17
  229. data/lib/fog/aws/models/beanstalk/template.rb +0 -76
  230. data/lib/fog/aws/models/beanstalk/templates.rb +0 -68
  231. data/lib/fog/aws/models/beanstalk/version.rb +0 -77
  232. data/lib/fog/aws/models/beanstalk/versions.rb +0 -29
  233. data/lib/fog/aws/models/cdn/distribution.rb +0 -90
  234. data/lib/fog/aws/models/cdn/distribution_helper.rb +0 -60
  235. data/lib/fog/aws/models/cdn/distributions.rb +0 -30
  236. data/lib/fog/aws/models/cdn/distributions_helper.rb +0 -45
  237. data/lib/fog/aws/models/cdn/invalidation.rb +0 -60
  238. data/lib/fog/aws/models/cdn/invalidations.rb +0 -50
  239. data/lib/fog/aws/models/cdn/streaming_distribution.rb +0 -74
  240. data/lib/fog/aws/models/cdn/streaming_distributions.rb +0 -30
  241. data/lib/fog/aws/models/cloud_watch/alarm.rb +0 -60
  242. data/lib/fog/aws/models/cloud_watch/alarm_data.rb +0 -38
  243. data/lib/fog/aws/models/cloud_watch/alarm_datum.rb +0 -65
  244. data/lib/fog/aws/models/cloud_watch/alarm_histories.rb +0 -17
  245. data/lib/fog/aws/models/cloud_watch/alarm_history.rb +0 -15
  246. data/lib/fog/aws/models/cloud_watch/alarms.rb +0 -45
  247. data/lib/fog/aws/models/cloud_watch/metric.rb +0 -13
  248. data/lib/fog/aws/models/cloud_watch/metric_statistic.rb +0 -44
  249. data/lib/fog/aws/models/cloud_watch/metric_statistics.rb +0 -22
  250. data/lib/fog/aws/models/cloud_watch/metrics.rb +0 -50
  251. data/lib/fog/aws/models/compute/address.rb +0 -74
  252. data/lib/fog/aws/models/compute/addresses.rb +0 -96
  253. data/lib/fog/aws/models/compute/dhcp_option.rb +0 -66
  254. data/lib/fog/aws/models/compute/dhcp_options.rb +0 -87
  255. data/lib/fog/aws/models/compute/flavor.rb +0 -19
  256. data/lib/fog/aws/models/compute/flavors.rb +0 -606
  257. data/lib/fog/aws/models/compute/image.rb +0 -45
  258. data/lib/fog/aws/models/compute/images.rb +0 -59
  259. data/lib/fog/aws/models/compute/internet_gateway.rb +0 -78
  260. data/lib/fog/aws/models/compute/internet_gateways.rb +0 -87
  261. data/lib/fog/aws/models/compute/key_pair.rb +0 -53
  262. data/lib/fog/aws/models/compute/key_pairs.rb +0 -84
  263. data/lib/fog/aws/models/compute/network_acl.rb +0 -180
  264. data/lib/fog/aws/models/compute/network_acls.rb +0 -136
  265. data/lib/fog/aws/models/compute/network_interface.rb +0 -73
  266. data/lib/fog/aws/models/compute/network_interfaces.rb +0 -133
  267. data/lib/fog/aws/models/compute/route_table.rb +0 -66
  268. data/lib/fog/aws/models/compute/route_tables.rb +0 -88
  269. data/lib/fog/aws/models/compute/security_group.rb +0 -322
  270. data/lib/fog/aws/models/compute/security_groups.rb +0 -117
  271. data/lib/fog/aws/models/compute/server.rb +0 -271
  272. data/lib/fog/aws/models/compute/servers.rb +0 -211
  273. data/lib/fog/aws/models/compute/snapshot.rb +0 -53
  274. data/lib/fog/aws/models/compute/snapshots.rb +0 -48
  275. data/lib/fog/aws/models/compute/spot_request.rb +0 -119
  276. data/lib/fog/aws/models/compute/spot_requests.rb +0 -86
  277. data/lib/fog/aws/models/compute/subnet.rb +0 -61
  278. data/lib/fog/aws/models/compute/subnets.rb +0 -95
  279. data/lib/fog/aws/models/compute/tag.rb +0 -31
  280. data/lib/fog/aws/models/compute/tags.rb +0 -31
  281. data/lib/fog/aws/models/compute/volume.rb +0 -126
  282. data/lib/fog/aws/models/compute/volumes.rb +0 -117
  283. data/lib/fog/aws/models/compute/vpc.rb +0 -75
  284. data/lib/fog/aws/models/compute/vpcs.rb +0 -89
  285. data/lib/fog/aws/models/data_pipeline/pipeline.rb +0 -63
  286. data/lib/fog/aws/models/data_pipeline/pipelines.rb +0 -33
  287. data/lib/fog/aws/models/dns/record.rb +0 -116
  288. data/lib/fog/aws/models/dns/records.rb +0 -120
  289. data/lib/fog/aws/models/dns/zone.rb +0 -49
  290. data/lib/fog/aws/models/dns/zones.rb +0 -29
  291. data/lib/fog/aws/models/elasticache/cluster.rb +0 -69
  292. data/lib/fog/aws/models/elasticache/clusters.rb +0 -29
  293. data/lib/fog/aws/models/elasticache/parameter_group.rb +0 -28
  294. data/lib/fog/aws/models/elasticache/parameter_groups.rb +0 -28
  295. data/lib/fog/aws/models/elasticache/security_group.rb +0 -48
  296. data/lib/fog/aws/models/elasticache/security_groups.rb +0 -28
  297. data/lib/fog/aws/models/elasticache/subnet_group.rb +0 -32
  298. data/lib/fog/aws/models/elasticache/subnet_groups.rb +0 -24
  299. data/lib/fog/aws/models/elb/backend_server_description.rb +0 -11
  300. data/lib/fog/aws/models/elb/backend_server_descriptions.rb +0 -20
  301. data/lib/fog/aws/models/elb/listener.rb +0 -56
  302. data/lib/fog/aws/models/elb/listeners.rb +0 -30
  303. data/lib/fog/aws/models/elb/load_balancer.rb +0 -241
  304. data/lib/fog/aws/models/elb/load_balancers.rb +0 -37
  305. data/lib/fog/aws/models/elb/policies.rb +0 -52
  306. data/lib/fog/aws/models/elb/policy.rb +0 -59
  307. data/lib/fog/aws/models/glacier/archive.rb +0 -68
  308. data/lib/fog/aws/models/glacier/archives.rb +0 -26
  309. data/lib/fog/aws/models/glacier/job.rb +0 -61
  310. data/lib/fog/aws/models/glacier/jobs.rb +0 -40
  311. data/lib/fog/aws/models/glacier/vault.rb +0 -50
  312. data/lib/fog/aws/models/glacier/vaults.rb +0 -24
  313. data/lib/fog/aws/models/iam/access_key.rb +0 -39
  314. data/lib/fog/aws/models/iam/access_keys.rb +0 -32
  315. data/lib/fog/aws/models/iam/policies.rb +0 -40
  316. data/lib/fog/aws/models/iam/policy.rb +0 -36
  317. data/lib/fog/aws/models/iam/role.rb +0 -34
  318. data/lib/fog/aws/models/iam/roles.rb +0 -37
  319. data/lib/fog/aws/models/iam/user.rb +0 -38
  320. data/lib/fog/aws/models/iam/users.rb +0 -47
  321. data/lib/fog/aws/models/rds/instance_option.rb +0 -18
  322. data/lib/fog/aws/models/rds/instance_options.rb +0 -28
  323. data/lib/fog/aws/models/rds/log_file.rb +0 -22
  324. data/lib/fog/aws/models/rds/log_files.rb +0 -48
  325. data/lib/fog/aws/models/rds/parameter.rb +0 -18
  326. data/lib/fog/aws/models/rds/parameter_group.rb +0 -34
  327. data/lib/fog/aws/models/rds/parameter_groups.rb +0 -24
  328. data/lib/fog/aws/models/rds/parameters.rb +0 -36
  329. data/lib/fog/aws/models/rds/security_group.rb +0 -79
  330. data/lib/fog/aws/models/rds/security_groups.rb +0 -41
  331. data/lib/fog/aws/models/rds/server.rb +0 -140
  332. data/lib/fog/aws/models/rds/servers.rb +0 -24
  333. data/lib/fog/aws/models/rds/snapshot.rb +0 -49
  334. data/lib/fog/aws/models/rds/snapshots.rb +0 -69
  335. data/lib/fog/aws/models/rds/subnet_group.rb +0 -31
  336. data/lib/fog/aws/models/rds/subnet_groups.rb +0 -24
  337. data/lib/fog/aws/models/storage/directories.rb +0 -39
  338. data/lib/fog/aws/models/storage/directory.rb +0 -126
  339. data/lib/fog/aws/models/storage/file.rb +0 -280
  340. data/lib/fog/aws/models/storage/files.rb +0 -119
  341. data/lib/fog/aws/models/storage/version.rb +0 -33
  342. data/lib/fog/aws/models/storage/versions.rb +0 -34
  343. data/lib/fog/aws/parsers/auto_scaling/basic.rb +0 -24
  344. data/lib/fog/aws/parsers/auto_scaling/describe_adjustment_types.rb +0 -49
  345. data/lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb +0 -156
  346. data/lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_instances.rb +0 -40
  347. data/lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_notification_types.rb +0 -40
  348. data/lib/fog/aws/parsers/auto_scaling/describe_launch_configurations.rb +0 -97
  349. data/lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb +0 -64
  350. data/lib/fog/aws/parsers/auto_scaling/describe_notification_configurations.rb +0 -39
  351. data/lib/fog/aws/parsers/auto_scaling/describe_policies.rb +0 -65
  352. data/lib/fog/aws/parsers/auto_scaling/describe_scaling_activities.rb +0 -44
  353. data/lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb +0 -49
  354. data/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb +0 -43
  355. data/lib/fog/aws/parsers/auto_scaling/describe_tags.rb +0 -42
  356. data/lib/fog/aws/parsers/auto_scaling/describe_termination_policy_types.rb +0 -40
  357. data/lib/fog/aws/parsers/auto_scaling/put_notification_configuration.rb +0 -24
  358. data/lib/fog/aws/parsers/auto_scaling/put_scaling_policy.rb +0 -27
  359. data/lib/fog/aws/parsers/auto_scaling/terminate_instance_in_auto_scaling_group.rb +0 -32
  360. data/lib/fog/aws/parsers/beanstalk/check_dns_availability.rb +0 -16
  361. data/lib/fog/aws/parsers/beanstalk/create_application.rb +0 -21
  362. data/lib/fog/aws/parsers/beanstalk/create_application_version.rb +0 -23
  363. data/lib/fog/aws/parsers/beanstalk/create_configuration_template.rb +0 -26
  364. data/lib/fog/aws/parsers/beanstalk/create_environment.rb +0 -34
  365. data/lib/fog/aws/parsers/beanstalk/create_storage_location.rb +0 -15
  366. data/lib/fog/aws/parsers/beanstalk/describe_application_versions.rb +0 -23
  367. data/lib/fog/aws/parsers/beanstalk/describe_applications.rb +0 -21
  368. data/lib/fog/aws/parsers/beanstalk/describe_configuration_options.rb +0 -29
  369. data/lib/fog/aws/parsers/beanstalk/describe_configuration_settings.rb +0 -27
  370. data/lib/fog/aws/parsers/beanstalk/describe_environment_resources.rb +0 -34
  371. data/lib/fog/aws/parsers/beanstalk/describe_environments.rb +0 -35
  372. data/lib/fog/aws/parsers/beanstalk/describe_events.rb +0 -24
  373. data/lib/fog/aws/parsers/beanstalk/empty.rb +0 -20
  374. data/lib/fog/aws/parsers/beanstalk/list_available_solution_stacks.rb +0 -18
  375. data/lib/fog/aws/parsers/beanstalk/parser.rb +0 -84
  376. data/lib/fog/aws/parsers/beanstalk/retrieve_environment_info.rb +0 -19
  377. data/lib/fog/aws/parsers/beanstalk/terminate_environment.rb +0 -34
  378. data/lib/fog/aws/parsers/beanstalk/update_application.rb +0 -21
  379. data/lib/fog/aws/parsers/beanstalk/update_application_version.rb +0 -23
  380. data/lib/fog/aws/parsers/beanstalk/update_configuration_template.rb +0 -26
  381. data/lib/fog/aws/parsers/beanstalk/update_environment.rb +0 -34
  382. data/lib/fog/aws/parsers/beanstalk/validate_configuration_settings.rb +0 -19
  383. data/lib/fog/aws/parsers/cdn/distribution.rb +0 -55
  384. data/lib/fog/aws/parsers/cdn/get_distribution_list.rb +0 -57
  385. data/lib/fog/aws/parsers/cdn/get_invalidation.rb +0 -28
  386. data/lib/fog/aws/parsers/cdn/get_invalidation_list.rb +0 -38
  387. data/lib/fog/aws/parsers/cdn/get_streaming_distribution_list.rb +0 -55
  388. data/lib/fog/aws/parsers/cdn/post_invalidation.rb +0 -24
  389. data/lib/fog/aws/parsers/cdn/streaming_distribution.rb +0 -56
  390. data/lib/fog/aws/parsers/cloud_formation/basic.rb +0 -10
  391. data/lib/fog/aws/parsers/cloud_formation/create_stack.rb +0 -16
  392. data/lib/fog/aws/parsers/cloud_formation/describe_stack_events.rb +0 -28
  393. data/lib/fog/aws/parsers/cloud_formation/describe_stack_resources.rb +0 -28
  394. data/lib/fog/aws/parsers/cloud_formation/describe_stacks.rb +0 -78
  395. data/lib/fog/aws/parsers/cloud_formation/get_template.rb +0 -16
  396. data/lib/fog/aws/parsers/cloud_formation/list_stack_resources.rb +0 -30
  397. data/lib/fog/aws/parsers/cloud_formation/list_stacks.rb +0 -32
  398. data/lib/fog/aws/parsers/cloud_formation/update_stack.rb +0 -16
  399. data/lib/fog/aws/parsers/cloud_formation/validate_template.rb +0 -49
  400. data/lib/fog/aws/parsers/cloud_watch/delete_alarms.rb +0 -24
  401. data/lib/fog/aws/parsers/cloud_watch/describe_alarm_history.rb +0 -38
  402. data/lib/fog/aws/parsers/cloud_watch/describe_alarms.rb +0 -71
  403. data/lib/fog/aws/parsers/cloud_watch/describe_alarms_for_metric.rb +0 -69
  404. data/lib/fog/aws/parsers/cloud_watch/disable_alarm_actions.rb +0 -24
  405. data/lib/fog/aws/parsers/cloud_watch/enable_alarm_actions.rb +0 -24
  406. data/lib/fog/aws/parsers/cloud_watch/get_metric_statistics.rb +0 -40
  407. data/lib/fog/aws/parsers/cloud_watch/list_metrics.rb +0 -56
  408. data/lib/fog/aws/parsers/cloud_watch/put_metric_alarm.rb +0 -24
  409. data/lib/fog/aws/parsers/cloud_watch/put_metric_data.rb +0 -24
  410. data/lib/fog/aws/parsers/cloud_watch/set_alarm_state.rb +0 -24
  411. data/lib/fog/aws/parsers/compute/allocate_address.rb +0 -16
  412. data/lib/fog/aws/parsers/compute/assign_private_ip_addresses.rb +0 -22
  413. data/lib/fog/aws/parsers/compute/associate_address.rb +0 -22
  414. data/lib/fog/aws/parsers/compute/associate_route_table.rb +0 -16
  415. data/lib/fog/aws/parsers/compute/attach_network_interface.rb +0 -16
  416. data/lib/fog/aws/parsers/compute/attach_volume.rb +0 -18
  417. data/lib/fog/aws/parsers/compute/basic.rb +0 -22
  418. data/lib/fog/aws/parsers/compute/cancel_spot_instance_requests.rb +0 -26
  419. data/lib/fog/aws/parsers/compute/copy_image.rb +0 -18
  420. data/lib/fog/aws/parsers/compute/copy_snapshot.rb +0 -18
  421. data/lib/fog/aws/parsers/compute/create_dhcp_options.rb +0 -73
  422. data/lib/fog/aws/parsers/compute/create_image.rb +0 -16
  423. data/lib/fog/aws/parsers/compute/create_internet_gateway.rb +0 -61
  424. data/lib/fog/aws/parsers/compute/create_key_pair.rb +0 -16
  425. data/lib/fog/aws/parsers/compute/create_network_acl.rb +0 -28
  426. data/lib/fog/aws/parsers/compute/create_network_interface.rb +0 -28
  427. data/lib/fog/aws/parsers/compute/create_route_table.rb +0 -71
  428. data/lib/fog/aws/parsers/compute/create_security_group.rb +0 -22
  429. data/lib/fog/aws/parsers/compute/create_snapshot.rb +0 -22
  430. data/lib/fog/aws/parsers/compute/create_subnet.rb +0 -46
  431. data/lib/fog/aws/parsers/compute/create_volume.rb +0 -22
  432. data/lib/fog/aws/parsers/compute/create_vpc.rb +0 -47
  433. data/lib/fog/aws/parsers/compute/deregister_image.rb +0 -16
  434. data/lib/fog/aws/parsers/compute/describe_account_attributes.rb +0 -41
  435. data/lib/fog/aws/parsers/compute/describe_addresses.rb +0 -26
  436. data/lib/fog/aws/parsers/compute/describe_availability_zones.rb +0 -40
  437. data/lib/fog/aws/parsers/compute/describe_dhcp_options.rb +0 -72
  438. data/lib/fog/aws/parsers/compute/describe_images.rb +0 -89
  439. data/lib/fog/aws/parsers/compute/describe_instance_status.rb +0 -73
  440. data/lib/fog/aws/parsers/compute/describe_instances.rb +0 -122
  441. data/lib/fog/aws/parsers/compute/describe_internet_gateways.rb +0 -60
  442. data/lib/fog/aws/parsers/compute/describe_key_pairs.rb +0 -26
  443. data/lib/fog/aws/parsers/compute/describe_network_acls.rb +0 -42
  444. data/lib/fog/aws/parsers/compute/describe_network_interface_attribute.rb +0 -77
  445. data/lib/fog/aws/parsers/compute/describe_network_interfaces.rb +0 -42
  446. data/lib/fog/aws/parsers/compute/describe_placement_groups.rb +0 -26
  447. data/lib/fog/aws/parsers/compute/describe_regions.rb +0 -26
  448. data/lib/fog/aws/parsers/compute/describe_reserved_instances.rb +0 -58
  449. data/lib/fog/aws/parsers/compute/describe_reserved_instances_offerings.rb +0 -30
  450. data/lib/fog/aws/parsers/compute/describe_route_tables.rb +0 -81
  451. data/lib/fog/aws/parsers/compute/describe_security_groups.rb +0 -111
  452. data/lib/fog/aws/parsers/compute/describe_snapshots.rb +0 -52
  453. data/lib/fog/aws/parsers/compute/describe_spot_price_history.rb +0 -30
  454. data/lib/fog/aws/parsers/compute/describe_subnets.rb +0 -49
  455. data/lib/fog/aws/parsers/compute/describe_tags.rb +0 -26
  456. data/lib/fog/aws/parsers/compute/describe_volume_status.rb +0 -87
  457. data/lib/fog/aws/parsers/compute/describe_volumes.rb +0 -71
  458. data/lib/fog/aws/parsers/compute/describe_vpc_attribute.rb +0 -48
  459. data/lib/fog/aws/parsers/compute/describe_vpcs.rb +0 -47
  460. data/lib/fog/aws/parsers/compute/detach_volume.rb +0 -18
  461. data/lib/fog/aws/parsers/compute/get_console_output.rb +0 -24
  462. data/lib/fog/aws/parsers/compute/get_password_data.rb +0 -22
  463. data/lib/fog/aws/parsers/compute/import_key_pair.rb +0 -16
  464. data/lib/fog/aws/parsers/compute/modify_subnet_attribute.rb +0 -24
  465. data/lib/fog/aws/parsers/compute/monitor_unmonitor_instances.rb +0 -31
  466. data/lib/fog/aws/parsers/compute/network_acl_parser.rb +0 -103
  467. data/lib/fog/aws/parsers/compute/network_interface_parser.rb +0 -108
  468. data/lib/fog/aws/parsers/compute/purchase_reserved_instances_offering.rb +0 -20
  469. data/lib/fog/aws/parsers/compute/register_image.rb +0 -16
  470. data/lib/fog/aws/parsers/compute/replace_network_acl_association.rb +0 -20
  471. data/lib/fog/aws/parsers/compute/run_instances.rb +0 -90
  472. data/lib/fog/aws/parsers/compute/spot_datafeed_subscription.rb +0 -25
  473. data/lib/fog/aws/parsers/compute/spot_instance_requests.rb +0 -69
  474. data/lib/fog/aws/parsers/compute/start_stop_instances.rb +0 -37
  475. data/lib/fog/aws/parsers/compute/terminate_instances.rb +0 -51
  476. data/lib/fog/aws/parsers/dns/change_resource_record_sets.rb +0 -22
  477. data/lib/fog/aws/parsers/dns/create_health_check.rb +0 -0
  478. data/lib/fog/aws/parsers/dns/create_hosted_zone.rb +0 -51
  479. data/lib/fog/aws/parsers/dns/delete_hosted_zone.rb +0 -21
  480. data/lib/fog/aws/parsers/dns/get_change.rb +0 -22
  481. data/lib/fog/aws/parsers/dns/get_hosted_zone.rb +0 -41
  482. data/lib/fog/aws/parsers/dns/health_check.rb +0 -33
  483. data/lib/fog/aws/parsers/dns/list_health_checks.rb +0 -41
  484. data/lib/fog/aws/parsers/dns/list_hosted_zones.rb +0 -33
  485. data/lib/fog/aws/parsers/dns/list_resource_record_sets.rb +0 -58
  486. data/lib/fog/aws/parsers/elasticache/authorize_cache_security_group_ingress.rb +0 -21
  487. data/lib/fog/aws/parsers/elasticache/base.rb +0 -28
  488. data/lib/fog/aws/parsers/elasticache/cache_cluster_parser.rb +0 -77
  489. data/lib/fog/aws/parsers/elasticache/create_cache_subnet_group.rb +0 -32
  490. data/lib/fog/aws/parsers/elasticache/describe_cache_clusters.rb +0 -26
  491. data/lib/fog/aws/parsers/elasticache/describe_cache_parameters.rb +0 -21
  492. data/lib/fog/aws/parsers/elasticache/describe_cache_subnet_groups.rb +0 -34
  493. data/lib/fog/aws/parsers/elasticache/describe_engine_default_parameters.rb +0 -21
  494. data/lib/fog/aws/parsers/elasticache/describe_parameter_groups.rb +0 -26
  495. data/lib/fog/aws/parsers/elasticache/describe_reserved_cache_nodes.rb +0 -32
  496. data/lib/fog/aws/parsers/elasticache/describe_security_groups.rb +0 -26
  497. data/lib/fog/aws/parsers/elasticache/engine_defaults_parser.rb +0 -58
  498. data/lib/fog/aws/parsers/elasticache/event_list.rb +0 -38
  499. data/lib/fog/aws/parsers/elasticache/modify_parameter_group.rb +0 -26
  500. data/lib/fog/aws/parsers/elasticache/parameter_group_parser.rb +0 -29
  501. data/lib/fog/aws/parsers/elasticache/reset_parameter_group.rb +0 -26
  502. data/lib/fog/aws/parsers/elasticache/security_group_parser.rb +0 -38
  503. data/lib/fog/aws/parsers/elasticache/single_cache_cluster.rb +0 -21
  504. data/lib/fog/aws/parsers/elasticache/single_parameter_group.rb +0 -21
  505. data/lib/fog/aws/parsers/elasticache/single_security_group.rb +0 -33
  506. data/lib/fog/aws/parsers/elasticache/subnet_group_parser.rb +0 -35
  507. data/lib/fog/aws/parsers/elb/apply_security_groups_to_load_balancer.rb +0 -22
  508. data/lib/fog/aws/parsers/elb/attach_load_balancer_to_subnets.rb +0 -22
  509. data/lib/fog/aws/parsers/elb/configure_health_check.rb +0 -33
  510. data/lib/fog/aws/parsers/elb/create_load_balancer.rb +0 -22
  511. data/lib/fog/aws/parsers/elb/delete_load_balancer.rb +0 -20
  512. data/lib/fog/aws/parsers/elb/deregister_instances_from_load_balancer.rb +0 -22
  513. data/lib/fog/aws/parsers/elb/describe_instance_health.rb +0 -26
  514. data/lib/fog/aws/parsers/elb/describe_load_balancer_attributes.rb +0 -54
  515. data/lib/fog/aws/parsers/elb/describe_load_balancer_policies.rb +0 -60
  516. data/lib/fog/aws/parsers/elb/describe_load_balancer_policy_types.rb +0 -66
  517. data/lib/fog/aws/parsers/elb/describe_load_balancers.rb +0 -167
  518. data/lib/fog/aws/parsers/elb/describe_tags.rb +0 -26
  519. data/lib/fog/aws/parsers/elb/detach_load_balancer_from_subnets.rb +0 -22
  520. data/lib/fog/aws/parsers/elb/disable_availability_zones_for_load_balancer.rb +0 -22
  521. data/lib/fog/aws/parsers/elb/empty.rb +0 -24
  522. data/lib/fog/aws/parsers/elb/enable_availability_zones_for_load_balancer.rb +0 -22
  523. data/lib/fog/aws/parsers/elb/register_instances_with_load_balancer.rb +0 -22
  524. data/lib/fog/aws/parsers/elb/tag_list_parser.rb +0 -57
  525. data/lib/fog/aws/parsers/emr/add_instance_groups.rb +0 -26
  526. data/lib/fog/aws/parsers/emr/add_job_flow_steps.rb +0 -16
  527. data/lib/fog/aws/parsers/emr/describe_job_flows.rb +0 -137
  528. data/lib/fog/aws/parsers/emr/modify_instance_groups.rb +0 -16
  529. data/lib/fog/aws/parsers/emr/run_job_flow.rb +0 -18
  530. data/lib/fog/aws/parsers/emr/set_termination_protection.rb +0 -16
  531. data/lib/fog/aws/parsers/emr/terminate_job_flows.rb +0 -16
  532. data/lib/fog/aws/parsers/iam/base_instance_profile.rb +0 -75
  533. data/lib/fog/aws/parsers/iam/basic.rb +0 -16
  534. data/lib/fog/aws/parsers/iam/create_access_key.rb +0 -22
  535. data/lib/fog/aws/parsers/iam/create_group.rb +0 -22
  536. data/lib/fog/aws/parsers/iam/create_user.rb +0 -22
  537. data/lib/fog/aws/parsers/iam/get_account_password_policy.rb +0 -26
  538. data/lib/fog/aws/parsers/iam/get_account_summary.rb +0 -42
  539. data/lib/fog/aws/parsers/iam/get_group.rb +0 -52
  540. data/lib/fog/aws/parsers/iam/get_group_policy.rb +0 -30
  541. data/lib/fog/aws/parsers/iam/get_role_policy.rb +0 -28
  542. data/lib/fog/aws/parsers/iam/get_user.rb +0 -26
  543. data/lib/fog/aws/parsers/iam/get_user_policy.rb +0 -30
  544. data/lib/fog/aws/parsers/iam/instance_profile.rb +0 -28
  545. data/lib/fog/aws/parsers/iam/list_access_keys.rb +0 -28
  546. data/lib/fog/aws/parsers/iam/list_account_aliases.rb +0 -24
  547. data/lib/fog/aws/parsers/iam/list_groups.rb +0 -28
  548. data/lib/fog/aws/parsers/iam/list_groups_for_user.rb +0 -28
  549. data/lib/fog/aws/parsers/iam/list_instance_profiles.rb +0 -29
  550. data/lib/fog/aws/parsers/iam/list_mfa_devices.rb +0 -30
  551. data/lib/fog/aws/parsers/iam/list_policies.rb +0 -24
  552. data/lib/fog/aws/parsers/iam/list_roles.rb +0 -29
  553. data/lib/fog/aws/parsers/iam/list_server_certificates.rb +0 -34
  554. data/lib/fog/aws/parsers/iam/list_signing_certificates.rb +0 -28
  555. data/lib/fog/aws/parsers/iam/list_users.rb +0 -30
  556. data/lib/fog/aws/parsers/iam/login_profile.rb +0 -24
  557. data/lib/fog/aws/parsers/iam/role_parser.rb +0 -49
  558. data/lib/fog/aws/parsers/iam/single_role.rb +0 -27
  559. data/lib/fog/aws/parsers/iam/update_group.rb +0 -23
  560. data/lib/fog/aws/parsers/iam/update_user.rb +0 -24
  561. data/lib/fog/aws/parsers/iam/upload_server_certificate.rb +0 -24
  562. data/lib/fog/aws/parsers/iam/upload_signing_certificate.rb +0 -22
  563. data/lib/fog/aws/parsers/rds/authorize_db_security_group_ingress.rb +0 -32
  564. data/lib/fog/aws/parsers/rds/base.rb +0 -28
  565. data/lib/fog/aws/parsers/rds/create_db_instance.rb +0 -32
  566. data/lib/fog/aws/parsers/rds/create_db_instance_read_replica.rb +0 -32
  567. data/lib/fog/aws/parsers/rds/create_db_parameter_group.rb +0 -33
  568. data/lib/fog/aws/parsers/rds/create_db_security_group.rb +0 -32
  569. data/lib/fog/aws/parsers/rds/create_db_snapshot.rb +0 -32
  570. data/lib/fog/aws/parsers/rds/create_db_subnet_group.rb +0 -32
  571. data/lib/fog/aws/parsers/rds/db_engine_version_parser.rb +0 -32
  572. data/lib/fog/aws/parsers/rds/db_parser.rb +0 -136
  573. data/lib/fog/aws/parsers/rds/delete_db_instance.rb +0 -33
  574. data/lib/fog/aws/parsers/rds/delete_db_parameter_group.rb +0 -25
  575. data/lib/fog/aws/parsers/rds/delete_db_security_group.rb +0 -29
  576. data/lib/fog/aws/parsers/rds/delete_db_snapshot.rb +0 -32
  577. data/lib/fog/aws/parsers/rds/delete_db_subnet_group.rb +0 -29
  578. data/lib/fog/aws/parsers/rds/describe_db_engine_versions.rb +0 -34
  579. data/lib/fog/aws/parsers/rds/describe_db_instances.rb +0 -34
  580. data/lib/fog/aws/parsers/rds/describe_db_log_files.rb +0 -42
  581. data/lib/fog/aws/parsers/rds/describe_db_parameter_groups.rb +0 -33
  582. data/lib/fog/aws/parsers/rds/describe_db_parameters.rb +0 -42
  583. data/lib/fog/aws/parsers/rds/describe_db_reserved_instances.rb +0 -38
  584. data/lib/fog/aws/parsers/rds/describe_db_security_groups.rb +0 -34
  585. data/lib/fog/aws/parsers/rds/describe_db_snapshots.rb +0 -34
  586. data/lib/fog/aws/parsers/rds/describe_db_subnet_groups.rb +0 -34
  587. data/lib/fog/aws/parsers/rds/describe_orderable_db_instance_options.rb +0 -45
  588. data/lib/fog/aws/parsers/rds/download_db_logfile_portion.rb +0 -22
  589. data/lib/fog/aws/parsers/rds/event_list.rb +0 -38
  590. data/lib/fog/aws/parsers/rds/modify_db_instance.rb +0 -32
  591. data/lib/fog/aws/parsers/rds/modify_db_parameter_group.rb +0 -26
  592. data/lib/fog/aws/parsers/rds/promote_read_replica.rb +0 -32
  593. data/lib/fog/aws/parsers/rds/reboot_db_instance.rb +0 -33
  594. data/lib/fog/aws/parsers/rds/restore_db_instance_from_db_snapshot.rb +0 -32
  595. data/lib/fog/aws/parsers/rds/restore_db_instance_to_point_in_time.rb +0 -32
  596. data/lib/fog/aws/parsers/rds/revoke_db_security_group_ingress.rb +0 -32
  597. data/lib/fog/aws/parsers/rds/security_group_parser.rb +0 -36
  598. data/lib/fog/aws/parsers/rds/snapshot_parser.rb +0 -39
  599. data/lib/fog/aws/parsers/rds/subnet_group_parser.rb +0 -35
  600. data/lib/fog/aws/parsers/rds/tag_list_parser.rb +0 -33
  601. data/lib/fog/aws/parsers/redshift/cluster.rb +0 -28
  602. data/lib/fog/aws/parsers/redshift/cluster_parser.rb +0 -143
  603. data/lib/fog/aws/parsers/redshift/cluster_security_group_parser.rb +0 -49
  604. data/lib/fog/aws/parsers/redshift/cluster_snapshot.rb +0 -31
  605. data/lib/fog/aws/parsers/redshift/cluster_snapshot_parser.rb +0 -65
  606. data/lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb +0 -50
  607. data/lib/fog/aws/parsers/redshift/create_cluster_parameter_group.rb +0 -29
  608. data/lib/fog/aws/parsers/redshift/create_cluster_security_group.rb +0 -30
  609. data/lib/fog/aws/parsers/redshift/describe_cluster_parameter_groups.rb +0 -40
  610. data/lib/fog/aws/parsers/redshift/describe_cluster_parameters.rb +0 -47
  611. data/lib/fog/aws/parsers/redshift/describe_cluster_security_groups.rb +0 -37
  612. data/lib/fog/aws/parsers/redshift/describe_cluster_snapshots.rb +0 -37
  613. data/lib/fog/aws/parsers/redshift/describe_cluster_subnet_groups.rb +0 -55
  614. data/lib/fog/aws/parsers/redshift/describe_cluster_versions.rb +0 -50
  615. data/lib/fog/aws/parsers/redshift/describe_clusters.rb +0 -29
  616. data/lib/fog/aws/parsers/redshift/describe_default_cluster_parameters.rb +0 -48
  617. data/lib/fog/aws/parsers/redshift/describe_events.rb +0 -43
  618. data/lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb +0 -53
  619. data/lib/fog/aws/parsers/redshift/describe_reserved_node_offerings.rb +0 -63
  620. data/lib/fog/aws/parsers/redshift/describe_reserved_nodes.rb +0 -70
  621. data/lib/fog/aws/parsers/redshift/describe_resize.rb +0 -58
  622. data/lib/fog/aws/parsers/redshift/purchase_reserved_node_offering.rb +0 -56
  623. data/lib/fog/aws/parsers/redshift/revoke_cluster_security_group_ingress.rb +0 -30
  624. data/lib/fog/aws/parsers/redshift/update_cluster_parameter_group_parser.rb +0 -28
  625. data/lib/fog/aws/parsers/ses/delete_verified_email_address.rb +0 -20
  626. data/lib/fog/aws/parsers/ses/get_send_quota.rb +0 -22
  627. data/lib/fog/aws/parsers/ses/get_send_statistics.rb +0 -26
  628. data/lib/fog/aws/parsers/ses/list_verified_email_addresses.rb +0 -22
  629. data/lib/fog/aws/parsers/ses/send_email.rb +0 -22
  630. data/lib/fog/aws/parsers/ses/send_raw_email.rb +0 -22
  631. data/lib/fog/aws/parsers/ses/verify_domain_identity.rb +0 -22
  632. data/lib/fog/aws/parsers/ses/verify_email_address.rb +0 -20
  633. data/lib/fog/aws/parsers/simpledb/basic.rb +0 -27
  634. data/lib/fog/aws/parsers/simpledb/domain_metadata.rb +0 -28
  635. data/lib/fog/aws/parsers/simpledb/get_attributes.rb +0 -32
  636. data/lib/fog/aws/parsers/simpledb/list_domains.rb +0 -26
  637. data/lib/fog/aws/parsers/simpledb/select.rb +0 -37
  638. data/lib/fog/aws/parsers/sns/add_permission.rb +0 -20
  639. data/lib/fog/aws/parsers/sns/confirm_subscription.rb +0 -20
  640. data/lib/fog/aws/parsers/sns/create_topic.rb +0 -20
  641. data/lib/fog/aws/parsers/sns/delete_topic.rb +0 -20
  642. data/lib/fog/aws/parsers/sns/get_topic_attributes.rb +0 -29
  643. data/lib/fog/aws/parsers/sns/list_subscriptions.rb +0 -26
  644. data/lib/fog/aws/parsers/sns/list_topics.rb +0 -22
  645. data/lib/fog/aws/parsers/sns/publish.rb +0 -20
  646. data/lib/fog/aws/parsers/sns/remove_permission.rb +0 -20
  647. data/lib/fog/aws/parsers/sns/set_topic_attributes.rb +0 -20
  648. data/lib/fog/aws/parsers/sns/subscribe.rb +0 -20
  649. data/lib/fog/aws/parsers/sns/unsubscribe.rb +0 -20
  650. data/lib/fog/aws/parsers/sqs/basic.rb +0 -20
  651. data/lib/fog/aws/parsers/sqs/create_queue.rb +0 -22
  652. data/lib/fog/aws/parsers/sqs/get_queue_attributes.rb +0 -31
  653. data/lib/fog/aws/parsers/sqs/list_queues.rb +0 -22
  654. data/lib/fog/aws/parsers/sqs/receive_message.rb +0 -37
  655. data/lib/fog/aws/parsers/sqs/send_message.rb +0 -24
  656. data/lib/fog/aws/parsers/storage/access_control_list.rb +0 -42
  657. data/lib/fog/aws/parsers/storage/complete_multipart_upload.rb +0 -20
  658. data/lib/fog/aws/parsers/storage/copy_object.rb +0 -18
  659. data/lib/fog/aws/parsers/storage/cors_configuration.rb +0 -38
  660. data/lib/fog/aws/parsers/storage/delete_multiple_objects.rb +0 -45
  661. data/lib/fog/aws/parsers/storage/get_bucket.rb +0 -58
  662. data/lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb +0 -64
  663. data/lib/fog/aws/parsers/storage/get_bucket_location.rb +0 -16
  664. data/lib/fog/aws/parsers/storage/get_bucket_logging.rb +0 -36
  665. data/lib/fog/aws/parsers/storage/get_bucket_object_versions.rb +0 -84
  666. data/lib/fog/aws/parsers/storage/get_bucket_tagging.rb +0 -33
  667. data/lib/fog/aws/parsers/storage/get_bucket_versioning.rb +0 -20
  668. data/lib/fog/aws/parsers/storage/get_bucket_website.rb +0 -26
  669. data/lib/fog/aws/parsers/storage/get_request_payment.rb +0 -16
  670. data/lib/fog/aws/parsers/storage/get_service.rb +0 -28
  671. data/lib/fog/aws/parsers/storage/initiate_multipart_upload.rb +0 -20
  672. data/lib/fog/aws/parsers/storage/list_multipart_uploads.rb +0 -52
  673. data/lib/fog/aws/parsers/storage/list_parts.rb +0 -36
  674. data/lib/fog/aws/parsers/sts/assume_role.rb +0 -26
  675. data/lib/fog/aws/parsers/sts/assume_role_with_saml.rb +0 -26
  676. data/lib/fog/aws/parsers/sts/get_session_token.rb +0 -26
  677. data/lib/fog/aws/rds.rb +0 -258
  678. data/lib/fog/aws/redshift.rb +0 -133
  679. data/lib/fog/aws/region_methods.rb +0 -11
  680. data/lib/fog/aws/requests/auto_scaling/create_auto_scaling_group.rb +0 -140
  681. data/lib/fog/aws/requests/auto_scaling/create_launch_configuration.rb +0 -114
  682. data/lib/fog/aws/requests/auto_scaling/create_or_update_tags.rb +0 -57
  683. data/lib/fog/aws/requests/auto_scaling/delete_auto_scaling_group.rb +0 -55
  684. data/lib/fog/aws/requests/auto_scaling/delete_launch_configuration.rb +0 -51
  685. data/lib/fog/aws/requests/auto_scaling/delete_notification_configuration.rb +0 -58
  686. data/lib/fog/aws/requests/auto_scaling/delete_policy.rb +0 -50
  687. data/lib/fog/aws/requests/auto_scaling/delete_scheduled_action.rb +0 -42
  688. data/lib/fog/aws/requests/auto_scaling/delete_tags.rb +0 -57
  689. data/lib/fog/aws/requests/auto_scaling/describe_adjustment_types.rb +0 -48
  690. data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_groups.rb +0 -134
  691. data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_instances.rb +0 -89
  692. data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_notification_types.rb +0 -50
  693. data/lib/fog/aws/requests/auto_scaling/describe_launch_configurations.rb +0 -112
  694. data/lib/fog/aws/requests/auto_scaling/describe_metric_collection_types.rb +0 -56
  695. data/lib/fog/aws/requests/auto_scaling/describe_notification_configurations.rb +0 -73
  696. data/lib/fog/aws/requests/auto_scaling/describe_policies.rb +0 -105
  697. data/lib/fog/aws/requests/auto_scaling/describe_scaling_activities.rb +0 -82
  698. data/lib/fog/aws/requests/auto_scaling/describe_scaling_process_types.rb +0 -49
  699. data/lib/fog/aws/requests/auto_scaling/describe_scheduled_actions.rb +0 -82
  700. data/lib/fog/aws/requests/auto_scaling/describe_tags.rb +0 -68
  701. data/lib/fog/aws/requests/auto_scaling/describe_termination_policy_types.rb +0 -47
  702. data/lib/fog/aws/requests/auto_scaling/disable_metrics_collection.rb +0 -50
  703. data/lib/fog/aws/requests/auto_scaling/enable_metrics_collection.rb +0 -60
  704. data/lib/fog/aws/requests/auto_scaling/execute_policy.rb +0 -44
  705. data/lib/fog/aws/requests/auto_scaling/put_notification_configuration.rb +0 -64
  706. data/lib/fog/aws/requests/auto_scaling/put_scaling_policy.rb +0 -79
  707. data/lib/fog/aws/requests/auto_scaling/put_scheduled_update_group_action.rb +0 -64
  708. data/lib/fog/aws/requests/auto_scaling/resume_processes.rb +0 -53
  709. data/lib/fog/aws/requests/auto_scaling/set_desired_capacity.rb +0 -81
  710. data/lib/fog/aws/requests/auto_scaling/set_instance_health.rb +0 -49
  711. data/lib/fog/aws/requests/auto_scaling/suspend_processes.rb +0 -56
  712. data/lib/fog/aws/requests/auto_scaling/terminate_instance_in_auto_scaling_group.rb +0 -59
  713. data/lib/fog/aws/requests/auto_scaling/update_auto_scaling_group.rb +0 -93
  714. data/lib/fog/aws/requests/beanstalk/check_dns_availability.rb +0 -26
  715. data/lib/fog/aws/requests/beanstalk/create_application.rb +0 -28
  716. data/lib/fog/aws/requests/beanstalk/create_application_version.rb +0 -40
  717. data/lib/fog/aws/requests/beanstalk/create_configuration_template.rb +0 -46
  718. data/lib/fog/aws/requests/beanstalk/create_environment.rb +0 -49
  719. data/lib/fog/aws/requests/beanstalk/create_storage_location.rb +0 -26
  720. data/lib/fog/aws/requests/beanstalk/delete_application.rb +0 -28
  721. data/lib/fog/aws/requests/beanstalk/delete_application_version.rb +0 -35
  722. data/lib/fog/aws/requests/beanstalk/delete_configuration_template.rb +0 -33
  723. data/lib/fog/aws/requests/beanstalk/delete_environment_configuration.rb +0 -33
  724. data/lib/fog/aws/requests/beanstalk/describe_application_versions.rb +0 -33
  725. data/lib/fog/aws/requests/beanstalk/describe_applications.rb +0 -29
  726. data/lib/fog/aws/requests/beanstalk/describe_configuration_options.rb +0 -39
  727. data/lib/fog/aws/requests/beanstalk/describe_configuration_settings.rb +0 -30
  728. data/lib/fog/aws/requests/beanstalk/describe_environment_resources.rb +0 -28
  729. data/lib/fog/aws/requests/beanstalk/describe_environments.rb +0 -39
  730. data/lib/fog/aws/requests/beanstalk/describe_events.rb +0 -28
  731. data/lib/fog/aws/requests/beanstalk/list_available_solution_stacks.rb +0 -26
  732. data/lib/fog/aws/requests/beanstalk/rebuild_environment.rb +0 -29
  733. data/lib/fog/aws/requests/beanstalk/request_environment_info.rb +0 -28
  734. data/lib/fog/aws/requests/beanstalk/restart_app_server.rb +0 -28
  735. data/lib/fog/aws/requests/beanstalk/retrieve_environment_info.rb +0 -28
  736. data/lib/fog/aws/requests/beanstalk/swap_environment_cnames.rb +0 -28
  737. data/lib/fog/aws/requests/beanstalk/terminate_environment.rb +0 -30
  738. data/lib/fog/aws/requests/beanstalk/update_application.rb +0 -29
  739. data/lib/fog/aws/requests/beanstalk/update_application_version.rb +0 -29
  740. data/lib/fog/aws/requests/beanstalk/update_configuration_template.rb +0 -35
  741. data/lib/fog/aws/requests/beanstalk/update_environment.rb +0 -41
  742. data/lib/fog/aws/requests/beanstalk/validate_configuration_settings.rb +0 -32
  743. data/lib/fog/aws/requests/cdn/delete_distribution.rb +0 -52
  744. data/lib/fog/aws/requests/cdn/delete_streaming_distribution.rb +0 -51
  745. data/lib/fog/aws/requests/cdn/get_distribution.rb +0 -78
  746. data/lib/fog/aws/requests/cdn/get_distribution_list.rb +0 -81
  747. data/lib/fog/aws/requests/cdn/get_invalidation.rb +0 -58
  748. data/lib/fog/aws/requests/cdn/get_invalidation_list.rb +0 -76
  749. data/lib/fog/aws/requests/cdn/get_streaming_distribution.rb +0 -69
  750. data/lib/fog/aws/requests/cdn/get_streaming_distribution_list.rb +0 -81
  751. data/lib/fog/aws/requests/cdn/post_distribution.rb +0 -130
  752. data/lib/fog/aws/requests/cdn/post_invalidation.rb +0 -75
  753. data/lib/fog/aws/requests/cdn/post_streaming_distribution.rb +0 -115
  754. data/lib/fog/aws/requests/cdn/put_distribution_config.rb +0 -116
  755. data/lib/fog/aws/requests/cdn/put_streaming_distribution_config.rb +0 -105
  756. data/lib/fog/aws/requests/cloud_formation/create_stack.rb +0 -88
  757. data/lib/fog/aws/requests/cloud_formation/delete_stack.rb +0 -25
  758. data/lib/fog/aws/requests/cloud_formation/describe_stack_events.rb +0 -39
  759. data/lib/fog/aws/requests/cloud_formation/describe_stack_resources.rb +0 -38
  760. data/lib/fog/aws/requests/cloud_formation/describe_stacks.rb +0 -37
  761. data/lib/fog/aws/requests/cloud_formation/get_template.rb +0 -27
  762. data/lib/fog/aws/requests/cloud_formation/list_stack_resources.rb +0 -34
  763. data/lib/fog/aws/requests/cloud_formation/list_stacks.rb +0 -35
  764. data/lib/fog/aws/requests/cloud_formation/update_stack.rb +0 -56
  765. data/lib/fog/aws/requests/cloud_formation/validate_template.rb +0 -29
  766. data/lib/fog/aws/requests/cloud_watch/delete_alarms.rb +0 -47
  767. data/lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb +0 -32
  768. data/lib/fog/aws/requests/cloud_watch/describe_alarms.rb +0 -55
  769. data/lib/fog/aws/requests/cloud_watch/describe_alarms_for_metric.rb +0 -38
  770. data/lib/fog/aws/requests/cloud_watch/disable_alarm_actions.rb +0 -29
  771. data/lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb +0 -29
  772. data/lib/fog/aws/requests/cloud_watch/get_metric_statistics.rb +0 -46
  773. data/lib/fog/aws/requests/cloud_watch/list_metrics.rb +0 -62
  774. data/lib/fog/aws/requests/cloud_watch/put_metric_alarm.rb +0 -93
  775. data/lib/fog/aws/requests/cloud_watch/put_metric_data.rb +0 -72
  776. data/lib/fog/aws/requests/cloud_watch/set_alarm_state.rb +0 -30
  777. data/lib/fog/aws/requests/compute/allocate_address.rb +0 -55
  778. data/lib/fog/aws/requests/compute/assign_private_ip_addresses.rb +0 -55
  779. data/lib/fog/aws/requests/compute/associate_address.rb +0 -126
  780. data/lib/fog/aws/requests/compute/associate_dhcp_options.rb +0 -53
  781. data/lib/fog/aws/requests/compute/associate_route_table.rb +0 -70
  782. data/lib/fog/aws/requests/compute/attach_internet_gateway.rb +0 -52
  783. data/lib/fog/aws/requests/compute/attach_network_interface.rb +0 -61
  784. data/lib/fog/aws/requests/compute/attach_volume.rb +0 -83
  785. data/lib/fog/aws/requests/compute/authorize_security_group_ingress.rb +0 -230
  786. data/lib/fog/aws/requests/compute/cancel_spot_instance_requests.rb +0 -32
  787. data/lib/fog/aws/requests/compute/copy_image.rb +0 -59
  788. data/lib/fog/aws/requests/compute/copy_snapshot.rb +0 -54
  789. data/lib/fog/aws/requests/compute/create_dhcp_options.rb +0 -74
  790. data/lib/fog/aws/requests/compute/create_image.rb +0 -91
  791. data/lib/fog/aws/requests/compute/create_internet_gateway.rb +0 -52
  792. data/lib/fog/aws/requests/compute/create_key_pair.rb +0 -52
  793. data/lib/fog/aws/requests/compute/create_network_acl.rb +0 -105
  794. data/lib/fog/aws/requests/compute/create_network_acl_entry.rb +0 -80
  795. data/lib/fog/aws/requests/compute/create_network_interface.rb +0 -134
  796. data/lib/fog/aws/requests/compute/create_placement_group.rb +0 -31
  797. data/lib/fog/aws/requests/compute/create_route.rb +0 -87
  798. data/lib/fog/aws/requests/compute/create_route_table.rb +0 -69
  799. data/lib/fog/aws/requests/compute/create_security_group.rb +0 -60
  800. data/lib/fog/aws/requests/compute/create_snapshot.rb +0 -70
  801. data/lib/fog/aws/requests/compute/create_spot_datafeed_subscription.rb +0 -39
  802. data/lib/fog/aws/requests/compute/create_subnet.rb +0 -102
  803. data/lib/fog/aws/requests/compute/create_tags.rb +0 -65
  804. data/lib/fog/aws/requests/compute/create_volume.rb +0 -124
  805. data/lib/fog/aws/requests/compute/create_vpc.rb +0 -94
  806. data/lib/fog/aws/requests/compute/delete_dhcp_options.rb +0 -50
  807. data/lib/fog/aws/requests/compute/delete_internet_gateway.rb +0 -48
  808. data/lib/fog/aws/requests/compute/delete_key_pair.rb +0 -43
  809. data/lib/fog/aws/requests/compute/delete_network_acl.rb +0 -52
  810. data/lib/fog/aws/requests/compute/delete_network_acl_entry.rb +0 -55
  811. data/lib/fog/aws/requests/compute/delete_network_interface.rb +0 -51
  812. data/lib/fog/aws/requests/compute/delete_placement_group.rb +0 -30
  813. data/lib/fog/aws/requests/compute/delete_route.rb +0 -57
  814. data/lib/fog/aws/requests/compute/delete_route_table.rb +0 -49
  815. data/lib/fog/aws/requests/compute/delete_security_group.rb +0 -100
  816. data/lib/fog/aws/requests/compute/delete_snapshot.rb +0 -46
  817. data/lib/fog/aws/requests/compute/delete_spot_datafeed_subscription.rb +0 -26
  818. data/lib/fog/aws/requests/compute/delete_subnet.rb +0 -49
  819. data/lib/fog/aws/requests/compute/delete_tags.rb +0 -67
  820. data/lib/fog/aws/requests/compute/delete_volume.rb +0 -52
  821. data/lib/fog/aws/requests/compute/delete_vpc.rb +0 -56
  822. data/lib/fog/aws/requests/compute/deregister_image.rb +0 -49
  823. data/lib/fog/aws/requests/compute/describe_account_attributes.rb +0 -48
  824. data/lib/fog/aws/requests/compute/describe_addresses.rb +0 -62
  825. data/lib/fog/aws/requests/compute/describe_availability_zones.rb +0 -94
  826. data/lib/fog/aws/requests/compute/describe_dhcp_options.rb +0 -54
  827. data/lib/fog/aws/requests/compute/describe_images.rb +0 -126
  828. data/lib/fog/aws/requests/compute/describe_instance_status.rb +0 -46
  829. data/lib/fog/aws/requests/compute/describe_instances.rb +0 -255
  830. data/lib/fog/aws/requests/compute/describe_internet_gateways.rb +0 -59
  831. data/lib/fog/aws/requests/compute/describe_key_pairs.rb +0 -64
  832. data/lib/fog/aws/requests/compute/describe_network_acls.rb +0 -108
  833. data/lib/fog/aws/requests/compute/describe_network_interface_attribute.rb +0 -66
  834. data/lib/fog/aws/requests/compute/describe_network_interfaces.rb +0 -85
  835. data/lib/fog/aws/requests/compute/describe_placement_groups.rb +0 -33
  836. data/lib/fog/aws/requests/compute/describe_regions.rb +0 -64
  837. data/lib/fog/aws/requests/compute/describe_reserved_instances.rb +0 -59
  838. data/lib/fog/aws/requests/compute/describe_reserved_instances_offerings.rb +0 -80
  839. data/lib/fog/aws/requests/compute/describe_route_tables.rb +0 -86
  840. data/lib/fog/aws/requests/compute/describe_security_groups.rb +0 -98
  841. data/lib/fog/aws/requests/compute/describe_snapshots.rb +0 -120
  842. data/lib/fog/aws/requests/compute/describe_spot_datafeed_subscription.rb +0 -33
  843. data/lib/fog/aws/requests/compute/describe_spot_instance_requests.rb +0 -46
  844. data/lib/fog/aws/requests/compute/describe_spot_price_history.rb +0 -35
  845. data/lib/fog/aws/requests/compute/describe_subnets.rb +0 -71
  846. data/lib/fog/aws/requests/compute/describe_tags.rb +0 -104
  847. data/lib/fog/aws/requests/compute/describe_volume_status.rb +0 -43
  848. data/lib/fog/aws/requests/compute/describe_volumes.rb +0 -118
  849. data/lib/fog/aws/requests/compute/describe_vpc_attribute.rb +0 -55
  850. data/lib/fog/aws/requests/compute/describe_vpcs.rb +0 -74
  851. data/lib/fog/aws/requests/compute/detach_internet_gateway.rb +0 -52
  852. data/lib/fog/aws/requests/compute/detach_network_interface.rb +0 -48
  853. data/lib/fog/aws/requests/compute/detach_volume.rb +0 -61
  854. data/lib/fog/aws/requests/compute/disassociate_address.rb +0 -55
  855. data/lib/fog/aws/requests/compute/disassociate_route_table.rb +0 -54
  856. data/lib/fog/aws/requests/compute/get_console_output.rb +0 -50
  857. data/lib/fog/aws/requests/compute/get_password_data.rb +0 -52
  858. data/lib/fog/aws/requests/compute/import_key_pair.rb +0 -52
  859. data/lib/fog/aws/requests/compute/modify_image_attribute.rb +0 -70
  860. data/lib/fog/aws/requests/compute/modify_instance_attribute.rb +0 -42
  861. data/lib/fog/aws/requests/compute/modify_network_interface_attribute.rb +0 -89
  862. data/lib/fog/aws/requests/compute/modify_snapshot_attribute.rb +0 -35
  863. data/lib/fog/aws/requests/compute/modify_subnet_attribute.rb +0 -58
  864. data/lib/fog/aws/requests/compute/modify_volume_attribute.rb +0 -48
  865. data/lib/fog/aws/requests/compute/modify_vpc_attribute.rb +0 -66
  866. data/lib/fog/aws/requests/compute/monitor_instances.rb +0 -48
  867. data/lib/fog/aws/requests/compute/purchase_reserved_instances_offering.rb +0 -62
  868. data/lib/fog/aws/requests/compute/reboot_instances.rb +0 -50
  869. data/lib/fog/aws/requests/compute/register_image.rb +0 -133
  870. data/lib/fog/aws/requests/compute/release_address.rb +0 -59
  871. data/lib/fog/aws/requests/compute/replace_network_acl_association.rb +0 -66
  872. data/lib/fog/aws/requests/compute/replace_network_acl_entry.rb +0 -81
  873. data/lib/fog/aws/requests/compute/replace_route.rb +0 -80
  874. data/lib/fog/aws/requests/compute/request_spot_instances.rb +0 -96
  875. data/lib/fog/aws/requests/compute/reset_network_interface_attribute.rb +0 -56
  876. data/lib/fog/aws/requests/compute/revoke_security_group_ingress.rb +0 -98
  877. data/lib/fog/aws/requests/compute/run_instances.rb +0 -274
  878. data/lib/fog/aws/requests/compute/start_instances.rb +0 -58
  879. data/lib/fog/aws/requests/compute/stop_instances.rb +0 -59
  880. data/lib/fog/aws/requests/compute/terminate_instances.rb +0 -92
  881. data/lib/fog/aws/requests/compute/unmonitor_instances.rb +0 -48
  882. data/lib/fog/aws/requests/data_pipeline/activate_pipeline.rb +0 -31
  883. data/lib/fog/aws/requests/data_pipeline/create_pipeline.rb +0 -39
  884. data/lib/fog/aws/requests/data_pipeline/delete_pipeline.rb +0 -30
  885. data/lib/fog/aws/requests/data_pipeline/describe_objects.rb +0 -38
  886. data/lib/fog/aws/requests/data_pipeline/describe_pipelines.rb +0 -32
  887. data/lib/fog/aws/requests/data_pipeline/get_pipeline_definition.rb +0 -33
  888. data/lib/fog/aws/requests/data_pipeline/list_pipelines.rb +0 -32
  889. data/lib/fog/aws/requests/data_pipeline/put_pipeline_definition.rb +0 -76
  890. data/lib/fog/aws/requests/data_pipeline/query_objects.rb +0 -38
  891. data/lib/fog/aws/requests/dns/change_resource_record_sets.rb +0 -243
  892. data/lib/fog/aws/requests/dns/create_health_check.rb +0 -64
  893. data/lib/fog/aws/requests/dns/create_hosted_zone.rb +0 -108
  894. data/lib/fog/aws/requests/dns/delete_health_check.rb +0 -24
  895. data/lib/fog/aws/requests/dns/delete_hosted_zone.rb +0 -66
  896. data/lib/fog/aws/requests/dns/get_change.rb +0 -59
  897. data/lib/fog/aws/requests/dns/get_health_check.rb +0 -41
  898. data/lib/fog/aws/requests/dns/get_hosted_zone.rb +0 -61
  899. data/lib/fog/aws/requests/dns/list_health_checks.rb +0 -36
  900. data/lib/fog/aws/requests/dns/list_hosted_zones.rb +0 -88
  901. data/lib/fog/aws/requests/dns/list_resource_record_sets.rb +0 -130
  902. data/lib/fog/aws/requests/dynamodb/batch_get_item.rb +0 -41
  903. data/lib/fog/aws/requests/dynamodb/batch_write_item.rb +0 -33
  904. data/lib/fog/aws/requests/dynamodb/create_table.rb +0 -53
  905. data/lib/fog/aws/requests/dynamodb/delete_item.rb +0 -43
  906. data/lib/fog/aws/requests/dynamodb/delete_table.rb +0 -40
  907. data/lib/fog/aws/requests/dynamodb/describe_table.rb +0 -42
  908. data/lib/fog/aws/requests/dynamodb/get_item.rb +0 -41
  909. data/lib/fog/aws/requests/dynamodb/list_tables.rb +0 -27
  910. data/lib/fog/aws/requests/dynamodb/put_item.rb +0 -39
  911. data/lib/fog/aws/requests/dynamodb/query.rb +0 -42
  912. data/lib/fog/aws/requests/dynamodb/scan.rb +0 -43
  913. data/lib/fog/aws/requests/dynamodb/update_item.rb +0 -47
  914. data/lib/fog/aws/requests/dynamodb/update_table.rb +0 -44
  915. data/lib/fog/aws/requests/elasticache/authorize_cache_security_group_ingress.rb +0 -57
  916. data/lib/fog/aws/requests/elasticache/create_cache_cluster.rb +0 -94
  917. data/lib/fog/aws/requests/elasticache/create_cache_parameter_group.rb +0 -52
  918. data/lib/fog/aws/requests/elasticache/create_cache_security_group.rb +0 -51
  919. data/lib/fog/aws/requests/elasticache/create_cache_subnet_group.rb +0 -60
  920. data/lib/fog/aws/requests/elasticache/delete_cache_cluster.rb +0 -38
  921. data/lib/fog/aws/requests/elasticache/delete_cache_parameter_group.rb +0 -40
  922. data/lib/fog/aws/requests/elasticache/delete_cache_security_group.rb +0 -39
  923. data/lib/fog/aws/requests/elasticache/delete_cache_subnet_group.rb +0 -39
  924. data/lib/fog/aws/requests/elasticache/describe_cache_clusters.rb +0 -51
  925. data/lib/fog/aws/requests/elasticache/describe_cache_parameter_groups.rb +0 -47
  926. data/lib/fog/aws/requests/elasticache/describe_cache_parameters.rb +0 -34
  927. data/lib/fog/aws/requests/elasticache/describe_cache_security_groups.rb +0 -64
  928. data/lib/fog/aws/requests/elasticache/describe_cache_subnet_groups.rb +0 -59
  929. data/lib/fog/aws/requests/elasticache/describe_engine_default_parameters.rb +0 -33
  930. data/lib/fog/aws/requests/elasticache/describe_events.rb +0 -47
  931. data/lib/fog/aws/requests/elasticache/describe_reserved_cache_nodes.rb +0 -38
  932. data/lib/fog/aws/requests/elasticache/modify_cache_cluster.rb +0 -99
  933. data/lib/fog/aws/requests/elasticache/modify_cache_parameter_group.rb +0 -43
  934. data/lib/fog/aws/requests/elasticache/reboot_cache_cluster.rb +0 -49
  935. data/lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb +0 -44
  936. data/lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb +0 -35
  937. data/lib/fog/aws/requests/elb/add_tags.rb +0 -46
  938. data/lib/fog/aws/requests/elb/apply_security_groups_to_load_balancer.rb +0 -58
  939. data/lib/fog/aws/requests/elb/attach_load_balancer_to_subnets.rb +0 -58
  940. data/lib/fog/aws/requests/elb/configure_health_check.rb +0 -63
  941. data/lib/fog/aws/requests/elb/create_app_cookie_stickiness_policy.rb +0 -52
  942. data/lib/fog/aws/requests/elb/create_lb_cookie_stickiness_policy.rb +0 -54
  943. data/lib/fog/aws/requests/elb/create_load_balancer.rb +0 -206
  944. data/lib/fog/aws/requests/elb/create_load_balancer_listeners.rb +0 -86
  945. data/lib/fog/aws/requests/elb/create_load_balancer_policy.rb +0 -80
  946. data/lib/fog/aws/requests/elb/delete_load_balancer.rb +0 -49
  947. data/lib/fog/aws/requests/elb/delete_load_balancer_listeners.rb +0 -48
  948. data/lib/fog/aws/requests/elb/delete_load_balancer_policy.rb +0 -52
  949. data/lib/fog/aws/requests/elb/deregister_instances_from_load_balancer.rb +0 -61
  950. data/lib/fog/aws/requests/elb/describe_instance_health.rb +0 -70
  951. data/lib/fog/aws/requests/elb/describe_load_balancer_attributes.rb +0 -58
  952. data/lib/fog/aws/requests/elb/describe_load_balancer_policies.rb +0 -69
  953. data/lib/fog/aws/requests/elb/describe_load_balancer_policy_types.rb +0 -66
  954. data/lib/fog/aws/requests/elb/describe_load_balancers.rb +0 -137
  955. data/lib/fog/aws/requests/elb/describe_tags.rb +0 -56
  956. data/lib/fog/aws/requests/elb/detach_load_balancer_from_subnets.rb +0 -58
  957. data/lib/fog/aws/requests/elb/disable_availability_zones_for_load_balancer.rb +0 -57
  958. data/lib/fog/aws/requests/elb/enable_availability_zones_for_load_balancer.rb +0 -58
  959. data/lib/fog/aws/requests/elb/modify_load_balancer_attributes.rb +0 -65
  960. data/lib/fog/aws/requests/elb/register_instances_with_load_balancer.rb +0 -62
  961. data/lib/fog/aws/requests/elb/remove_tags.rb +0 -46
  962. data/lib/fog/aws/requests/elb/set_load_balancer_listener_ssl_certificate.rb +0 -65
  963. data/lib/fog/aws/requests/elb/set_load_balancer_policies_for_backend_server.rb +0 -66
  964. data/lib/fog/aws/requests/elb/set_load_balancer_policies_of_listener.rb +0 -78
  965. data/lib/fog/aws/requests/emr/add_instance_groups.rb +0 -42
  966. data/lib/fog/aws/requests/emr/add_job_flow_steps.rb +0 -45
  967. data/lib/fog/aws/requests/emr/describe_job_flows.rb +0 -104
  968. data/lib/fog/aws/requests/emr/modify_instance_groups.rb +0 -36
  969. data/lib/fog/aws/requests/emr/run_job_flow.rb +0 -104
  970. data/lib/fog/aws/requests/emr/set_termination_protection.rb +0 -35
  971. data/lib/fog/aws/requests/emr/terminate_job_flows.rb +0 -33
  972. data/lib/fog/aws/requests/glacier/abort_multipart_upload.rb +0 -33
  973. data/lib/fog/aws/requests/glacier/complete_multipart_upload.rb +0 -40
  974. data/lib/fog/aws/requests/glacier/create_archive.rb +0 -41
  975. data/lib/fog/aws/requests/glacier/create_vault.rb +0 -32
  976. data/lib/fog/aws/requests/glacier/delete_archive.rb +0 -33
  977. data/lib/fog/aws/requests/glacier/delete_vault.rb +0 -32
  978. data/lib/fog/aws/requests/glacier/delete_vault_notification_configuration.rb +0 -31
  979. data/lib/fog/aws/requests/glacier/describe_job.rb +0 -33
  980. data/lib/fog/aws/requests/glacier/describe_vault.rb +0 -32
  981. data/lib/fog/aws/requests/glacier/get_job_output.rb +0 -39
  982. data/lib/fog/aws/requests/glacier/get_vault_notification_configuration.rb +0 -32
  983. data/lib/fog/aws/requests/glacier/initiate_job.rb +0 -39
  984. data/lib/fog/aws/requests/glacier/initiate_multipart_upload.rb +0 -36
  985. data/lib/fog/aws/requests/glacier/list_jobs.rb +0 -36
  986. data/lib/fog/aws/requests/glacier/list_multipart_uploads.rb +0 -34
  987. data/lib/fog/aws/requests/glacier/list_parts.rb +0 -35
  988. data/lib/fog/aws/requests/glacier/list_vaults.rb +0 -34
  989. data/lib/fog/aws/requests/glacier/set_vault_notification_configuration.rb +0 -35
  990. data/lib/fog/aws/requests/glacier/upload_part.rb +0 -44
  991. data/lib/fog/aws/requests/iam/add_role_to_instance_profile.rb +0 -32
  992. data/lib/fog/aws/requests/iam/add_user_to_group.rb +0 -54
  993. data/lib/fog/aws/requests/iam/create_access_key.rb +0 -66
  994. data/lib/fog/aws/requests/iam/create_account_alias.rb +0 -17
  995. data/lib/fog/aws/requests/iam/create_group.rb +0 -56
  996. data/lib/fog/aws/requests/iam/create_instance_profile.rb +0 -45
  997. data/lib/fog/aws/requests/iam/create_login_profile.rb +0 -34
  998. data/lib/fog/aws/requests/iam/create_role.rb +0 -55
  999. data/lib/fog/aws/requests/iam/create_user.rb +0 -59
  1000. data/lib/fog/aws/requests/iam/delete_access_key.rb +0 -47
  1001. data/lib/fog/aws/requests/iam/delete_account_alias.rb +0 -17
  1002. data/lib/fog/aws/requests/iam/delete_account_password_policy.rb +0 -36
  1003. data/lib/fog/aws/requests/iam/delete_group.rb +0 -48
  1004. data/lib/fog/aws/requests/iam/delete_group_policy.rb +0 -32
  1005. data/lib/fog/aws/requests/iam/delete_instance_profile.rb +0 -30
  1006. data/lib/fog/aws/requests/iam/delete_login_profile.rb +0 -29
  1007. data/lib/fog/aws/requests/iam/delete_role.rb +0 -30
  1008. data/lib/fog/aws/requests/iam/delete_role_policy.rb +0 -32
  1009. data/lib/fog/aws/requests/iam/delete_server_certificate.rb +0 -46
  1010. data/lib/fog/aws/requests/iam/delete_signing_certificate.rb +0 -31
  1011. data/lib/fog/aws/requests/iam/delete_user.rb +0 -44
  1012. data/lib/fog/aws/requests/iam/delete_user_policy.rb +0 -46
  1013. data/lib/fog/aws/requests/iam/get_account_password_policy.rb +0 -36
  1014. data/lib/fog/aws/requests/iam/get_account_summary.rb +0 -75
  1015. data/lib/fog/aws/requests/iam/get_group.rb +0 -60
  1016. data/lib/fog/aws/requests/iam/get_group_policy.rb +0 -51
  1017. data/lib/fog/aws/requests/iam/get_instance_profile.rb +0 -40
  1018. data/lib/fog/aws/requests/iam/get_login_profile.rb +0 -33
  1019. data/lib/fog/aws/requests/iam/get_role.rb +0 -36
  1020. data/lib/fog/aws/requests/iam/get_role_policy.rb +0 -34
  1021. data/lib/fog/aws/requests/iam/get_server_certificate.rb +0 -45
  1022. data/lib/fog/aws/requests/iam/get_user.rb +0 -55
  1023. data/lib/fog/aws/requests/iam/get_user_policy.rb +0 -51
  1024. data/lib/fog/aws/requests/iam/list_access_keys.rb +0 -62
  1025. data/lib/fog/aws/requests/iam/list_account_aliases.rb +0 -16
  1026. data/lib/fog/aws/requests/iam/list_group_policies.rb +0 -37
  1027. data/lib/fog/aws/requests/iam/list_groups.rb +0 -57
  1028. data/lib/fog/aws/requests/iam/list_groups_for_user.rb +0 -65
  1029. data/lib/fog/aws/requests/iam/list_instance_profiles.rb +0 -48
  1030. data/lib/fog/aws/requests/iam/list_instance_profiles_for_role.rb +0 -49
  1031. data/lib/fog/aws/requests/iam/list_mfa_devices.rb +0 -55
  1032. data/lib/fog/aws/requests/iam/list_role_policies.rb +0 -37
  1033. data/lib/fog/aws/requests/iam/list_roles.rb +0 -41
  1034. data/lib/fog/aws/requests/iam/list_server_certificates.rb +0 -54
  1035. data/lib/fog/aws/requests/iam/list_signing_certificates.rb +0 -36
  1036. data/lib/fog/aws/requests/iam/list_user_policies.rb +0 -53
  1037. data/lib/fog/aws/requests/iam/list_users.rb +0 -58
  1038. data/lib/fog/aws/requests/iam/put_group_policy.rb +0 -50
  1039. data/lib/fog/aws/requests/iam/put_role_policy.rb +0 -34
  1040. data/lib/fog/aws/requests/iam/put_user_policy.rb +0 -51
  1041. data/lib/fog/aws/requests/iam/remove_role_from_instance_profile.rb +0 -33
  1042. data/lib/fog/aws/requests/iam/remove_user_from_group.rb +0 -50
  1043. data/lib/fog/aws/requests/iam/update_access_key.rb +0 -55
  1044. data/lib/fog/aws/requests/iam/update_account_password_policy.rb +0 -56
  1045. data/lib/fog/aws/requests/iam/update_group.rb +0 -37
  1046. data/lib/fog/aws/requests/iam/update_login_profile.rb +0 -31
  1047. data/lib/fog/aws/requests/iam/update_server_certificate.rb +0 -63
  1048. data/lib/fog/aws/requests/iam/update_signing_certificate.rb +0 -31
  1049. data/lib/fog/aws/requests/iam/update_user.rb +0 -37
  1050. data/lib/fog/aws/requests/iam/upload_server_certificate.rb +0 -95
  1051. data/lib/fog/aws/requests/iam/upload_signing_certificate.rb +0 -36
  1052. data/lib/fog/aws/requests/rds/add_tags_to_resource.rb +0 -42
  1053. data/lib/fog/aws/requests/rds/authorize_db_security_group_ingress.rb +0 -65
  1054. data/lib/fog/aws/requests/rds/create_db_instance.rb +0 -130
  1055. data/lib/fog/aws/requests/rds/create_db_instance_read_replica.rb +0 -77
  1056. data/lib/fog/aws/requests/rds/create_db_parameter_group.rb +0 -53
  1057. data/lib/fog/aws/requests/rds/create_db_security_group.rb +0 -49
  1058. data/lib/fog/aws/requests/rds/create_db_snapshot.rb +0 -68
  1059. data/lib/fog/aws/requests/rds/create_db_subnet_group.rb +0 -61
  1060. data/lib/fog/aws/requests/rds/delete_db_instance.rb +0 -51
  1061. data/lib/fog/aws/requests/rds/delete_db_parameter_group.rb +0 -41
  1062. data/lib/fog/aws/requests/rds/delete_db_security_group.rb +0 -40
  1063. data/lib/fog/aws/requests/rds/delete_db_snapshot.rb +0 -42
  1064. data/lib/fog/aws/requests/rds/delete_db_subnet_group.rb +0 -38
  1065. data/lib/fog/aws/requests/rds/describe_db_engine_versions.rb +0 -30
  1066. data/lib/fog/aws/requests/rds/describe_db_instances.rb +0 -89
  1067. data/lib/fog/aws/requests/rds/describe_db_log_files.rb +0 -64
  1068. data/lib/fog/aws/requests/rds/describe_db_parameter_groups.rb +0 -58
  1069. data/lib/fog/aws/requests/rds/describe_db_parameters.rb +0 -42
  1070. data/lib/fog/aws/requests/rds/describe_db_reserved_instances.rb +0 -38
  1071. data/lib/fog/aws/requests/rds/describe_db_security_groups.rb +0 -80
  1072. data/lib/fog/aws/requests/rds/describe_db_snapshots.rb +0 -66
  1073. data/lib/fog/aws/requests/rds/describe_db_subnet_groups.rb +0 -59
  1074. data/lib/fog/aws/requests/rds/describe_events.rb +0 -50
  1075. data/lib/fog/aws/requests/rds/describe_orderable_db_instance_options.rb +0 -72
  1076. data/lib/fog/aws/requests/rds/download_db_logfile_portion.rb +0 -58
  1077. data/lib/fog/aws/requests/rds/list_tags_for_resource.rb +0 -40
  1078. data/lib/fog/aws/requests/rds/modify_db_instance.rb +0 -81
  1079. data/lib/fog/aws/requests/rds/modify_db_parameter_group.rb +0 -50
  1080. data/lib/fog/aws/requests/rds/promote_read_replica.rb +0 -59
  1081. data/lib/fog/aws/requests/rds/reboot_db_instance.rb +0 -47
  1082. data/lib/fog/aws/requests/rds/remove_tags_from_resource.rb +0 -40
  1083. data/lib/fog/aws/requests/rds/restore_db_instance_from_db_snapshot.rb +0 -29
  1084. data/lib/fog/aws/requests/rds/restore_db_instance_to_point_in_time.rb +0 -29
  1085. data/lib/fog/aws/requests/rds/revoke_db_security_group_ingress.rb +0 -63
  1086. data/lib/fog/aws/requests/redshift/authorize_cluster_security_group_ingress.rb +0 -54
  1087. data/lib/fog/aws/requests/redshift/authorize_snapshot_access.rb +0 -42
  1088. data/lib/fog/aws/requests/redshift/copy_cluster_snapshot.rb +0 -46
  1089. data/lib/fog/aws/requests/redshift/create_cluster.rb +0 -148
  1090. data/lib/fog/aws/requests/redshift/create_cluster_parameter_group.rb +0 -53
  1091. data/lib/fog/aws/requests/redshift/create_cluster_security_group.rb +0 -41
  1092. data/lib/fog/aws/requests/redshift/create_cluster_snapshot.rb +0 -43
  1093. data/lib/fog/aws/requests/redshift/create_cluster_subnet_group.rb +0 -49
  1094. data/lib/fog/aws/requests/redshift/delete_cluster.rb +0 -50
  1095. data/lib/fog/aws/requests/redshift/delete_cluster_parameter_group.rb +0 -33
  1096. data/lib/fog/aws/requests/redshift/delete_cluster_security_group.rb +0 -32
  1097. data/lib/fog/aws/requests/redshift/delete_cluster_snapshot.rb +0 -43
  1098. data/lib/fog/aws/requests/redshift/delete_cluster_subnet_group.rb +0 -36
  1099. data/lib/fog/aws/requests/redshift/describe_cluster_parameter_groups.rb +0 -47
  1100. data/lib/fog/aws/requests/redshift/describe_cluster_parameters.rb +0 -54
  1101. data/lib/fog/aws/requests/redshift/describe_cluster_security_groups.rb +0 -49
  1102. data/lib/fog/aws/requests/redshift/describe_cluster_snapshots.rb +0 -72
  1103. data/lib/fog/aws/requests/redshift/describe_cluster_subnet_groups.rb +0 -46
  1104. data/lib/fog/aws/requests/redshift/describe_cluster_versions.rb +0 -53
  1105. data/lib/fog/aws/requests/redshift/describe_clusters.rb +0 -49
  1106. data/lib/fog/aws/requests/redshift/describe_default_cluster_parameters.rb +0 -48
  1107. data/lib/fog/aws/requests/redshift/describe_events.rb +0 -79
  1108. data/lib/fog/aws/requests/redshift/describe_orderable_cluster_options.rb +0 -54
  1109. data/lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb +0 -47
  1110. data/lib/fog/aws/requests/redshift/describe_reserved_nodes.rb +0 -47
  1111. data/lib/fog/aws/requests/redshift/describe_resize.rb +0 -38
  1112. data/lib/fog/aws/requests/redshift/modify_cluster.rb +0 -109
  1113. data/lib/fog/aws/requests/redshift/modify_cluster_parameter_group.rb +0 -44
  1114. data/lib/fog/aws/requests/redshift/modify_cluster_subnet_group.rb +0 -49
  1115. data/lib/fog/aws/requests/redshift/purchase_reserved_node_offering.rb +0 -39
  1116. data/lib/fog/aws/requests/redshift/reboot_cluster.rb +0 -36
  1117. data/lib/fog/aws/requests/redshift/reset_cluster_parameter_group.rb +0 -55
  1118. data/lib/fog/aws/requests/redshift/restore_from_cluster_snapshot.rb +0 -76
  1119. data/lib/fog/aws/requests/redshift/revoke_cluster_security_group_ingress.rb +0 -54
  1120. data/lib/fog/aws/requests/redshift/revoke_snapshot_access.rb +0 -43
  1121. data/lib/fog/aws/requests/ses/delete_verified_email_address.rb +0 -26
  1122. data/lib/fog/aws/requests/ses/get_send_quota.rb +0 -29
  1123. data/lib/fog/aws/requests/ses/get_send_statistics.rb +0 -32
  1124. data/lib/fog/aws/requests/ses/list_verified_email_addresses.rb +0 -26
  1125. data/lib/fog/aws/requests/ses/send_email.rb +0 -71
  1126. data/lib/fog/aws/requests/ses/send_raw_email.rb +0 -39
  1127. data/lib/fog/aws/requests/ses/verify_domain_identity.rb +0 -28
  1128. data/lib/fog/aws/requests/ses/verify_email_address.rb +0 -26
  1129. data/lib/fog/aws/requests/simpledb/batch_put_attributes.rb +0 -60
  1130. data/lib/fog/aws/requests/simpledb/create_domain.rb +0 -40
  1131. data/lib/fog/aws/requests/simpledb/delete_attributes.rb +0 -69
  1132. data/lib/fog/aws/requests/simpledb/delete_domain.rb +0 -41
  1133. data/lib/fog/aws/requests/simpledb/domain_metadata.rb +0 -72
  1134. data/lib/fog/aws/requests/simpledb/get_attributes.rb +0 -80
  1135. data/lib/fog/aws/requests/simpledb/list_domains.rb +0 -55
  1136. data/lib/fog/aws/requests/simpledb/put_attributes.rb +0 -74
  1137. data/lib/fog/aws/requests/simpledb/select.rb +0 -41
  1138. data/lib/fog/aws/requests/sns/add_permission.rb +0 -22
  1139. data/lib/fog/aws/requests/sns/confirm_subscription.rb +0 -30
  1140. data/lib/fog/aws/requests/sns/create_topic.rb +0 -26
  1141. data/lib/fog/aws/requests/sns/delete_topic.rb +0 -26
  1142. data/lib/fog/aws/requests/sns/get_topic_attributes.rb +0 -26
  1143. data/lib/fog/aws/requests/sns/list_subscriptions.rb +0 -26
  1144. data/lib/fog/aws/requests/sns/list_subscriptions_by_topic.rb +0 -28
  1145. data/lib/fog/aws/requests/sns/list_topics.rb +0 -26
  1146. data/lib/fog/aws/requests/sns/publish.rb +0 -31
  1147. data/lib/fog/aws/requests/sns/remove_permission.rb +0 -22
  1148. data/lib/fog/aws/requests/sns/set_topic_attributes.rb +0 -30
  1149. data/lib/fog/aws/requests/sns/subscribe.rb +0 -30
  1150. data/lib/fog/aws/requests/sns/unsubscribe.rb +0 -26
  1151. data/lib/fog/aws/requests/sqs/change_message_visibility.rb +0 -58
  1152. data/lib/fog/aws/requests/sqs/create_queue.rb +0 -62
  1153. data/lib/fog/aws/requests/sqs/delete_message.rb +0 -56
  1154. data/lib/fog/aws/requests/sqs/delete_queue.rb +0 -47
  1155. data/lib/fog/aws/requests/sqs/get_queue_attributes.rb +0 -48
  1156. data/lib/fog/aws/requests/sqs/list_queues.rb +0 -41
  1157. data/lib/fog/aws/requests/sqs/receive_message.rb +0 -83
  1158. data/lib/fog/aws/requests/sqs/send_message.rb +0 -65
  1159. data/lib/fog/aws/requests/sqs/set_queue_attributes.rb +0 -49
  1160. data/lib/fog/aws/requests/storage/abort_multipart_upload.rb +0 -45
  1161. data/lib/fog/aws/requests/storage/acl_utils.rb +0 -60
  1162. data/lib/fog/aws/requests/storage/complete_multipart_upload.rb +0 -73
  1163. data/lib/fog/aws/requests/storage/copy_object.rb +0 -77
  1164. data/lib/fog/aws/requests/storage/cors_utils.rb +0 -39
  1165. data/lib/fog/aws/requests/storage/delete_bucket.rb +0 -42
  1166. data/lib/fog/aws/requests/storage/delete_bucket_cors.rb +0 -26
  1167. data/lib/fog/aws/requests/storage/delete_bucket_lifecycle.rb +0 -26
  1168. data/lib/fog/aws/requests/storage/delete_bucket_policy.rb +0 -26
  1169. data/lib/fog/aws/requests/storage/delete_bucket_tagging.rb +0 -41
  1170. data/lib/fog/aws/requests/storage/delete_bucket_website.rb +0 -26
  1171. data/lib/fog/aws/requests/storage/delete_multiple_objects.rb +0 -164
  1172. data/lib/fog/aws/requests/storage/delete_object.rb +0 -115
  1173. data/lib/fog/aws/requests/storage/get_bucket.rb +0 -108
  1174. data/lib/fog/aws/requests/storage/get_bucket_acl.rb +0 -65
  1175. data/lib/fog/aws/requests/storage/get_bucket_cors.rb +0 -61
  1176. data/lib/fog/aws/requests/storage/get_bucket_lifecycle.rb +0 -35
  1177. data/lib/fog/aws/requests/storage/get_bucket_location.rb +0 -54
  1178. data/lib/fog/aws/requests/storage/get_bucket_logging.rb +0 -45
  1179. data/lib/fog/aws/requests/storage/get_bucket_object_versions.rb +0 -160
  1180. data/lib/fog/aws/requests/storage/get_bucket_policy.rb +0 -31
  1181. data/lib/fog/aws/requests/storage/get_bucket_tagging.rb +0 -49
  1182. data/lib/fog/aws/requests/storage/get_bucket_versioning.rb +0 -68
  1183. data/lib/fog/aws/requests/storage/get_bucket_website.rb +0 -38
  1184. data/lib/fog/aws/requests/storage/get_object.rb +0 -189
  1185. data/lib/fog/aws/requests/storage/get_object_acl.rb +0 -76
  1186. data/lib/fog/aws/requests/storage/get_object_http_url.rb +0 -30
  1187. data/lib/fog/aws/requests/storage/get_object_https_url.rb +0 -30
  1188. data/lib/fog/aws/requests/storage/get_object_torrent.rb +0 -45
  1189. data/lib/fog/aws/requests/storage/get_object_url.rb +0 -40
  1190. data/lib/fog/aws/requests/storage/get_request_payment.rb +0 -45
  1191. data/lib/fog/aws/requests/storage/get_service.rb +0 -50
  1192. data/lib/fog/aws/requests/storage/head_bucket.rb +0 -38
  1193. data/lib/fog/aws/requests/storage/head_object.rb +0 -62
  1194. data/lib/fog/aws/requests/storage/initiate_multipart_upload.rb +0 -66
  1195. data/lib/fog/aws/requests/storage/list_multipart_uploads.rb +0 -52
  1196. data/lib/fog/aws/requests/storage/list_parts.rb +0 -53
  1197. data/lib/fog/aws/requests/storage/post_object_hidden_fields.rb +0 -54
  1198. data/lib/fog/aws/requests/storage/post_object_restore.rb +0 -50
  1199. data/lib/fog/aws/requests/storage/put_bucket.rb +0 -73
  1200. data/lib/fog/aws/requests/storage/put_bucket_acl.rb +0 -69
  1201. data/lib/fog/aws/requests/storage/put_bucket_cors.rb +0 -47
  1202. data/lib/fog/aws/requests/storage/put_bucket_lifecycle.rb +0 -76
  1203. data/lib/fog/aws/requests/storage/put_bucket_logging.rb +0 -80
  1204. data/lib/fog/aws/requests/storage/put_bucket_policy.rb +0 -25
  1205. data/lib/fog/aws/requests/storage/put_bucket_tagging.rb +0 -55
  1206. data/lib/fog/aws/requests/storage/put_bucket_versioning.rb +0 -74
  1207. data/lib/fog/aws/requests/storage/put_bucket_website.rb +0 -87
  1208. data/lib/fog/aws/requests/storage/put_object.rb +0 -73
  1209. data/lib/fog/aws/requests/storage/put_object_acl.rb +0 -78
  1210. data/lib/fog/aws/requests/storage/put_object_url.rb +0 -41
  1211. data/lib/fog/aws/requests/storage/put_request_payment.rb +0 -45
  1212. data/lib/fog/aws/requests/storage/shared_mock_methods.rb +0 -87
  1213. data/lib/fog/aws/requests/storage/sync_clock.rb +0 -24
  1214. data/lib/fog/aws/requests/storage/upload_part.rb +0 -57
  1215. data/lib/fog/aws/requests/sts/assume_role.rb +0 -44
  1216. data/lib/fog/aws/requests/sts/assume_role_with_saml.rb +0 -44
  1217. data/lib/fog/aws/requests/sts/get_federation_token.rb +0 -62
  1218. data/lib/fog/aws/requests/sts/get_session_token.rb +0 -18
  1219. data/lib/fog/aws/ses.rb +0 -141
  1220. data/lib/fog/aws/signaturev4.rb +0 -119
  1221. data/lib/fog/aws/simpledb.rb +0 -211
  1222. data/lib/fog/aws/sns.rb +0 -125
  1223. data/lib/fog/aws/sqs.rb +0 -164
  1224. data/lib/fog/aws/storage.rb +0 -687
  1225. data/lib/fog/aws/sts.rb +0 -185
  1226. data/lib/fog/bin/serverlove.rb +0 -29
  1227. data/lib/fog/rackspace/docs/networking.md +0 -315
  1228. data/lib/fog/serverlove.rb +0 -1
  1229. data/lib/fog/serverlove/compute.rb +0 -96
  1230. data/lib/fog/serverlove/core.rb +0 -10
  1231. data/lib/fog/serverlove/models/compute/image.rb +0 -54
  1232. data/lib/fog/serverlove/models/compute/images.rb +0 -22
  1233. data/lib/fog/serverlove/models/compute/server.rb +0 -70
  1234. data/lib/fog/serverlove/models/compute/servers.rb +0 -22
  1235. data/lib/fog/serverlove/requests/compute/create_image.rb +0 -28
  1236. data/lib/fog/serverlove/requests/compute/create_server.rb +0 -30
  1237. data/lib/fog/serverlove/requests/compute/destroy_image.rb +0 -11
  1238. data/lib/fog/serverlove/requests/compute/destroy_server.rb +0 -11
  1239. data/lib/fog/serverlove/requests/compute/get_image.rb +0 -11
  1240. data/lib/fog/serverlove/requests/compute/get_images.rb +0 -11
  1241. data/lib/fog/serverlove/requests/compute/get_server.rb +0 -11
  1242. data/lib/fog/serverlove/requests/compute/get_servers.rb +0 -11
  1243. data/lib/fog/serverlove/requests/compute/load_standard_image.rb +0 -11
  1244. data/lib/fog/serverlove/requests/compute/reset_server.rb +0 -11
  1245. data/lib/fog/serverlove/requests/compute/shutdown_server.rb +0 -11
  1246. data/lib/fog/serverlove/requests/compute/start_server.rb +0 -11
  1247. data/lib/fog/serverlove/requests/compute/stop_server.rb +0 -11
  1248. data/lib/fog/serverlove/requests/compute/update_image.rb +0 -13
  1249. data/lib/fog/serverlove/requests/compute/update_server.rb +0 -13
  1250. data/lib/fog/serverlove/util/compute/password_generator.rb +0 -11
  1251. data/tests/aws/credentials_tests.rb +0 -55
  1252. data/tests/aws/models/auto_scaling/activities_tests.rb +0 -6
  1253. data/tests/aws/models/auto_scaling/configuration_test.rb +0 -13
  1254. data/tests/aws/models/auto_scaling/configurations_tests.rb +0 -11
  1255. data/tests/aws/models/auto_scaling/groups_test.rb +0 -27
  1256. data/tests/aws/models/auto_scaling/helper.rb +0 -0
  1257. data/tests/aws/models/auto_scaling/instance_tests.rb +0 -15
  1258. data/tests/aws/models/auto_scaling/instances_tests.rb +0 -6
  1259. data/tests/aws/models/beanstalk/application_tests.rb +0 -69
  1260. data/tests/aws/models/beanstalk/applications_tests.rb +0 -7
  1261. data/tests/aws/models/beanstalk/environment_tests.rb +0 -131
  1262. data/tests/aws/models/beanstalk/environments_tests.rb +0 -34
  1263. data/tests/aws/models/beanstalk/template_tests.rb +0 -47
  1264. data/tests/aws/models/beanstalk/templates_tests.rb +0 -62
  1265. data/tests/aws/models/beanstalk/version_tests.rb +0 -66
  1266. data/tests/aws/models/beanstalk/versions_tests.rb +0 -60
  1267. data/tests/aws/models/cdn/distribution_tests.rb +0 -15
  1268. data/tests/aws/models/cdn/distributions_tests.rb +0 -15
  1269. data/tests/aws/models/cdn/invalidation_tests.rb +0 -31
  1270. data/tests/aws/models/cdn/invalidations_tests.rb +0 -14
  1271. data/tests/aws/models/cdn/streaming_distribution_tests.rb +0 -15
  1272. data/tests/aws/models/cdn/streaming_distributions_tests.rb +0 -15
  1273. data/tests/aws/models/cloud_watch/alarm_data_tests.rb +0 -42
  1274. data/tests/aws/models/cloud_watch/alarm_history_tests.rb +0 -22
  1275. data/tests/aws/models/cloud_watch/metric_statistics_tests.rb +0 -51
  1276. data/tests/aws/models/cloud_watch/metrics_tests.rb +0 -32
  1277. data/tests/aws/models/compute/address_tests.rb +0 -24
  1278. data/tests/aws/models/compute/addresses_tests.rb +0 -5
  1279. data/tests/aws/models/compute/dhcp_option_tests.rb +0 -3
  1280. data/tests/aws/models/compute/dhcp_options_tests.rb +0 -3
  1281. data/tests/aws/models/compute/internet_gateway_tests.rb +0 -3
  1282. data/tests/aws/models/compute/internet_gateways_tests.rb +0 -3
  1283. data/tests/aws/models/compute/key_pair_tests.rb +0 -26
  1284. data/tests/aws/models/compute/key_pairs_tests.rb +0 -5
  1285. data/tests/aws/models/compute/network_acl_tests.rb +0 -109
  1286. data/tests/aws/models/compute/network_acls_tests.rb +0 -20
  1287. data/tests/aws/models/compute/network_interfaces_test.rb +0 -12
  1288. data/tests/aws/models/compute/security_group_tests.rb +0 -64
  1289. data/tests/aws/models/compute/security_groups_tests.rb +0 -5
  1290. data/tests/aws/models/compute/server_tests.rb +0 -83
  1291. data/tests/aws/models/compute/snapshot_tests.rb +0 -10
  1292. data/tests/aws/models/compute/snapshots_tests.rb +0 -10
  1293. data/tests/aws/models/compute/subnet_tests.rb +0 -5
  1294. data/tests/aws/models/compute/subnets_tests.rb +0 -5
  1295. data/tests/aws/models/compute/volume_tests.rb +0 -43
  1296. data/tests/aws/models/compute/volumes_tests.rb +0 -5
  1297. data/tests/aws/models/compute/vpc_tests.rb +0 -4
  1298. data/tests/aws/models/compute/vpcs_tests.rb +0 -19
  1299. data/tests/aws/models/data_pipeline/pipeline_tests.rb +0 -8
  1300. data/tests/aws/models/data_pipeline/pipelines_tests.rb +0 -8
  1301. data/tests/aws/models/dns/record_tests.rb +0 -33
  1302. data/tests/aws/models/dns/records_tests.rb +0 -41
  1303. data/tests/aws/models/dns/zone_tests.rb +0 -4
  1304. data/tests/aws/models/dns/zones_tests.rb +0 -4
  1305. data/tests/aws/models/elasticache/cluster_tests.rb +0 -30
  1306. data/tests/aws/models/elasticache/parameter_groups_tests.rb +0 -15
  1307. data/tests/aws/models/elasticache/security_groups_tests.rb +0 -52
  1308. data/tests/aws/models/elasticache/subnet_groups_tests.rb +0 -44
  1309. data/tests/aws/models/elb/model_tests.rb +0 -362
  1310. data/tests/aws/models/elb/tagging_tests.rb +0 -15
  1311. data/tests/aws/models/glacier/model_tests.rb +0 -47
  1312. data/tests/aws/models/iam/access_keys_tests.rb +0 -53
  1313. data/tests/aws/models/iam/policies_tests.rb +0 -57
  1314. data/tests/aws/models/iam/roles_tests.rb +0 -63
  1315. data/tests/aws/models/iam/users_tests.rb +0 -71
  1316. data/tests/aws/models/rds/helper.rb +0 -5
  1317. data/tests/aws/models/rds/instance_option_tests.rb +0 -14
  1318. data/tests/aws/models/rds/parameter_group_tests.rb +0 -24
  1319. data/tests/aws/models/rds/parameter_groups_tests.rb +0 -8
  1320. data/tests/aws/models/rds/security_group_tests.rb +0 -53
  1321. data/tests/aws/models/rds/security_groups_tests.rb +0 -5
  1322. data/tests/aws/models/rds/server_tests.rb +0 -110
  1323. data/tests/aws/models/rds/servers_tests.rb +0 -6
  1324. data/tests/aws/models/rds/snapshot_tests.rb +0 -12
  1325. data/tests/aws/models/rds/snapshots_tests.rb +0 -12
  1326. data/tests/aws/models/rds/tagging_tests.rb +0 -20
  1327. data/tests/aws/models/storage/directory_tests.rb +0 -87
  1328. data/tests/aws/models/storage/file_tests.rb +0 -92
  1329. data/tests/aws/models/storage/files_tests.rb +0 -58
  1330. data/tests/aws/models/storage/url_tests.rb +0 -26
  1331. data/tests/aws/models/storage/version_tests.rb +0 -52
  1332. data/tests/aws/models/storage/versions_tests.rb +0 -56
  1333. data/tests/aws/parsers/elb/describe_load_balancers.rb +0 -65
  1334. data/tests/aws/requests/auto_scaling/auto_scaling_tests.rb +0 -77
  1335. data/tests/aws/requests/auto_scaling/describe_types_tests.rb +0 -102
  1336. data/tests/aws/requests/auto_scaling/helper.rb +0 -228
  1337. data/tests/aws/requests/auto_scaling/model_tests.rb +0 -233
  1338. data/tests/aws/requests/auto_scaling/notification_configuration_tests.rb +0 -124
  1339. data/tests/aws/requests/auto_scaling/tag_tests.rb +0 -63
  1340. data/tests/aws/requests/beanstalk/application_tests.rb +0 -140
  1341. data/tests/aws/requests/beanstalk/solution_stack_tests.rb +0 -22
  1342. data/tests/aws/requests/cdn/cdn_tests.rb +0 -252
  1343. data/tests/aws/requests/cloud_formation/stack_tests.rb +0 -167
  1344. data/tests/aws/requests/cloud_watch/get_metric_statistics_tests.rb +0 -28
  1345. data/tests/aws/requests/cloud_watch/list_metrics_test.rb +0 -64
  1346. data/tests/aws/requests/cloud_watch/put_metric_data_tests.rb +0 -36
  1347. data/tests/aws/requests/compute/address_tests.rb +0 -108
  1348. data/tests/aws/requests/compute/assign_private_ip_tests.rb +0 -55
  1349. data/tests/aws/requests/compute/availability_zone_tests.rb +0 -25
  1350. data/tests/aws/requests/compute/client_tests.rb +0 -25
  1351. data/tests/aws/requests/compute/dhcp_options_tests.rb +0 -39
  1352. data/tests/aws/requests/compute/helper.rb +0 -10
  1353. data/tests/aws/requests/compute/image_tests.rb +0 -158
  1354. data/tests/aws/requests/compute/instance_tests.rb +0 -297
  1355. data/tests/aws/requests/compute/internet_gateway_tests.rb +0 -49
  1356. data/tests/aws/requests/compute/key_pair_tests.rb +0 -67
  1357. data/tests/aws/requests/compute/network_acl_tests.rb +0 -112
  1358. data/tests/aws/requests/compute/network_interface_tests.rb +0 -250
  1359. data/tests/aws/requests/compute/placement_group_tests.rb +0 -48
  1360. data/tests/aws/requests/compute/region_tests.rb +0 -52
  1361. data/tests/aws/requests/compute/route_tests.rb +0 -339
  1362. data/tests/aws/requests/compute/security_group_tests.rb +0 -437
  1363. data/tests/aws/requests/compute/snapshot_tests.rb +0 -77
  1364. data/tests/aws/requests/compute/spot_datafeed_subscription_tests.rb +0 -47
  1365. data/tests/aws/requests/compute/spot_instance_tests.rb +0 -57
  1366. data/tests/aws/requests/compute/spot_price_history_tests.rb +0 -24
  1367. data/tests/aws/requests/compute/subnet_tests.rb +0 -85
  1368. data/tests/aws/requests/compute/tag_tests.rb +0 -101
  1369. data/tests/aws/requests/compute/volume_tests.rb +0 -206
  1370. data/tests/aws/requests/compute/vpc_tests.rb +0 -111
  1371. data/tests/aws/requests/data_pipeline/helper.rb +0 -72
  1372. data/tests/aws/requests/data_pipeline/pipeline_tests.rb +0 -78
  1373. data/tests/aws/requests/dns/dns_tests.rb +0 -257
  1374. data/tests/aws/requests/dns/health_check_tests.rb +0 -159
  1375. data/tests/aws/requests/dns/helper.rb +0 -21
  1376. data/tests/aws/requests/dynamodb/item_tests.rb +0 -137
  1377. data/tests/aws/requests/dynamodb/table_tests.rb +0 -99
  1378. data/tests/aws/requests/elasticache/cache_cluster_tests.rb +0 -137
  1379. data/tests/aws/requests/elasticache/describe_events.rb +0 -17
  1380. data/tests/aws/requests/elasticache/describe_reserved_cache_nodes.rb +0 -17
  1381. data/tests/aws/requests/elasticache/helper.rb +0 -103
  1382. data/tests/aws/requests/elasticache/parameter_group_tests.rb +0 -105
  1383. data/tests/aws/requests/elasticache/security_group_tests.rb +0 -108
  1384. data/tests/aws/requests/elasticache/subnet_group_tests.rb +0 -52
  1385. data/tests/aws/requests/elb/helper.rb +0 -91
  1386. data/tests/aws/requests/elb/listener_tests.rb +0 -68
  1387. data/tests/aws/requests/elb/load_balancer_tests.rb +0 -89
  1388. data/tests/aws/requests/elb/policy_tests.rb +0 -132
  1389. data/tests/aws/requests/emr/helper.rb +0 -168
  1390. data/tests/aws/requests/emr/instance_group_tests.rb +0 -106
  1391. data/tests/aws/requests/emr/job_flow_tests.rb +0 -88
  1392. data/tests/aws/requests/glacier/archive_tests.rb +0 -13
  1393. data/tests/aws/requests/glacier/multipart_upload_tests.rb +0 -29
  1394. data/tests/aws/requests/glacier/tree_hash_tests.rb +0 -62
  1395. data/tests/aws/requests/glacier/vault_tests.rb +0 -35
  1396. data/tests/aws/requests/iam/access_key_tests.rb +0 -53
  1397. data/tests/aws/requests/iam/account_policy_tests.rb +0 -20
  1398. data/tests/aws/requests/iam/account_tests.rb +0 -34
  1399. data/tests/aws/requests/iam/group_policy_tests.rb +0 -48
  1400. data/tests/aws/requests/iam/group_tests.rb +0 -44
  1401. data/tests/aws/requests/iam/helper.rb +0 -102
  1402. data/tests/aws/requests/iam/login_profile_tests.rb +0 -62
  1403. data/tests/aws/requests/iam/mfa_tests.rb +0 -23
  1404. data/tests/aws/requests/iam/role_tests.rb +0 -167
  1405. data/tests/aws/requests/iam/server_certificate_tests.rb +0 -130
  1406. data/tests/aws/requests/iam/user_policy_tests.rb +0 -45
  1407. data/tests/aws/requests/iam/user_tests.rb +0 -77
  1408. data/tests/aws/requests/rds/describe_events.rb +0 -16
  1409. data/tests/aws/requests/rds/helper.rb +0 -274
  1410. data/tests/aws/requests/rds/instance_option_tests.rb +0 -21
  1411. data/tests/aws/requests/rds/instance_tests.rb +0 -133
  1412. data/tests/aws/requests/rds/log_file_tests.rb +0 -19
  1413. data/tests/aws/requests/rds/parameter_group_tests.rb +0 -62
  1414. data/tests/aws/requests/rds/parameter_request_tests.rb +0 -34
  1415. data/tests/aws/requests/rds/security_group_tests.rb +0 -101
  1416. data/tests/aws/requests/rds/subnet_groups_tests.rb +0 -52
  1417. data/tests/aws/requests/rds/tagging_tests.rb +0 -78
  1418. data/tests/aws/requests/redshift/cluster_parameter_group_tests.rb +0 -76
  1419. data/tests/aws/requests/redshift/cluster_security_group_tests.rb +0 -42
  1420. data/tests/aws/requests/redshift/cluster_snapshot_tests.rb +0 -73
  1421. data/tests/aws/requests/redshift/cluster_tests.rb +0 -80
  1422. data/tests/aws/requests/ses/helper.rb +0 -9
  1423. data/tests/aws/requests/ses/verified_domain_identity_tests.rb +0 -16
  1424. data/tests/aws/requests/ses/verified_email_address_tests.rb +0 -27
  1425. data/tests/aws/requests/simpledb/attributes_tests.rb +0 -86
  1426. data/tests/aws/requests/simpledb/domain_tests.rb +0 -51
  1427. data/tests/aws/requests/simpledb/helper.rb +0 -10
  1428. data/tests/aws/requests/sns/helper.rb +0 -9
  1429. data/tests/aws/requests/sns/subscription_tests.rb +0 -86
  1430. data/tests/aws/requests/sns/topic_tests.rb +0 -50
  1431. data/tests/aws/requests/sqs/helper.rb +0 -9
  1432. data/tests/aws/requests/sqs/message_tests.rb +0 -51
  1433. data/tests/aws/requests/sqs/queue_tests.rb +0 -50
  1434. data/tests/aws/requests/storage/acl_utils_tests.rb +0 -209
  1435. data/tests/aws/requests/storage/bucket_tests.rb +0 -379
  1436. data/tests/aws/requests/storage/cors_utils_tests.rb +0 -108
  1437. data/tests/aws/requests/storage/delete_multiple_objects_tests.rb +0 -12
  1438. data/tests/aws/requests/storage/multipart_upload_tests.rb +0 -121
  1439. data/tests/aws/requests/storage/object_tests.rb +0 -175
  1440. data/tests/aws/requests/storage/versioning_tests.rb +0 -258
  1441. data/tests/aws/requests/sts/assume_role_tests.rb +0 -19
  1442. data/tests/aws/requests/sts/assume_role_with_saml_tests.rb +0 -18
  1443. data/tests/aws/requests/sts/get_federation_token_tests.rb +0 -20
  1444. data/tests/aws/requests/sts/session_token_tests.rb +0 -16
  1445. data/tests/aws/signaturev4_tests.rb +0 -88
  1446. data/tests/aws/signed_params_tests.rb +0 -17
  1447. data/tests/aws/storage_tests.rb +0 -7
  1448. data/tests/serverlove/requests/compute/image_tests.rb +0 -57
  1449. data/tests/serverlove/requests/compute/server_tests.rb +0 -85
  1450. data/tests/serverlove/util/compute/password_generator_tests.rb +0 -19
@@ -0,0 +1,15 @@
1
+ require "minitest/autorun"
2
+ require "fog"
3
+
4
+ describe Fog::Metering do
5
+ Fog::Metering.providers.each do |provider|
6
+ describe "when #{provider} is passed with no available credentials" do
7
+ it "returns ArgumentError" do
8
+ # Stub credentials so you still see errors where the tester really has credentials
9
+ Fog.stub :credentials, {} do
10
+ assert_raises(ArgumentError) { Fog::Metering[provider] }
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ require "minitest/autorun"
2
+ require "fog"
3
+
4
+ describe Fog::Monitoring do
5
+ Fog::Monitoring.providers.each do |provider|
6
+ describe "when #{provider} is passed with no available credentials" do
7
+ it "returns ArgumentError" do
8
+ # Stub credentials so you still see errors where the tester really has credentials
9
+ Fog.stub :credentials, {} do
10
+ assert_raises(ArgumentError) { Fog::Monitoring[provider] }
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ require "minitest/autorun"
2
+ require "fog"
3
+
4
+ describe Fog::Network do
5
+ Fog::Network.providers.each do |provider|
6
+ describe "when #{provider} is passed with no available credentials" do
7
+ it "returns ArgumentError" do
8
+ # Stub credentials so you still see errors where the tester really has credentials
9
+ Fog.stub :credentials, {} do
10
+ assert_raises(ArgumentError) { Fog::Network[provider] }
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ require "minitest/autorun"
2
+ require "fog"
3
+
4
+ describe Fog::Orchestration do
5
+ Fog::Orchestration.providers.each do |provider|
6
+ describe "when #{provider} is passed with no available credentials" do
7
+ it "returns ArgumentError" do
8
+ # Stub credentials so you still see errors where the tester really has credentials
9
+ Fog.stub :credentials, {} do
10
+ assert_raises(ArgumentError) { Fog::Orchestration[provider] }
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ require "minitest/autorun"
2
+ require "fog"
3
+
4
+ describe Fog::Storage do
5
+ Fog::Storage.providers.each do |provider|
6
+ describe "when #{provider} is passed with no available credentials" do
7
+ it "returns ArgumentError" do
8
+ # Stub credentials so you still see errors where the tester really has credentials
9
+ Fog.stub :credentials, {} do
10
+ assert_raises(ArgumentError) { Fog::Storage[provider] }
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ require "minitest/autorun"
2
+ require "fog"
3
+
4
+ describe Fog::Support do
5
+ Fog::Support.providers.each do |provider|
6
+ describe "when #{provider} is passed with no available credentials" do
7
+ it "returns ArgumentError" do
8
+ # Stub credentials so you still see errors where the tester really has credentials
9
+ Fog.stub :credentials, {} do
10
+ assert_raises(ArgumentError) { Fog::Support[provider] }
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ require "minitest/autorun"
2
+ require "fog"
3
+
4
+ describe Fog::Volume do
5
+ Fog::Volume.providers.each do |provider|
6
+ describe "when #{provider} is passed with no available credentials" do
7
+ it "returns ArgumentError" do
8
+ # Stub credentials so you still see errors where the tester really has credentials
9
+ Fog.stub :credentials, {} do
10
+ assert_raises(ArgumentError) { Fog::Volume[provider] }
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ require "minitest/autorun"
2
+ require "fog"
3
+
4
+ describe Fog::VPN do
5
+ Fog::VPN.providers.each do |provider|
6
+ describe "when #{provider} is passed with no available credentials" do
7
+ it "returns ArgumentError" do
8
+ # Stub credentials so you still see errors where the tester really has credentials
9
+ Fog.stub :credentials, {} do
10
+ assert_raises(ArgumentError) { Fog::VPN[provider] }
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,6 @@
1
+ Shindo.tests("Fog::Compute[:cloudstack] | egress_firewall_rule", "cloudstack") do
2
+ config = compute_providers[:cloudstack]
3
+ compute = Fog::Compute[:cloudstack]
4
+
5
+ model_tests(compute.egress_firewall_rules, config[:egress_firewall_rule_attributes], config[:mocked])
6
+ end
@@ -0,0 +1,25 @@
1
+ Shindo.tests('Fog::Compute[:cloudstack] | egress firewall rule requests', ['cloudstack']) do
2
+
3
+ @egress_firewall_rules_format = {
4
+ 'listegressfirewallrulesresponse' => {
5
+ 'count' => Integer,
6
+ 'firewallrule' => [
7
+ 'id' => String,
8
+ 'protocol' => String,
9
+ 'networkid' => String,
10
+ 'state' => String,
11
+ 'cidrlist' => String,
12
+ 'tags' => Fog::Nullable::Array
13
+ ]
14
+ }
15
+ }
16
+
17
+ tests('success') do
18
+
19
+ tests('#list_egress_firewall_rules').formats(@egress_firewall_rules_format) do
20
+ Fog::Compute[:cloudstack].list_egress_firewall_rules
21
+ end
22
+
23
+ end
24
+
25
+ end
@@ -0,0 +1,29 @@
1
+ Shindo.tests('Fog::Compute[:cloudstack] | firewall rule requests', ['cloudstack']) do
2
+
3
+ @firewall_rules_format = {
4
+ 'listfirewallrulesresponse' => {
5
+ 'count' => Integer,
6
+ 'firewallrule' => [
7
+ 'id' => String,
8
+ 'protocol' => String,
9
+ 'startport' => String,
10
+ 'endport' => String,
11
+ 'ipaddressid' => String,
12
+ 'networkid' => String,
13
+ 'ipaddress' => String,
14
+ 'state' => String,
15
+ 'cidrlist' => String,
16
+ 'tags' => Fog::Nullable::Array
17
+ ]
18
+ }
19
+ }
20
+
21
+ tests('success') do
22
+
23
+ tests('#list_firewall_rules').formats(@firewall_rules_format) do
24
+ Fog::Compute[:cloudstack].list_firewall_rules
25
+ end
26
+
27
+ end
28
+
29
+ end
@@ -0,0 +1,32 @@
1
+ Shindo.tests('Fog::Compute[:cloudstack] | network offering requests', ['cloudstack']) do
2
+
3
+ @network_offerings_format = {
4
+ 'listnetworkofferingsresponse' => {
5
+ 'count' => Integer,
6
+ 'networkoffering' => [
7
+ 'id' => String,
8
+ 'name' => String,
9
+ 'displaytext' => String,
10
+ 'traffictype' => String,
11
+ 'isdefault' => Fog::Boolean,
12
+ 'specifyvlan' => Fog::Boolean,
13
+ 'conservemode' => Fog::Boolean,
14
+ 'specifyipranges' => Fog::Boolean,
15
+ 'availability' => String,
16
+ 'networkrate' => Integer,
17
+ 'state' => String,
18
+ 'guestiptype' => String,
19
+ 'serviceofferingid' => String,
20
+ ]
21
+ }
22
+ }
23
+
24
+ tests('success') do
25
+
26
+ tests('#list_network_offerings').formats(@network_offerings_format) do
27
+ Fog::Compute[:cloudstack].list_network_offerings
28
+ end
29
+
30
+ end
31
+
32
+ end
@@ -0,0 +1,33 @@
1
+ Shindo.tests('Fog::Compute[:cloudstack] | port forwarding rule requests', ['cloudstack']) do
2
+
3
+ @port_forwarding_rule_format = {
4
+ 'listportforwardingrulesresponse' => {
5
+ 'count' => Integer,
6
+ 'portforwardingrule' => [
7
+ 'id' => String,
8
+ 'privateport' => String,
9
+ 'privateendport' => String,
10
+ 'protocol' => String,
11
+ 'publicport' => String,
12
+ 'publicendport' => String,
13
+ 'virtualmachineid' => String,
14
+ 'virtualmachinename' => String,
15
+ 'virtualmachinedisplayname' => String,
16
+ 'ipaddressid' => String,
17
+ 'ipaddress' => String,
18
+ 'state' => String,
19
+ 'cidrlist' => String,
20
+ 'tags' => Fog::Nullable::Array
21
+ ]
22
+ }
23
+ }
24
+
25
+ tests('success') do
26
+
27
+ tests('#list_port_forwarding_rules').formats(@port_forwarding_rule_format) do
28
+ Fog::Compute[:cloudstack].list_port_forwarding_rules('zoneid' => 1)
29
+ end
30
+
31
+ end
32
+
33
+ end
@@ -0,0 +1,38 @@
1
+ Shindo.tests('Fog::Compute[:cloudstack] | public ip address requests', ['cloudstack']) do
2
+
3
+ @public_ip_addresses_format = {
4
+ 'listpublicipaddressesresponse' => {
5
+ 'count' => Integer,
6
+ 'publicipaddress' => [
7
+ 'id' => String,
8
+ 'ipaddress' => String,
9
+ 'allocated' => String,
10
+ 'zoneid' => String,
11
+ 'zonename' => String,
12
+ 'issourcenat' => Fog::Boolean,
13
+ 'projectid' => String,
14
+ 'project' => String,
15
+ 'domainid' => String,
16
+ 'domain' => String,
17
+ 'forvirtualnetwork' => Fog::Boolean,
18
+ 'isstaticnat' => Fog::Boolean,
19
+ 'issystem' => Fog::Boolean,
20
+ 'associatednetworkid' => String,
21
+ 'associatednetworkname' => String,
22
+ 'networkid' => String,
23
+ 'state' => String,
24
+ 'physicalnetworkid' => String,
25
+ 'tags' => Fog::Nullable::Array
26
+ ]
27
+ }
28
+ }
29
+
30
+ tests('success') do
31
+
32
+ tests('#list_public_ip_addresses').formats(@public_ip_addresses_format) do
33
+ Fog::Compute[:cloudstack].list_public_ip_addresses
34
+ end
35
+
36
+ end
37
+
38
+ end
@@ -4,24 +4,18 @@ Shindo.tests('Fog::Compute[:cloudstack] | service offering requests', ['cloudsta
4
4
  'listserviceofferingsresponse' => {
5
5
  'count' => Integer,
6
6
  'serviceoffering' => [
7
- 'id' => Integer,
7
+ 'id' => String,
8
+ 'name' => String,
9
+ 'displaytext' => String,
8
10
  'cpuspeed' => Integer,
9
11
  'cpunumber' => Integer,
10
- 'created' => String,
11
- 'defaultuse' => Fog::Boolean,
12
- 'displaytext' => String,
13
- 'domain' => Fog::Nullable::String,
14
- 'domainid' => Fog::Nullable::Integer,
15
- 'hosttags' => Fog::Nullable::String,
16
- 'issystem' => Fog::Boolean,
17
- 'limitcpuuse' => Fog::Boolean,
18
12
  'memory' => Integer,
19
- 'name' => String,
20
- 'networkrate' => Integer,
21
- 'offerha' => Fog::Boolean,
13
+ 'created' => String,
22
14
  'storagetype' => String,
23
- 'systemvmtype' => Fog::Nullable::String,
24
- 'tags' => Fog::Nullable::String
15
+ 'offerha' => Fog::Boolean,
16
+ 'limitcpuuse' => Fog::Boolean,
17
+ 'issystem' => Fog::Boolean,
18
+ 'defaultuse' => Fog::Boolean
25
19
  ]
26
20
  }
27
21
  }
@@ -29,7 +23,6 @@ Shindo.tests('Fog::Compute[:cloudstack] | service offering requests', ['cloudsta
29
23
  tests('success') do
30
24
 
31
25
  tests('#list_service_offerings').formats(@service_offerings_format) do
32
- pending if Fog.mocking?
33
26
  Fog::Compute[:cloudstack].list_service_offerings
34
27
  end
35
28
 
@@ -4,27 +4,27 @@ Shindo.tests('Fog::Compute[:cloudstack] | volume requests', ['cloudstack']) do
4
4
  'listvolumesresponse' => {
5
5
  'count' => Integer,
6
6
  'volume' => [
7
- 'id' => Integer,
7
+ 'id' => String,
8
8
  'name' => String,
9
- 'zoneid' => Integer,
9
+ 'zoneid' => String,
10
10
  'zonename' => String,
11
11
  'type' => String,
12
12
  'size' => Integer,
13
13
  'created' => String,
14
14
  'account' => String,
15
- 'domainid' => Integer,
15
+ 'domainid' => String,
16
16
  'domain' => String,
17
17
  'state' => String,
18
18
  'storagetype' => String,
19
19
  'hypervisor' => String,
20
- 'diskofferingid' => Fog::Nullable::Integer,
20
+ 'diskofferingid' => Fog::Nullable::String,
21
21
  'diskofferingname' => Fog::Nullable::String,
22
22
  'diskofferingdisplaytext' => Fog::Nullable::String,
23
23
  'storage' => String,
24
24
  'destroyed' => Fog::Boolean,
25
25
  'isextractable' => Fog::Boolean,
26
26
  'deviceid' => Fog::Nullable::Integer,
27
- 'virtualmachineid' => Fog::Nullable::Integer,
27
+ 'virtualmachineid' => Fog::Nullable::String,
28
28
  'vmname' => Fog::Nullable::String,
29
29
  'vmdisplayname' => Fog::Nullable::String,
30
30
  'vmstate' => Fog::Nullable::String,
@@ -39,7 +39,6 @@ Shindo.tests('Fog::Compute[:cloudstack] | volume requests', ['cloudstack']) do
39
39
  tests('success') do
40
40
 
41
41
  tests('#list_volumes').formats(@volumes_format) do
42
- pending if Fog.mocking?
43
42
  Fog::Compute[:cloudstack].list_volumes('zoneid' => 1)
44
43
  end
45
44
 
@@ -55,6 +55,7 @@ def compute_providers
55
55
  :protocol => 'tcp'
56
56
  },
57
57
  :disk_offering_attributes => { :name => "new disk offering", :display_text => 'New Disk Offering' },
58
+ :egress_firewall_rule_attributes => { :protocol => "tcp", :network_id => "8aacae29-e0a4-4b7b-8a7a-3ee11cfb4362", :cidr_list =>"10.1.1.0/24"},
58
59
  :mocked => true
59
60
  },
60
61
  :glesys => {
@@ -23,6 +23,7 @@ if Fog.mock?
23
23
  :cloudstack_service_offering_id => '4437ac6c-9fe3-477a-57ec-60a5a45896a4',
24
24
  :cloudstack_template_id => '8a31cf9c-f248-0588-256e-9dbf58785216',
25
25
  :cloudstack_zone_id => 'c554c592-e09c-9df5-7688-4a32754a4305',
26
+ :cloudstack_project_id => 'f1f1f1f1-f1f1-f1f1-f1f1-f1f1f1f1f1f1',
26
27
  :clodo_api_key => 'clodo_api_key',
27
28
  :clodo_username => 'clodo_username',
28
29
  :digitalocean_api_key => 'digitalocean_api_key',
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.26.0
4
+ version: 1.27.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - geemus (Wesley Beary)
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-12 00:00:00.000000000 Z
11
+ date: 2015-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '1.27'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 1.27.1
22
+ version: 1.27.3
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '1.27'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 1.27.1
32
+ version: 1.27.3
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: fog-json
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -92,6 +92,20 @@ dependencies:
92
92
  - - "~>"
93
93
  - !ruby/object:Gem::Version
94
94
  version: '0.5'
95
+ - !ruby/object:Gem::Dependency
96
+ name: fog-aws
97
+ requirement: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - "~>"
100
+ - !ruby/object:Gem::Version
101
+ version: '0.0'
102
+ type: :runtime
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - "~>"
107
+ - !ruby/object:Gem::Version
108
+ version: '0.0'
95
109
  - !ruby/object:Gem::Dependency
96
110
  name: fog-brightbox
97
111
  requirement: !ruby/object:Gem::Requirement
@@ -246,6 +260,20 @@ dependencies:
246
260
  - - ">="
247
261
  - !ruby/object:Gem::Version
248
262
  version: '0'
263
+ - !ruby/object:Gem::Dependency
264
+ name: fog-serverlove
265
+ requirement: !ruby/object:Gem::Requirement
266
+ requirements:
267
+ - - ">="
268
+ - !ruby/object:Gem::Version
269
+ version: '0'
270
+ type: :runtime
271
+ prerelease: false
272
+ version_requirements: !ruby/object:Gem::Requirement
273
+ requirements:
274
+ - - ">="
275
+ - !ruby/object:Gem::Version
276
+ version: '0'
249
277
  - !ruby/object:Gem::Dependency
250
278
  name: minitest
251
279
  requirement: !ruby/object:Gem::Requirement
@@ -322,14 +350,14 @@ dependencies:
322
350
  requirements:
323
351
  - - '='
324
352
  - !ruby/object:Gem::Version
325
- version: 0.0.24
353
+ version: 0.0.31
326
354
  type: :development
327
355
  prerelease: false
328
356
  version_requirements: !ruby/object:Gem::Requirement
329
357
  requirements:
330
358
  - - '='
331
359
  - !ruby/object:Gem::Version
332
- version: 0.0.24
360
+ version: 0.0.31
333
361
  - !ruby/object:Gem::Dependency
334
362
  name: shindo
335
363
  requirement: !ruby/object:Gem::Requirement
@@ -471,1036 +499,7 @@ files:
471
499
  - gemfiles/Gemfile-ruby-1.8.7
472
500
  - lib/fog.rb
473
501
  - lib/fog/aws.rb
474
- - lib/fog/aws/auto_scaling.rb
475
- - lib/fog/aws/beanstalk.rb
476
- - lib/fog/aws/cdn.rb
477
- - lib/fog/aws/cloud_formation.rb
478
- - lib/fog/aws/cloud_watch.rb
479
- - lib/fog/aws/compute.rb
480
- - lib/fog/aws/core.rb
481
- - lib/fog/aws/credential_fetcher.rb
482
- - lib/fog/aws/data_pipeline.rb
483
- - lib/fog/aws/dns.rb
484
- - lib/fog/aws/dynamodb.rb
485
- - lib/fog/aws/elasticache.rb
486
- - lib/fog/aws/elb.rb
487
- - lib/fog/aws/elb/policy_types.rb
488
- - lib/fog/aws/emr.rb
489
- - lib/fog/aws/glacier.rb
490
- - lib/fog/aws/iam.rb
491
- - lib/fog/aws/models/auto_scaling/activities.rb
492
- - lib/fog/aws/models/auto_scaling/activity.rb
493
- - lib/fog/aws/models/auto_scaling/configuration.rb
494
- - lib/fog/aws/models/auto_scaling/configurations.rb
495
- - lib/fog/aws/models/auto_scaling/group.rb
496
- - lib/fog/aws/models/auto_scaling/groups.rb
497
- - lib/fog/aws/models/auto_scaling/instance.rb
498
- - lib/fog/aws/models/auto_scaling/instances.rb
499
- - lib/fog/aws/models/auto_scaling/policies.rb
500
- - lib/fog/aws/models/auto_scaling/policy.rb
501
- - lib/fog/aws/models/beanstalk/application.rb
502
- - lib/fog/aws/models/beanstalk/applications.rb
503
- - lib/fog/aws/models/beanstalk/environment.rb
504
- - lib/fog/aws/models/beanstalk/environments.rb
505
- - lib/fog/aws/models/beanstalk/event.rb
506
- - lib/fog/aws/models/beanstalk/events.rb
507
- - lib/fog/aws/models/beanstalk/template.rb
508
- - lib/fog/aws/models/beanstalk/templates.rb
509
- - lib/fog/aws/models/beanstalk/version.rb
510
- - lib/fog/aws/models/beanstalk/versions.rb
511
- - lib/fog/aws/models/cdn/distribution.rb
512
- - lib/fog/aws/models/cdn/distribution_helper.rb
513
- - lib/fog/aws/models/cdn/distributions.rb
514
- - lib/fog/aws/models/cdn/distributions_helper.rb
515
- - lib/fog/aws/models/cdn/invalidation.rb
516
- - lib/fog/aws/models/cdn/invalidations.rb
517
- - lib/fog/aws/models/cdn/streaming_distribution.rb
518
- - lib/fog/aws/models/cdn/streaming_distributions.rb
519
- - lib/fog/aws/models/cloud_watch/alarm.rb
520
- - lib/fog/aws/models/cloud_watch/alarm_data.rb
521
- - lib/fog/aws/models/cloud_watch/alarm_datum.rb
522
- - lib/fog/aws/models/cloud_watch/alarm_histories.rb
523
- - lib/fog/aws/models/cloud_watch/alarm_history.rb
524
- - lib/fog/aws/models/cloud_watch/alarms.rb
525
- - lib/fog/aws/models/cloud_watch/metric.rb
526
- - lib/fog/aws/models/cloud_watch/metric_statistic.rb
527
- - lib/fog/aws/models/cloud_watch/metric_statistics.rb
528
- - lib/fog/aws/models/cloud_watch/metrics.rb
529
- - lib/fog/aws/models/compute/address.rb
530
- - lib/fog/aws/models/compute/addresses.rb
531
- - lib/fog/aws/models/compute/dhcp_option.rb
532
- - lib/fog/aws/models/compute/dhcp_options.rb
533
- - lib/fog/aws/models/compute/flavor.rb
534
- - lib/fog/aws/models/compute/flavors.rb
535
- - lib/fog/aws/models/compute/image.rb
536
- - lib/fog/aws/models/compute/images.rb
537
- - lib/fog/aws/models/compute/internet_gateway.rb
538
- - lib/fog/aws/models/compute/internet_gateways.rb
539
- - lib/fog/aws/models/compute/key_pair.rb
540
- - lib/fog/aws/models/compute/key_pairs.rb
541
- - lib/fog/aws/models/compute/network_acl.rb
542
- - lib/fog/aws/models/compute/network_acls.rb
543
- - lib/fog/aws/models/compute/network_interface.rb
544
- - lib/fog/aws/models/compute/network_interfaces.rb
545
- - lib/fog/aws/models/compute/route_table.rb
546
- - lib/fog/aws/models/compute/route_tables.rb
547
- - lib/fog/aws/models/compute/security_group.rb
548
- - lib/fog/aws/models/compute/security_groups.rb
549
- - lib/fog/aws/models/compute/server.rb
550
- - lib/fog/aws/models/compute/servers.rb
551
- - lib/fog/aws/models/compute/snapshot.rb
552
- - lib/fog/aws/models/compute/snapshots.rb
553
- - lib/fog/aws/models/compute/spot_request.rb
554
- - lib/fog/aws/models/compute/spot_requests.rb
555
- - lib/fog/aws/models/compute/subnet.rb
556
- - lib/fog/aws/models/compute/subnets.rb
557
- - lib/fog/aws/models/compute/tag.rb
558
- - lib/fog/aws/models/compute/tags.rb
559
- - lib/fog/aws/models/compute/volume.rb
560
- - lib/fog/aws/models/compute/volumes.rb
561
- - lib/fog/aws/models/compute/vpc.rb
562
- - lib/fog/aws/models/compute/vpcs.rb
563
- - lib/fog/aws/models/data_pipeline/pipeline.rb
564
- - lib/fog/aws/models/data_pipeline/pipelines.rb
565
- - lib/fog/aws/models/dns/record.rb
566
- - lib/fog/aws/models/dns/records.rb
567
- - lib/fog/aws/models/dns/zone.rb
568
- - lib/fog/aws/models/dns/zones.rb
569
- - lib/fog/aws/models/elasticache/cluster.rb
570
- - lib/fog/aws/models/elasticache/clusters.rb
571
- - lib/fog/aws/models/elasticache/parameter_group.rb
572
- - lib/fog/aws/models/elasticache/parameter_groups.rb
573
- - lib/fog/aws/models/elasticache/security_group.rb
574
- - lib/fog/aws/models/elasticache/security_groups.rb
575
- - lib/fog/aws/models/elasticache/subnet_group.rb
576
- - lib/fog/aws/models/elasticache/subnet_groups.rb
577
- - lib/fog/aws/models/elb/backend_server_description.rb
578
- - lib/fog/aws/models/elb/backend_server_descriptions.rb
579
- - lib/fog/aws/models/elb/listener.rb
580
- - lib/fog/aws/models/elb/listeners.rb
581
- - lib/fog/aws/models/elb/load_balancer.rb
582
- - lib/fog/aws/models/elb/load_balancers.rb
583
- - lib/fog/aws/models/elb/policies.rb
584
- - lib/fog/aws/models/elb/policy.rb
585
- - lib/fog/aws/models/glacier/archive.rb
586
- - lib/fog/aws/models/glacier/archives.rb
587
- - lib/fog/aws/models/glacier/job.rb
588
- - lib/fog/aws/models/glacier/jobs.rb
589
- - lib/fog/aws/models/glacier/vault.rb
590
- - lib/fog/aws/models/glacier/vaults.rb
591
- - lib/fog/aws/models/iam/access_key.rb
592
- - lib/fog/aws/models/iam/access_keys.rb
593
- - lib/fog/aws/models/iam/policies.rb
594
- - lib/fog/aws/models/iam/policy.rb
595
- - lib/fog/aws/models/iam/role.rb
596
- - lib/fog/aws/models/iam/roles.rb
597
- - lib/fog/aws/models/iam/user.rb
598
- - lib/fog/aws/models/iam/users.rb
599
- - lib/fog/aws/models/rds/instance_option.rb
600
- - lib/fog/aws/models/rds/instance_options.rb
601
- - lib/fog/aws/models/rds/log_file.rb
602
- - lib/fog/aws/models/rds/log_files.rb
603
- - lib/fog/aws/models/rds/parameter.rb
604
- - lib/fog/aws/models/rds/parameter_group.rb
605
- - lib/fog/aws/models/rds/parameter_groups.rb
606
- - lib/fog/aws/models/rds/parameters.rb
607
- - lib/fog/aws/models/rds/security_group.rb
608
- - lib/fog/aws/models/rds/security_groups.rb
609
- - lib/fog/aws/models/rds/server.rb
610
- - lib/fog/aws/models/rds/servers.rb
611
- - lib/fog/aws/models/rds/snapshot.rb
612
- - lib/fog/aws/models/rds/snapshots.rb
613
- - lib/fog/aws/models/rds/subnet_group.rb
614
- - lib/fog/aws/models/rds/subnet_groups.rb
615
- - lib/fog/aws/models/storage/directories.rb
616
- - lib/fog/aws/models/storage/directory.rb
617
- - lib/fog/aws/models/storage/file.rb
618
- - lib/fog/aws/models/storage/files.rb
619
- - lib/fog/aws/models/storage/version.rb
620
- - lib/fog/aws/models/storage/versions.rb
621
- - lib/fog/aws/parsers/auto_scaling/basic.rb
622
- - lib/fog/aws/parsers/auto_scaling/describe_adjustment_types.rb
623
- - lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb
624
- - lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_instances.rb
625
- - lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_notification_types.rb
626
- - lib/fog/aws/parsers/auto_scaling/describe_launch_configurations.rb
627
- - lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
628
- - lib/fog/aws/parsers/auto_scaling/describe_notification_configurations.rb
629
- - lib/fog/aws/parsers/auto_scaling/describe_policies.rb
630
- - lib/fog/aws/parsers/auto_scaling/describe_scaling_activities.rb
631
- - lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
632
- - lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
633
- - lib/fog/aws/parsers/auto_scaling/describe_tags.rb
634
- - lib/fog/aws/parsers/auto_scaling/describe_termination_policy_types.rb
635
- - lib/fog/aws/parsers/auto_scaling/put_notification_configuration.rb
636
- - lib/fog/aws/parsers/auto_scaling/put_scaling_policy.rb
637
- - lib/fog/aws/parsers/auto_scaling/terminate_instance_in_auto_scaling_group.rb
638
- - lib/fog/aws/parsers/beanstalk/check_dns_availability.rb
639
- - lib/fog/aws/parsers/beanstalk/create_application.rb
640
- - lib/fog/aws/parsers/beanstalk/create_application_version.rb
641
- - lib/fog/aws/parsers/beanstalk/create_configuration_template.rb
642
- - lib/fog/aws/parsers/beanstalk/create_environment.rb
643
- - lib/fog/aws/parsers/beanstalk/create_storage_location.rb
644
- - lib/fog/aws/parsers/beanstalk/describe_application_versions.rb
645
- - lib/fog/aws/parsers/beanstalk/describe_applications.rb
646
- - lib/fog/aws/parsers/beanstalk/describe_configuration_options.rb
647
- - lib/fog/aws/parsers/beanstalk/describe_configuration_settings.rb
648
- - lib/fog/aws/parsers/beanstalk/describe_environment_resources.rb
649
- - lib/fog/aws/parsers/beanstalk/describe_environments.rb
650
- - lib/fog/aws/parsers/beanstalk/describe_events.rb
651
- - lib/fog/aws/parsers/beanstalk/empty.rb
652
- - lib/fog/aws/parsers/beanstalk/list_available_solution_stacks.rb
653
- - lib/fog/aws/parsers/beanstalk/parser.rb
654
- - lib/fog/aws/parsers/beanstalk/retrieve_environment_info.rb
655
- - lib/fog/aws/parsers/beanstalk/terminate_environment.rb
656
- - lib/fog/aws/parsers/beanstalk/update_application.rb
657
- - lib/fog/aws/parsers/beanstalk/update_application_version.rb
658
- - lib/fog/aws/parsers/beanstalk/update_configuration_template.rb
659
- - lib/fog/aws/parsers/beanstalk/update_environment.rb
660
- - lib/fog/aws/parsers/beanstalk/validate_configuration_settings.rb
661
- - lib/fog/aws/parsers/cdn/distribution.rb
662
- - lib/fog/aws/parsers/cdn/get_distribution_list.rb
663
- - lib/fog/aws/parsers/cdn/get_invalidation.rb
664
- - lib/fog/aws/parsers/cdn/get_invalidation_list.rb
665
- - lib/fog/aws/parsers/cdn/get_streaming_distribution_list.rb
666
- - lib/fog/aws/parsers/cdn/post_invalidation.rb
667
- - lib/fog/aws/parsers/cdn/streaming_distribution.rb
668
- - lib/fog/aws/parsers/cloud_formation/basic.rb
669
- - lib/fog/aws/parsers/cloud_formation/create_stack.rb
670
- - lib/fog/aws/parsers/cloud_formation/describe_stack_events.rb
671
- - lib/fog/aws/parsers/cloud_formation/describe_stack_resources.rb
672
- - lib/fog/aws/parsers/cloud_formation/describe_stacks.rb
673
- - lib/fog/aws/parsers/cloud_formation/get_template.rb
674
- - lib/fog/aws/parsers/cloud_formation/list_stack_resources.rb
675
- - lib/fog/aws/parsers/cloud_formation/list_stacks.rb
676
- - lib/fog/aws/parsers/cloud_formation/update_stack.rb
677
- - lib/fog/aws/parsers/cloud_formation/validate_template.rb
678
- - lib/fog/aws/parsers/cloud_watch/delete_alarms.rb
679
- - lib/fog/aws/parsers/cloud_watch/describe_alarm_history.rb
680
- - lib/fog/aws/parsers/cloud_watch/describe_alarms.rb
681
- - lib/fog/aws/parsers/cloud_watch/describe_alarms_for_metric.rb
682
- - lib/fog/aws/parsers/cloud_watch/disable_alarm_actions.rb
683
- - lib/fog/aws/parsers/cloud_watch/enable_alarm_actions.rb
684
- - lib/fog/aws/parsers/cloud_watch/get_metric_statistics.rb
685
- - lib/fog/aws/parsers/cloud_watch/list_metrics.rb
686
- - lib/fog/aws/parsers/cloud_watch/put_metric_alarm.rb
687
- - lib/fog/aws/parsers/cloud_watch/put_metric_data.rb
688
- - lib/fog/aws/parsers/cloud_watch/set_alarm_state.rb
689
- - lib/fog/aws/parsers/compute/allocate_address.rb
690
- - lib/fog/aws/parsers/compute/assign_private_ip_addresses.rb
691
- - lib/fog/aws/parsers/compute/associate_address.rb
692
- - lib/fog/aws/parsers/compute/associate_route_table.rb
693
- - lib/fog/aws/parsers/compute/attach_network_interface.rb
694
- - lib/fog/aws/parsers/compute/attach_volume.rb
695
- - lib/fog/aws/parsers/compute/basic.rb
696
- - lib/fog/aws/parsers/compute/cancel_spot_instance_requests.rb
697
- - lib/fog/aws/parsers/compute/copy_image.rb
698
- - lib/fog/aws/parsers/compute/copy_snapshot.rb
699
- - lib/fog/aws/parsers/compute/create_dhcp_options.rb
700
- - lib/fog/aws/parsers/compute/create_image.rb
701
- - lib/fog/aws/parsers/compute/create_internet_gateway.rb
702
- - lib/fog/aws/parsers/compute/create_key_pair.rb
703
- - lib/fog/aws/parsers/compute/create_network_acl.rb
704
- - lib/fog/aws/parsers/compute/create_network_interface.rb
705
- - lib/fog/aws/parsers/compute/create_route_table.rb
706
- - lib/fog/aws/parsers/compute/create_security_group.rb
707
- - lib/fog/aws/parsers/compute/create_snapshot.rb
708
- - lib/fog/aws/parsers/compute/create_subnet.rb
709
- - lib/fog/aws/parsers/compute/create_volume.rb
710
- - lib/fog/aws/parsers/compute/create_vpc.rb
711
- - lib/fog/aws/parsers/compute/deregister_image.rb
712
- - lib/fog/aws/parsers/compute/describe_account_attributes.rb
713
- - lib/fog/aws/parsers/compute/describe_addresses.rb
714
- - lib/fog/aws/parsers/compute/describe_availability_zones.rb
715
- - lib/fog/aws/parsers/compute/describe_dhcp_options.rb
716
- - lib/fog/aws/parsers/compute/describe_images.rb
717
- - lib/fog/aws/parsers/compute/describe_instance_status.rb
718
- - lib/fog/aws/parsers/compute/describe_instances.rb
719
- - lib/fog/aws/parsers/compute/describe_internet_gateways.rb
720
- - lib/fog/aws/parsers/compute/describe_key_pairs.rb
721
- - lib/fog/aws/parsers/compute/describe_network_acls.rb
722
- - lib/fog/aws/parsers/compute/describe_network_interface_attribute.rb
723
- - lib/fog/aws/parsers/compute/describe_network_interfaces.rb
724
- - lib/fog/aws/parsers/compute/describe_placement_groups.rb
725
- - lib/fog/aws/parsers/compute/describe_regions.rb
726
- - lib/fog/aws/parsers/compute/describe_reserved_instances.rb
727
- - lib/fog/aws/parsers/compute/describe_reserved_instances_offerings.rb
728
- - lib/fog/aws/parsers/compute/describe_route_tables.rb
729
- - lib/fog/aws/parsers/compute/describe_security_groups.rb
730
- - lib/fog/aws/parsers/compute/describe_snapshots.rb
731
- - lib/fog/aws/parsers/compute/describe_spot_price_history.rb
732
- - lib/fog/aws/parsers/compute/describe_subnets.rb
733
- - lib/fog/aws/parsers/compute/describe_tags.rb
734
- - lib/fog/aws/parsers/compute/describe_volume_status.rb
735
- - lib/fog/aws/parsers/compute/describe_volumes.rb
736
- - lib/fog/aws/parsers/compute/describe_vpc_attribute.rb
737
- - lib/fog/aws/parsers/compute/describe_vpcs.rb
738
- - lib/fog/aws/parsers/compute/detach_volume.rb
739
- - lib/fog/aws/parsers/compute/get_console_output.rb
740
- - lib/fog/aws/parsers/compute/get_password_data.rb
741
- - lib/fog/aws/parsers/compute/import_key_pair.rb
742
- - lib/fog/aws/parsers/compute/modify_subnet_attribute.rb
743
- - lib/fog/aws/parsers/compute/monitor_unmonitor_instances.rb
744
- - lib/fog/aws/parsers/compute/network_acl_parser.rb
745
- - lib/fog/aws/parsers/compute/network_interface_parser.rb
746
- - lib/fog/aws/parsers/compute/purchase_reserved_instances_offering.rb
747
- - lib/fog/aws/parsers/compute/register_image.rb
748
- - lib/fog/aws/parsers/compute/replace_network_acl_association.rb
749
- - lib/fog/aws/parsers/compute/run_instances.rb
750
- - lib/fog/aws/parsers/compute/spot_datafeed_subscription.rb
751
- - lib/fog/aws/parsers/compute/spot_instance_requests.rb
752
- - lib/fog/aws/parsers/compute/start_stop_instances.rb
753
- - lib/fog/aws/parsers/compute/terminate_instances.rb
754
- - lib/fog/aws/parsers/dns/change_resource_record_sets.rb
755
- - lib/fog/aws/parsers/dns/create_health_check.rb
756
- - lib/fog/aws/parsers/dns/create_hosted_zone.rb
757
- - lib/fog/aws/parsers/dns/delete_hosted_zone.rb
758
- - lib/fog/aws/parsers/dns/get_change.rb
759
- - lib/fog/aws/parsers/dns/get_hosted_zone.rb
760
- - lib/fog/aws/parsers/dns/health_check.rb
761
- - lib/fog/aws/parsers/dns/list_health_checks.rb
762
- - lib/fog/aws/parsers/dns/list_hosted_zones.rb
763
- - lib/fog/aws/parsers/dns/list_resource_record_sets.rb
764
- - lib/fog/aws/parsers/elasticache/authorize_cache_security_group_ingress.rb
765
- - lib/fog/aws/parsers/elasticache/base.rb
766
- - lib/fog/aws/parsers/elasticache/cache_cluster_parser.rb
767
- - lib/fog/aws/parsers/elasticache/create_cache_subnet_group.rb
768
- - lib/fog/aws/parsers/elasticache/describe_cache_clusters.rb
769
- - lib/fog/aws/parsers/elasticache/describe_cache_parameters.rb
770
- - lib/fog/aws/parsers/elasticache/describe_cache_subnet_groups.rb
771
- - lib/fog/aws/parsers/elasticache/describe_engine_default_parameters.rb
772
- - lib/fog/aws/parsers/elasticache/describe_parameter_groups.rb
773
- - lib/fog/aws/parsers/elasticache/describe_reserved_cache_nodes.rb
774
- - lib/fog/aws/parsers/elasticache/describe_security_groups.rb
775
- - lib/fog/aws/parsers/elasticache/engine_defaults_parser.rb
776
- - lib/fog/aws/parsers/elasticache/event_list.rb
777
- - lib/fog/aws/parsers/elasticache/modify_parameter_group.rb
778
- - lib/fog/aws/parsers/elasticache/parameter_group_parser.rb
779
- - lib/fog/aws/parsers/elasticache/reset_parameter_group.rb
780
- - lib/fog/aws/parsers/elasticache/security_group_parser.rb
781
- - lib/fog/aws/parsers/elasticache/single_cache_cluster.rb
782
- - lib/fog/aws/parsers/elasticache/single_parameter_group.rb
783
- - lib/fog/aws/parsers/elasticache/single_security_group.rb
784
- - lib/fog/aws/parsers/elasticache/subnet_group_parser.rb
785
- - lib/fog/aws/parsers/elb/apply_security_groups_to_load_balancer.rb
786
- - lib/fog/aws/parsers/elb/attach_load_balancer_to_subnets.rb
787
- - lib/fog/aws/parsers/elb/configure_health_check.rb
788
- - lib/fog/aws/parsers/elb/create_load_balancer.rb
789
- - lib/fog/aws/parsers/elb/delete_load_balancer.rb
790
- - lib/fog/aws/parsers/elb/deregister_instances_from_load_balancer.rb
791
- - lib/fog/aws/parsers/elb/describe_instance_health.rb
792
- - lib/fog/aws/parsers/elb/describe_load_balancer_attributes.rb
793
- - lib/fog/aws/parsers/elb/describe_load_balancer_policies.rb
794
- - lib/fog/aws/parsers/elb/describe_load_balancer_policy_types.rb
795
- - lib/fog/aws/parsers/elb/describe_load_balancers.rb
796
- - lib/fog/aws/parsers/elb/describe_tags.rb
797
- - lib/fog/aws/parsers/elb/detach_load_balancer_from_subnets.rb
798
- - lib/fog/aws/parsers/elb/disable_availability_zones_for_load_balancer.rb
799
- - lib/fog/aws/parsers/elb/empty.rb
800
- - lib/fog/aws/parsers/elb/enable_availability_zones_for_load_balancer.rb
801
- - lib/fog/aws/parsers/elb/register_instances_with_load_balancer.rb
802
- - lib/fog/aws/parsers/elb/tag_list_parser.rb
803
- - lib/fog/aws/parsers/emr/add_instance_groups.rb
804
- - lib/fog/aws/parsers/emr/add_job_flow_steps.rb
805
- - lib/fog/aws/parsers/emr/describe_job_flows.rb
806
- - lib/fog/aws/parsers/emr/modify_instance_groups.rb
807
- - lib/fog/aws/parsers/emr/run_job_flow.rb
808
- - lib/fog/aws/parsers/emr/set_termination_protection.rb
809
- - lib/fog/aws/parsers/emr/terminate_job_flows.rb
810
- - lib/fog/aws/parsers/iam/base_instance_profile.rb
811
- - lib/fog/aws/parsers/iam/basic.rb
812
- - lib/fog/aws/parsers/iam/create_access_key.rb
813
- - lib/fog/aws/parsers/iam/create_group.rb
814
- - lib/fog/aws/parsers/iam/create_user.rb
815
- - lib/fog/aws/parsers/iam/get_account_password_policy.rb
816
- - lib/fog/aws/parsers/iam/get_account_summary.rb
817
- - lib/fog/aws/parsers/iam/get_group.rb
818
- - lib/fog/aws/parsers/iam/get_group_policy.rb
819
- - lib/fog/aws/parsers/iam/get_role_policy.rb
820
- - lib/fog/aws/parsers/iam/get_user.rb
821
- - lib/fog/aws/parsers/iam/get_user_policy.rb
822
- - lib/fog/aws/parsers/iam/instance_profile.rb
823
- - lib/fog/aws/parsers/iam/list_access_keys.rb
824
- - lib/fog/aws/parsers/iam/list_account_aliases.rb
825
- - lib/fog/aws/parsers/iam/list_groups.rb
826
- - lib/fog/aws/parsers/iam/list_groups_for_user.rb
827
- - lib/fog/aws/parsers/iam/list_instance_profiles.rb
828
- - lib/fog/aws/parsers/iam/list_mfa_devices.rb
829
- - lib/fog/aws/parsers/iam/list_policies.rb
830
- - lib/fog/aws/parsers/iam/list_roles.rb
831
- - lib/fog/aws/parsers/iam/list_server_certificates.rb
832
- - lib/fog/aws/parsers/iam/list_signing_certificates.rb
833
- - lib/fog/aws/parsers/iam/list_users.rb
834
- - lib/fog/aws/parsers/iam/login_profile.rb
835
- - lib/fog/aws/parsers/iam/role_parser.rb
836
- - lib/fog/aws/parsers/iam/single_role.rb
837
- - lib/fog/aws/parsers/iam/update_group.rb
838
- - lib/fog/aws/parsers/iam/update_user.rb
839
- - lib/fog/aws/parsers/iam/upload_server_certificate.rb
840
- - lib/fog/aws/parsers/iam/upload_signing_certificate.rb
841
- - lib/fog/aws/parsers/rds/authorize_db_security_group_ingress.rb
842
- - lib/fog/aws/parsers/rds/base.rb
843
- - lib/fog/aws/parsers/rds/create_db_instance.rb
844
- - lib/fog/aws/parsers/rds/create_db_instance_read_replica.rb
845
- - lib/fog/aws/parsers/rds/create_db_parameter_group.rb
846
- - lib/fog/aws/parsers/rds/create_db_security_group.rb
847
- - lib/fog/aws/parsers/rds/create_db_snapshot.rb
848
- - lib/fog/aws/parsers/rds/create_db_subnet_group.rb
849
- - lib/fog/aws/parsers/rds/db_engine_version_parser.rb
850
- - lib/fog/aws/parsers/rds/db_parser.rb
851
- - lib/fog/aws/parsers/rds/delete_db_instance.rb
852
- - lib/fog/aws/parsers/rds/delete_db_parameter_group.rb
853
- - lib/fog/aws/parsers/rds/delete_db_security_group.rb
854
- - lib/fog/aws/parsers/rds/delete_db_snapshot.rb
855
- - lib/fog/aws/parsers/rds/delete_db_subnet_group.rb
856
- - lib/fog/aws/parsers/rds/describe_db_engine_versions.rb
857
- - lib/fog/aws/parsers/rds/describe_db_instances.rb
858
- - lib/fog/aws/parsers/rds/describe_db_log_files.rb
859
- - lib/fog/aws/parsers/rds/describe_db_parameter_groups.rb
860
- - lib/fog/aws/parsers/rds/describe_db_parameters.rb
861
- - lib/fog/aws/parsers/rds/describe_db_reserved_instances.rb
862
- - lib/fog/aws/parsers/rds/describe_db_security_groups.rb
863
- - lib/fog/aws/parsers/rds/describe_db_snapshots.rb
864
- - lib/fog/aws/parsers/rds/describe_db_subnet_groups.rb
865
- - lib/fog/aws/parsers/rds/describe_orderable_db_instance_options.rb
866
- - lib/fog/aws/parsers/rds/download_db_logfile_portion.rb
867
- - lib/fog/aws/parsers/rds/event_list.rb
868
- - lib/fog/aws/parsers/rds/modify_db_instance.rb
869
- - lib/fog/aws/parsers/rds/modify_db_parameter_group.rb
870
- - lib/fog/aws/parsers/rds/promote_read_replica.rb
871
- - lib/fog/aws/parsers/rds/reboot_db_instance.rb
872
- - lib/fog/aws/parsers/rds/restore_db_instance_from_db_snapshot.rb
873
- - lib/fog/aws/parsers/rds/restore_db_instance_to_point_in_time.rb
874
- - lib/fog/aws/parsers/rds/revoke_db_security_group_ingress.rb
875
- - lib/fog/aws/parsers/rds/security_group_parser.rb
876
- - lib/fog/aws/parsers/rds/snapshot_parser.rb
877
- - lib/fog/aws/parsers/rds/subnet_group_parser.rb
878
- - lib/fog/aws/parsers/rds/tag_list_parser.rb
879
- - lib/fog/aws/parsers/redshift/cluster.rb
880
- - lib/fog/aws/parsers/redshift/cluster_parser.rb
881
- - lib/fog/aws/parsers/redshift/cluster_security_group_parser.rb
882
- - lib/fog/aws/parsers/redshift/cluster_snapshot.rb
883
- - lib/fog/aws/parsers/redshift/cluster_snapshot_parser.rb
884
- - lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
885
- - lib/fog/aws/parsers/redshift/create_cluster_parameter_group.rb
886
- - lib/fog/aws/parsers/redshift/create_cluster_security_group.rb
887
- - lib/fog/aws/parsers/redshift/describe_cluster_parameter_groups.rb
888
- - lib/fog/aws/parsers/redshift/describe_cluster_parameters.rb
889
- - lib/fog/aws/parsers/redshift/describe_cluster_security_groups.rb
890
- - lib/fog/aws/parsers/redshift/describe_cluster_snapshots.rb
891
- - lib/fog/aws/parsers/redshift/describe_cluster_subnet_groups.rb
892
- - lib/fog/aws/parsers/redshift/describe_cluster_versions.rb
893
- - lib/fog/aws/parsers/redshift/describe_clusters.rb
894
- - lib/fog/aws/parsers/redshift/describe_default_cluster_parameters.rb
895
- - lib/fog/aws/parsers/redshift/describe_events.rb
896
- - lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
897
- - lib/fog/aws/parsers/redshift/describe_reserved_node_offerings.rb
898
- - lib/fog/aws/parsers/redshift/describe_reserved_nodes.rb
899
- - lib/fog/aws/parsers/redshift/describe_resize.rb
900
- - lib/fog/aws/parsers/redshift/purchase_reserved_node_offering.rb
901
- - lib/fog/aws/parsers/redshift/revoke_cluster_security_group_ingress.rb
902
- - lib/fog/aws/parsers/redshift/update_cluster_parameter_group_parser.rb
903
- - lib/fog/aws/parsers/ses/delete_verified_email_address.rb
904
- - lib/fog/aws/parsers/ses/get_send_quota.rb
905
- - lib/fog/aws/parsers/ses/get_send_statistics.rb
906
- - lib/fog/aws/parsers/ses/list_verified_email_addresses.rb
907
- - lib/fog/aws/parsers/ses/send_email.rb
908
- - lib/fog/aws/parsers/ses/send_raw_email.rb
909
- - lib/fog/aws/parsers/ses/verify_domain_identity.rb
910
- - lib/fog/aws/parsers/ses/verify_email_address.rb
911
- - lib/fog/aws/parsers/simpledb/basic.rb
912
- - lib/fog/aws/parsers/simpledb/domain_metadata.rb
913
- - lib/fog/aws/parsers/simpledb/get_attributes.rb
914
- - lib/fog/aws/parsers/simpledb/list_domains.rb
915
- - lib/fog/aws/parsers/simpledb/select.rb
916
- - lib/fog/aws/parsers/sns/add_permission.rb
917
- - lib/fog/aws/parsers/sns/confirm_subscription.rb
918
- - lib/fog/aws/parsers/sns/create_topic.rb
919
- - lib/fog/aws/parsers/sns/delete_topic.rb
920
- - lib/fog/aws/parsers/sns/get_topic_attributes.rb
921
- - lib/fog/aws/parsers/sns/list_subscriptions.rb
922
- - lib/fog/aws/parsers/sns/list_topics.rb
923
- - lib/fog/aws/parsers/sns/publish.rb
924
- - lib/fog/aws/parsers/sns/remove_permission.rb
925
- - lib/fog/aws/parsers/sns/set_topic_attributes.rb
926
- - lib/fog/aws/parsers/sns/subscribe.rb
927
- - lib/fog/aws/parsers/sns/unsubscribe.rb
928
- - lib/fog/aws/parsers/sqs/basic.rb
929
- - lib/fog/aws/parsers/sqs/create_queue.rb
930
- - lib/fog/aws/parsers/sqs/get_queue_attributes.rb
931
- - lib/fog/aws/parsers/sqs/list_queues.rb
932
- - lib/fog/aws/parsers/sqs/receive_message.rb
933
- - lib/fog/aws/parsers/sqs/send_message.rb
934
- - lib/fog/aws/parsers/storage/access_control_list.rb
935
- - lib/fog/aws/parsers/storage/complete_multipart_upload.rb
936
- - lib/fog/aws/parsers/storage/copy_object.rb
937
- - lib/fog/aws/parsers/storage/cors_configuration.rb
938
- - lib/fog/aws/parsers/storage/delete_multiple_objects.rb
939
- - lib/fog/aws/parsers/storage/get_bucket.rb
940
- - lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb
941
- - lib/fog/aws/parsers/storage/get_bucket_location.rb
942
- - lib/fog/aws/parsers/storage/get_bucket_logging.rb
943
- - lib/fog/aws/parsers/storage/get_bucket_object_versions.rb
944
- - lib/fog/aws/parsers/storage/get_bucket_tagging.rb
945
- - lib/fog/aws/parsers/storage/get_bucket_versioning.rb
946
- - lib/fog/aws/parsers/storage/get_bucket_website.rb
947
- - lib/fog/aws/parsers/storage/get_request_payment.rb
948
- - lib/fog/aws/parsers/storage/get_service.rb
949
- - lib/fog/aws/parsers/storage/initiate_multipart_upload.rb
950
- - lib/fog/aws/parsers/storage/list_multipart_uploads.rb
951
- - lib/fog/aws/parsers/storage/list_parts.rb
952
- - lib/fog/aws/parsers/sts/assume_role.rb
953
- - lib/fog/aws/parsers/sts/assume_role_with_saml.rb
954
- - lib/fog/aws/parsers/sts/get_session_token.rb
955
- - lib/fog/aws/rds.rb
956
- - lib/fog/aws/redshift.rb
957
- - lib/fog/aws/region_methods.rb
958
- - lib/fog/aws/requests/auto_scaling/create_auto_scaling_group.rb
959
- - lib/fog/aws/requests/auto_scaling/create_launch_configuration.rb
960
- - lib/fog/aws/requests/auto_scaling/create_or_update_tags.rb
961
- - lib/fog/aws/requests/auto_scaling/delete_auto_scaling_group.rb
962
- - lib/fog/aws/requests/auto_scaling/delete_launch_configuration.rb
963
- - lib/fog/aws/requests/auto_scaling/delete_notification_configuration.rb
964
- - lib/fog/aws/requests/auto_scaling/delete_policy.rb
965
- - lib/fog/aws/requests/auto_scaling/delete_scheduled_action.rb
966
- - lib/fog/aws/requests/auto_scaling/delete_tags.rb
967
- - lib/fog/aws/requests/auto_scaling/describe_adjustment_types.rb
968
- - lib/fog/aws/requests/auto_scaling/describe_auto_scaling_groups.rb
969
- - lib/fog/aws/requests/auto_scaling/describe_auto_scaling_instances.rb
970
- - lib/fog/aws/requests/auto_scaling/describe_auto_scaling_notification_types.rb
971
- - lib/fog/aws/requests/auto_scaling/describe_launch_configurations.rb
972
- - lib/fog/aws/requests/auto_scaling/describe_metric_collection_types.rb
973
- - lib/fog/aws/requests/auto_scaling/describe_notification_configurations.rb
974
- - lib/fog/aws/requests/auto_scaling/describe_policies.rb
975
- - lib/fog/aws/requests/auto_scaling/describe_scaling_activities.rb
976
- - lib/fog/aws/requests/auto_scaling/describe_scaling_process_types.rb
977
- - lib/fog/aws/requests/auto_scaling/describe_scheduled_actions.rb
978
- - lib/fog/aws/requests/auto_scaling/describe_tags.rb
979
- - lib/fog/aws/requests/auto_scaling/describe_termination_policy_types.rb
980
- - lib/fog/aws/requests/auto_scaling/disable_metrics_collection.rb
981
- - lib/fog/aws/requests/auto_scaling/enable_metrics_collection.rb
982
- - lib/fog/aws/requests/auto_scaling/execute_policy.rb
983
- - lib/fog/aws/requests/auto_scaling/put_notification_configuration.rb
984
- - lib/fog/aws/requests/auto_scaling/put_scaling_policy.rb
985
- - lib/fog/aws/requests/auto_scaling/put_scheduled_update_group_action.rb
986
- - lib/fog/aws/requests/auto_scaling/resume_processes.rb
987
- - lib/fog/aws/requests/auto_scaling/set_desired_capacity.rb
988
- - lib/fog/aws/requests/auto_scaling/set_instance_health.rb
989
- - lib/fog/aws/requests/auto_scaling/suspend_processes.rb
990
- - lib/fog/aws/requests/auto_scaling/terminate_instance_in_auto_scaling_group.rb
991
- - lib/fog/aws/requests/auto_scaling/update_auto_scaling_group.rb
992
- - lib/fog/aws/requests/beanstalk/check_dns_availability.rb
993
- - lib/fog/aws/requests/beanstalk/create_application.rb
994
- - lib/fog/aws/requests/beanstalk/create_application_version.rb
995
- - lib/fog/aws/requests/beanstalk/create_configuration_template.rb
996
- - lib/fog/aws/requests/beanstalk/create_environment.rb
997
- - lib/fog/aws/requests/beanstalk/create_storage_location.rb
998
- - lib/fog/aws/requests/beanstalk/delete_application.rb
999
- - lib/fog/aws/requests/beanstalk/delete_application_version.rb
1000
- - lib/fog/aws/requests/beanstalk/delete_configuration_template.rb
1001
- - lib/fog/aws/requests/beanstalk/delete_environment_configuration.rb
1002
- - lib/fog/aws/requests/beanstalk/describe_application_versions.rb
1003
- - lib/fog/aws/requests/beanstalk/describe_applications.rb
1004
- - lib/fog/aws/requests/beanstalk/describe_configuration_options.rb
1005
- - lib/fog/aws/requests/beanstalk/describe_configuration_settings.rb
1006
- - lib/fog/aws/requests/beanstalk/describe_environment_resources.rb
1007
- - lib/fog/aws/requests/beanstalk/describe_environments.rb
1008
- - lib/fog/aws/requests/beanstalk/describe_events.rb
1009
- - lib/fog/aws/requests/beanstalk/list_available_solution_stacks.rb
1010
- - lib/fog/aws/requests/beanstalk/rebuild_environment.rb
1011
- - lib/fog/aws/requests/beanstalk/request_environment_info.rb
1012
- - lib/fog/aws/requests/beanstalk/restart_app_server.rb
1013
- - lib/fog/aws/requests/beanstalk/retrieve_environment_info.rb
1014
- - lib/fog/aws/requests/beanstalk/swap_environment_cnames.rb
1015
- - lib/fog/aws/requests/beanstalk/terminate_environment.rb
1016
- - lib/fog/aws/requests/beanstalk/update_application.rb
1017
- - lib/fog/aws/requests/beanstalk/update_application_version.rb
1018
- - lib/fog/aws/requests/beanstalk/update_configuration_template.rb
1019
- - lib/fog/aws/requests/beanstalk/update_environment.rb
1020
- - lib/fog/aws/requests/beanstalk/validate_configuration_settings.rb
1021
- - lib/fog/aws/requests/cdn/delete_distribution.rb
1022
- - lib/fog/aws/requests/cdn/delete_streaming_distribution.rb
1023
- - lib/fog/aws/requests/cdn/get_distribution.rb
1024
- - lib/fog/aws/requests/cdn/get_distribution_list.rb
1025
- - lib/fog/aws/requests/cdn/get_invalidation.rb
1026
- - lib/fog/aws/requests/cdn/get_invalidation_list.rb
1027
- - lib/fog/aws/requests/cdn/get_streaming_distribution.rb
1028
- - lib/fog/aws/requests/cdn/get_streaming_distribution_list.rb
1029
- - lib/fog/aws/requests/cdn/post_distribution.rb
1030
- - lib/fog/aws/requests/cdn/post_invalidation.rb
1031
- - lib/fog/aws/requests/cdn/post_streaming_distribution.rb
1032
- - lib/fog/aws/requests/cdn/put_distribution_config.rb
1033
- - lib/fog/aws/requests/cdn/put_streaming_distribution_config.rb
1034
- - lib/fog/aws/requests/cloud_formation/create_stack.rb
1035
- - lib/fog/aws/requests/cloud_formation/delete_stack.rb
1036
- - lib/fog/aws/requests/cloud_formation/describe_stack_events.rb
1037
- - lib/fog/aws/requests/cloud_formation/describe_stack_resources.rb
1038
- - lib/fog/aws/requests/cloud_formation/describe_stacks.rb
1039
- - lib/fog/aws/requests/cloud_formation/get_template.rb
1040
- - lib/fog/aws/requests/cloud_formation/list_stack_resources.rb
1041
- - lib/fog/aws/requests/cloud_formation/list_stacks.rb
1042
- - lib/fog/aws/requests/cloud_formation/update_stack.rb
1043
- - lib/fog/aws/requests/cloud_formation/validate_template.rb
1044
- - lib/fog/aws/requests/cloud_watch/delete_alarms.rb
1045
- - lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
1046
- - lib/fog/aws/requests/cloud_watch/describe_alarms.rb
1047
- - lib/fog/aws/requests/cloud_watch/describe_alarms_for_metric.rb
1048
- - lib/fog/aws/requests/cloud_watch/disable_alarm_actions.rb
1049
- - lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
1050
- - lib/fog/aws/requests/cloud_watch/get_metric_statistics.rb
1051
- - lib/fog/aws/requests/cloud_watch/list_metrics.rb
1052
- - lib/fog/aws/requests/cloud_watch/put_metric_alarm.rb
1053
- - lib/fog/aws/requests/cloud_watch/put_metric_data.rb
1054
- - lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
1055
- - lib/fog/aws/requests/compute/allocate_address.rb
1056
- - lib/fog/aws/requests/compute/assign_private_ip_addresses.rb
1057
- - lib/fog/aws/requests/compute/associate_address.rb
1058
- - lib/fog/aws/requests/compute/associate_dhcp_options.rb
1059
- - lib/fog/aws/requests/compute/associate_route_table.rb
1060
- - lib/fog/aws/requests/compute/attach_internet_gateway.rb
1061
- - lib/fog/aws/requests/compute/attach_network_interface.rb
1062
- - lib/fog/aws/requests/compute/attach_volume.rb
1063
- - lib/fog/aws/requests/compute/authorize_security_group_ingress.rb
1064
- - lib/fog/aws/requests/compute/cancel_spot_instance_requests.rb
1065
- - lib/fog/aws/requests/compute/copy_image.rb
1066
- - lib/fog/aws/requests/compute/copy_snapshot.rb
1067
- - lib/fog/aws/requests/compute/create_dhcp_options.rb
1068
- - lib/fog/aws/requests/compute/create_image.rb
1069
- - lib/fog/aws/requests/compute/create_internet_gateway.rb
1070
- - lib/fog/aws/requests/compute/create_key_pair.rb
1071
- - lib/fog/aws/requests/compute/create_network_acl.rb
1072
- - lib/fog/aws/requests/compute/create_network_acl_entry.rb
1073
- - lib/fog/aws/requests/compute/create_network_interface.rb
1074
- - lib/fog/aws/requests/compute/create_placement_group.rb
1075
- - lib/fog/aws/requests/compute/create_route.rb
1076
- - lib/fog/aws/requests/compute/create_route_table.rb
1077
- - lib/fog/aws/requests/compute/create_security_group.rb
1078
- - lib/fog/aws/requests/compute/create_snapshot.rb
1079
- - lib/fog/aws/requests/compute/create_spot_datafeed_subscription.rb
1080
- - lib/fog/aws/requests/compute/create_subnet.rb
1081
- - lib/fog/aws/requests/compute/create_tags.rb
1082
- - lib/fog/aws/requests/compute/create_volume.rb
1083
- - lib/fog/aws/requests/compute/create_vpc.rb
1084
- - lib/fog/aws/requests/compute/delete_dhcp_options.rb
1085
- - lib/fog/aws/requests/compute/delete_internet_gateway.rb
1086
- - lib/fog/aws/requests/compute/delete_key_pair.rb
1087
- - lib/fog/aws/requests/compute/delete_network_acl.rb
1088
- - lib/fog/aws/requests/compute/delete_network_acl_entry.rb
1089
- - lib/fog/aws/requests/compute/delete_network_interface.rb
1090
- - lib/fog/aws/requests/compute/delete_placement_group.rb
1091
- - lib/fog/aws/requests/compute/delete_route.rb
1092
- - lib/fog/aws/requests/compute/delete_route_table.rb
1093
- - lib/fog/aws/requests/compute/delete_security_group.rb
1094
- - lib/fog/aws/requests/compute/delete_snapshot.rb
1095
- - lib/fog/aws/requests/compute/delete_spot_datafeed_subscription.rb
1096
- - lib/fog/aws/requests/compute/delete_subnet.rb
1097
- - lib/fog/aws/requests/compute/delete_tags.rb
1098
- - lib/fog/aws/requests/compute/delete_volume.rb
1099
- - lib/fog/aws/requests/compute/delete_vpc.rb
1100
- - lib/fog/aws/requests/compute/deregister_image.rb
1101
- - lib/fog/aws/requests/compute/describe_account_attributes.rb
1102
- - lib/fog/aws/requests/compute/describe_addresses.rb
1103
- - lib/fog/aws/requests/compute/describe_availability_zones.rb
1104
- - lib/fog/aws/requests/compute/describe_dhcp_options.rb
1105
- - lib/fog/aws/requests/compute/describe_images.rb
1106
- - lib/fog/aws/requests/compute/describe_instance_status.rb
1107
- - lib/fog/aws/requests/compute/describe_instances.rb
1108
- - lib/fog/aws/requests/compute/describe_internet_gateways.rb
1109
- - lib/fog/aws/requests/compute/describe_key_pairs.rb
1110
- - lib/fog/aws/requests/compute/describe_network_acls.rb
1111
- - lib/fog/aws/requests/compute/describe_network_interface_attribute.rb
1112
- - lib/fog/aws/requests/compute/describe_network_interfaces.rb
1113
- - lib/fog/aws/requests/compute/describe_placement_groups.rb
1114
- - lib/fog/aws/requests/compute/describe_regions.rb
1115
- - lib/fog/aws/requests/compute/describe_reserved_instances.rb
1116
- - lib/fog/aws/requests/compute/describe_reserved_instances_offerings.rb
1117
- - lib/fog/aws/requests/compute/describe_route_tables.rb
1118
- - lib/fog/aws/requests/compute/describe_security_groups.rb
1119
- - lib/fog/aws/requests/compute/describe_snapshots.rb
1120
- - lib/fog/aws/requests/compute/describe_spot_datafeed_subscription.rb
1121
- - lib/fog/aws/requests/compute/describe_spot_instance_requests.rb
1122
- - lib/fog/aws/requests/compute/describe_spot_price_history.rb
1123
- - lib/fog/aws/requests/compute/describe_subnets.rb
1124
- - lib/fog/aws/requests/compute/describe_tags.rb
1125
- - lib/fog/aws/requests/compute/describe_volume_status.rb
1126
- - lib/fog/aws/requests/compute/describe_volumes.rb
1127
- - lib/fog/aws/requests/compute/describe_vpc_attribute.rb
1128
- - lib/fog/aws/requests/compute/describe_vpcs.rb
1129
- - lib/fog/aws/requests/compute/detach_internet_gateway.rb
1130
- - lib/fog/aws/requests/compute/detach_network_interface.rb
1131
- - lib/fog/aws/requests/compute/detach_volume.rb
1132
- - lib/fog/aws/requests/compute/disassociate_address.rb
1133
- - lib/fog/aws/requests/compute/disassociate_route_table.rb
1134
- - lib/fog/aws/requests/compute/get_console_output.rb
1135
- - lib/fog/aws/requests/compute/get_password_data.rb
1136
- - lib/fog/aws/requests/compute/import_key_pair.rb
1137
- - lib/fog/aws/requests/compute/modify_image_attribute.rb
1138
- - lib/fog/aws/requests/compute/modify_instance_attribute.rb
1139
- - lib/fog/aws/requests/compute/modify_network_interface_attribute.rb
1140
- - lib/fog/aws/requests/compute/modify_snapshot_attribute.rb
1141
- - lib/fog/aws/requests/compute/modify_subnet_attribute.rb
1142
- - lib/fog/aws/requests/compute/modify_volume_attribute.rb
1143
- - lib/fog/aws/requests/compute/modify_vpc_attribute.rb
1144
- - lib/fog/aws/requests/compute/monitor_instances.rb
1145
- - lib/fog/aws/requests/compute/purchase_reserved_instances_offering.rb
1146
- - lib/fog/aws/requests/compute/reboot_instances.rb
1147
- - lib/fog/aws/requests/compute/register_image.rb
1148
- - lib/fog/aws/requests/compute/release_address.rb
1149
- - lib/fog/aws/requests/compute/replace_network_acl_association.rb
1150
- - lib/fog/aws/requests/compute/replace_network_acl_entry.rb
1151
- - lib/fog/aws/requests/compute/replace_route.rb
1152
- - lib/fog/aws/requests/compute/request_spot_instances.rb
1153
- - lib/fog/aws/requests/compute/reset_network_interface_attribute.rb
1154
- - lib/fog/aws/requests/compute/revoke_security_group_ingress.rb
1155
- - lib/fog/aws/requests/compute/run_instances.rb
1156
- - lib/fog/aws/requests/compute/start_instances.rb
1157
- - lib/fog/aws/requests/compute/stop_instances.rb
1158
- - lib/fog/aws/requests/compute/terminate_instances.rb
1159
- - lib/fog/aws/requests/compute/unmonitor_instances.rb
1160
- - lib/fog/aws/requests/data_pipeline/activate_pipeline.rb
1161
- - lib/fog/aws/requests/data_pipeline/create_pipeline.rb
1162
- - lib/fog/aws/requests/data_pipeline/delete_pipeline.rb
1163
- - lib/fog/aws/requests/data_pipeline/describe_objects.rb
1164
- - lib/fog/aws/requests/data_pipeline/describe_pipelines.rb
1165
- - lib/fog/aws/requests/data_pipeline/get_pipeline_definition.rb
1166
- - lib/fog/aws/requests/data_pipeline/list_pipelines.rb
1167
- - lib/fog/aws/requests/data_pipeline/put_pipeline_definition.rb
1168
- - lib/fog/aws/requests/data_pipeline/query_objects.rb
1169
- - lib/fog/aws/requests/dns/change_resource_record_sets.rb
1170
- - lib/fog/aws/requests/dns/create_health_check.rb
1171
- - lib/fog/aws/requests/dns/create_hosted_zone.rb
1172
- - lib/fog/aws/requests/dns/delete_health_check.rb
1173
- - lib/fog/aws/requests/dns/delete_hosted_zone.rb
1174
- - lib/fog/aws/requests/dns/get_change.rb
1175
- - lib/fog/aws/requests/dns/get_health_check.rb
1176
- - lib/fog/aws/requests/dns/get_hosted_zone.rb
1177
- - lib/fog/aws/requests/dns/list_health_checks.rb
1178
- - lib/fog/aws/requests/dns/list_hosted_zones.rb
1179
- - lib/fog/aws/requests/dns/list_resource_record_sets.rb
1180
- - lib/fog/aws/requests/dynamodb/batch_get_item.rb
1181
- - lib/fog/aws/requests/dynamodb/batch_write_item.rb
1182
- - lib/fog/aws/requests/dynamodb/create_table.rb
1183
- - lib/fog/aws/requests/dynamodb/delete_item.rb
1184
- - lib/fog/aws/requests/dynamodb/delete_table.rb
1185
- - lib/fog/aws/requests/dynamodb/describe_table.rb
1186
- - lib/fog/aws/requests/dynamodb/get_item.rb
1187
- - lib/fog/aws/requests/dynamodb/list_tables.rb
1188
- - lib/fog/aws/requests/dynamodb/put_item.rb
1189
- - lib/fog/aws/requests/dynamodb/query.rb
1190
- - lib/fog/aws/requests/dynamodb/scan.rb
1191
- - lib/fog/aws/requests/dynamodb/update_item.rb
1192
- - lib/fog/aws/requests/dynamodb/update_table.rb
1193
- - lib/fog/aws/requests/elasticache/authorize_cache_security_group_ingress.rb
1194
- - lib/fog/aws/requests/elasticache/create_cache_cluster.rb
1195
- - lib/fog/aws/requests/elasticache/create_cache_parameter_group.rb
1196
- - lib/fog/aws/requests/elasticache/create_cache_security_group.rb
1197
- - lib/fog/aws/requests/elasticache/create_cache_subnet_group.rb
1198
- - lib/fog/aws/requests/elasticache/delete_cache_cluster.rb
1199
- - lib/fog/aws/requests/elasticache/delete_cache_parameter_group.rb
1200
- - lib/fog/aws/requests/elasticache/delete_cache_security_group.rb
1201
- - lib/fog/aws/requests/elasticache/delete_cache_subnet_group.rb
1202
- - lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
1203
- - lib/fog/aws/requests/elasticache/describe_cache_parameter_groups.rb
1204
- - lib/fog/aws/requests/elasticache/describe_cache_parameters.rb
1205
- - lib/fog/aws/requests/elasticache/describe_cache_security_groups.rb
1206
- - lib/fog/aws/requests/elasticache/describe_cache_subnet_groups.rb
1207
- - lib/fog/aws/requests/elasticache/describe_engine_default_parameters.rb
1208
- - lib/fog/aws/requests/elasticache/describe_events.rb
1209
- - lib/fog/aws/requests/elasticache/describe_reserved_cache_nodes.rb
1210
- - lib/fog/aws/requests/elasticache/modify_cache_cluster.rb
1211
- - lib/fog/aws/requests/elasticache/modify_cache_parameter_group.rb
1212
- - lib/fog/aws/requests/elasticache/reboot_cache_cluster.rb
1213
- - lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
1214
- - lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
1215
- - lib/fog/aws/requests/elb/add_tags.rb
1216
- - lib/fog/aws/requests/elb/apply_security_groups_to_load_balancer.rb
1217
- - lib/fog/aws/requests/elb/attach_load_balancer_to_subnets.rb
1218
- - lib/fog/aws/requests/elb/configure_health_check.rb
1219
- - lib/fog/aws/requests/elb/create_app_cookie_stickiness_policy.rb
1220
- - lib/fog/aws/requests/elb/create_lb_cookie_stickiness_policy.rb
1221
- - lib/fog/aws/requests/elb/create_load_balancer.rb
1222
- - lib/fog/aws/requests/elb/create_load_balancer_listeners.rb
1223
- - lib/fog/aws/requests/elb/create_load_balancer_policy.rb
1224
- - lib/fog/aws/requests/elb/delete_load_balancer.rb
1225
- - lib/fog/aws/requests/elb/delete_load_balancer_listeners.rb
1226
- - lib/fog/aws/requests/elb/delete_load_balancer_policy.rb
1227
- - lib/fog/aws/requests/elb/deregister_instances_from_load_balancer.rb
1228
- - lib/fog/aws/requests/elb/describe_instance_health.rb
1229
- - lib/fog/aws/requests/elb/describe_load_balancer_attributes.rb
1230
- - lib/fog/aws/requests/elb/describe_load_balancer_policies.rb
1231
- - lib/fog/aws/requests/elb/describe_load_balancer_policy_types.rb
1232
- - lib/fog/aws/requests/elb/describe_load_balancers.rb
1233
- - lib/fog/aws/requests/elb/describe_tags.rb
1234
- - lib/fog/aws/requests/elb/detach_load_balancer_from_subnets.rb
1235
- - lib/fog/aws/requests/elb/disable_availability_zones_for_load_balancer.rb
1236
- - lib/fog/aws/requests/elb/enable_availability_zones_for_load_balancer.rb
1237
- - lib/fog/aws/requests/elb/modify_load_balancer_attributes.rb
1238
- - lib/fog/aws/requests/elb/register_instances_with_load_balancer.rb
1239
- - lib/fog/aws/requests/elb/remove_tags.rb
1240
- - lib/fog/aws/requests/elb/set_load_balancer_listener_ssl_certificate.rb
1241
- - lib/fog/aws/requests/elb/set_load_balancer_policies_for_backend_server.rb
1242
- - lib/fog/aws/requests/elb/set_load_balancer_policies_of_listener.rb
1243
- - lib/fog/aws/requests/emr/add_instance_groups.rb
1244
- - lib/fog/aws/requests/emr/add_job_flow_steps.rb
1245
- - lib/fog/aws/requests/emr/describe_job_flows.rb
1246
- - lib/fog/aws/requests/emr/modify_instance_groups.rb
1247
- - lib/fog/aws/requests/emr/run_job_flow.rb
1248
- - lib/fog/aws/requests/emr/set_termination_protection.rb
1249
- - lib/fog/aws/requests/emr/terminate_job_flows.rb
1250
- - lib/fog/aws/requests/glacier/abort_multipart_upload.rb
1251
- - lib/fog/aws/requests/glacier/complete_multipart_upload.rb
1252
- - lib/fog/aws/requests/glacier/create_archive.rb
1253
- - lib/fog/aws/requests/glacier/create_vault.rb
1254
- - lib/fog/aws/requests/glacier/delete_archive.rb
1255
- - lib/fog/aws/requests/glacier/delete_vault.rb
1256
- - lib/fog/aws/requests/glacier/delete_vault_notification_configuration.rb
1257
- - lib/fog/aws/requests/glacier/describe_job.rb
1258
- - lib/fog/aws/requests/glacier/describe_vault.rb
1259
- - lib/fog/aws/requests/glacier/get_job_output.rb
1260
- - lib/fog/aws/requests/glacier/get_vault_notification_configuration.rb
1261
- - lib/fog/aws/requests/glacier/initiate_job.rb
1262
- - lib/fog/aws/requests/glacier/initiate_multipart_upload.rb
1263
- - lib/fog/aws/requests/glacier/list_jobs.rb
1264
- - lib/fog/aws/requests/glacier/list_multipart_uploads.rb
1265
- - lib/fog/aws/requests/glacier/list_parts.rb
1266
- - lib/fog/aws/requests/glacier/list_vaults.rb
1267
- - lib/fog/aws/requests/glacier/set_vault_notification_configuration.rb
1268
- - lib/fog/aws/requests/glacier/upload_part.rb
1269
- - lib/fog/aws/requests/iam/add_role_to_instance_profile.rb
1270
- - lib/fog/aws/requests/iam/add_user_to_group.rb
1271
- - lib/fog/aws/requests/iam/create_access_key.rb
1272
- - lib/fog/aws/requests/iam/create_account_alias.rb
1273
- - lib/fog/aws/requests/iam/create_group.rb
1274
- - lib/fog/aws/requests/iam/create_instance_profile.rb
1275
- - lib/fog/aws/requests/iam/create_login_profile.rb
1276
- - lib/fog/aws/requests/iam/create_role.rb
1277
- - lib/fog/aws/requests/iam/create_user.rb
1278
- - lib/fog/aws/requests/iam/delete_access_key.rb
1279
- - lib/fog/aws/requests/iam/delete_account_alias.rb
1280
- - lib/fog/aws/requests/iam/delete_account_password_policy.rb
1281
- - lib/fog/aws/requests/iam/delete_group.rb
1282
- - lib/fog/aws/requests/iam/delete_group_policy.rb
1283
- - lib/fog/aws/requests/iam/delete_instance_profile.rb
1284
- - lib/fog/aws/requests/iam/delete_login_profile.rb
1285
- - lib/fog/aws/requests/iam/delete_role.rb
1286
- - lib/fog/aws/requests/iam/delete_role_policy.rb
1287
- - lib/fog/aws/requests/iam/delete_server_certificate.rb
1288
- - lib/fog/aws/requests/iam/delete_signing_certificate.rb
1289
- - lib/fog/aws/requests/iam/delete_user.rb
1290
- - lib/fog/aws/requests/iam/delete_user_policy.rb
1291
- - lib/fog/aws/requests/iam/get_account_password_policy.rb
1292
- - lib/fog/aws/requests/iam/get_account_summary.rb
1293
- - lib/fog/aws/requests/iam/get_group.rb
1294
- - lib/fog/aws/requests/iam/get_group_policy.rb
1295
- - lib/fog/aws/requests/iam/get_instance_profile.rb
1296
- - lib/fog/aws/requests/iam/get_login_profile.rb
1297
- - lib/fog/aws/requests/iam/get_role.rb
1298
- - lib/fog/aws/requests/iam/get_role_policy.rb
1299
- - lib/fog/aws/requests/iam/get_server_certificate.rb
1300
- - lib/fog/aws/requests/iam/get_user.rb
1301
- - lib/fog/aws/requests/iam/get_user_policy.rb
1302
- - lib/fog/aws/requests/iam/list_access_keys.rb
1303
- - lib/fog/aws/requests/iam/list_account_aliases.rb
1304
- - lib/fog/aws/requests/iam/list_group_policies.rb
1305
- - lib/fog/aws/requests/iam/list_groups.rb
1306
- - lib/fog/aws/requests/iam/list_groups_for_user.rb
1307
- - lib/fog/aws/requests/iam/list_instance_profiles.rb
1308
- - lib/fog/aws/requests/iam/list_instance_profiles_for_role.rb
1309
- - lib/fog/aws/requests/iam/list_mfa_devices.rb
1310
- - lib/fog/aws/requests/iam/list_role_policies.rb
1311
- - lib/fog/aws/requests/iam/list_roles.rb
1312
- - lib/fog/aws/requests/iam/list_server_certificates.rb
1313
- - lib/fog/aws/requests/iam/list_signing_certificates.rb
1314
- - lib/fog/aws/requests/iam/list_user_policies.rb
1315
- - lib/fog/aws/requests/iam/list_users.rb
1316
- - lib/fog/aws/requests/iam/put_group_policy.rb
1317
- - lib/fog/aws/requests/iam/put_role_policy.rb
1318
- - lib/fog/aws/requests/iam/put_user_policy.rb
1319
- - lib/fog/aws/requests/iam/remove_role_from_instance_profile.rb
1320
- - lib/fog/aws/requests/iam/remove_user_from_group.rb
1321
- - lib/fog/aws/requests/iam/update_access_key.rb
1322
- - lib/fog/aws/requests/iam/update_account_password_policy.rb
1323
- - lib/fog/aws/requests/iam/update_group.rb
1324
- - lib/fog/aws/requests/iam/update_login_profile.rb
1325
- - lib/fog/aws/requests/iam/update_server_certificate.rb
1326
- - lib/fog/aws/requests/iam/update_signing_certificate.rb
1327
- - lib/fog/aws/requests/iam/update_user.rb
1328
- - lib/fog/aws/requests/iam/upload_server_certificate.rb
1329
- - lib/fog/aws/requests/iam/upload_signing_certificate.rb
1330
- - lib/fog/aws/requests/rds/add_tags_to_resource.rb
1331
- - lib/fog/aws/requests/rds/authorize_db_security_group_ingress.rb
1332
- - lib/fog/aws/requests/rds/create_db_instance.rb
1333
- - lib/fog/aws/requests/rds/create_db_instance_read_replica.rb
1334
- - lib/fog/aws/requests/rds/create_db_parameter_group.rb
1335
- - lib/fog/aws/requests/rds/create_db_security_group.rb
1336
- - lib/fog/aws/requests/rds/create_db_snapshot.rb
1337
- - lib/fog/aws/requests/rds/create_db_subnet_group.rb
1338
- - lib/fog/aws/requests/rds/delete_db_instance.rb
1339
- - lib/fog/aws/requests/rds/delete_db_parameter_group.rb
1340
- - lib/fog/aws/requests/rds/delete_db_security_group.rb
1341
- - lib/fog/aws/requests/rds/delete_db_snapshot.rb
1342
- - lib/fog/aws/requests/rds/delete_db_subnet_group.rb
1343
- - lib/fog/aws/requests/rds/describe_db_engine_versions.rb
1344
- - lib/fog/aws/requests/rds/describe_db_instances.rb
1345
- - lib/fog/aws/requests/rds/describe_db_log_files.rb
1346
- - lib/fog/aws/requests/rds/describe_db_parameter_groups.rb
1347
- - lib/fog/aws/requests/rds/describe_db_parameters.rb
1348
- - lib/fog/aws/requests/rds/describe_db_reserved_instances.rb
1349
- - lib/fog/aws/requests/rds/describe_db_security_groups.rb
1350
- - lib/fog/aws/requests/rds/describe_db_snapshots.rb
1351
- - lib/fog/aws/requests/rds/describe_db_subnet_groups.rb
1352
- - lib/fog/aws/requests/rds/describe_events.rb
1353
- - lib/fog/aws/requests/rds/describe_orderable_db_instance_options.rb
1354
- - lib/fog/aws/requests/rds/download_db_logfile_portion.rb
1355
- - lib/fog/aws/requests/rds/list_tags_for_resource.rb
1356
- - lib/fog/aws/requests/rds/modify_db_instance.rb
1357
- - lib/fog/aws/requests/rds/modify_db_parameter_group.rb
1358
- - lib/fog/aws/requests/rds/promote_read_replica.rb
1359
- - lib/fog/aws/requests/rds/reboot_db_instance.rb
1360
- - lib/fog/aws/requests/rds/remove_tags_from_resource.rb
1361
- - lib/fog/aws/requests/rds/restore_db_instance_from_db_snapshot.rb
1362
- - lib/fog/aws/requests/rds/restore_db_instance_to_point_in_time.rb
1363
- - lib/fog/aws/requests/rds/revoke_db_security_group_ingress.rb
1364
- - lib/fog/aws/requests/redshift/authorize_cluster_security_group_ingress.rb
1365
- - lib/fog/aws/requests/redshift/authorize_snapshot_access.rb
1366
- - lib/fog/aws/requests/redshift/copy_cluster_snapshot.rb
1367
- - lib/fog/aws/requests/redshift/create_cluster.rb
1368
- - lib/fog/aws/requests/redshift/create_cluster_parameter_group.rb
1369
- - lib/fog/aws/requests/redshift/create_cluster_security_group.rb
1370
- - lib/fog/aws/requests/redshift/create_cluster_snapshot.rb
1371
- - lib/fog/aws/requests/redshift/create_cluster_subnet_group.rb
1372
- - lib/fog/aws/requests/redshift/delete_cluster.rb
1373
- - lib/fog/aws/requests/redshift/delete_cluster_parameter_group.rb
1374
- - lib/fog/aws/requests/redshift/delete_cluster_security_group.rb
1375
- - lib/fog/aws/requests/redshift/delete_cluster_snapshot.rb
1376
- - lib/fog/aws/requests/redshift/delete_cluster_subnet_group.rb
1377
- - lib/fog/aws/requests/redshift/describe_cluster_parameter_groups.rb
1378
- - lib/fog/aws/requests/redshift/describe_cluster_parameters.rb
1379
- - lib/fog/aws/requests/redshift/describe_cluster_security_groups.rb
1380
- - lib/fog/aws/requests/redshift/describe_cluster_snapshots.rb
1381
- - lib/fog/aws/requests/redshift/describe_cluster_subnet_groups.rb
1382
- - lib/fog/aws/requests/redshift/describe_cluster_versions.rb
1383
- - lib/fog/aws/requests/redshift/describe_clusters.rb
1384
- - lib/fog/aws/requests/redshift/describe_default_cluster_parameters.rb
1385
- - lib/fog/aws/requests/redshift/describe_events.rb
1386
- - lib/fog/aws/requests/redshift/describe_orderable_cluster_options.rb
1387
- - lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
1388
- - lib/fog/aws/requests/redshift/describe_reserved_nodes.rb
1389
- - lib/fog/aws/requests/redshift/describe_resize.rb
1390
- - lib/fog/aws/requests/redshift/modify_cluster.rb
1391
- - lib/fog/aws/requests/redshift/modify_cluster_parameter_group.rb
1392
- - lib/fog/aws/requests/redshift/modify_cluster_subnet_group.rb
1393
- - lib/fog/aws/requests/redshift/purchase_reserved_node_offering.rb
1394
- - lib/fog/aws/requests/redshift/reboot_cluster.rb
1395
- - lib/fog/aws/requests/redshift/reset_cluster_parameter_group.rb
1396
- - lib/fog/aws/requests/redshift/restore_from_cluster_snapshot.rb
1397
- - lib/fog/aws/requests/redshift/revoke_cluster_security_group_ingress.rb
1398
- - lib/fog/aws/requests/redshift/revoke_snapshot_access.rb
1399
- - lib/fog/aws/requests/ses/delete_verified_email_address.rb
1400
- - lib/fog/aws/requests/ses/get_send_quota.rb
1401
- - lib/fog/aws/requests/ses/get_send_statistics.rb
1402
- - lib/fog/aws/requests/ses/list_verified_email_addresses.rb
1403
- - lib/fog/aws/requests/ses/send_email.rb
1404
- - lib/fog/aws/requests/ses/send_raw_email.rb
1405
- - lib/fog/aws/requests/ses/verify_domain_identity.rb
1406
- - lib/fog/aws/requests/ses/verify_email_address.rb
1407
- - lib/fog/aws/requests/simpledb/batch_put_attributes.rb
1408
- - lib/fog/aws/requests/simpledb/create_domain.rb
1409
- - lib/fog/aws/requests/simpledb/delete_attributes.rb
1410
- - lib/fog/aws/requests/simpledb/delete_domain.rb
1411
- - lib/fog/aws/requests/simpledb/domain_metadata.rb
1412
- - lib/fog/aws/requests/simpledb/get_attributes.rb
1413
- - lib/fog/aws/requests/simpledb/list_domains.rb
1414
- - lib/fog/aws/requests/simpledb/put_attributes.rb
1415
- - lib/fog/aws/requests/simpledb/select.rb
1416
- - lib/fog/aws/requests/sns/add_permission.rb
1417
- - lib/fog/aws/requests/sns/confirm_subscription.rb
1418
- - lib/fog/aws/requests/sns/create_topic.rb
1419
- - lib/fog/aws/requests/sns/delete_topic.rb
1420
- - lib/fog/aws/requests/sns/get_topic_attributes.rb
1421
- - lib/fog/aws/requests/sns/list_subscriptions.rb
1422
- - lib/fog/aws/requests/sns/list_subscriptions_by_topic.rb
1423
- - lib/fog/aws/requests/sns/list_topics.rb
1424
- - lib/fog/aws/requests/sns/publish.rb
1425
- - lib/fog/aws/requests/sns/remove_permission.rb
1426
- - lib/fog/aws/requests/sns/set_topic_attributes.rb
1427
- - lib/fog/aws/requests/sns/subscribe.rb
1428
- - lib/fog/aws/requests/sns/unsubscribe.rb
1429
- - lib/fog/aws/requests/sqs/change_message_visibility.rb
1430
- - lib/fog/aws/requests/sqs/create_queue.rb
1431
- - lib/fog/aws/requests/sqs/delete_message.rb
1432
- - lib/fog/aws/requests/sqs/delete_queue.rb
1433
- - lib/fog/aws/requests/sqs/get_queue_attributes.rb
1434
- - lib/fog/aws/requests/sqs/list_queues.rb
1435
- - lib/fog/aws/requests/sqs/receive_message.rb
1436
- - lib/fog/aws/requests/sqs/send_message.rb
1437
- - lib/fog/aws/requests/sqs/set_queue_attributes.rb
1438
- - lib/fog/aws/requests/storage/abort_multipart_upload.rb
1439
- - lib/fog/aws/requests/storage/acl_utils.rb
1440
- - lib/fog/aws/requests/storage/complete_multipart_upload.rb
1441
- - lib/fog/aws/requests/storage/copy_object.rb
1442
- - lib/fog/aws/requests/storage/cors_utils.rb
1443
- - lib/fog/aws/requests/storage/delete_bucket.rb
1444
- - lib/fog/aws/requests/storage/delete_bucket_cors.rb
1445
- - lib/fog/aws/requests/storage/delete_bucket_lifecycle.rb
1446
- - lib/fog/aws/requests/storage/delete_bucket_policy.rb
1447
- - lib/fog/aws/requests/storage/delete_bucket_tagging.rb
1448
- - lib/fog/aws/requests/storage/delete_bucket_website.rb
1449
- - lib/fog/aws/requests/storage/delete_multiple_objects.rb
1450
- - lib/fog/aws/requests/storage/delete_object.rb
1451
- - lib/fog/aws/requests/storage/get_bucket.rb
1452
- - lib/fog/aws/requests/storage/get_bucket_acl.rb
1453
- - lib/fog/aws/requests/storage/get_bucket_cors.rb
1454
- - lib/fog/aws/requests/storage/get_bucket_lifecycle.rb
1455
- - lib/fog/aws/requests/storage/get_bucket_location.rb
1456
- - lib/fog/aws/requests/storage/get_bucket_logging.rb
1457
- - lib/fog/aws/requests/storage/get_bucket_object_versions.rb
1458
- - lib/fog/aws/requests/storage/get_bucket_policy.rb
1459
- - lib/fog/aws/requests/storage/get_bucket_tagging.rb
1460
- - lib/fog/aws/requests/storage/get_bucket_versioning.rb
1461
- - lib/fog/aws/requests/storage/get_bucket_website.rb
1462
- - lib/fog/aws/requests/storage/get_object.rb
1463
- - lib/fog/aws/requests/storage/get_object_acl.rb
1464
- - lib/fog/aws/requests/storage/get_object_http_url.rb
1465
- - lib/fog/aws/requests/storage/get_object_https_url.rb
1466
- - lib/fog/aws/requests/storage/get_object_torrent.rb
1467
- - lib/fog/aws/requests/storage/get_object_url.rb
1468
- - lib/fog/aws/requests/storage/get_request_payment.rb
1469
- - lib/fog/aws/requests/storage/get_service.rb
1470
- - lib/fog/aws/requests/storage/head_bucket.rb
1471
- - lib/fog/aws/requests/storage/head_object.rb
1472
- - lib/fog/aws/requests/storage/initiate_multipart_upload.rb
1473
- - lib/fog/aws/requests/storage/list_multipart_uploads.rb
1474
- - lib/fog/aws/requests/storage/list_parts.rb
1475
- - lib/fog/aws/requests/storage/post_object_hidden_fields.rb
1476
- - lib/fog/aws/requests/storage/post_object_restore.rb
1477
- - lib/fog/aws/requests/storage/put_bucket.rb
1478
- - lib/fog/aws/requests/storage/put_bucket_acl.rb
1479
- - lib/fog/aws/requests/storage/put_bucket_cors.rb
1480
- - lib/fog/aws/requests/storage/put_bucket_lifecycle.rb
1481
- - lib/fog/aws/requests/storage/put_bucket_logging.rb
1482
- - lib/fog/aws/requests/storage/put_bucket_policy.rb
1483
- - lib/fog/aws/requests/storage/put_bucket_tagging.rb
1484
- - lib/fog/aws/requests/storage/put_bucket_versioning.rb
1485
- - lib/fog/aws/requests/storage/put_bucket_website.rb
1486
- - lib/fog/aws/requests/storage/put_object.rb
1487
- - lib/fog/aws/requests/storage/put_object_acl.rb
1488
- - lib/fog/aws/requests/storage/put_object_url.rb
1489
- - lib/fog/aws/requests/storage/put_request_payment.rb
1490
- - lib/fog/aws/requests/storage/shared_mock_methods.rb
1491
- - lib/fog/aws/requests/storage/sync_clock.rb
1492
- - lib/fog/aws/requests/storage/upload_part.rb
1493
- - lib/fog/aws/requests/sts/assume_role.rb
1494
- - lib/fog/aws/requests/sts/assume_role_with_saml.rb
1495
- - lib/fog/aws/requests/sts/get_federation_token.rb
1496
- - lib/fog/aws/requests/sts/get_session_token.rb
1497
- - lib/fog/aws/ses.rb
1498
- - lib/fog/aws/signaturev4.rb
1499
- - lib/fog/aws/simpledb.rb
1500
- - lib/fog/aws/sns.rb
1501
- - lib/fog/aws/sqs.rb
1502
- - lib/fog/aws/storage.rb
1503
- - lib/fog/aws/sts.rb
502
+ - lib/fog/aws/service_mapper.rb
1504
503
  - lib/fog/bare_metal_cloud.rb
1505
504
  - lib/fog/bare_metal_cloud/compute.rb
1506
505
  - lib/fog/bare_metal_cloud/core.rb
@@ -1546,7 +545,6 @@ files:
1546
545
  - lib/fog/bin/rackspace.rb
1547
546
  - lib/fog/bin/rage4.rb
1548
547
  - lib/fog/bin/riakcs.rb
1549
- - lib/fog/bin/serverlove.rb
1550
548
  - lib/fog/bin/softlayer.rb
1551
549
  - lib/fog/bin/vcloud.rb
1552
550
  - lib/fog/bin/vcloud_director.rb
@@ -1715,12 +713,26 @@ files:
1715
713
  - lib/fog/cloudstack/models/compute/address.rb
1716
714
  - lib/fog/cloudstack/models/compute/disk_offering.rb
1717
715
  - lib/fog/cloudstack/models/compute/disk_offerings.rb
716
+ - lib/fog/cloudstack/models/compute/egress_firewall_rule.rb
717
+ - lib/fog/cloudstack/models/compute/egress_firewall_rules.rb
718
+ - lib/fog/cloudstack/models/compute/firewall_rule.rb
719
+ - lib/fog/cloudstack/models/compute/firewall_rules.rb
1718
720
  - lib/fog/cloudstack/models/compute/flavor.rb
1719
721
  - lib/fog/cloudstack/models/compute/flavors.rb
1720
722
  - lib/fog/cloudstack/models/compute/image.rb
1721
723
  - lib/fog/cloudstack/models/compute/images.rb
1722
724
  - lib/fog/cloudstack/models/compute/job.rb
1723
725
  - lib/fog/cloudstack/models/compute/jobs.rb
726
+ - lib/fog/cloudstack/models/compute/network.rb
727
+ - lib/fog/cloudstack/models/compute/network_offering.rb
728
+ - lib/fog/cloudstack/models/compute/network_offerings.rb
729
+ - lib/fog/cloudstack/models/compute/networks.rb
730
+ - lib/fog/cloudstack/models/compute/port_forwarding_rule.rb
731
+ - lib/fog/cloudstack/models/compute/port_forwarding_rules.rb
732
+ - lib/fog/cloudstack/models/compute/project.rb
733
+ - lib/fog/cloudstack/models/compute/projects.rb
734
+ - lib/fog/cloudstack/models/compute/public_ip_address.rb
735
+ - lib/fog/cloudstack/models/compute/public_ip_addresses.rb
1724
736
  - lib/fog/cloudstack/models/compute/security_group.rb
1725
737
  - lib/fog/cloudstack/models/compute/security_group_rule.rb
1726
738
  - lib/fog/cloudstack/models/compute/security_group_rules.rb
@@ -3819,11 +2831,13 @@ files:
3819
2831
  - lib/fog/ovirt/requests/compute/update_vm.rb
3820
2832
  - lib/fog/ovirt/requests/compute/update_volume.rb
3821
2833
  - lib/fog/ovirt/requests/compute/vm_action.rb
2834
+ - lib/fog/ovirt/requests/compute/vm_start_with_cloudinit.rb
3822
2835
  - lib/fog/ovirt/requests/compute/vm_ticket.rb
3823
2836
  - lib/fog/rackspace.rb
3824
2837
  - lib/fog/rackspace/auto_scale.rb
3825
2838
  - lib/fog/rackspace/block_storage.rb
3826
2839
  - lib/fog/rackspace/cdn.rb
2840
+ - lib/fog/rackspace/cdn_v2.rb
3827
2841
  - lib/fog/rackspace/compute.rb
3828
2842
  - lib/fog/rackspace/compute_v2.rb
3829
2843
  - lib/fog/rackspace/core.rb
@@ -3831,9 +2845,10 @@ files:
3831
2845
  - lib/fog/rackspace/dns.rb
3832
2846
  - lib/fog/rackspace/docs/auto_scale.md
3833
2847
  - lib/fog/rackspace/docs/block_storage.md
2848
+ - lib/fog/rackspace/docs/cdn_v2.md
3834
2849
  - lib/fog/rackspace/docs/compute_v2.md
3835
2850
  - lib/fog/rackspace/docs/getting_started.md
3836
- - lib/fog/rackspace/docs/networking.md
2851
+ - lib/fog/rackspace/docs/networking_v2.md
3837
2852
  - lib/fog/rackspace/docs/orchestration.md
3838
2853
  - lib/fog/rackspace/docs/queues.md
3839
2854
  - lib/fog/rackspace/docs/storage.md
@@ -3892,6 +2907,10 @@ files:
3892
2907
  - lib/fog/rackspace/models/block_storage/volume_type.rb
3893
2908
  - lib/fog/rackspace/models/block_storage/volume_types.rb
3894
2909
  - lib/fog/rackspace/models/block_storage/volumes.rb
2910
+ - lib/fog/rackspace/models/cdn_v2/flavor.rb
2911
+ - lib/fog/rackspace/models/cdn_v2/flavors.rb
2912
+ - lib/fog/rackspace/models/cdn_v2/service.rb
2913
+ - lib/fog/rackspace/models/cdn_v2/services.rb
3895
2914
  - lib/fog/rackspace/models/compute/flavor.rb
3896
2915
  - lib/fog/rackspace/models/compute/flavors.rb
3897
2916
  - lib/fog/rackspace/models/compute/image.rb
@@ -3968,6 +2987,12 @@ files:
3968
2987
  - lib/fog/rackspace/models/networking/networks.rb
3969
2988
  - lib/fog/rackspace/models/networking/virtual_interface.rb
3970
2989
  - lib/fog/rackspace/models/networking/virtual_interfaces.rb
2990
+ - lib/fog/rackspace/models/networking_v2/network.rb
2991
+ - lib/fog/rackspace/models/networking_v2/networks.rb
2992
+ - lib/fog/rackspace/models/networking_v2/port.rb
2993
+ - lib/fog/rackspace/models/networking_v2/ports.rb
2994
+ - lib/fog/rackspace/models/networking_v2/subnet.rb
2995
+ - lib/fog/rackspace/models/networking_v2/subnets.rb
3971
2996
  - lib/fog/rackspace/models/orchestration/event.rb
3972
2997
  - lib/fog/rackspace/models/orchestration/events.rb
3973
2998
  - lib/fog/rackspace/models/orchestration/resource.rb
@@ -3991,6 +3016,7 @@ files:
3991
3016
  - lib/fog/rackspace/models/storage/metadata.rb
3992
3017
  - lib/fog/rackspace/monitoring.rb
3993
3018
  - lib/fog/rackspace/networking.rb
3019
+ - lib/fog/rackspace/networking_v2.rb
3994
3020
  - lib/fog/rackspace/orchestration.rb
3995
3021
  - lib/fog/rackspace/queues.rb
3996
3022
  - lib/fog/rackspace/requests/auto_scale/create_group.rb
@@ -4031,6 +3057,16 @@ files:
4031
3057
  - lib/fog/rackspace/requests/cdn/head_container.rb
4032
3058
  - lib/fog/rackspace/requests/cdn/post_container.rb
4033
3059
  - lib/fog/rackspace/requests/cdn/put_container.rb
3060
+ - lib/fog/rackspace/requests/cdn_v2/create_service.rb
3061
+ - lib/fog/rackspace/requests/cdn_v2/delete_assets.rb
3062
+ - lib/fog/rackspace/requests/cdn_v2/delete_service.rb
3063
+ - lib/fog/rackspace/requests/cdn_v2/get_flavor.rb
3064
+ - lib/fog/rackspace/requests/cdn_v2/get_home_document.rb
3065
+ - lib/fog/rackspace/requests/cdn_v2/get_ping.rb
3066
+ - lib/fog/rackspace/requests/cdn_v2/get_service.rb
3067
+ - lib/fog/rackspace/requests/cdn_v2/list_flavors.rb
3068
+ - lib/fog/rackspace/requests/cdn_v2/list_services.rb
3069
+ - lib/fog/rackspace/requests/cdn_v2/update_service.rb
4034
3070
  - lib/fog/rackspace/requests/compute/confirm_resized_server.rb
4035
3071
  - lib/fog/rackspace/requests/compute/create_image.rb
4036
3072
  - lib/fog/rackspace/requests/compute/create_server.rb
@@ -4233,6 +3269,21 @@ files:
4233
3269
  - lib/fog/rackspace/requests/networking/get_network.rb
4234
3270
  - lib/fog/rackspace/requests/networking/list_networks.rb
4235
3271
  - lib/fog/rackspace/requests/networking/list_virtual_interfaces.rb
3272
+ - lib/fog/rackspace/requests/networking_v2/create_network.rb
3273
+ - lib/fog/rackspace/requests/networking_v2/create_port.rb
3274
+ - lib/fog/rackspace/requests/networking_v2/create_subnet.rb
3275
+ - lib/fog/rackspace/requests/networking_v2/delete_network.rb
3276
+ - lib/fog/rackspace/requests/networking_v2/delete_port.rb
3277
+ - lib/fog/rackspace/requests/networking_v2/delete_subnet.rb
3278
+ - lib/fog/rackspace/requests/networking_v2/list_networks.rb
3279
+ - lib/fog/rackspace/requests/networking_v2/list_ports.rb
3280
+ - lib/fog/rackspace/requests/networking_v2/list_subnets.rb
3281
+ - lib/fog/rackspace/requests/networking_v2/show_network.rb
3282
+ - lib/fog/rackspace/requests/networking_v2/show_port.rb
3283
+ - lib/fog/rackspace/requests/networking_v2/show_subnet.rb
3284
+ - lib/fog/rackspace/requests/networking_v2/update_network.rb
3285
+ - lib/fog/rackspace/requests/networking_v2/update_port.rb
3286
+ - lib/fog/rackspace/requests/networking_v2/update_subnet.rb
4236
3287
  - lib/fog/rackspace/requests/orchestration/abandon_stack.rb
4237
3288
  - lib/fog/rackspace/requests/orchestration/build_info.rb
4238
3289
  - lib/fog/rackspace/requests/orchestration/create_stack.rb
@@ -4323,29 +3374,6 @@ files:
4323
3374
  - lib/fog/riakcs/requests/provisioning/update_user.rb
4324
3375
  - lib/fog/riakcs/requests/usage/get_usage.rb
4325
3376
  - lib/fog/riakcs/usage.rb
4326
- - lib/fog/serverlove.rb
4327
- - lib/fog/serverlove/compute.rb
4328
- - lib/fog/serverlove/core.rb
4329
- - lib/fog/serverlove/models/compute/image.rb
4330
- - lib/fog/serverlove/models/compute/images.rb
4331
- - lib/fog/serverlove/models/compute/server.rb
4332
- - lib/fog/serverlove/models/compute/servers.rb
4333
- - lib/fog/serverlove/requests/compute/create_image.rb
4334
- - lib/fog/serverlove/requests/compute/create_server.rb
4335
- - lib/fog/serverlove/requests/compute/destroy_image.rb
4336
- - lib/fog/serverlove/requests/compute/destroy_server.rb
4337
- - lib/fog/serverlove/requests/compute/get_image.rb
4338
- - lib/fog/serverlove/requests/compute/get_images.rb
4339
- - lib/fog/serverlove/requests/compute/get_server.rb
4340
- - lib/fog/serverlove/requests/compute/get_servers.rb
4341
- - lib/fog/serverlove/requests/compute/load_standard_image.rb
4342
- - lib/fog/serverlove/requests/compute/reset_server.rb
4343
- - lib/fog/serverlove/requests/compute/shutdown_server.rb
4344
- - lib/fog/serverlove/requests/compute/start_server.rb
4345
- - lib/fog/serverlove/requests/compute/stop_server.rb
4346
- - lib/fog/serverlove/requests/compute/update_image.rb
4347
- - lib/fog/serverlove/requests/compute/update_server.rb
4348
- - lib/fog/serverlove/util/compute/password_generator.rb
4349
3377
  - lib/fog/vcloud.rb
4350
3378
  - lib/fog/vcloud/compute.rb
4351
3379
  - lib/fog/vcloud/core.rb
@@ -4677,6 +3705,7 @@ files:
4677
3705
  - lib/fog/vsphere/models/compute/templates.rb
4678
3706
  - lib/fog/vsphere/models/compute/volume.rb
4679
3707
  - lib/fog/vsphere/models/compute/volumes.rb
3708
+ - lib/fog/vsphere/requests/compute/cloudinit_to_customspec.rb
4680
3709
  - lib/fog/vsphere/requests/compute/create_folder.rb
4681
3710
  - lib/fog/vsphere/requests/compute/create_vm.rb
4682
3711
  - lib/fog/vsphere/requests/compute/current_time.rb
@@ -4808,6 +3837,7 @@ files:
4808
3837
  - lib/fog/xenserver/requests/compute/create_vif.rb
4809
3838
  - lib/fog/xenserver/requests/compute/create_vlan.rb
4810
3839
  - lib/fog/xenserver/requests/compute/destroy_network.rb
3840
+ - lib/fog/xenserver/requests/compute/destroy_record.rb
4811
3841
  - lib/fog/xenserver/requests/compute/destroy_server.rb
4812
3842
  - lib/fog/xenserver/requests/compute/destroy_sr.rb
4813
3843
  - lib/fog/xenserver/requests/compute/destroy_vdi.rb
@@ -4867,6 +3897,8 @@ files:
4867
3897
  - lib/fog/zerigo/requests/dns/update_zone.rb
4868
3898
  - lib/tasks/changelog_task.rb
4869
3899
  - lib/tasks/github_release_task.rb
3900
+ - spec/fog/account_spec.rb
3901
+ - spec/fog/billing_spec.rb
4870
3902
  - spec/fog/bin/atmos_spec.rb
4871
3903
  - spec/fog/bin/aws_spec.rb
4872
3904
  - spec/fog/bin/baremetalcloud_spec.rb
@@ -4913,206 +3945,21 @@ files:
4913
3945
  - spec/fog/bin/xenserver_spec.rb
4914
3946
  - spec/fog/bin/zerigo_spec.rb
4915
3947
  - spec/fog/bin_spec.rb
3948
+ - spec/fog/cdn_spec.rb
4916
3949
  - spec/fog/compute_spec.rb
3950
+ - spec/fog/dns_spec.rb
3951
+ - spec/fog/identity_spec.rb
3952
+ - spec/fog/image_spec.rb
3953
+ - spec/fog/metering_spec.rb
3954
+ - spec/fog/monitoring_spec.rb
3955
+ - spec/fog/network_spec.rb
3956
+ - spec/fog/orchestration_spec.rb
3957
+ - spec/fog/storage_spec.rb
3958
+ - spec/fog/support_spec.rb
3959
+ - spec/fog/volume_spec.rb
3960
+ - spec/fog/vpn_spec.rb
4917
3961
  - spec/fog/xml/connection_spec.rb
4918
3962
  - spec/helpers/bin.rb
4919
- - tests/aws/credentials_tests.rb
4920
- - tests/aws/models/auto_scaling/activities_tests.rb
4921
- - tests/aws/models/auto_scaling/configuration_test.rb
4922
- - tests/aws/models/auto_scaling/configurations_tests.rb
4923
- - tests/aws/models/auto_scaling/groups_test.rb
4924
- - tests/aws/models/auto_scaling/helper.rb
4925
- - tests/aws/models/auto_scaling/instance_tests.rb
4926
- - tests/aws/models/auto_scaling/instances_tests.rb
4927
- - tests/aws/models/beanstalk/application_tests.rb
4928
- - tests/aws/models/beanstalk/applications_tests.rb
4929
- - tests/aws/models/beanstalk/environment_tests.rb
4930
- - tests/aws/models/beanstalk/environments_tests.rb
4931
- - tests/aws/models/beanstalk/template_tests.rb
4932
- - tests/aws/models/beanstalk/templates_tests.rb
4933
- - tests/aws/models/beanstalk/version_tests.rb
4934
- - tests/aws/models/beanstalk/versions_tests.rb
4935
- - tests/aws/models/cdn/distribution_tests.rb
4936
- - tests/aws/models/cdn/distributions_tests.rb
4937
- - tests/aws/models/cdn/invalidation_tests.rb
4938
- - tests/aws/models/cdn/invalidations_tests.rb
4939
- - tests/aws/models/cdn/streaming_distribution_tests.rb
4940
- - tests/aws/models/cdn/streaming_distributions_tests.rb
4941
- - tests/aws/models/cloud_watch/alarm_data_tests.rb
4942
- - tests/aws/models/cloud_watch/alarm_history_tests.rb
4943
- - tests/aws/models/cloud_watch/metric_statistics_tests.rb
4944
- - tests/aws/models/cloud_watch/metrics_tests.rb
4945
- - tests/aws/models/compute/address_tests.rb
4946
- - tests/aws/models/compute/addresses_tests.rb
4947
- - tests/aws/models/compute/dhcp_option_tests.rb
4948
- - tests/aws/models/compute/dhcp_options_tests.rb
4949
- - tests/aws/models/compute/internet_gateway_tests.rb
4950
- - tests/aws/models/compute/internet_gateways_tests.rb
4951
- - tests/aws/models/compute/key_pair_tests.rb
4952
- - tests/aws/models/compute/key_pairs_tests.rb
4953
- - tests/aws/models/compute/network_acl_tests.rb
4954
- - tests/aws/models/compute/network_acls_tests.rb
4955
- - tests/aws/models/compute/network_interfaces_test.rb
4956
- - tests/aws/models/compute/security_group_tests.rb
4957
- - tests/aws/models/compute/security_groups_tests.rb
4958
- - tests/aws/models/compute/server_tests.rb
4959
- - tests/aws/models/compute/snapshot_tests.rb
4960
- - tests/aws/models/compute/snapshots_tests.rb
4961
- - tests/aws/models/compute/subnet_tests.rb
4962
- - tests/aws/models/compute/subnets_tests.rb
4963
- - tests/aws/models/compute/volume_tests.rb
4964
- - tests/aws/models/compute/volumes_tests.rb
4965
- - tests/aws/models/compute/vpc_tests.rb
4966
- - tests/aws/models/compute/vpcs_tests.rb
4967
- - tests/aws/models/data_pipeline/pipeline_tests.rb
4968
- - tests/aws/models/data_pipeline/pipelines_tests.rb
4969
- - tests/aws/models/dns/record_tests.rb
4970
- - tests/aws/models/dns/records_tests.rb
4971
- - tests/aws/models/dns/zone_tests.rb
4972
- - tests/aws/models/dns/zones_tests.rb
4973
- - tests/aws/models/elasticache/cluster_tests.rb
4974
- - tests/aws/models/elasticache/parameter_groups_tests.rb
4975
- - tests/aws/models/elasticache/security_groups_tests.rb
4976
- - tests/aws/models/elasticache/subnet_groups_tests.rb
4977
- - tests/aws/models/elb/model_tests.rb
4978
- - tests/aws/models/elb/tagging_tests.rb
4979
- - tests/aws/models/glacier/model_tests.rb
4980
- - tests/aws/models/iam/access_keys_tests.rb
4981
- - tests/aws/models/iam/policies_tests.rb
4982
- - tests/aws/models/iam/roles_tests.rb
4983
- - tests/aws/models/iam/users_tests.rb
4984
- - tests/aws/models/rds/helper.rb
4985
- - tests/aws/models/rds/instance_option_tests.rb
4986
- - tests/aws/models/rds/parameter_group_tests.rb
4987
- - tests/aws/models/rds/parameter_groups_tests.rb
4988
- - tests/aws/models/rds/security_group_tests.rb
4989
- - tests/aws/models/rds/security_groups_tests.rb
4990
- - tests/aws/models/rds/server_tests.rb
4991
- - tests/aws/models/rds/servers_tests.rb
4992
- - tests/aws/models/rds/snapshot_tests.rb
4993
- - tests/aws/models/rds/snapshots_tests.rb
4994
- - tests/aws/models/rds/tagging_tests.rb
4995
- - tests/aws/models/storage/directory_tests.rb
4996
- - tests/aws/models/storage/file_tests.rb
4997
- - tests/aws/models/storage/files_tests.rb
4998
- - tests/aws/models/storage/url_tests.rb
4999
- - tests/aws/models/storage/version_tests.rb
5000
- - tests/aws/models/storage/versions_tests.rb
5001
- - tests/aws/parsers/elb/describe_load_balancers.rb
5002
- - tests/aws/requests/auto_scaling/auto_scaling_tests.rb
5003
- - tests/aws/requests/auto_scaling/describe_types_tests.rb
5004
- - tests/aws/requests/auto_scaling/helper.rb
5005
- - tests/aws/requests/auto_scaling/model_tests.rb
5006
- - tests/aws/requests/auto_scaling/notification_configuration_tests.rb
5007
- - tests/aws/requests/auto_scaling/tag_tests.rb
5008
- - tests/aws/requests/beanstalk/application_tests.rb
5009
- - tests/aws/requests/beanstalk/solution_stack_tests.rb
5010
- - tests/aws/requests/cdn/cdn_tests.rb
5011
- - tests/aws/requests/cloud_formation/stack_tests.rb
5012
- - tests/aws/requests/cloud_watch/get_metric_statistics_tests.rb
5013
- - tests/aws/requests/cloud_watch/list_metrics_test.rb
5014
- - tests/aws/requests/cloud_watch/put_metric_data_tests.rb
5015
- - tests/aws/requests/compute/address_tests.rb
5016
- - tests/aws/requests/compute/assign_private_ip_tests.rb
5017
- - tests/aws/requests/compute/availability_zone_tests.rb
5018
- - tests/aws/requests/compute/client_tests.rb
5019
- - tests/aws/requests/compute/dhcp_options_tests.rb
5020
- - tests/aws/requests/compute/helper.rb
5021
- - tests/aws/requests/compute/image_tests.rb
5022
- - tests/aws/requests/compute/instance_tests.rb
5023
- - tests/aws/requests/compute/internet_gateway_tests.rb
5024
- - tests/aws/requests/compute/key_pair_tests.rb
5025
- - tests/aws/requests/compute/network_acl_tests.rb
5026
- - tests/aws/requests/compute/network_interface_tests.rb
5027
- - tests/aws/requests/compute/placement_group_tests.rb
5028
- - tests/aws/requests/compute/region_tests.rb
5029
- - tests/aws/requests/compute/route_tests.rb
5030
- - tests/aws/requests/compute/security_group_tests.rb
5031
- - tests/aws/requests/compute/snapshot_tests.rb
5032
- - tests/aws/requests/compute/spot_datafeed_subscription_tests.rb
5033
- - tests/aws/requests/compute/spot_instance_tests.rb
5034
- - tests/aws/requests/compute/spot_price_history_tests.rb
5035
- - tests/aws/requests/compute/subnet_tests.rb
5036
- - tests/aws/requests/compute/tag_tests.rb
5037
- - tests/aws/requests/compute/volume_tests.rb
5038
- - tests/aws/requests/compute/vpc_tests.rb
5039
- - tests/aws/requests/data_pipeline/helper.rb
5040
- - tests/aws/requests/data_pipeline/pipeline_tests.rb
5041
- - tests/aws/requests/dns/dns_tests.rb
5042
- - tests/aws/requests/dns/health_check_tests.rb
5043
- - tests/aws/requests/dns/helper.rb
5044
- - tests/aws/requests/dynamodb/item_tests.rb
5045
- - tests/aws/requests/dynamodb/table_tests.rb
5046
- - tests/aws/requests/elasticache/cache_cluster_tests.rb
5047
- - tests/aws/requests/elasticache/describe_events.rb
5048
- - tests/aws/requests/elasticache/describe_reserved_cache_nodes.rb
5049
- - tests/aws/requests/elasticache/helper.rb
5050
- - tests/aws/requests/elasticache/parameter_group_tests.rb
5051
- - tests/aws/requests/elasticache/security_group_tests.rb
5052
- - tests/aws/requests/elasticache/subnet_group_tests.rb
5053
- - tests/aws/requests/elb/helper.rb
5054
- - tests/aws/requests/elb/listener_tests.rb
5055
- - tests/aws/requests/elb/load_balancer_tests.rb
5056
- - tests/aws/requests/elb/policy_tests.rb
5057
- - tests/aws/requests/emr/helper.rb
5058
- - tests/aws/requests/emr/instance_group_tests.rb
5059
- - tests/aws/requests/emr/job_flow_tests.rb
5060
- - tests/aws/requests/glacier/archive_tests.rb
5061
- - tests/aws/requests/glacier/multipart_upload_tests.rb
5062
- - tests/aws/requests/glacier/tree_hash_tests.rb
5063
- - tests/aws/requests/glacier/vault_tests.rb
5064
- - tests/aws/requests/iam/access_key_tests.rb
5065
- - tests/aws/requests/iam/account_policy_tests.rb
5066
- - tests/aws/requests/iam/account_tests.rb
5067
- - tests/aws/requests/iam/group_policy_tests.rb
5068
- - tests/aws/requests/iam/group_tests.rb
5069
- - tests/aws/requests/iam/helper.rb
5070
- - tests/aws/requests/iam/login_profile_tests.rb
5071
- - tests/aws/requests/iam/mfa_tests.rb
5072
- - tests/aws/requests/iam/role_tests.rb
5073
- - tests/aws/requests/iam/server_certificate_tests.rb
5074
- - tests/aws/requests/iam/user_policy_tests.rb
5075
- - tests/aws/requests/iam/user_tests.rb
5076
- - tests/aws/requests/rds/describe_events.rb
5077
- - tests/aws/requests/rds/helper.rb
5078
- - tests/aws/requests/rds/instance_option_tests.rb
5079
- - tests/aws/requests/rds/instance_tests.rb
5080
- - tests/aws/requests/rds/log_file_tests.rb
5081
- - tests/aws/requests/rds/parameter_group_tests.rb
5082
- - tests/aws/requests/rds/parameter_request_tests.rb
5083
- - tests/aws/requests/rds/security_group_tests.rb
5084
- - tests/aws/requests/rds/subnet_groups_tests.rb
5085
- - tests/aws/requests/rds/tagging_tests.rb
5086
- - tests/aws/requests/redshift/cluster_parameter_group_tests.rb
5087
- - tests/aws/requests/redshift/cluster_security_group_tests.rb
5088
- - tests/aws/requests/redshift/cluster_snapshot_tests.rb
5089
- - tests/aws/requests/redshift/cluster_tests.rb
5090
- - tests/aws/requests/ses/helper.rb
5091
- - tests/aws/requests/ses/verified_domain_identity_tests.rb
5092
- - tests/aws/requests/ses/verified_email_address_tests.rb
5093
- - tests/aws/requests/simpledb/attributes_tests.rb
5094
- - tests/aws/requests/simpledb/domain_tests.rb
5095
- - tests/aws/requests/simpledb/helper.rb
5096
- - tests/aws/requests/sns/helper.rb
5097
- - tests/aws/requests/sns/subscription_tests.rb
5098
- - tests/aws/requests/sns/topic_tests.rb
5099
- - tests/aws/requests/sqs/helper.rb
5100
- - tests/aws/requests/sqs/message_tests.rb
5101
- - tests/aws/requests/sqs/queue_tests.rb
5102
- - tests/aws/requests/storage/acl_utils_tests.rb
5103
- - tests/aws/requests/storage/bucket_tests.rb
5104
- - tests/aws/requests/storage/cors_utils_tests.rb
5105
- - tests/aws/requests/storage/delete_multiple_objects_tests.rb
5106
- - tests/aws/requests/storage/multipart_upload_tests.rb
5107
- - tests/aws/requests/storage/object_tests.rb
5108
- - tests/aws/requests/storage/versioning_tests.rb
5109
- - tests/aws/requests/sts/assume_role_tests.rb
5110
- - tests/aws/requests/sts/assume_role_with_saml_tests.rb
5111
- - tests/aws/requests/sts/get_federation_token_tests.rb
5112
- - tests/aws/requests/sts/session_token_tests.rb
5113
- - tests/aws/signaturev4_tests.rb
5114
- - tests/aws/signed_params_tests.rb
5115
- - tests/aws/storage_tests.rb
5116
3963
  - tests/bluebox/requests/blb/helper.rb
5117
3964
  - tests/bluebox/requests/blb/lb_tests.rb
5118
3965
  - tests/bluebox/requests/compute/block_tests.rb
@@ -5162,6 +4009,7 @@ files:
5162
4009
  - tests/cloudsigma/requests/server_tests.rb
5163
4010
  - tests/cloudsigma/requests/volumes_tests.rb
5164
4011
  - tests/cloudstack/compute/models/disk_offering_tests.rb
4012
+ - tests/cloudstack/compute/models/egress_firewall_rule_tests.rb
5165
4013
  - tests/cloudstack/compute/models/security_group_rule_tests.rb
5166
4014
  - tests/cloudstack/compute/models/security_group_tests.rb
5167
4015
  - tests/cloudstack/compute/models/security_groups_tests.rb
@@ -5170,7 +4018,12 @@ files:
5170
4018
  - tests/cloudstack/compute/models/volume_tests.rb
5171
4019
  - tests/cloudstack/compute/models/volumes_tests.rb
5172
4020
  - tests/cloudstack/requests/disk_offering_tests.rb
4021
+ - tests/cloudstack/requests/egress_firewall_rule_tests.rb
4022
+ - tests/cloudstack/requests/firewall_rule_tests.rb
4023
+ - tests/cloudstack/requests/network_offering_tests.rb
5173
4024
  - tests/cloudstack/requests/os_type_tests.rb
4025
+ - tests/cloudstack/requests/port_forwarding_rule_tests.rb
4026
+ - tests/cloudstack/requests/public_ip_address_tests.rb
5174
4027
  - tests/cloudstack/requests/security_group_tests.rb
5175
4028
  - tests/cloudstack/requests/service_offering_tests.rb
5176
4029
  - tests/cloudstack/requests/snapshot_tests.rb
@@ -5801,9 +4654,6 @@ files:
5801
4654
  - tests/rage4/requests/dns/dns_tests.rb
5802
4655
  - tests/riakcs/requests/provisioning/provisioning_tests.rb
5803
4656
  - tests/riakcs/requests/usage/usage_tests.rb
5804
- - tests/serverlove/requests/compute/image_tests.rb
5805
- - tests/serverlove/requests/compute/server_tests.rb
5806
- - tests/serverlove/util/compute/password_generator_tests.rb
5807
4657
  - tests/storage/helper.rb
5808
4658
  - tests/storage/models/directories_tests.rb
5809
4659
  - tests/storage/models/directory_test.rb
@@ -5961,6 +4811,8 @@ signing_key:
5961
4811
  specification_version: 2
5962
4812
  summary: brings clouds to you
5963
4813
  test_files:
4814
+ - spec/fog/account_spec.rb
4815
+ - spec/fog/billing_spec.rb
5964
4816
  - spec/fog/bin/atmos_spec.rb
5965
4817
  - spec/fog/bin/aws_spec.rb
5966
4818
  - spec/fog/bin/baremetalcloud_spec.rb
@@ -6007,206 +4859,21 @@ test_files:
6007
4859
  - spec/fog/bin/xenserver_spec.rb
6008
4860
  - spec/fog/bin/zerigo_spec.rb
6009
4861
  - spec/fog/bin_spec.rb
4862
+ - spec/fog/cdn_spec.rb
6010
4863
  - spec/fog/compute_spec.rb
4864
+ - spec/fog/dns_spec.rb
4865
+ - spec/fog/identity_spec.rb
4866
+ - spec/fog/image_spec.rb
4867
+ - spec/fog/metering_spec.rb
4868
+ - spec/fog/monitoring_spec.rb
4869
+ - spec/fog/network_spec.rb
4870
+ - spec/fog/orchestration_spec.rb
4871
+ - spec/fog/storage_spec.rb
4872
+ - spec/fog/support_spec.rb
4873
+ - spec/fog/volume_spec.rb
4874
+ - spec/fog/vpn_spec.rb
6011
4875
  - spec/fog/xml/connection_spec.rb
6012
4876
  - spec/helpers/bin.rb
6013
- - tests/aws/credentials_tests.rb
6014
- - tests/aws/models/auto_scaling/activities_tests.rb
6015
- - tests/aws/models/auto_scaling/configuration_test.rb
6016
- - tests/aws/models/auto_scaling/configurations_tests.rb
6017
- - tests/aws/models/auto_scaling/groups_test.rb
6018
- - tests/aws/models/auto_scaling/helper.rb
6019
- - tests/aws/models/auto_scaling/instance_tests.rb
6020
- - tests/aws/models/auto_scaling/instances_tests.rb
6021
- - tests/aws/models/beanstalk/application_tests.rb
6022
- - tests/aws/models/beanstalk/applications_tests.rb
6023
- - tests/aws/models/beanstalk/environment_tests.rb
6024
- - tests/aws/models/beanstalk/environments_tests.rb
6025
- - tests/aws/models/beanstalk/template_tests.rb
6026
- - tests/aws/models/beanstalk/templates_tests.rb
6027
- - tests/aws/models/beanstalk/version_tests.rb
6028
- - tests/aws/models/beanstalk/versions_tests.rb
6029
- - tests/aws/models/cdn/distribution_tests.rb
6030
- - tests/aws/models/cdn/distributions_tests.rb
6031
- - tests/aws/models/cdn/invalidation_tests.rb
6032
- - tests/aws/models/cdn/invalidations_tests.rb
6033
- - tests/aws/models/cdn/streaming_distribution_tests.rb
6034
- - tests/aws/models/cdn/streaming_distributions_tests.rb
6035
- - tests/aws/models/cloud_watch/alarm_data_tests.rb
6036
- - tests/aws/models/cloud_watch/alarm_history_tests.rb
6037
- - tests/aws/models/cloud_watch/metric_statistics_tests.rb
6038
- - tests/aws/models/cloud_watch/metrics_tests.rb
6039
- - tests/aws/models/compute/address_tests.rb
6040
- - tests/aws/models/compute/addresses_tests.rb
6041
- - tests/aws/models/compute/dhcp_option_tests.rb
6042
- - tests/aws/models/compute/dhcp_options_tests.rb
6043
- - tests/aws/models/compute/internet_gateway_tests.rb
6044
- - tests/aws/models/compute/internet_gateways_tests.rb
6045
- - tests/aws/models/compute/key_pair_tests.rb
6046
- - tests/aws/models/compute/key_pairs_tests.rb
6047
- - tests/aws/models/compute/network_acl_tests.rb
6048
- - tests/aws/models/compute/network_acls_tests.rb
6049
- - tests/aws/models/compute/network_interfaces_test.rb
6050
- - tests/aws/models/compute/security_group_tests.rb
6051
- - tests/aws/models/compute/security_groups_tests.rb
6052
- - tests/aws/models/compute/server_tests.rb
6053
- - tests/aws/models/compute/snapshot_tests.rb
6054
- - tests/aws/models/compute/snapshots_tests.rb
6055
- - tests/aws/models/compute/subnet_tests.rb
6056
- - tests/aws/models/compute/subnets_tests.rb
6057
- - tests/aws/models/compute/volume_tests.rb
6058
- - tests/aws/models/compute/volumes_tests.rb
6059
- - tests/aws/models/compute/vpc_tests.rb
6060
- - tests/aws/models/compute/vpcs_tests.rb
6061
- - tests/aws/models/data_pipeline/pipeline_tests.rb
6062
- - tests/aws/models/data_pipeline/pipelines_tests.rb
6063
- - tests/aws/models/dns/record_tests.rb
6064
- - tests/aws/models/dns/records_tests.rb
6065
- - tests/aws/models/dns/zone_tests.rb
6066
- - tests/aws/models/dns/zones_tests.rb
6067
- - tests/aws/models/elasticache/cluster_tests.rb
6068
- - tests/aws/models/elasticache/parameter_groups_tests.rb
6069
- - tests/aws/models/elasticache/security_groups_tests.rb
6070
- - tests/aws/models/elasticache/subnet_groups_tests.rb
6071
- - tests/aws/models/elb/model_tests.rb
6072
- - tests/aws/models/elb/tagging_tests.rb
6073
- - tests/aws/models/glacier/model_tests.rb
6074
- - tests/aws/models/iam/access_keys_tests.rb
6075
- - tests/aws/models/iam/policies_tests.rb
6076
- - tests/aws/models/iam/roles_tests.rb
6077
- - tests/aws/models/iam/users_tests.rb
6078
- - tests/aws/models/rds/helper.rb
6079
- - tests/aws/models/rds/instance_option_tests.rb
6080
- - tests/aws/models/rds/parameter_group_tests.rb
6081
- - tests/aws/models/rds/parameter_groups_tests.rb
6082
- - tests/aws/models/rds/security_group_tests.rb
6083
- - tests/aws/models/rds/security_groups_tests.rb
6084
- - tests/aws/models/rds/server_tests.rb
6085
- - tests/aws/models/rds/servers_tests.rb
6086
- - tests/aws/models/rds/snapshot_tests.rb
6087
- - tests/aws/models/rds/snapshots_tests.rb
6088
- - tests/aws/models/rds/tagging_tests.rb
6089
- - tests/aws/models/storage/directory_tests.rb
6090
- - tests/aws/models/storage/file_tests.rb
6091
- - tests/aws/models/storage/files_tests.rb
6092
- - tests/aws/models/storage/url_tests.rb
6093
- - tests/aws/models/storage/version_tests.rb
6094
- - tests/aws/models/storage/versions_tests.rb
6095
- - tests/aws/parsers/elb/describe_load_balancers.rb
6096
- - tests/aws/requests/auto_scaling/auto_scaling_tests.rb
6097
- - tests/aws/requests/auto_scaling/describe_types_tests.rb
6098
- - tests/aws/requests/auto_scaling/helper.rb
6099
- - tests/aws/requests/auto_scaling/model_tests.rb
6100
- - tests/aws/requests/auto_scaling/notification_configuration_tests.rb
6101
- - tests/aws/requests/auto_scaling/tag_tests.rb
6102
- - tests/aws/requests/beanstalk/application_tests.rb
6103
- - tests/aws/requests/beanstalk/solution_stack_tests.rb
6104
- - tests/aws/requests/cdn/cdn_tests.rb
6105
- - tests/aws/requests/cloud_formation/stack_tests.rb
6106
- - tests/aws/requests/cloud_watch/get_metric_statistics_tests.rb
6107
- - tests/aws/requests/cloud_watch/list_metrics_test.rb
6108
- - tests/aws/requests/cloud_watch/put_metric_data_tests.rb
6109
- - tests/aws/requests/compute/address_tests.rb
6110
- - tests/aws/requests/compute/assign_private_ip_tests.rb
6111
- - tests/aws/requests/compute/availability_zone_tests.rb
6112
- - tests/aws/requests/compute/client_tests.rb
6113
- - tests/aws/requests/compute/dhcp_options_tests.rb
6114
- - tests/aws/requests/compute/helper.rb
6115
- - tests/aws/requests/compute/image_tests.rb
6116
- - tests/aws/requests/compute/instance_tests.rb
6117
- - tests/aws/requests/compute/internet_gateway_tests.rb
6118
- - tests/aws/requests/compute/key_pair_tests.rb
6119
- - tests/aws/requests/compute/network_acl_tests.rb
6120
- - tests/aws/requests/compute/network_interface_tests.rb
6121
- - tests/aws/requests/compute/placement_group_tests.rb
6122
- - tests/aws/requests/compute/region_tests.rb
6123
- - tests/aws/requests/compute/route_tests.rb
6124
- - tests/aws/requests/compute/security_group_tests.rb
6125
- - tests/aws/requests/compute/snapshot_tests.rb
6126
- - tests/aws/requests/compute/spot_datafeed_subscription_tests.rb
6127
- - tests/aws/requests/compute/spot_instance_tests.rb
6128
- - tests/aws/requests/compute/spot_price_history_tests.rb
6129
- - tests/aws/requests/compute/subnet_tests.rb
6130
- - tests/aws/requests/compute/tag_tests.rb
6131
- - tests/aws/requests/compute/volume_tests.rb
6132
- - tests/aws/requests/compute/vpc_tests.rb
6133
- - tests/aws/requests/data_pipeline/helper.rb
6134
- - tests/aws/requests/data_pipeline/pipeline_tests.rb
6135
- - tests/aws/requests/dns/dns_tests.rb
6136
- - tests/aws/requests/dns/health_check_tests.rb
6137
- - tests/aws/requests/dns/helper.rb
6138
- - tests/aws/requests/dynamodb/item_tests.rb
6139
- - tests/aws/requests/dynamodb/table_tests.rb
6140
- - tests/aws/requests/elasticache/cache_cluster_tests.rb
6141
- - tests/aws/requests/elasticache/describe_events.rb
6142
- - tests/aws/requests/elasticache/describe_reserved_cache_nodes.rb
6143
- - tests/aws/requests/elasticache/helper.rb
6144
- - tests/aws/requests/elasticache/parameter_group_tests.rb
6145
- - tests/aws/requests/elasticache/security_group_tests.rb
6146
- - tests/aws/requests/elasticache/subnet_group_tests.rb
6147
- - tests/aws/requests/elb/helper.rb
6148
- - tests/aws/requests/elb/listener_tests.rb
6149
- - tests/aws/requests/elb/load_balancer_tests.rb
6150
- - tests/aws/requests/elb/policy_tests.rb
6151
- - tests/aws/requests/emr/helper.rb
6152
- - tests/aws/requests/emr/instance_group_tests.rb
6153
- - tests/aws/requests/emr/job_flow_tests.rb
6154
- - tests/aws/requests/glacier/archive_tests.rb
6155
- - tests/aws/requests/glacier/multipart_upload_tests.rb
6156
- - tests/aws/requests/glacier/tree_hash_tests.rb
6157
- - tests/aws/requests/glacier/vault_tests.rb
6158
- - tests/aws/requests/iam/access_key_tests.rb
6159
- - tests/aws/requests/iam/account_policy_tests.rb
6160
- - tests/aws/requests/iam/account_tests.rb
6161
- - tests/aws/requests/iam/group_policy_tests.rb
6162
- - tests/aws/requests/iam/group_tests.rb
6163
- - tests/aws/requests/iam/helper.rb
6164
- - tests/aws/requests/iam/login_profile_tests.rb
6165
- - tests/aws/requests/iam/mfa_tests.rb
6166
- - tests/aws/requests/iam/role_tests.rb
6167
- - tests/aws/requests/iam/server_certificate_tests.rb
6168
- - tests/aws/requests/iam/user_policy_tests.rb
6169
- - tests/aws/requests/iam/user_tests.rb
6170
- - tests/aws/requests/rds/describe_events.rb
6171
- - tests/aws/requests/rds/helper.rb
6172
- - tests/aws/requests/rds/instance_option_tests.rb
6173
- - tests/aws/requests/rds/instance_tests.rb
6174
- - tests/aws/requests/rds/log_file_tests.rb
6175
- - tests/aws/requests/rds/parameter_group_tests.rb
6176
- - tests/aws/requests/rds/parameter_request_tests.rb
6177
- - tests/aws/requests/rds/security_group_tests.rb
6178
- - tests/aws/requests/rds/subnet_groups_tests.rb
6179
- - tests/aws/requests/rds/tagging_tests.rb
6180
- - tests/aws/requests/redshift/cluster_parameter_group_tests.rb
6181
- - tests/aws/requests/redshift/cluster_security_group_tests.rb
6182
- - tests/aws/requests/redshift/cluster_snapshot_tests.rb
6183
- - tests/aws/requests/redshift/cluster_tests.rb
6184
- - tests/aws/requests/ses/helper.rb
6185
- - tests/aws/requests/ses/verified_domain_identity_tests.rb
6186
- - tests/aws/requests/ses/verified_email_address_tests.rb
6187
- - tests/aws/requests/simpledb/attributes_tests.rb
6188
- - tests/aws/requests/simpledb/domain_tests.rb
6189
- - tests/aws/requests/simpledb/helper.rb
6190
- - tests/aws/requests/sns/helper.rb
6191
- - tests/aws/requests/sns/subscription_tests.rb
6192
- - tests/aws/requests/sns/topic_tests.rb
6193
- - tests/aws/requests/sqs/helper.rb
6194
- - tests/aws/requests/sqs/message_tests.rb
6195
- - tests/aws/requests/sqs/queue_tests.rb
6196
- - tests/aws/requests/storage/acl_utils_tests.rb
6197
- - tests/aws/requests/storage/bucket_tests.rb
6198
- - tests/aws/requests/storage/cors_utils_tests.rb
6199
- - tests/aws/requests/storage/delete_multiple_objects_tests.rb
6200
- - tests/aws/requests/storage/multipart_upload_tests.rb
6201
- - tests/aws/requests/storage/object_tests.rb
6202
- - tests/aws/requests/storage/versioning_tests.rb
6203
- - tests/aws/requests/sts/assume_role_tests.rb
6204
- - tests/aws/requests/sts/assume_role_with_saml_tests.rb
6205
- - tests/aws/requests/sts/get_federation_token_tests.rb
6206
- - tests/aws/requests/sts/session_token_tests.rb
6207
- - tests/aws/signaturev4_tests.rb
6208
- - tests/aws/signed_params_tests.rb
6209
- - tests/aws/storage_tests.rb
6210
4877
  - tests/bluebox/requests/blb/helper.rb
6211
4878
  - tests/bluebox/requests/blb/lb_tests.rb
6212
4879
  - tests/bluebox/requests/compute/block_tests.rb
@@ -6256,6 +4923,7 @@ test_files:
6256
4923
  - tests/cloudsigma/requests/server_tests.rb
6257
4924
  - tests/cloudsigma/requests/volumes_tests.rb
6258
4925
  - tests/cloudstack/compute/models/disk_offering_tests.rb
4926
+ - tests/cloudstack/compute/models/egress_firewall_rule_tests.rb
6259
4927
  - tests/cloudstack/compute/models/security_group_rule_tests.rb
6260
4928
  - tests/cloudstack/compute/models/security_group_tests.rb
6261
4929
  - tests/cloudstack/compute/models/security_groups_tests.rb
@@ -6264,7 +4932,12 @@ test_files:
6264
4932
  - tests/cloudstack/compute/models/volume_tests.rb
6265
4933
  - tests/cloudstack/compute/models/volumes_tests.rb
6266
4934
  - tests/cloudstack/requests/disk_offering_tests.rb
4935
+ - tests/cloudstack/requests/egress_firewall_rule_tests.rb
4936
+ - tests/cloudstack/requests/firewall_rule_tests.rb
4937
+ - tests/cloudstack/requests/network_offering_tests.rb
6267
4938
  - tests/cloudstack/requests/os_type_tests.rb
4939
+ - tests/cloudstack/requests/port_forwarding_rule_tests.rb
4940
+ - tests/cloudstack/requests/public_ip_address_tests.rb
6268
4941
  - tests/cloudstack/requests/security_group_tests.rb
6269
4942
  - tests/cloudstack/requests/service_offering_tests.rb
6270
4943
  - tests/cloudstack/requests/snapshot_tests.rb
@@ -6895,9 +5568,6 @@ test_files:
6895
5568
  - tests/rage4/requests/dns/dns_tests.rb
6896
5569
  - tests/riakcs/requests/provisioning/provisioning_tests.rb
6897
5570
  - tests/riakcs/requests/usage/usage_tests.rb
6898
- - tests/serverlove/requests/compute/image_tests.rb
6899
- - tests/serverlove/requests/compute/server_tests.rb
6900
- - tests/serverlove/util/compute/password_generator_tests.rb
6901
5571
  - tests/storage/helper.rb
6902
5572
  - tests/storage/models/directories_tests.rb
6903
5573
  - tests/storage/models/directory_test.rb