fog-aws 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/.travis.yml +48 -0
- data/Gemfile +7 -0
- data/LICENSE.txt +22 -0
- data/README.md +36 -0
- data/Rakefile +8 -0
- data/fog-aws.gemspec +30 -0
- data/gemfiles/Gemfile-edge +9 -0
- data/gemfiles/Gemfile-ruby-1.8.7 +6 -0
- data/lib/fog/aws.rb +31 -0
- data/lib/fog/aws/auto_scaling.rb +279 -0
- data/lib/fog/aws/beanstalk.rb +156 -0
- data/lib/fog/aws/cdn.rb +205 -0
- data/lib/fog/aws/cloud_formation.rb +133 -0
- data/lib/fog/aws/cloud_watch.rb +167 -0
- data/lib/fog/aws/compute.rb +543 -0
- data/lib/fog/aws/core.rb +343 -0
- data/lib/fog/aws/credential_fetcher.rb +63 -0
- data/lib/fog/aws/data_pipeline.rb +126 -0
- data/lib/fog/aws/dns.rb +154 -0
- data/lib/fog/aws/dynamodb.rb +152 -0
- data/lib/fog/aws/elasticache.rb +216 -0
- data/lib/fog/aws/elb.rb +240 -0
- data/lib/fog/aws/elb/policy_types.rb +477 -0
- data/lib/fog/aws/emr.rb +139 -0
- data/lib/fog/aws/glacier.rb +179 -0
- data/lib/fog/aws/iam.rb +260 -0
- data/lib/fog/aws/models/auto_scaling/activities.rb +37 -0
- data/lib/fog/aws/models/auto_scaling/activity.rb +27 -0
- data/lib/fog/aws/models/auto_scaling/configuration.rb +69 -0
- data/lib/fog/aws/models/auto_scaling/configurations.rb +33 -0
- data/lib/fog/aws/models/auto_scaling/group.rb +150 -0
- data/lib/fog/aws/models/auto_scaling/groups.rb +37 -0
- data/lib/fog/aws/models/auto_scaling/instance.rb +58 -0
- data/lib/fog/aws/models/auto_scaling/instances.rb +28 -0
- data/lib/fog/aws/models/auto_scaling/policies.rb +37 -0
- data/lib/fog/aws/models/auto_scaling/policy.rb +46 -0
- data/lib/fog/aws/models/beanstalk/application.rb +59 -0
- data/lib/fog/aws/models/beanstalk/applications.rb +23 -0
- data/lib/fog/aws/models/beanstalk/environment.rb +145 -0
- data/lib/fog/aws/models/beanstalk/environments.rb +27 -0
- data/lib/fog/aws/models/beanstalk/event.rb +18 -0
- data/lib/fog/aws/models/beanstalk/events.rb +17 -0
- data/lib/fog/aws/models/beanstalk/template.rb +76 -0
- data/lib/fog/aws/models/beanstalk/templates.rb +68 -0
- data/lib/fog/aws/models/beanstalk/version.rb +77 -0
- data/lib/fog/aws/models/beanstalk/versions.rb +29 -0
- data/lib/fog/aws/models/cdn/distribution.rb +90 -0
- data/lib/fog/aws/models/cdn/distribution_helper.rb +60 -0
- data/lib/fog/aws/models/cdn/distributions.rb +30 -0
- data/lib/fog/aws/models/cdn/distributions_helper.rb +45 -0
- data/lib/fog/aws/models/cdn/invalidation.rb +60 -0
- data/lib/fog/aws/models/cdn/invalidations.rb +50 -0
- data/lib/fog/aws/models/cdn/streaming_distribution.rb +74 -0
- data/lib/fog/aws/models/cdn/streaming_distributions.rb +30 -0
- data/lib/fog/aws/models/cloud_watch/alarm.rb +60 -0
- data/lib/fog/aws/models/cloud_watch/alarm_data.rb +38 -0
- data/lib/fog/aws/models/cloud_watch/alarm_datum.rb +65 -0
- data/lib/fog/aws/models/cloud_watch/alarm_histories.rb +17 -0
- data/lib/fog/aws/models/cloud_watch/alarm_history.rb +15 -0
- data/lib/fog/aws/models/cloud_watch/alarms.rb +45 -0
- data/lib/fog/aws/models/cloud_watch/metric.rb +13 -0
- data/lib/fog/aws/models/cloud_watch/metric_statistic.rb +44 -0
- data/lib/fog/aws/models/cloud_watch/metric_statistics.rb +22 -0
- data/lib/fog/aws/models/cloud_watch/metrics.rb +50 -0
- data/lib/fog/aws/models/compute/address.rb +74 -0
- data/lib/fog/aws/models/compute/addresses.rb +96 -0
- data/lib/fog/aws/models/compute/dhcp_option.rb +66 -0
- data/lib/fog/aws/models/compute/dhcp_options.rb +87 -0
- data/lib/fog/aws/models/compute/flavor.rb +19 -0
- data/lib/fog/aws/models/compute/flavors.rb +606 -0
- data/lib/fog/aws/models/compute/image.rb +45 -0
- data/lib/fog/aws/models/compute/images.rb +59 -0
- data/lib/fog/aws/models/compute/internet_gateway.rb +78 -0
- data/lib/fog/aws/models/compute/internet_gateways.rb +87 -0
- data/lib/fog/aws/models/compute/key_pair.rb +53 -0
- data/lib/fog/aws/models/compute/key_pairs.rb +84 -0
- data/lib/fog/aws/models/compute/network_acl.rb +180 -0
- data/lib/fog/aws/models/compute/network_acls.rb +136 -0
- data/lib/fog/aws/models/compute/network_interface.rb +73 -0
- data/lib/fog/aws/models/compute/network_interfaces.rb +133 -0
- data/lib/fog/aws/models/compute/route_table.rb +66 -0
- data/lib/fog/aws/models/compute/route_tables.rb +88 -0
- data/lib/fog/aws/models/compute/security_group.rb +322 -0
- data/lib/fog/aws/models/compute/security_groups.rb +117 -0
- data/lib/fog/aws/models/compute/server.rb +271 -0
- data/lib/fog/aws/models/compute/servers.rb +211 -0
- data/lib/fog/aws/models/compute/snapshot.rb +53 -0
- data/lib/fog/aws/models/compute/snapshots.rb +48 -0
- data/lib/fog/aws/models/compute/spot_request.rb +119 -0
- data/lib/fog/aws/models/compute/spot_requests.rb +86 -0
- data/lib/fog/aws/models/compute/subnet.rb +61 -0
- data/lib/fog/aws/models/compute/subnets.rb +95 -0
- data/lib/fog/aws/models/compute/tag.rb +31 -0
- data/lib/fog/aws/models/compute/tags.rb +31 -0
- data/lib/fog/aws/models/compute/volume.rb +126 -0
- data/lib/fog/aws/models/compute/volumes.rb +117 -0
- data/lib/fog/aws/models/compute/vpc.rb +75 -0
- data/lib/fog/aws/models/compute/vpcs.rb +89 -0
- data/lib/fog/aws/models/data_pipeline/pipeline.rb +63 -0
- data/lib/fog/aws/models/data_pipeline/pipelines.rb +33 -0
- data/lib/fog/aws/models/dns/record.rb +116 -0
- data/lib/fog/aws/models/dns/records.rb +120 -0
- data/lib/fog/aws/models/dns/zone.rb +49 -0
- data/lib/fog/aws/models/dns/zones.rb +29 -0
- data/lib/fog/aws/models/elasticache/cluster.rb +69 -0
- data/lib/fog/aws/models/elasticache/clusters.rb +29 -0
- data/lib/fog/aws/models/elasticache/parameter_group.rb +28 -0
- data/lib/fog/aws/models/elasticache/parameter_groups.rb +28 -0
- data/lib/fog/aws/models/elasticache/security_group.rb +48 -0
- data/lib/fog/aws/models/elasticache/security_groups.rb +28 -0
- data/lib/fog/aws/models/elasticache/subnet_group.rb +32 -0
- data/lib/fog/aws/models/elasticache/subnet_groups.rb +24 -0
- data/lib/fog/aws/models/elb/backend_server_description.rb +11 -0
- data/lib/fog/aws/models/elb/backend_server_descriptions.rb +20 -0
- data/lib/fog/aws/models/elb/listener.rb +56 -0
- data/lib/fog/aws/models/elb/listeners.rb +30 -0
- data/lib/fog/aws/models/elb/load_balancer.rb +241 -0
- data/lib/fog/aws/models/elb/load_balancers.rb +37 -0
- data/lib/fog/aws/models/elb/policies.rb +52 -0
- data/lib/fog/aws/models/elb/policy.rb +59 -0
- data/lib/fog/aws/models/glacier/archive.rb +68 -0
- data/lib/fog/aws/models/glacier/archives.rb +26 -0
- data/lib/fog/aws/models/glacier/job.rb +61 -0
- data/lib/fog/aws/models/glacier/jobs.rb +40 -0
- data/lib/fog/aws/models/glacier/vault.rb +50 -0
- data/lib/fog/aws/models/glacier/vaults.rb +24 -0
- data/lib/fog/aws/models/iam/access_key.rb +39 -0
- data/lib/fog/aws/models/iam/access_keys.rb +32 -0
- data/lib/fog/aws/models/iam/policies.rb +40 -0
- data/lib/fog/aws/models/iam/policy.rb +36 -0
- data/lib/fog/aws/models/iam/role.rb +34 -0
- data/lib/fog/aws/models/iam/roles.rb +37 -0
- data/lib/fog/aws/models/iam/user.rb +38 -0
- data/lib/fog/aws/models/iam/users.rb +47 -0
- data/lib/fog/aws/models/rds/event_subscription.rb +41 -0
- data/lib/fog/aws/models/rds/event_subscriptions.rb +24 -0
- data/lib/fog/aws/models/rds/instance_option.rb +18 -0
- data/lib/fog/aws/models/rds/instance_options.rb +28 -0
- data/lib/fog/aws/models/rds/log_file.rb +22 -0
- data/lib/fog/aws/models/rds/log_files.rb +48 -0
- data/lib/fog/aws/models/rds/parameter.rb +18 -0
- data/lib/fog/aws/models/rds/parameter_group.rb +34 -0
- data/lib/fog/aws/models/rds/parameter_groups.rb +24 -0
- data/lib/fog/aws/models/rds/parameters.rb +36 -0
- data/lib/fog/aws/models/rds/security_group.rb +79 -0
- data/lib/fog/aws/models/rds/security_groups.rb +41 -0
- data/lib/fog/aws/models/rds/server.rb +142 -0
- data/lib/fog/aws/models/rds/servers.rb +24 -0
- data/lib/fog/aws/models/rds/snapshot.rb +49 -0
- data/lib/fog/aws/models/rds/snapshots.rb +69 -0
- data/lib/fog/aws/models/rds/subnet_group.rb +31 -0
- data/lib/fog/aws/models/rds/subnet_groups.rb +24 -0
- data/lib/fog/aws/models/sns/subscription.rb +0 -0
- data/lib/fog/aws/models/sns/subscriptions.rb +17 -0
- data/lib/fog/aws/models/sns/topic.rb +48 -0
- data/lib/fog/aws/models/sns/topics.rb +24 -0
- data/lib/fog/aws/models/storage/directories.rb +39 -0
- data/lib/fog/aws/models/storage/directory.rb +126 -0
- data/lib/fog/aws/models/storage/file.rb +280 -0
- data/lib/fog/aws/models/storage/files.rb +119 -0
- data/lib/fog/aws/models/storage/version.rb +33 -0
- data/lib/fog/aws/models/storage/versions.rb +34 -0
- data/lib/fog/aws/parsers/auto_scaling/basic.rb +24 -0
- data/lib/fog/aws/parsers/auto_scaling/describe_adjustment_types.rb +49 -0
- data/lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb +156 -0
- data/lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_instances.rb +40 -0
- data/lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_notification_types.rb +40 -0
- data/lib/fog/aws/parsers/auto_scaling/describe_launch_configurations.rb +97 -0
- data/lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb +64 -0
- data/lib/fog/aws/parsers/auto_scaling/describe_notification_configurations.rb +39 -0
- data/lib/fog/aws/parsers/auto_scaling/describe_policies.rb +65 -0
- data/lib/fog/aws/parsers/auto_scaling/describe_scaling_activities.rb +44 -0
- data/lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb +49 -0
- data/lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb +43 -0
- data/lib/fog/aws/parsers/auto_scaling/describe_tags.rb +42 -0
- data/lib/fog/aws/parsers/auto_scaling/describe_termination_policy_types.rb +40 -0
- data/lib/fog/aws/parsers/auto_scaling/put_notification_configuration.rb +24 -0
- data/lib/fog/aws/parsers/auto_scaling/put_scaling_policy.rb +27 -0
- data/lib/fog/aws/parsers/auto_scaling/terminate_instance_in_auto_scaling_group.rb +32 -0
- data/lib/fog/aws/parsers/beanstalk/check_dns_availability.rb +16 -0
- data/lib/fog/aws/parsers/beanstalk/create_application.rb +21 -0
- data/lib/fog/aws/parsers/beanstalk/create_application_version.rb +23 -0
- data/lib/fog/aws/parsers/beanstalk/create_configuration_template.rb +26 -0
- data/lib/fog/aws/parsers/beanstalk/create_environment.rb +34 -0
- data/lib/fog/aws/parsers/beanstalk/create_storage_location.rb +15 -0
- data/lib/fog/aws/parsers/beanstalk/describe_application_versions.rb +23 -0
- data/lib/fog/aws/parsers/beanstalk/describe_applications.rb +21 -0
- data/lib/fog/aws/parsers/beanstalk/describe_configuration_options.rb +29 -0
- data/lib/fog/aws/parsers/beanstalk/describe_configuration_settings.rb +27 -0
- data/lib/fog/aws/parsers/beanstalk/describe_environment_resources.rb +34 -0
- data/lib/fog/aws/parsers/beanstalk/describe_environments.rb +35 -0
- data/lib/fog/aws/parsers/beanstalk/describe_events.rb +24 -0
- data/lib/fog/aws/parsers/beanstalk/empty.rb +20 -0
- data/lib/fog/aws/parsers/beanstalk/list_available_solution_stacks.rb +18 -0
- data/lib/fog/aws/parsers/beanstalk/parser.rb +84 -0
- data/lib/fog/aws/parsers/beanstalk/retrieve_environment_info.rb +19 -0
- data/lib/fog/aws/parsers/beanstalk/terminate_environment.rb +34 -0
- data/lib/fog/aws/parsers/beanstalk/update_application.rb +21 -0
- data/lib/fog/aws/parsers/beanstalk/update_application_version.rb +23 -0
- data/lib/fog/aws/parsers/beanstalk/update_configuration_template.rb +26 -0
- data/lib/fog/aws/parsers/beanstalk/update_environment.rb +34 -0
- data/lib/fog/aws/parsers/beanstalk/validate_configuration_settings.rb +19 -0
- data/lib/fog/aws/parsers/cdn/distribution.rb +55 -0
- data/lib/fog/aws/parsers/cdn/get_distribution_list.rb +57 -0
- data/lib/fog/aws/parsers/cdn/get_invalidation.rb +28 -0
- data/lib/fog/aws/parsers/cdn/get_invalidation_list.rb +38 -0
- data/lib/fog/aws/parsers/cdn/get_streaming_distribution_list.rb +55 -0
- data/lib/fog/aws/parsers/cdn/post_invalidation.rb +24 -0
- data/lib/fog/aws/parsers/cdn/streaming_distribution.rb +56 -0
- data/lib/fog/aws/parsers/cloud_formation/basic.rb +10 -0
- data/lib/fog/aws/parsers/cloud_formation/create_stack.rb +16 -0
- data/lib/fog/aws/parsers/cloud_formation/describe_stack_events.rb +28 -0
- data/lib/fog/aws/parsers/cloud_formation/describe_stack_resources.rb +28 -0
- data/lib/fog/aws/parsers/cloud_formation/describe_stacks.rb +78 -0
- data/lib/fog/aws/parsers/cloud_formation/get_template.rb +16 -0
- data/lib/fog/aws/parsers/cloud_formation/list_stack_resources.rb +30 -0
- data/lib/fog/aws/parsers/cloud_formation/list_stacks.rb +32 -0
- data/lib/fog/aws/parsers/cloud_formation/update_stack.rb +16 -0
- data/lib/fog/aws/parsers/cloud_formation/validate_template.rb +49 -0
- data/lib/fog/aws/parsers/cloud_watch/delete_alarms.rb +24 -0
- data/lib/fog/aws/parsers/cloud_watch/describe_alarm_history.rb +38 -0
- data/lib/fog/aws/parsers/cloud_watch/describe_alarms.rb +71 -0
- data/lib/fog/aws/parsers/cloud_watch/describe_alarms_for_metric.rb +69 -0
- data/lib/fog/aws/parsers/cloud_watch/disable_alarm_actions.rb +24 -0
- data/lib/fog/aws/parsers/cloud_watch/enable_alarm_actions.rb +24 -0
- data/lib/fog/aws/parsers/cloud_watch/get_metric_statistics.rb +40 -0
- data/lib/fog/aws/parsers/cloud_watch/list_metrics.rb +56 -0
- data/lib/fog/aws/parsers/cloud_watch/put_metric_alarm.rb +24 -0
- data/lib/fog/aws/parsers/cloud_watch/put_metric_data.rb +24 -0
- data/lib/fog/aws/parsers/cloud_watch/set_alarm_state.rb +24 -0
- data/lib/fog/aws/parsers/compute/allocate_address.rb +16 -0
- data/lib/fog/aws/parsers/compute/assign_private_ip_addresses.rb +22 -0
- data/lib/fog/aws/parsers/compute/associate_address.rb +22 -0
- data/lib/fog/aws/parsers/compute/associate_route_table.rb +16 -0
- data/lib/fog/aws/parsers/compute/attach_network_interface.rb +16 -0
- data/lib/fog/aws/parsers/compute/attach_volume.rb +18 -0
- data/lib/fog/aws/parsers/compute/basic.rb +22 -0
- data/lib/fog/aws/parsers/compute/cancel_spot_instance_requests.rb +26 -0
- data/lib/fog/aws/parsers/compute/copy_image.rb +18 -0
- data/lib/fog/aws/parsers/compute/copy_snapshot.rb +18 -0
- data/lib/fog/aws/parsers/compute/create_dhcp_options.rb +73 -0
- data/lib/fog/aws/parsers/compute/create_image.rb +16 -0
- data/lib/fog/aws/parsers/compute/create_internet_gateway.rb +61 -0
- data/lib/fog/aws/parsers/compute/create_key_pair.rb +16 -0
- data/lib/fog/aws/parsers/compute/create_network_acl.rb +28 -0
- data/lib/fog/aws/parsers/compute/create_network_interface.rb +28 -0
- data/lib/fog/aws/parsers/compute/create_route_table.rb +71 -0
- data/lib/fog/aws/parsers/compute/create_security_group.rb +22 -0
- data/lib/fog/aws/parsers/compute/create_snapshot.rb +22 -0
- data/lib/fog/aws/parsers/compute/create_subnet.rb +46 -0
- data/lib/fog/aws/parsers/compute/create_volume.rb +22 -0
- data/lib/fog/aws/parsers/compute/create_vpc.rb +47 -0
- data/lib/fog/aws/parsers/compute/deregister_image.rb +16 -0
- data/lib/fog/aws/parsers/compute/describe_account_attributes.rb +41 -0
- data/lib/fog/aws/parsers/compute/describe_addresses.rb +26 -0
- data/lib/fog/aws/parsers/compute/describe_availability_zones.rb +40 -0
- data/lib/fog/aws/parsers/compute/describe_dhcp_options.rb +72 -0
- data/lib/fog/aws/parsers/compute/describe_images.rb +89 -0
- data/lib/fog/aws/parsers/compute/describe_instance_status.rb +73 -0
- data/lib/fog/aws/parsers/compute/describe_instances.rb +122 -0
- data/lib/fog/aws/parsers/compute/describe_internet_gateways.rb +60 -0
- data/lib/fog/aws/parsers/compute/describe_key_pairs.rb +26 -0
- data/lib/fog/aws/parsers/compute/describe_network_acls.rb +42 -0
- data/lib/fog/aws/parsers/compute/describe_network_interface_attribute.rb +77 -0
- data/lib/fog/aws/parsers/compute/describe_network_interfaces.rb +42 -0
- data/lib/fog/aws/parsers/compute/describe_placement_groups.rb +26 -0
- data/lib/fog/aws/parsers/compute/describe_regions.rb +26 -0
- data/lib/fog/aws/parsers/compute/describe_reserved_instances.rb +58 -0
- data/lib/fog/aws/parsers/compute/describe_reserved_instances_offerings.rb +30 -0
- data/lib/fog/aws/parsers/compute/describe_route_tables.rb +81 -0
- data/lib/fog/aws/parsers/compute/describe_security_groups.rb +111 -0
- data/lib/fog/aws/parsers/compute/describe_snapshots.rb +52 -0
- data/lib/fog/aws/parsers/compute/describe_spot_price_history.rb +30 -0
- data/lib/fog/aws/parsers/compute/describe_subnets.rb +49 -0
- data/lib/fog/aws/parsers/compute/describe_tags.rb +26 -0
- data/lib/fog/aws/parsers/compute/describe_volume_status.rb +87 -0
- data/lib/fog/aws/parsers/compute/describe_volumes.rb +71 -0
- data/lib/fog/aws/parsers/compute/describe_vpc_attribute.rb +48 -0
- data/lib/fog/aws/parsers/compute/describe_vpcs.rb +47 -0
- data/lib/fog/aws/parsers/compute/detach_volume.rb +18 -0
- data/lib/fog/aws/parsers/compute/get_console_output.rb +24 -0
- data/lib/fog/aws/parsers/compute/get_password_data.rb +22 -0
- data/lib/fog/aws/parsers/compute/import_key_pair.rb +16 -0
- data/lib/fog/aws/parsers/compute/modify_subnet_attribute.rb +24 -0
- data/lib/fog/aws/parsers/compute/monitor_unmonitor_instances.rb +31 -0
- data/lib/fog/aws/parsers/compute/network_acl_parser.rb +103 -0
- data/lib/fog/aws/parsers/compute/network_interface_parser.rb +108 -0
- data/lib/fog/aws/parsers/compute/purchase_reserved_instances_offering.rb +20 -0
- data/lib/fog/aws/parsers/compute/register_image.rb +16 -0
- data/lib/fog/aws/parsers/compute/replace_network_acl_association.rb +20 -0
- data/lib/fog/aws/parsers/compute/run_instances.rb +90 -0
- data/lib/fog/aws/parsers/compute/spot_datafeed_subscription.rb +25 -0
- data/lib/fog/aws/parsers/compute/spot_instance_requests.rb +69 -0
- data/lib/fog/aws/parsers/compute/start_stop_instances.rb +37 -0
- data/lib/fog/aws/parsers/compute/terminate_instances.rb +51 -0
- data/lib/fog/aws/parsers/dns/change_resource_record_sets.rb +22 -0
- data/lib/fog/aws/parsers/dns/create_health_check.rb +0 -0
- data/lib/fog/aws/parsers/dns/create_hosted_zone.rb +51 -0
- data/lib/fog/aws/parsers/dns/delete_hosted_zone.rb +21 -0
- data/lib/fog/aws/parsers/dns/get_change.rb +22 -0
- data/lib/fog/aws/parsers/dns/get_hosted_zone.rb +41 -0
- data/lib/fog/aws/parsers/dns/health_check.rb +33 -0
- data/lib/fog/aws/parsers/dns/list_health_checks.rb +41 -0
- data/lib/fog/aws/parsers/dns/list_hosted_zones.rb +33 -0
- data/lib/fog/aws/parsers/dns/list_resource_record_sets.rb +58 -0
- data/lib/fog/aws/parsers/elasticache/authorize_cache_security_group_ingress.rb +21 -0
- data/lib/fog/aws/parsers/elasticache/base.rb +28 -0
- data/lib/fog/aws/parsers/elasticache/cache_cluster_parser.rb +77 -0
- data/lib/fog/aws/parsers/elasticache/create_cache_subnet_group.rb +32 -0
- data/lib/fog/aws/parsers/elasticache/describe_cache_clusters.rb +26 -0
- data/lib/fog/aws/parsers/elasticache/describe_cache_parameters.rb +21 -0
- data/lib/fog/aws/parsers/elasticache/describe_cache_subnet_groups.rb +34 -0
- data/lib/fog/aws/parsers/elasticache/describe_engine_default_parameters.rb +21 -0
- data/lib/fog/aws/parsers/elasticache/describe_parameter_groups.rb +26 -0
- data/lib/fog/aws/parsers/elasticache/describe_reserved_cache_nodes.rb +32 -0
- data/lib/fog/aws/parsers/elasticache/describe_security_groups.rb +26 -0
- data/lib/fog/aws/parsers/elasticache/engine_defaults_parser.rb +58 -0
- data/lib/fog/aws/parsers/elasticache/event_list.rb +38 -0
- data/lib/fog/aws/parsers/elasticache/modify_parameter_group.rb +26 -0
- data/lib/fog/aws/parsers/elasticache/parameter_group_parser.rb +29 -0
- data/lib/fog/aws/parsers/elasticache/reset_parameter_group.rb +26 -0
- data/lib/fog/aws/parsers/elasticache/security_group_parser.rb +38 -0
- data/lib/fog/aws/parsers/elasticache/single_cache_cluster.rb +21 -0
- data/lib/fog/aws/parsers/elasticache/single_parameter_group.rb +21 -0
- data/lib/fog/aws/parsers/elasticache/single_security_group.rb +33 -0
- data/lib/fog/aws/parsers/elasticache/subnet_group_parser.rb +35 -0
- data/lib/fog/aws/parsers/elb/apply_security_groups_to_load_balancer.rb +22 -0
- data/lib/fog/aws/parsers/elb/attach_load_balancer_to_subnets.rb +22 -0
- data/lib/fog/aws/parsers/elb/configure_health_check.rb +33 -0
- data/lib/fog/aws/parsers/elb/create_load_balancer.rb +22 -0
- data/lib/fog/aws/parsers/elb/delete_load_balancer.rb +20 -0
- data/lib/fog/aws/parsers/elb/deregister_instances_from_load_balancer.rb +22 -0
- data/lib/fog/aws/parsers/elb/describe_instance_health.rb +26 -0
- data/lib/fog/aws/parsers/elb/describe_load_balancer_attributes.rb +54 -0
- data/lib/fog/aws/parsers/elb/describe_load_balancer_policies.rb +60 -0
- data/lib/fog/aws/parsers/elb/describe_load_balancer_policy_types.rb +66 -0
- data/lib/fog/aws/parsers/elb/describe_load_balancers.rb +167 -0
- data/lib/fog/aws/parsers/elb/describe_tags.rb +26 -0
- data/lib/fog/aws/parsers/elb/detach_load_balancer_from_subnets.rb +22 -0
- data/lib/fog/aws/parsers/elb/disable_availability_zones_for_load_balancer.rb +22 -0
- data/lib/fog/aws/parsers/elb/empty.rb +24 -0
- data/lib/fog/aws/parsers/elb/enable_availability_zones_for_load_balancer.rb +22 -0
- data/lib/fog/aws/parsers/elb/register_instances_with_load_balancer.rb +22 -0
- data/lib/fog/aws/parsers/elb/tag_list_parser.rb +57 -0
- data/lib/fog/aws/parsers/emr/add_instance_groups.rb +26 -0
- data/lib/fog/aws/parsers/emr/add_job_flow_steps.rb +16 -0
- data/lib/fog/aws/parsers/emr/describe_job_flows.rb +137 -0
- data/lib/fog/aws/parsers/emr/modify_instance_groups.rb +16 -0
- data/lib/fog/aws/parsers/emr/run_job_flow.rb +18 -0
- data/lib/fog/aws/parsers/emr/set_termination_protection.rb +16 -0
- data/lib/fog/aws/parsers/emr/terminate_job_flows.rb +16 -0
- data/lib/fog/aws/parsers/iam/base_instance_profile.rb +75 -0
- data/lib/fog/aws/parsers/iam/basic.rb +16 -0
- data/lib/fog/aws/parsers/iam/create_access_key.rb +22 -0
- data/lib/fog/aws/parsers/iam/create_group.rb +22 -0
- data/lib/fog/aws/parsers/iam/create_user.rb +22 -0
- data/lib/fog/aws/parsers/iam/get_account_password_policy.rb +26 -0
- data/lib/fog/aws/parsers/iam/get_account_summary.rb +42 -0
- data/lib/fog/aws/parsers/iam/get_group.rb +52 -0
- data/lib/fog/aws/parsers/iam/get_group_policy.rb +30 -0
- data/lib/fog/aws/parsers/iam/get_role_policy.rb +28 -0
- data/lib/fog/aws/parsers/iam/get_user.rb +26 -0
- data/lib/fog/aws/parsers/iam/get_user_policy.rb +30 -0
- data/lib/fog/aws/parsers/iam/instance_profile.rb +28 -0
- data/lib/fog/aws/parsers/iam/list_access_keys.rb +28 -0
- data/lib/fog/aws/parsers/iam/list_account_aliases.rb +24 -0
- data/lib/fog/aws/parsers/iam/list_groups.rb +28 -0
- data/lib/fog/aws/parsers/iam/list_groups_for_user.rb +28 -0
- data/lib/fog/aws/parsers/iam/list_instance_profiles.rb +29 -0
- data/lib/fog/aws/parsers/iam/list_mfa_devices.rb +30 -0
- data/lib/fog/aws/parsers/iam/list_policies.rb +24 -0
- data/lib/fog/aws/parsers/iam/list_roles.rb +29 -0
- data/lib/fog/aws/parsers/iam/list_server_certificates.rb +34 -0
- data/lib/fog/aws/parsers/iam/list_signing_certificates.rb +28 -0
- data/lib/fog/aws/parsers/iam/list_users.rb +30 -0
- data/lib/fog/aws/parsers/iam/login_profile.rb +24 -0
- data/lib/fog/aws/parsers/iam/role_parser.rb +49 -0
- data/lib/fog/aws/parsers/iam/single_role.rb +27 -0
- data/lib/fog/aws/parsers/iam/update_group.rb +23 -0
- data/lib/fog/aws/parsers/iam/update_user.rb +24 -0
- data/lib/fog/aws/parsers/iam/upload_server_certificate.rb +24 -0
- data/lib/fog/aws/parsers/iam/upload_signing_certificate.rb +22 -0
- data/lib/fog/aws/parsers/rds/authorize_db_security_group_ingress.rb +32 -0
- data/lib/fog/aws/parsers/rds/base.rb +28 -0
- data/lib/fog/aws/parsers/rds/create_db_instance.rb +32 -0
- data/lib/fog/aws/parsers/rds/create_db_instance_read_replica.rb +32 -0
- data/lib/fog/aws/parsers/rds/create_db_parameter_group.rb +33 -0
- data/lib/fog/aws/parsers/rds/create_db_security_group.rb +32 -0
- data/lib/fog/aws/parsers/rds/create_db_snapshot.rb +32 -0
- data/lib/fog/aws/parsers/rds/create_db_subnet_group.rb +32 -0
- data/lib/fog/aws/parsers/rds/create_event_subscription.rb +32 -0
- data/lib/fog/aws/parsers/rds/db_engine_version_parser.rb +32 -0
- data/lib/fog/aws/parsers/rds/db_parser.rb +136 -0
- data/lib/fog/aws/parsers/rds/delete_db_instance.rb +33 -0
- data/lib/fog/aws/parsers/rds/delete_db_parameter_group.rb +25 -0
- data/lib/fog/aws/parsers/rds/delete_db_security_group.rb +29 -0
- data/lib/fog/aws/parsers/rds/delete_db_snapshot.rb +32 -0
- data/lib/fog/aws/parsers/rds/delete_db_subnet_group.rb +29 -0
- data/lib/fog/aws/parsers/rds/delete_event_subscription.rb +29 -0
- data/lib/fog/aws/parsers/rds/describe_db_engine_versions.rb +34 -0
- data/lib/fog/aws/parsers/rds/describe_db_instances.rb +34 -0
- data/lib/fog/aws/parsers/rds/describe_db_log_files.rb +42 -0
- data/lib/fog/aws/parsers/rds/describe_db_parameter_groups.rb +33 -0
- data/lib/fog/aws/parsers/rds/describe_db_parameters.rb +42 -0
- data/lib/fog/aws/parsers/rds/describe_db_reserved_instances.rb +38 -0
- data/lib/fog/aws/parsers/rds/describe_db_security_groups.rb +34 -0
- data/lib/fog/aws/parsers/rds/describe_db_snapshots.rb +34 -0
- data/lib/fog/aws/parsers/rds/describe_db_subnet_groups.rb +34 -0
- data/lib/fog/aws/parsers/rds/describe_event_subscriptions.rb +34 -0
- data/lib/fog/aws/parsers/rds/describe_orderable_db_instance_options.rb +45 -0
- data/lib/fog/aws/parsers/rds/download_db_logfile_portion.rb +22 -0
- data/lib/fog/aws/parsers/rds/event_list.rb +38 -0
- data/lib/fog/aws/parsers/rds/event_subscription_parser.rb +37 -0
- data/lib/fog/aws/parsers/rds/modify_db_instance.rb +32 -0
- data/lib/fog/aws/parsers/rds/modify_db_parameter_group.rb +26 -0
- data/lib/fog/aws/parsers/rds/promote_read_replica.rb +32 -0
- data/lib/fog/aws/parsers/rds/reboot_db_instance.rb +33 -0
- data/lib/fog/aws/parsers/rds/restore_db_instance_from_db_snapshot.rb +32 -0
- data/lib/fog/aws/parsers/rds/restore_db_instance_to_point_in_time.rb +32 -0
- data/lib/fog/aws/parsers/rds/revoke_db_security_group_ingress.rb +32 -0
- data/lib/fog/aws/parsers/rds/security_group_parser.rb +36 -0
- data/lib/fog/aws/parsers/rds/snapshot_parser.rb +39 -0
- data/lib/fog/aws/parsers/rds/subnet_group_parser.rb +35 -0
- data/lib/fog/aws/parsers/rds/tag_list_parser.rb +33 -0
- data/lib/fog/aws/parsers/redshift/cluster.rb +28 -0
- data/lib/fog/aws/parsers/redshift/cluster_parser.rb +143 -0
- data/lib/fog/aws/parsers/redshift/cluster_security_group_parser.rb +49 -0
- data/lib/fog/aws/parsers/redshift/cluster_snapshot.rb +31 -0
- data/lib/fog/aws/parsers/redshift/cluster_snapshot_parser.rb +65 -0
- data/lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb +50 -0
- data/lib/fog/aws/parsers/redshift/create_cluster_parameter_group.rb +29 -0
- data/lib/fog/aws/parsers/redshift/create_cluster_security_group.rb +30 -0
- data/lib/fog/aws/parsers/redshift/describe_cluster_parameter_groups.rb +40 -0
- data/lib/fog/aws/parsers/redshift/describe_cluster_parameters.rb +47 -0
- data/lib/fog/aws/parsers/redshift/describe_cluster_security_groups.rb +37 -0
- data/lib/fog/aws/parsers/redshift/describe_cluster_snapshots.rb +37 -0
- data/lib/fog/aws/parsers/redshift/describe_cluster_subnet_groups.rb +55 -0
- data/lib/fog/aws/parsers/redshift/describe_cluster_versions.rb +50 -0
- data/lib/fog/aws/parsers/redshift/describe_clusters.rb +29 -0
- data/lib/fog/aws/parsers/redshift/describe_default_cluster_parameters.rb +48 -0
- data/lib/fog/aws/parsers/redshift/describe_events.rb +43 -0
- data/lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb +53 -0
- data/lib/fog/aws/parsers/redshift/describe_reserved_node_offerings.rb +63 -0
- data/lib/fog/aws/parsers/redshift/describe_reserved_nodes.rb +70 -0
- data/lib/fog/aws/parsers/redshift/describe_resize.rb +58 -0
- data/lib/fog/aws/parsers/redshift/purchase_reserved_node_offering.rb +56 -0
- data/lib/fog/aws/parsers/redshift/revoke_cluster_security_group_ingress.rb +30 -0
- data/lib/fog/aws/parsers/redshift/update_cluster_parameter_group_parser.rb +28 -0
- data/lib/fog/aws/parsers/ses/delete_verified_email_address.rb +20 -0
- data/lib/fog/aws/parsers/ses/get_send_quota.rb +22 -0
- data/lib/fog/aws/parsers/ses/get_send_statistics.rb +26 -0
- data/lib/fog/aws/parsers/ses/list_verified_email_addresses.rb +22 -0
- data/lib/fog/aws/parsers/ses/send_email.rb +22 -0
- data/lib/fog/aws/parsers/ses/send_raw_email.rb +22 -0
- data/lib/fog/aws/parsers/ses/verify_domain_identity.rb +22 -0
- data/lib/fog/aws/parsers/ses/verify_email_address.rb +20 -0
- data/lib/fog/aws/parsers/simpledb/basic.rb +27 -0
- data/lib/fog/aws/parsers/simpledb/domain_metadata.rb +28 -0
- data/lib/fog/aws/parsers/simpledb/get_attributes.rb +32 -0
- data/lib/fog/aws/parsers/simpledb/list_domains.rb +26 -0
- data/lib/fog/aws/parsers/simpledb/select.rb +37 -0
- data/lib/fog/aws/parsers/sns/add_permission.rb +20 -0
- data/lib/fog/aws/parsers/sns/confirm_subscription.rb +20 -0
- data/lib/fog/aws/parsers/sns/create_topic.rb +20 -0
- data/lib/fog/aws/parsers/sns/delete_topic.rb +20 -0
- data/lib/fog/aws/parsers/sns/get_topic_attributes.rb +29 -0
- data/lib/fog/aws/parsers/sns/list_subscriptions.rb +26 -0
- data/lib/fog/aws/parsers/sns/list_topics.rb +22 -0
- data/lib/fog/aws/parsers/sns/publish.rb +20 -0
- data/lib/fog/aws/parsers/sns/remove_permission.rb +20 -0
- data/lib/fog/aws/parsers/sns/set_topic_attributes.rb +20 -0
- data/lib/fog/aws/parsers/sns/subscribe.rb +20 -0
- data/lib/fog/aws/parsers/sns/unsubscribe.rb +20 -0
- data/lib/fog/aws/parsers/sqs/basic.rb +20 -0
- data/lib/fog/aws/parsers/sqs/create_queue.rb +22 -0
- data/lib/fog/aws/parsers/sqs/get_queue_attributes.rb +31 -0
- data/lib/fog/aws/parsers/sqs/list_queues.rb +22 -0
- data/lib/fog/aws/parsers/sqs/receive_message.rb +37 -0
- data/lib/fog/aws/parsers/sqs/send_message.rb +24 -0
- data/lib/fog/aws/parsers/storage/access_control_list.rb +42 -0
- data/lib/fog/aws/parsers/storage/complete_multipart_upload.rb +20 -0
- data/lib/fog/aws/parsers/storage/copy_object.rb +18 -0
- data/lib/fog/aws/parsers/storage/cors_configuration.rb +38 -0
- data/lib/fog/aws/parsers/storage/delete_multiple_objects.rb +45 -0
- data/lib/fog/aws/parsers/storage/get_bucket.rb +58 -0
- data/lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb +64 -0
- data/lib/fog/aws/parsers/storage/get_bucket_location.rb +16 -0
- data/lib/fog/aws/parsers/storage/get_bucket_logging.rb +36 -0
- data/lib/fog/aws/parsers/storage/get_bucket_notification.rb +61 -0
- data/lib/fog/aws/parsers/storage/get_bucket_object_versions.rb +84 -0
- data/lib/fog/aws/parsers/storage/get_bucket_tagging.rb +33 -0
- data/lib/fog/aws/parsers/storage/get_bucket_versioning.rb +20 -0
- data/lib/fog/aws/parsers/storage/get_bucket_website.rb +26 -0
- data/lib/fog/aws/parsers/storage/get_request_payment.rb +16 -0
- data/lib/fog/aws/parsers/storage/get_service.rb +28 -0
- data/lib/fog/aws/parsers/storage/initiate_multipart_upload.rb +20 -0
- data/lib/fog/aws/parsers/storage/list_multipart_uploads.rb +52 -0
- data/lib/fog/aws/parsers/storage/list_parts.rb +36 -0
- data/lib/fog/aws/parsers/sts/assume_role.rb +26 -0
- data/lib/fog/aws/parsers/sts/assume_role_with_saml.rb +26 -0
- data/lib/fog/aws/parsers/sts/get_session_token.rb +26 -0
- data/lib/fog/aws/rds.rb +269 -0
- data/lib/fog/aws/redshift.rb +133 -0
- data/lib/fog/aws/region_methods.rb +11 -0
- data/lib/fog/aws/requests/auto_scaling/create_auto_scaling_group.rb +140 -0
- data/lib/fog/aws/requests/auto_scaling/create_launch_configuration.rb +114 -0
- data/lib/fog/aws/requests/auto_scaling/create_or_update_tags.rb +57 -0
- data/lib/fog/aws/requests/auto_scaling/delete_auto_scaling_group.rb +55 -0
- data/lib/fog/aws/requests/auto_scaling/delete_launch_configuration.rb +51 -0
- data/lib/fog/aws/requests/auto_scaling/delete_notification_configuration.rb +58 -0
- data/lib/fog/aws/requests/auto_scaling/delete_policy.rb +50 -0
- data/lib/fog/aws/requests/auto_scaling/delete_scheduled_action.rb +42 -0
- data/lib/fog/aws/requests/auto_scaling/delete_tags.rb +57 -0
- data/lib/fog/aws/requests/auto_scaling/describe_adjustment_types.rb +48 -0
- data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_groups.rb +134 -0
- data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_instances.rb +89 -0
- data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_notification_types.rb +50 -0
- data/lib/fog/aws/requests/auto_scaling/describe_launch_configurations.rb +112 -0
- data/lib/fog/aws/requests/auto_scaling/describe_metric_collection_types.rb +56 -0
- data/lib/fog/aws/requests/auto_scaling/describe_notification_configurations.rb +73 -0
- data/lib/fog/aws/requests/auto_scaling/describe_policies.rb +105 -0
- data/lib/fog/aws/requests/auto_scaling/describe_scaling_activities.rb +82 -0
- data/lib/fog/aws/requests/auto_scaling/describe_scaling_process_types.rb +49 -0
- data/lib/fog/aws/requests/auto_scaling/describe_scheduled_actions.rb +82 -0
- data/lib/fog/aws/requests/auto_scaling/describe_tags.rb +68 -0
- data/lib/fog/aws/requests/auto_scaling/describe_termination_policy_types.rb +47 -0
- data/lib/fog/aws/requests/auto_scaling/disable_metrics_collection.rb +50 -0
- data/lib/fog/aws/requests/auto_scaling/enable_metrics_collection.rb +60 -0
- data/lib/fog/aws/requests/auto_scaling/execute_policy.rb +44 -0
- data/lib/fog/aws/requests/auto_scaling/put_notification_configuration.rb +64 -0
- data/lib/fog/aws/requests/auto_scaling/put_scaling_policy.rb +79 -0
- data/lib/fog/aws/requests/auto_scaling/put_scheduled_update_group_action.rb +64 -0
- data/lib/fog/aws/requests/auto_scaling/resume_processes.rb +53 -0
- data/lib/fog/aws/requests/auto_scaling/set_desired_capacity.rb +81 -0
- data/lib/fog/aws/requests/auto_scaling/set_instance_health.rb +49 -0
- data/lib/fog/aws/requests/auto_scaling/suspend_processes.rb +56 -0
- data/lib/fog/aws/requests/auto_scaling/terminate_instance_in_auto_scaling_group.rb +59 -0
- data/lib/fog/aws/requests/auto_scaling/update_auto_scaling_group.rb +93 -0
- data/lib/fog/aws/requests/beanstalk/check_dns_availability.rb +26 -0
- data/lib/fog/aws/requests/beanstalk/create_application.rb +28 -0
- data/lib/fog/aws/requests/beanstalk/create_application_version.rb +40 -0
- data/lib/fog/aws/requests/beanstalk/create_configuration_template.rb +46 -0
- data/lib/fog/aws/requests/beanstalk/create_environment.rb +49 -0
- data/lib/fog/aws/requests/beanstalk/create_storage_location.rb +26 -0
- data/lib/fog/aws/requests/beanstalk/delete_application.rb +28 -0
- data/lib/fog/aws/requests/beanstalk/delete_application_version.rb +35 -0
- data/lib/fog/aws/requests/beanstalk/delete_configuration_template.rb +33 -0
- data/lib/fog/aws/requests/beanstalk/delete_environment_configuration.rb +33 -0
- data/lib/fog/aws/requests/beanstalk/describe_application_versions.rb +33 -0
- data/lib/fog/aws/requests/beanstalk/describe_applications.rb +29 -0
- data/lib/fog/aws/requests/beanstalk/describe_configuration_options.rb +39 -0
- data/lib/fog/aws/requests/beanstalk/describe_configuration_settings.rb +30 -0
- data/lib/fog/aws/requests/beanstalk/describe_environment_resources.rb +28 -0
- data/lib/fog/aws/requests/beanstalk/describe_environments.rb +39 -0
- data/lib/fog/aws/requests/beanstalk/describe_events.rb +28 -0
- data/lib/fog/aws/requests/beanstalk/list_available_solution_stacks.rb +26 -0
- data/lib/fog/aws/requests/beanstalk/rebuild_environment.rb +29 -0
- data/lib/fog/aws/requests/beanstalk/request_environment_info.rb +28 -0
- data/lib/fog/aws/requests/beanstalk/restart_app_server.rb +28 -0
- data/lib/fog/aws/requests/beanstalk/retrieve_environment_info.rb +28 -0
- data/lib/fog/aws/requests/beanstalk/swap_environment_cnames.rb +28 -0
- data/lib/fog/aws/requests/beanstalk/terminate_environment.rb +30 -0
- data/lib/fog/aws/requests/beanstalk/update_application.rb +29 -0
- data/lib/fog/aws/requests/beanstalk/update_application_version.rb +29 -0
- data/lib/fog/aws/requests/beanstalk/update_configuration_template.rb +35 -0
- data/lib/fog/aws/requests/beanstalk/update_environment.rb +41 -0
- data/lib/fog/aws/requests/beanstalk/validate_configuration_settings.rb +32 -0
- data/lib/fog/aws/requests/cdn/delete_distribution.rb +52 -0
- data/lib/fog/aws/requests/cdn/delete_streaming_distribution.rb +51 -0
- data/lib/fog/aws/requests/cdn/get_distribution.rb +78 -0
- data/lib/fog/aws/requests/cdn/get_distribution_list.rb +81 -0
- data/lib/fog/aws/requests/cdn/get_invalidation.rb +58 -0
- data/lib/fog/aws/requests/cdn/get_invalidation_list.rb +76 -0
- data/lib/fog/aws/requests/cdn/get_streaming_distribution.rb +69 -0
- data/lib/fog/aws/requests/cdn/get_streaming_distribution_list.rb +81 -0
- data/lib/fog/aws/requests/cdn/post_distribution.rb +130 -0
- data/lib/fog/aws/requests/cdn/post_invalidation.rb +75 -0
- data/lib/fog/aws/requests/cdn/post_streaming_distribution.rb +115 -0
- data/lib/fog/aws/requests/cdn/put_distribution_config.rb +116 -0
- data/lib/fog/aws/requests/cdn/put_streaming_distribution_config.rb +105 -0
- data/lib/fog/aws/requests/cloud_formation/create_stack.rb +88 -0
- data/lib/fog/aws/requests/cloud_formation/delete_stack.rb +25 -0
- data/lib/fog/aws/requests/cloud_formation/describe_stack_events.rb +39 -0
- data/lib/fog/aws/requests/cloud_formation/describe_stack_resources.rb +38 -0
- data/lib/fog/aws/requests/cloud_formation/describe_stacks.rb +37 -0
- data/lib/fog/aws/requests/cloud_formation/get_template.rb +27 -0
- data/lib/fog/aws/requests/cloud_formation/list_stack_resources.rb +34 -0
- data/lib/fog/aws/requests/cloud_formation/list_stacks.rb +35 -0
- data/lib/fog/aws/requests/cloud_formation/update_stack.rb +56 -0
- data/lib/fog/aws/requests/cloud_formation/validate_template.rb +29 -0
- data/lib/fog/aws/requests/cloud_watch/delete_alarms.rb +47 -0
- data/lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb +32 -0
- data/lib/fog/aws/requests/cloud_watch/describe_alarms.rb +55 -0
- data/lib/fog/aws/requests/cloud_watch/describe_alarms_for_metric.rb +38 -0
- data/lib/fog/aws/requests/cloud_watch/disable_alarm_actions.rb +29 -0
- data/lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb +29 -0
- data/lib/fog/aws/requests/cloud_watch/get_metric_statistics.rb +46 -0
- data/lib/fog/aws/requests/cloud_watch/list_metrics.rb +62 -0
- data/lib/fog/aws/requests/cloud_watch/put_metric_alarm.rb +93 -0
- data/lib/fog/aws/requests/cloud_watch/put_metric_data.rb +72 -0
- data/lib/fog/aws/requests/cloud_watch/set_alarm_state.rb +30 -0
- data/lib/fog/aws/requests/compute/allocate_address.rb +55 -0
- data/lib/fog/aws/requests/compute/assign_private_ip_addresses.rb +55 -0
- data/lib/fog/aws/requests/compute/associate_address.rb +126 -0
- data/lib/fog/aws/requests/compute/associate_dhcp_options.rb +53 -0
- data/lib/fog/aws/requests/compute/associate_route_table.rb +70 -0
- data/lib/fog/aws/requests/compute/attach_internet_gateway.rb +52 -0
- data/lib/fog/aws/requests/compute/attach_network_interface.rb +61 -0
- data/lib/fog/aws/requests/compute/attach_volume.rb +83 -0
- data/lib/fog/aws/requests/compute/authorize_security_group_ingress.rb +230 -0
- data/lib/fog/aws/requests/compute/cancel_spot_instance_requests.rb +32 -0
- data/lib/fog/aws/requests/compute/copy_image.rb +59 -0
- data/lib/fog/aws/requests/compute/copy_snapshot.rb +54 -0
- data/lib/fog/aws/requests/compute/create_dhcp_options.rb +74 -0
- data/lib/fog/aws/requests/compute/create_image.rb +91 -0
- data/lib/fog/aws/requests/compute/create_internet_gateway.rb +52 -0
- data/lib/fog/aws/requests/compute/create_key_pair.rb +52 -0
- data/lib/fog/aws/requests/compute/create_network_acl.rb +105 -0
- data/lib/fog/aws/requests/compute/create_network_acl_entry.rb +80 -0
- data/lib/fog/aws/requests/compute/create_network_interface.rb +134 -0
- data/lib/fog/aws/requests/compute/create_placement_group.rb +31 -0
- data/lib/fog/aws/requests/compute/create_route.rb +87 -0
- data/lib/fog/aws/requests/compute/create_route_table.rb +69 -0
- data/lib/fog/aws/requests/compute/create_security_group.rb +60 -0
- data/lib/fog/aws/requests/compute/create_snapshot.rb +70 -0
- data/lib/fog/aws/requests/compute/create_spot_datafeed_subscription.rb +39 -0
- data/lib/fog/aws/requests/compute/create_subnet.rb +102 -0
- data/lib/fog/aws/requests/compute/create_tags.rb +65 -0
- data/lib/fog/aws/requests/compute/create_volume.rb +124 -0
- data/lib/fog/aws/requests/compute/create_vpc.rb +94 -0
- data/lib/fog/aws/requests/compute/delete_dhcp_options.rb +50 -0
- data/lib/fog/aws/requests/compute/delete_internet_gateway.rb +48 -0
- data/lib/fog/aws/requests/compute/delete_key_pair.rb +43 -0
- data/lib/fog/aws/requests/compute/delete_network_acl.rb +52 -0
- data/lib/fog/aws/requests/compute/delete_network_acl_entry.rb +55 -0
- data/lib/fog/aws/requests/compute/delete_network_interface.rb +51 -0
- data/lib/fog/aws/requests/compute/delete_placement_group.rb +30 -0
- data/lib/fog/aws/requests/compute/delete_route.rb +57 -0
- data/lib/fog/aws/requests/compute/delete_route_table.rb +49 -0
- data/lib/fog/aws/requests/compute/delete_security_group.rb +100 -0
- data/lib/fog/aws/requests/compute/delete_snapshot.rb +46 -0
- data/lib/fog/aws/requests/compute/delete_spot_datafeed_subscription.rb +26 -0
- data/lib/fog/aws/requests/compute/delete_subnet.rb +49 -0
- data/lib/fog/aws/requests/compute/delete_tags.rb +67 -0
- data/lib/fog/aws/requests/compute/delete_volume.rb +52 -0
- data/lib/fog/aws/requests/compute/delete_vpc.rb +56 -0
- data/lib/fog/aws/requests/compute/deregister_image.rb +49 -0
- data/lib/fog/aws/requests/compute/describe_account_attributes.rb +48 -0
- data/lib/fog/aws/requests/compute/describe_addresses.rb +62 -0
- data/lib/fog/aws/requests/compute/describe_availability_zones.rb +94 -0
- data/lib/fog/aws/requests/compute/describe_dhcp_options.rb +54 -0
- data/lib/fog/aws/requests/compute/describe_images.rb +126 -0
- data/lib/fog/aws/requests/compute/describe_instance_status.rb +46 -0
- data/lib/fog/aws/requests/compute/describe_instances.rb +265 -0
- data/lib/fog/aws/requests/compute/describe_internet_gateways.rb +59 -0
- data/lib/fog/aws/requests/compute/describe_key_pairs.rb +64 -0
- data/lib/fog/aws/requests/compute/describe_network_acls.rb +108 -0
- data/lib/fog/aws/requests/compute/describe_network_interface_attribute.rb +66 -0
- data/lib/fog/aws/requests/compute/describe_network_interfaces.rb +85 -0
- data/lib/fog/aws/requests/compute/describe_placement_groups.rb +33 -0
- data/lib/fog/aws/requests/compute/describe_regions.rb +64 -0
- data/lib/fog/aws/requests/compute/describe_reserved_instances.rb +59 -0
- data/lib/fog/aws/requests/compute/describe_reserved_instances_offerings.rb +80 -0
- data/lib/fog/aws/requests/compute/describe_route_tables.rb +86 -0
- data/lib/fog/aws/requests/compute/describe_security_groups.rb +98 -0
- data/lib/fog/aws/requests/compute/describe_snapshots.rb +120 -0
- data/lib/fog/aws/requests/compute/describe_spot_datafeed_subscription.rb +33 -0
- data/lib/fog/aws/requests/compute/describe_spot_instance_requests.rb +46 -0
- data/lib/fog/aws/requests/compute/describe_spot_price_history.rb +35 -0
- data/lib/fog/aws/requests/compute/describe_subnets.rb +71 -0
- data/lib/fog/aws/requests/compute/describe_tags.rb +104 -0
- data/lib/fog/aws/requests/compute/describe_volume_status.rb +43 -0
- data/lib/fog/aws/requests/compute/describe_volumes.rb +118 -0
- data/lib/fog/aws/requests/compute/describe_vpc_attribute.rb +55 -0
- data/lib/fog/aws/requests/compute/describe_vpcs.rb +74 -0
- data/lib/fog/aws/requests/compute/detach_internet_gateway.rb +52 -0
- data/lib/fog/aws/requests/compute/detach_network_interface.rb +48 -0
- data/lib/fog/aws/requests/compute/detach_volume.rb +61 -0
- data/lib/fog/aws/requests/compute/disassociate_address.rb +55 -0
- data/lib/fog/aws/requests/compute/disassociate_route_table.rb +54 -0
- data/lib/fog/aws/requests/compute/get_console_output.rb +50 -0
- data/lib/fog/aws/requests/compute/get_password_data.rb +52 -0
- data/lib/fog/aws/requests/compute/import_key_pair.rb +52 -0
- data/lib/fog/aws/requests/compute/modify_image_attribute.rb +70 -0
- data/lib/fog/aws/requests/compute/modify_instance_attribute.rb +42 -0
- data/lib/fog/aws/requests/compute/modify_network_interface_attribute.rb +89 -0
- data/lib/fog/aws/requests/compute/modify_snapshot_attribute.rb +35 -0
- data/lib/fog/aws/requests/compute/modify_subnet_attribute.rb +58 -0
- data/lib/fog/aws/requests/compute/modify_volume_attribute.rb +48 -0
- data/lib/fog/aws/requests/compute/modify_vpc_attribute.rb +66 -0
- data/lib/fog/aws/requests/compute/monitor_instances.rb +48 -0
- data/lib/fog/aws/requests/compute/purchase_reserved_instances_offering.rb +62 -0
- data/lib/fog/aws/requests/compute/reboot_instances.rb +50 -0
- data/lib/fog/aws/requests/compute/register_image.rb +133 -0
- data/lib/fog/aws/requests/compute/release_address.rb +59 -0
- data/lib/fog/aws/requests/compute/replace_network_acl_association.rb +66 -0
- data/lib/fog/aws/requests/compute/replace_network_acl_entry.rb +81 -0
- data/lib/fog/aws/requests/compute/replace_route.rb +80 -0
- data/lib/fog/aws/requests/compute/request_spot_instances.rb +96 -0
- data/lib/fog/aws/requests/compute/reset_network_interface_attribute.rb +56 -0
- data/lib/fog/aws/requests/compute/revoke_security_group_ingress.rb +98 -0
- data/lib/fog/aws/requests/compute/run_instances.rb +274 -0
- data/lib/fog/aws/requests/compute/start_instances.rb +58 -0
- data/lib/fog/aws/requests/compute/stop_instances.rb +59 -0
- data/lib/fog/aws/requests/compute/terminate_instances.rb +92 -0
- data/lib/fog/aws/requests/compute/unmonitor_instances.rb +48 -0
- data/lib/fog/aws/requests/data_pipeline/activate_pipeline.rb +31 -0
- data/lib/fog/aws/requests/data_pipeline/create_pipeline.rb +39 -0
- data/lib/fog/aws/requests/data_pipeline/delete_pipeline.rb +30 -0
- data/lib/fog/aws/requests/data_pipeline/describe_objects.rb +38 -0
- data/lib/fog/aws/requests/data_pipeline/describe_pipelines.rb +32 -0
- data/lib/fog/aws/requests/data_pipeline/get_pipeline_definition.rb +33 -0
- data/lib/fog/aws/requests/data_pipeline/list_pipelines.rb +32 -0
- data/lib/fog/aws/requests/data_pipeline/put_pipeline_definition.rb +76 -0
- data/lib/fog/aws/requests/data_pipeline/query_objects.rb +38 -0
- data/lib/fog/aws/requests/dns/change_resource_record_sets.rb +243 -0
- data/lib/fog/aws/requests/dns/create_health_check.rb +64 -0
- data/lib/fog/aws/requests/dns/create_hosted_zone.rb +108 -0
- data/lib/fog/aws/requests/dns/delete_health_check.rb +24 -0
- data/lib/fog/aws/requests/dns/delete_hosted_zone.rb +66 -0
- data/lib/fog/aws/requests/dns/get_change.rb +59 -0
- data/lib/fog/aws/requests/dns/get_health_check.rb +41 -0
- data/lib/fog/aws/requests/dns/get_hosted_zone.rb +61 -0
- data/lib/fog/aws/requests/dns/list_health_checks.rb +36 -0
- data/lib/fog/aws/requests/dns/list_hosted_zones.rb +88 -0
- data/lib/fog/aws/requests/dns/list_resource_record_sets.rb +130 -0
- data/lib/fog/aws/requests/dynamodb/batch_get_item.rb +41 -0
- data/lib/fog/aws/requests/dynamodb/batch_write_item.rb +33 -0
- data/lib/fog/aws/requests/dynamodb/create_table.rb +53 -0
- data/lib/fog/aws/requests/dynamodb/delete_item.rb +43 -0
- data/lib/fog/aws/requests/dynamodb/delete_table.rb +40 -0
- data/lib/fog/aws/requests/dynamodb/describe_table.rb +42 -0
- data/lib/fog/aws/requests/dynamodb/get_item.rb +41 -0
- data/lib/fog/aws/requests/dynamodb/list_tables.rb +27 -0
- data/lib/fog/aws/requests/dynamodb/put_item.rb +39 -0
- data/lib/fog/aws/requests/dynamodb/query.rb +42 -0
- data/lib/fog/aws/requests/dynamodb/scan.rb +43 -0
- data/lib/fog/aws/requests/dynamodb/update_item.rb +47 -0
- data/lib/fog/aws/requests/dynamodb/update_table.rb +44 -0
- data/lib/fog/aws/requests/elasticache/authorize_cache_security_group_ingress.rb +57 -0
- data/lib/fog/aws/requests/elasticache/create_cache_cluster.rb +94 -0
- data/lib/fog/aws/requests/elasticache/create_cache_parameter_group.rb +52 -0
- data/lib/fog/aws/requests/elasticache/create_cache_security_group.rb +51 -0
- data/lib/fog/aws/requests/elasticache/create_cache_subnet_group.rb +60 -0
- data/lib/fog/aws/requests/elasticache/delete_cache_cluster.rb +38 -0
- data/lib/fog/aws/requests/elasticache/delete_cache_parameter_group.rb +40 -0
- data/lib/fog/aws/requests/elasticache/delete_cache_security_group.rb +39 -0
- data/lib/fog/aws/requests/elasticache/delete_cache_subnet_group.rb +39 -0
- data/lib/fog/aws/requests/elasticache/describe_cache_clusters.rb +51 -0
- data/lib/fog/aws/requests/elasticache/describe_cache_parameter_groups.rb +47 -0
- data/lib/fog/aws/requests/elasticache/describe_cache_parameters.rb +34 -0
- data/lib/fog/aws/requests/elasticache/describe_cache_security_groups.rb +64 -0
- data/lib/fog/aws/requests/elasticache/describe_cache_subnet_groups.rb +59 -0
- data/lib/fog/aws/requests/elasticache/describe_engine_default_parameters.rb +33 -0
- data/lib/fog/aws/requests/elasticache/describe_events.rb +47 -0
- data/lib/fog/aws/requests/elasticache/describe_reserved_cache_nodes.rb +38 -0
- data/lib/fog/aws/requests/elasticache/modify_cache_cluster.rb +99 -0
- data/lib/fog/aws/requests/elasticache/modify_cache_parameter_group.rb +43 -0
- data/lib/fog/aws/requests/elasticache/reboot_cache_cluster.rb +49 -0
- data/lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb +44 -0
- data/lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb +35 -0
- data/lib/fog/aws/requests/elb/add_tags.rb +46 -0
- data/lib/fog/aws/requests/elb/apply_security_groups_to_load_balancer.rb +58 -0
- data/lib/fog/aws/requests/elb/attach_load_balancer_to_subnets.rb +58 -0
- data/lib/fog/aws/requests/elb/configure_health_check.rb +63 -0
- data/lib/fog/aws/requests/elb/create_app_cookie_stickiness_policy.rb +52 -0
- data/lib/fog/aws/requests/elb/create_lb_cookie_stickiness_policy.rb +54 -0
- data/lib/fog/aws/requests/elb/create_load_balancer.rb +206 -0
- data/lib/fog/aws/requests/elb/create_load_balancer_listeners.rb +86 -0
- data/lib/fog/aws/requests/elb/create_load_balancer_policy.rb +80 -0
- data/lib/fog/aws/requests/elb/delete_load_balancer.rb +49 -0
- data/lib/fog/aws/requests/elb/delete_load_balancer_listeners.rb +48 -0
- data/lib/fog/aws/requests/elb/delete_load_balancer_policy.rb +52 -0
- data/lib/fog/aws/requests/elb/deregister_instances_from_load_balancer.rb +61 -0
- data/lib/fog/aws/requests/elb/describe_instance_health.rb +70 -0
- data/lib/fog/aws/requests/elb/describe_load_balancer_attributes.rb +58 -0
- data/lib/fog/aws/requests/elb/describe_load_balancer_policies.rb +69 -0
- data/lib/fog/aws/requests/elb/describe_load_balancer_policy_types.rb +66 -0
- data/lib/fog/aws/requests/elb/describe_load_balancers.rb +137 -0
- data/lib/fog/aws/requests/elb/describe_tags.rb +56 -0
- data/lib/fog/aws/requests/elb/detach_load_balancer_from_subnets.rb +58 -0
- data/lib/fog/aws/requests/elb/disable_availability_zones_for_load_balancer.rb +57 -0
- data/lib/fog/aws/requests/elb/enable_availability_zones_for_load_balancer.rb +58 -0
- data/lib/fog/aws/requests/elb/modify_load_balancer_attributes.rb +65 -0
- data/lib/fog/aws/requests/elb/register_instances_with_load_balancer.rb +62 -0
- data/lib/fog/aws/requests/elb/remove_tags.rb +46 -0
- data/lib/fog/aws/requests/elb/set_load_balancer_listener_ssl_certificate.rb +65 -0
- data/lib/fog/aws/requests/elb/set_load_balancer_policies_for_backend_server.rb +66 -0
- data/lib/fog/aws/requests/elb/set_load_balancer_policies_of_listener.rb +78 -0
- data/lib/fog/aws/requests/emr/add_instance_groups.rb +42 -0
- data/lib/fog/aws/requests/emr/add_job_flow_steps.rb +45 -0
- data/lib/fog/aws/requests/emr/describe_job_flows.rb +104 -0
- data/lib/fog/aws/requests/emr/modify_instance_groups.rb +36 -0
- data/lib/fog/aws/requests/emr/run_job_flow.rb +104 -0
- data/lib/fog/aws/requests/emr/set_termination_protection.rb +35 -0
- data/lib/fog/aws/requests/emr/terminate_job_flows.rb +33 -0
- data/lib/fog/aws/requests/glacier/abort_multipart_upload.rb +33 -0
- data/lib/fog/aws/requests/glacier/complete_multipart_upload.rb +40 -0
- data/lib/fog/aws/requests/glacier/create_archive.rb +41 -0
- data/lib/fog/aws/requests/glacier/create_vault.rb +32 -0
- data/lib/fog/aws/requests/glacier/delete_archive.rb +33 -0
- data/lib/fog/aws/requests/glacier/delete_vault.rb +32 -0
- data/lib/fog/aws/requests/glacier/delete_vault_notification_configuration.rb +31 -0
- data/lib/fog/aws/requests/glacier/describe_job.rb +33 -0
- data/lib/fog/aws/requests/glacier/describe_vault.rb +32 -0
- data/lib/fog/aws/requests/glacier/get_job_output.rb +39 -0
- data/lib/fog/aws/requests/glacier/get_vault_notification_configuration.rb +32 -0
- data/lib/fog/aws/requests/glacier/initiate_job.rb +39 -0
- data/lib/fog/aws/requests/glacier/initiate_multipart_upload.rb +36 -0
- data/lib/fog/aws/requests/glacier/list_jobs.rb +36 -0
- data/lib/fog/aws/requests/glacier/list_multipart_uploads.rb +34 -0
- data/lib/fog/aws/requests/glacier/list_parts.rb +35 -0
- data/lib/fog/aws/requests/glacier/list_vaults.rb +34 -0
- data/lib/fog/aws/requests/glacier/set_vault_notification_configuration.rb +35 -0
- data/lib/fog/aws/requests/glacier/upload_part.rb +44 -0
- data/lib/fog/aws/requests/iam/add_role_to_instance_profile.rb +32 -0
- data/lib/fog/aws/requests/iam/add_user_to_group.rb +54 -0
- data/lib/fog/aws/requests/iam/create_access_key.rb +66 -0
- data/lib/fog/aws/requests/iam/create_account_alias.rb +17 -0
- data/lib/fog/aws/requests/iam/create_group.rb +56 -0
- data/lib/fog/aws/requests/iam/create_instance_profile.rb +45 -0
- data/lib/fog/aws/requests/iam/create_login_profile.rb +34 -0
- data/lib/fog/aws/requests/iam/create_role.rb +55 -0
- data/lib/fog/aws/requests/iam/create_user.rb +59 -0
- data/lib/fog/aws/requests/iam/delete_access_key.rb +47 -0
- data/lib/fog/aws/requests/iam/delete_account_alias.rb +17 -0
- data/lib/fog/aws/requests/iam/delete_account_password_policy.rb +36 -0
- data/lib/fog/aws/requests/iam/delete_group.rb +48 -0
- data/lib/fog/aws/requests/iam/delete_group_policy.rb +32 -0
- data/lib/fog/aws/requests/iam/delete_instance_profile.rb +30 -0
- data/lib/fog/aws/requests/iam/delete_login_profile.rb +29 -0
- data/lib/fog/aws/requests/iam/delete_role.rb +30 -0
- data/lib/fog/aws/requests/iam/delete_role_policy.rb +32 -0
- data/lib/fog/aws/requests/iam/delete_server_certificate.rb +46 -0
- data/lib/fog/aws/requests/iam/delete_signing_certificate.rb +31 -0
- data/lib/fog/aws/requests/iam/delete_user.rb +44 -0
- data/lib/fog/aws/requests/iam/delete_user_policy.rb +46 -0
- data/lib/fog/aws/requests/iam/get_account_password_policy.rb +36 -0
- data/lib/fog/aws/requests/iam/get_account_summary.rb +75 -0
- data/lib/fog/aws/requests/iam/get_group.rb +60 -0
- data/lib/fog/aws/requests/iam/get_group_policy.rb +51 -0
- data/lib/fog/aws/requests/iam/get_instance_profile.rb +40 -0
- data/lib/fog/aws/requests/iam/get_login_profile.rb +33 -0
- data/lib/fog/aws/requests/iam/get_role.rb +36 -0
- data/lib/fog/aws/requests/iam/get_role_policy.rb +34 -0
- data/lib/fog/aws/requests/iam/get_server_certificate.rb +45 -0
- data/lib/fog/aws/requests/iam/get_user.rb +55 -0
- data/lib/fog/aws/requests/iam/get_user_policy.rb +51 -0
- data/lib/fog/aws/requests/iam/list_access_keys.rb +62 -0
- data/lib/fog/aws/requests/iam/list_account_aliases.rb +16 -0
- data/lib/fog/aws/requests/iam/list_group_policies.rb +37 -0
- data/lib/fog/aws/requests/iam/list_groups.rb +57 -0
- data/lib/fog/aws/requests/iam/list_groups_for_user.rb +65 -0
- data/lib/fog/aws/requests/iam/list_instance_profiles.rb +48 -0
- data/lib/fog/aws/requests/iam/list_instance_profiles_for_role.rb +49 -0
- data/lib/fog/aws/requests/iam/list_mfa_devices.rb +55 -0
- data/lib/fog/aws/requests/iam/list_role_policies.rb +37 -0
- data/lib/fog/aws/requests/iam/list_roles.rb +41 -0
- data/lib/fog/aws/requests/iam/list_server_certificates.rb +54 -0
- data/lib/fog/aws/requests/iam/list_signing_certificates.rb +36 -0
- data/lib/fog/aws/requests/iam/list_user_policies.rb +53 -0
- data/lib/fog/aws/requests/iam/list_users.rb +58 -0
- data/lib/fog/aws/requests/iam/put_group_policy.rb +50 -0
- data/lib/fog/aws/requests/iam/put_role_policy.rb +34 -0
- data/lib/fog/aws/requests/iam/put_user_policy.rb +51 -0
- data/lib/fog/aws/requests/iam/remove_role_from_instance_profile.rb +33 -0
- data/lib/fog/aws/requests/iam/remove_user_from_group.rb +50 -0
- data/lib/fog/aws/requests/iam/update_access_key.rb +55 -0
- data/lib/fog/aws/requests/iam/update_account_password_policy.rb +56 -0
- data/lib/fog/aws/requests/iam/update_group.rb +37 -0
- data/lib/fog/aws/requests/iam/update_login_profile.rb +31 -0
- data/lib/fog/aws/requests/iam/update_server_certificate.rb +63 -0
- data/lib/fog/aws/requests/iam/update_signing_certificate.rb +31 -0
- data/lib/fog/aws/requests/iam/update_user.rb +37 -0
- data/lib/fog/aws/requests/iam/upload_server_certificate.rb +95 -0
- data/lib/fog/aws/requests/iam/upload_signing_certificate.rb +36 -0
- data/lib/fog/aws/requests/rds/add_tags_to_resource.rb +42 -0
- data/lib/fog/aws/requests/rds/authorize_db_security_group_ingress.rb +65 -0
- data/lib/fog/aws/requests/rds/create_db_instance.rb +132 -0
- data/lib/fog/aws/requests/rds/create_db_instance_read_replica.rb +77 -0
- data/lib/fog/aws/requests/rds/create_db_parameter_group.rb +53 -0
- data/lib/fog/aws/requests/rds/create_db_security_group.rb +49 -0
- data/lib/fog/aws/requests/rds/create_db_snapshot.rb +68 -0
- data/lib/fog/aws/requests/rds/create_db_subnet_group.rb +61 -0
- data/lib/fog/aws/requests/rds/create_event_subscription.rb +67 -0
- data/lib/fog/aws/requests/rds/delete_db_instance.rb +51 -0
- data/lib/fog/aws/requests/rds/delete_db_parameter_group.rb +41 -0
- data/lib/fog/aws/requests/rds/delete_db_security_group.rb +40 -0
- data/lib/fog/aws/requests/rds/delete_db_snapshot.rb +42 -0
- data/lib/fog/aws/requests/rds/delete_db_subnet_group.rb +38 -0
- data/lib/fog/aws/requests/rds/delete_event_subscription.rb +44 -0
- data/lib/fog/aws/requests/rds/describe_db_engine_versions.rb +30 -0
- data/lib/fog/aws/requests/rds/describe_db_instances.rb +89 -0
- data/lib/fog/aws/requests/rds/describe_db_log_files.rb +64 -0
- data/lib/fog/aws/requests/rds/describe_db_parameter_groups.rb +58 -0
- data/lib/fog/aws/requests/rds/describe_db_parameters.rb +42 -0
- data/lib/fog/aws/requests/rds/describe_db_reserved_instances.rb +38 -0
- data/lib/fog/aws/requests/rds/describe_db_security_groups.rb +80 -0
- data/lib/fog/aws/requests/rds/describe_db_snapshots.rb +66 -0
- data/lib/fog/aws/requests/rds/describe_db_subnet_groups.rb +59 -0
- data/lib/fog/aws/requests/rds/describe_event_subscriptions.rb +61 -0
- data/lib/fog/aws/requests/rds/describe_events.rb +50 -0
- data/lib/fog/aws/requests/rds/describe_orderable_db_instance_options.rb +72 -0
- data/lib/fog/aws/requests/rds/download_db_logfile_portion.rb +58 -0
- data/lib/fog/aws/requests/rds/list_tags_for_resource.rb +40 -0
- data/lib/fog/aws/requests/rds/modify_db_instance.rb +81 -0
- data/lib/fog/aws/requests/rds/modify_db_parameter_group.rb +50 -0
- data/lib/fog/aws/requests/rds/promote_read_replica.rb +59 -0
- data/lib/fog/aws/requests/rds/reboot_db_instance.rb +47 -0
- data/lib/fog/aws/requests/rds/remove_tags_from_resource.rb +40 -0
- data/lib/fog/aws/requests/rds/restore_db_instance_from_db_snapshot.rb +29 -0
- data/lib/fog/aws/requests/rds/restore_db_instance_to_point_in_time.rb +29 -0
- data/lib/fog/aws/requests/rds/revoke_db_security_group_ingress.rb +63 -0
- data/lib/fog/aws/requests/redshift/authorize_cluster_security_group_ingress.rb +54 -0
- data/lib/fog/aws/requests/redshift/authorize_snapshot_access.rb +42 -0
- data/lib/fog/aws/requests/redshift/copy_cluster_snapshot.rb +46 -0
- data/lib/fog/aws/requests/redshift/create_cluster.rb +148 -0
- data/lib/fog/aws/requests/redshift/create_cluster_parameter_group.rb +53 -0
- data/lib/fog/aws/requests/redshift/create_cluster_security_group.rb +41 -0
- data/lib/fog/aws/requests/redshift/create_cluster_snapshot.rb +43 -0
- data/lib/fog/aws/requests/redshift/create_cluster_subnet_group.rb +49 -0
- data/lib/fog/aws/requests/redshift/delete_cluster.rb +50 -0
- data/lib/fog/aws/requests/redshift/delete_cluster_parameter_group.rb +33 -0
- data/lib/fog/aws/requests/redshift/delete_cluster_security_group.rb +32 -0
- data/lib/fog/aws/requests/redshift/delete_cluster_snapshot.rb +43 -0
- data/lib/fog/aws/requests/redshift/delete_cluster_subnet_group.rb +36 -0
- data/lib/fog/aws/requests/redshift/describe_cluster_parameter_groups.rb +47 -0
- data/lib/fog/aws/requests/redshift/describe_cluster_parameters.rb +54 -0
- data/lib/fog/aws/requests/redshift/describe_cluster_security_groups.rb +49 -0
- data/lib/fog/aws/requests/redshift/describe_cluster_snapshots.rb +72 -0
- data/lib/fog/aws/requests/redshift/describe_cluster_subnet_groups.rb +46 -0
- data/lib/fog/aws/requests/redshift/describe_cluster_versions.rb +53 -0
- data/lib/fog/aws/requests/redshift/describe_clusters.rb +49 -0
- data/lib/fog/aws/requests/redshift/describe_default_cluster_parameters.rb +48 -0
- data/lib/fog/aws/requests/redshift/describe_events.rb +79 -0
- data/lib/fog/aws/requests/redshift/describe_orderable_cluster_options.rb +54 -0
- data/lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb +47 -0
- data/lib/fog/aws/requests/redshift/describe_reserved_nodes.rb +47 -0
- data/lib/fog/aws/requests/redshift/describe_resize.rb +38 -0
- data/lib/fog/aws/requests/redshift/modify_cluster.rb +109 -0
- data/lib/fog/aws/requests/redshift/modify_cluster_parameter_group.rb +44 -0
- data/lib/fog/aws/requests/redshift/modify_cluster_subnet_group.rb +49 -0
- data/lib/fog/aws/requests/redshift/purchase_reserved_node_offering.rb +39 -0
- data/lib/fog/aws/requests/redshift/reboot_cluster.rb +36 -0
- data/lib/fog/aws/requests/redshift/reset_cluster_parameter_group.rb +55 -0
- data/lib/fog/aws/requests/redshift/restore_from_cluster_snapshot.rb +76 -0
- data/lib/fog/aws/requests/redshift/revoke_cluster_security_group_ingress.rb +54 -0
- data/lib/fog/aws/requests/redshift/revoke_snapshot_access.rb +43 -0
- data/lib/fog/aws/requests/ses/delete_verified_email_address.rb +26 -0
- data/lib/fog/aws/requests/ses/get_send_quota.rb +29 -0
- data/lib/fog/aws/requests/ses/get_send_statistics.rb +32 -0
- data/lib/fog/aws/requests/ses/list_verified_email_addresses.rb +26 -0
- data/lib/fog/aws/requests/ses/send_email.rb +71 -0
- data/lib/fog/aws/requests/ses/send_raw_email.rb +39 -0
- data/lib/fog/aws/requests/ses/verify_domain_identity.rb +28 -0
- data/lib/fog/aws/requests/ses/verify_email_address.rb +26 -0
- data/lib/fog/aws/requests/simpledb/batch_put_attributes.rb +60 -0
- data/lib/fog/aws/requests/simpledb/create_domain.rb +40 -0
- data/lib/fog/aws/requests/simpledb/delete_attributes.rb +69 -0
- data/lib/fog/aws/requests/simpledb/delete_domain.rb +41 -0
- data/lib/fog/aws/requests/simpledb/domain_metadata.rb +72 -0
- data/lib/fog/aws/requests/simpledb/get_attributes.rb +80 -0
- data/lib/fog/aws/requests/simpledb/list_domains.rb +55 -0
- data/lib/fog/aws/requests/simpledb/put_attributes.rb +74 -0
- data/lib/fog/aws/requests/simpledb/select.rb +41 -0
- data/lib/fog/aws/requests/sns/add_permission.rb +22 -0
- data/lib/fog/aws/requests/sns/confirm_subscription.rb +30 -0
- data/lib/fog/aws/requests/sns/create_topic.rb +47 -0
- data/lib/fog/aws/requests/sns/delete_topic.rb +36 -0
- data/lib/fog/aws/requests/sns/get_topic_attributes.rb +36 -0
- data/lib/fog/aws/requests/sns/list_subscriptions.rb +35 -0
- data/lib/fog/aws/requests/sns/list_subscriptions_by_topic.rb +39 -0
- data/lib/fog/aws/requests/sns/list_topics.rb +35 -0
- data/lib/fog/aws/requests/sns/publish.rb +31 -0
- data/lib/fog/aws/requests/sns/remove_permission.rb +22 -0
- data/lib/fog/aws/requests/sns/set_topic_attributes.rb +45 -0
- data/lib/fog/aws/requests/sns/subscribe.rb +60 -0
- data/lib/fog/aws/requests/sns/unsubscribe.rb +26 -0
- data/lib/fog/aws/requests/sqs/change_message_visibility.rb +58 -0
- data/lib/fog/aws/requests/sqs/create_queue.rb +62 -0
- data/lib/fog/aws/requests/sqs/delete_message.rb +56 -0
- data/lib/fog/aws/requests/sqs/delete_queue.rb +47 -0
- data/lib/fog/aws/requests/sqs/get_queue_attributes.rb +48 -0
- data/lib/fog/aws/requests/sqs/list_queues.rb +41 -0
- data/lib/fog/aws/requests/sqs/receive_message.rb +83 -0
- data/lib/fog/aws/requests/sqs/send_message.rb +65 -0
- data/lib/fog/aws/requests/sqs/set_queue_attributes.rb +49 -0
- data/lib/fog/aws/requests/storage/abort_multipart_upload.rb +45 -0
- data/lib/fog/aws/requests/storage/acl_utils.rb +60 -0
- data/lib/fog/aws/requests/storage/complete_multipart_upload.rb +73 -0
- data/lib/fog/aws/requests/storage/copy_object.rb +77 -0
- data/lib/fog/aws/requests/storage/cors_utils.rb +39 -0
- data/lib/fog/aws/requests/storage/delete_bucket.rb +42 -0
- data/lib/fog/aws/requests/storage/delete_bucket_cors.rb +26 -0
- data/lib/fog/aws/requests/storage/delete_bucket_lifecycle.rb +26 -0
- data/lib/fog/aws/requests/storage/delete_bucket_policy.rb +26 -0
- data/lib/fog/aws/requests/storage/delete_bucket_tagging.rb +41 -0
- data/lib/fog/aws/requests/storage/delete_bucket_website.rb +26 -0
- data/lib/fog/aws/requests/storage/delete_multiple_objects.rb +164 -0
- data/lib/fog/aws/requests/storage/delete_object.rb +115 -0
- data/lib/fog/aws/requests/storage/get_bucket.rb +108 -0
- data/lib/fog/aws/requests/storage/get_bucket_acl.rb +65 -0
- data/lib/fog/aws/requests/storage/get_bucket_cors.rb +61 -0
- data/lib/fog/aws/requests/storage/get_bucket_lifecycle.rb +35 -0
- data/lib/fog/aws/requests/storage/get_bucket_location.rb +55 -0
- data/lib/fog/aws/requests/storage/get_bucket_logging.rb +45 -0
- data/lib/fog/aws/requests/storage/get_bucket_notification.rb +60 -0
- data/lib/fog/aws/requests/storage/get_bucket_object_versions.rb +160 -0
- data/lib/fog/aws/requests/storage/get_bucket_policy.rb +31 -0
- data/lib/fog/aws/requests/storage/get_bucket_tagging.rb +49 -0
- data/lib/fog/aws/requests/storage/get_bucket_versioning.rb +68 -0
- data/lib/fog/aws/requests/storage/get_bucket_website.rb +38 -0
- data/lib/fog/aws/requests/storage/get_object.rb +189 -0
- data/lib/fog/aws/requests/storage/get_object_acl.rb +76 -0
- data/lib/fog/aws/requests/storage/get_object_http_url.rb +30 -0
- data/lib/fog/aws/requests/storage/get_object_https_url.rb +30 -0
- data/lib/fog/aws/requests/storage/get_object_torrent.rb +45 -0
- data/lib/fog/aws/requests/storage/get_object_url.rb +40 -0
- data/lib/fog/aws/requests/storage/get_request_payment.rb +45 -0
- data/lib/fog/aws/requests/storage/get_service.rb +50 -0
- data/lib/fog/aws/requests/storage/head_bucket.rb +38 -0
- data/lib/fog/aws/requests/storage/head_object.rb +62 -0
- data/lib/fog/aws/requests/storage/initiate_multipart_upload.rb +66 -0
- data/lib/fog/aws/requests/storage/list_multipart_uploads.rb +52 -0
- data/lib/fog/aws/requests/storage/list_parts.rb +53 -0
- data/lib/fog/aws/requests/storage/post_object_hidden_fields.rb +54 -0
- data/lib/fog/aws/requests/storage/post_object_restore.rb +50 -0
- data/lib/fog/aws/requests/storage/put_bucket.rb +73 -0
- data/lib/fog/aws/requests/storage/put_bucket_acl.rb +69 -0
- data/lib/fog/aws/requests/storage/put_bucket_cors.rb +47 -0
- data/lib/fog/aws/requests/storage/put_bucket_lifecycle.rb +76 -0
- data/lib/fog/aws/requests/storage/put_bucket_logging.rb +80 -0
- data/lib/fog/aws/requests/storage/put_bucket_notification.rb +83 -0
- data/lib/fog/aws/requests/storage/put_bucket_policy.rb +25 -0
- data/lib/fog/aws/requests/storage/put_bucket_tagging.rb +55 -0
- data/lib/fog/aws/requests/storage/put_bucket_versioning.rb +74 -0
- data/lib/fog/aws/requests/storage/put_bucket_website.rb +87 -0
- data/lib/fog/aws/requests/storage/put_object.rb +87 -0
- data/lib/fog/aws/requests/storage/put_object_acl.rb +78 -0
- data/lib/fog/aws/requests/storage/put_object_url.rb +41 -0
- data/lib/fog/aws/requests/storage/put_request_payment.rb +45 -0
- data/lib/fog/aws/requests/storage/shared_mock_methods.rb +87 -0
- data/lib/fog/aws/requests/storage/sync_clock.rb +24 -0
- data/lib/fog/aws/requests/storage/upload_part.rb +57 -0
- data/lib/fog/aws/requests/sts/assume_role.rb +44 -0
- data/lib/fog/aws/requests/sts/assume_role_with_saml.rb +44 -0
- data/lib/fog/aws/requests/sts/get_federation_token.rb +62 -0
- data/lib/fog/aws/requests/sts/get_session_token.rb +18 -0
- data/lib/fog/aws/ses.rb +141 -0
- data/lib/fog/aws/signaturev4.rb +119 -0
- data/lib/fog/aws/simpledb.rb +211 -0
- data/lib/fog/aws/sns.rb +156 -0
- data/lib/fog/aws/sqs.rb +164 -0
- data/lib/fog/aws/storage.rb +690 -0
- data/lib/fog/aws/sts.rb +185 -0
- data/lib/fog/aws/version.rb +5 -0
- data/tests/credentials_tests.rb +55 -0
- data/tests/helper.rb +28 -0
- data/tests/helpers/collection_helper.rb +97 -0
- data/tests/helpers/compute/flavors_helper.rb +32 -0
- data/tests/helpers/compute/server_helper.rb +25 -0
- data/tests/helpers/compute/servers_helper.rb +10 -0
- data/tests/helpers/dns_helper.rb +55 -0
- data/tests/helpers/formats_helper.rb +98 -0
- data/tests/helpers/formats_helper_tests.rb +110 -0
- data/tests/helpers/mock_helper.rb +110 -0
- data/tests/helpers/model_helper.rb +31 -0
- data/tests/helpers/responds_to_helper.rb +11 -0
- data/tests/helpers/schema_validator_tests.rb +107 -0
- data/tests/helpers/succeeds_helper.rb +9 -0
- data/tests/lorem.txt +1 -0
- data/tests/models/auto_scaling/activities_tests.rb +6 -0
- data/tests/models/auto_scaling/configuration_test.rb +13 -0
- data/tests/models/auto_scaling/configurations_tests.rb +11 -0
- data/tests/models/auto_scaling/groups_test.rb +27 -0
- data/tests/models/auto_scaling/helper.rb +0 -0
- data/tests/models/auto_scaling/instance_tests.rb +15 -0
- data/tests/models/auto_scaling/instances_tests.rb +6 -0
- data/tests/models/beanstalk/application_tests.rb +69 -0
- data/tests/models/beanstalk/applications_tests.rb +7 -0
- data/tests/models/beanstalk/environment_tests.rb +131 -0
- data/tests/models/beanstalk/environments_tests.rb +34 -0
- data/tests/models/beanstalk/template_tests.rb +47 -0
- data/tests/models/beanstalk/templates_tests.rb +62 -0
- data/tests/models/beanstalk/version_tests.rb +66 -0
- data/tests/models/beanstalk/versions_tests.rb +60 -0
- data/tests/models/cdn/distribution_tests.rb +15 -0
- data/tests/models/cdn/distributions_tests.rb +15 -0
- data/tests/models/cdn/invalidation_tests.rb +31 -0
- data/tests/models/cdn/invalidations_tests.rb +14 -0
- data/tests/models/cdn/streaming_distribution_tests.rb +15 -0
- data/tests/models/cdn/streaming_distributions_tests.rb +15 -0
- data/tests/models/cloud_watch/alarm_data_tests.rb +42 -0
- data/tests/models/cloud_watch/alarm_history_tests.rb +22 -0
- data/tests/models/cloud_watch/metric_statistics_tests.rb +51 -0
- data/tests/models/cloud_watch/metrics_tests.rb +32 -0
- data/tests/models/compute/address_tests.rb +24 -0
- data/tests/models/compute/addresses_tests.rb +5 -0
- data/tests/models/compute/dhcp_option_tests.rb +3 -0
- data/tests/models/compute/dhcp_options_tests.rb +3 -0
- data/tests/models/compute/internet_gateway_tests.rb +3 -0
- data/tests/models/compute/internet_gateways_tests.rb +3 -0
- data/tests/models/compute/key_pair_tests.rb +26 -0
- data/tests/models/compute/key_pairs_tests.rb +5 -0
- data/tests/models/compute/network_acl_tests.rb +109 -0
- data/tests/models/compute/network_acls_tests.rb +20 -0
- data/tests/models/compute/network_interfaces_test.rb +12 -0
- data/tests/models/compute/security_group_tests.rb +64 -0
- data/tests/models/compute/security_groups_tests.rb +5 -0
- data/tests/models/compute/server_tests.rb +83 -0
- data/tests/models/compute/snapshot_tests.rb +10 -0
- data/tests/models/compute/snapshots_tests.rb +10 -0
- data/tests/models/compute/subnet_tests.rb +5 -0
- data/tests/models/compute/subnets_tests.rb +5 -0
- data/tests/models/compute/volume_tests.rb +43 -0
- data/tests/models/compute/volumes_tests.rb +5 -0
- data/tests/models/compute/vpc_tests.rb +4 -0
- data/tests/models/compute/vpcs_tests.rb +19 -0
- data/tests/models/data_pipeline/pipeline_tests.rb +8 -0
- data/tests/models/data_pipeline/pipelines_tests.rb +8 -0
- data/tests/models/dns/record_tests.rb +33 -0
- data/tests/models/dns/records_tests.rb +41 -0
- data/tests/models/dns/zone_tests.rb +4 -0
- data/tests/models/dns/zones_tests.rb +4 -0
- data/tests/models/elasticache/cluster_tests.rb +30 -0
- data/tests/models/elasticache/parameter_groups_tests.rb +15 -0
- data/tests/models/elasticache/security_groups_tests.rb +52 -0
- data/tests/models/elasticache/subnet_groups_tests.rb +44 -0
- data/tests/models/elb/model_tests.rb +360 -0
- data/tests/models/elb/tagging_tests.rb +15 -0
- data/tests/models/glacier/model_tests.rb +47 -0
- data/tests/models/iam/access_keys_tests.rb +53 -0
- data/tests/models/iam/policies_tests.rb +57 -0
- data/tests/models/iam/roles_tests.rb +63 -0
- data/tests/models/iam/users_tests.rb +71 -0
- data/tests/models/rds/event_subscription_tests.rb +9 -0
- data/tests/models/rds/event_subscriptions_tests.rb +6 -0
- data/tests/models/rds/helper.rb +5 -0
- data/tests/models/rds/instance_option_tests.rb +14 -0
- data/tests/models/rds/parameter_group_tests.rb +24 -0
- data/tests/models/rds/parameter_groups_tests.rb +8 -0
- data/tests/models/rds/security_group_tests.rb +53 -0
- data/tests/models/rds/security_groups_tests.rb +5 -0
- data/tests/models/rds/server_tests.rb +110 -0
- data/tests/models/rds/servers_tests.rb +6 -0
- data/tests/models/rds/snapshot_tests.rb +12 -0
- data/tests/models/rds/snapshots_tests.rb +12 -0
- data/tests/models/rds/tagging_tests.rb +20 -0
- data/tests/models/sns/topic_tests.rb +15 -0
- data/tests/models/sns/topics_tests.rb +6 -0
- data/tests/models/storage/directory_tests.rb +87 -0
- data/tests/models/storage/file_tests.rb +92 -0
- data/tests/models/storage/files_tests.rb +58 -0
- data/tests/models/storage/url_tests.rb +26 -0
- data/tests/models/storage/version_tests.rb +52 -0
- data/tests/models/storage/versions_tests.rb +56 -0
- data/tests/parsers/elb/describe_load_balancers.rb +65 -0
- data/tests/requests/auto_scaling/auto_scaling_tests.rb +77 -0
- data/tests/requests/auto_scaling/describe_types_tests.rb +102 -0
- data/tests/requests/auto_scaling/helper.rb +228 -0
- data/tests/requests/auto_scaling/model_tests.rb +233 -0
- data/tests/requests/auto_scaling/notification_configuration_tests.rb +124 -0
- data/tests/requests/auto_scaling/tag_tests.rb +63 -0
- data/tests/requests/beanstalk/application_tests.rb +140 -0
- data/tests/requests/beanstalk/solution_stack_tests.rb +22 -0
- data/tests/requests/cdn/cdn_tests.rb +252 -0
- data/tests/requests/cloud_formation/stack_tests.rb +167 -0
- data/tests/requests/cloud_watch/get_metric_statistics_tests.rb +28 -0
- data/tests/requests/cloud_watch/list_metrics_test.rb +64 -0
- data/tests/requests/cloud_watch/put_metric_data_tests.rb +36 -0
- data/tests/requests/compute/address_tests.rb +108 -0
- data/tests/requests/compute/assign_private_ip_tests.rb +55 -0
- data/tests/requests/compute/availability_zone_tests.rb +25 -0
- data/tests/requests/compute/client_tests.rb +25 -0
- data/tests/requests/compute/dhcp_options_tests.rb +39 -0
- data/tests/requests/compute/helper.rb +10 -0
- data/tests/requests/compute/image_tests.rb +158 -0
- data/tests/requests/compute/instance_tests.rb +297 -0
- data/tests/requests/compute/internet_gateway_tests.rb +49 -0
- data/tests/requests/compute/key_pair_tests.rb +67 -0
- data/tests/requests/compute/network_acl_tests.rb +112 -0
- data/tests/requests/compute/network_interface_tests.rb +250 -0
- data/tests/requests/compute/placement_group_tests.rb +48 -0
- data/tests/requests/compute/region_tests.rb +52 -0
- data/tests/requests/compute/route_tests.rb +339 -0
- data/tests/requests/compute/security_group_tests.rb +437 -0
- data/tests/requests/compute/snapshot_tests.rb +77 -0
- data/tests/requests/compute/spot_datafeed_subscription_tests.rb +47 -0
- data/tests/requests/compute/spot_instance_tests.rb +57 -0
- data/tests/requests/compute/spot_price_history_tests.rb +24 -0
- data/tests/requests/compute/subnet_tests.rb +85 -0
- data/tests/requests/compute/tag_tests.rb +101 -0
- data/tests/requests/compute/volume_tests.rb +206 -0
- data/tests/requests/compute/vpc_tests.rb +111 -0
- data/tests/requests/data_pipeline/helper.rb +72 -0
- data/tests/requests/data_pipeline/pipeline_tests.rb +78 -0
- data/tests/requests/dns/dns_tests.rb +257 -0
- data/tests/requests/dns/health_check_tests.rb +159 -0
- data/tests/requests/dns/helper.rb +21 -0
- data/tests/requests/dynamodb/item_tests.rb +137 -0
- data/tests/requests/dynamodb/table_tests.rb +99 -0
- data/tests/requests/elasticache/cache_cluster_tests.rb +137 -0
- data/tests/requests/elasticache/describe_events.rb +17 -0
- data/tests/requests/elasticache/describe_reserved_cache_nodes.rb +17 -0
- data/tests/requests/elasticache/helper.rb +103 -0
- data/tests/requests/elasticache/parameter_group_tests.rb +105 -0
- data/tests/requests/elasticache/security_group_tests.rb +108 -0
- data/tests/requests/elasticache/subnet_group_tests.rb +52 -0
- data/tests/requests/elb/helper.rb +91 -0
- data/tests/requests/elb/listener_tests.rb +68 -0
- data/tests/requests/elb/load_balancer_tests.rb +89 -0
- data/tests/requests/elb/policy_tests.rb +132 -0
- data/tests/requests/emr/helper.rb +168 -0
- data/tests/requests/emr/instance_group_tests.rb +106 -0
- data/tests/requests/emr/job_flow_tests.rb +88 -0
- data/tests/requests/glacier/archive_tests.rb +13 -0
- data/tests/requests/glacier/multipart_upload_tests.rb +29 -0
- data/tests/requests/glacier/tree_hash_tests.rb +62 -0
- data/tests/requests/glacier/vault_tests.rb +35 -0
- data/tests/requests/iam/access_key_tests.rb +53 -0
- data/tests/requests/iam/account_policy_tests.rb +20 -0
- data/tests/requests/iam/account_tests.rb +34 -0
- data/tests/requests/iam/group_policy_tests.rb +48 -0
- data/tests/requests/iam/group_tests.rb +44 -0
- data/tests/requests/iam/helper.rb +102 -0
- data/tests/requests/iam/login_profile_tests.rb +62 -0
- data/tests/requests/iam/mfa_tests.rb +23 -0
- data/tests/requests/iam/role_tests.rb +167 -0
- data/tests/requests/iam/server_certificate_tests.rb +130 -0
- data/tests/requests/iam/user_policy_tests.rb +45 -0
- data/tests/requests/iam/user_tests.rb +77 -0
- data/tests/requests/rds/describe_events.rb +16 -0
- data/tests/requests/rds/event_subscription_tests.rb +30 -0
- data/tests/requests/rds/helper.rb +296 -0
- data/tests/requests/rds/instance_option_tests.rb +21 -0
- data/tests/requests/rds/instance_tests.rb +133 -0
- data/tests/requests/rds/log_file_tests.rb +19 -0
- data/tests/requests/rds/parameter_group_tests.rb +62 -0
- data/tests/requests/rds/parameter_request_tests.rb +34 -0
- data/tests/requests/rds/security_group_tests.rb +101 -0
- data/tests/requests/rds/subnet_groups_tests.rb +52 -0
- data/tests/requests/rds/tagging_tests.rb +78 -0
- data/tests/requests/redshift/cluster_parameter_group_tests.rb +76 -0
- data/tests/requests/redshift/cluster_security_group_tests.rb +42 -0
- data/tests/requests/redshift/cluster_snapshot_tests.rb +73 -0
- data/tests/requests/redshift/cluster_tests.rb +80 -0
- data/tests/requests/ses/helper.rb +9 -0
- data/tests/requests/ses/verified_domain_identity_tests.rb +16 -0
- data/tests/requests/ses/verified_email_address_tests.rb +27 -0
- data/tests/requests/simpledb/attributes_tests.rb +86 -0
- data/tests/requests/simpledb/domain_tests.rb +51 -0
- data/tests/requests/simpledb/helper.rb +10 -0
- data/tests/requests/sns/helper.rb +9 -0
- data/tests/requests/sns/subscription_tests.rb +86 -0
- data/tests/requests/sns/topic_tests.rb +45 -0
- data/tests/requests/sqs/helper.rb +9 -0
- data/tests/requests/sqs/message_tests.rb +51 -0
- data/tests/requests/sqs/queue_tests.rb +50 -0
- data/tests/requests/storage/acl_utils_tests.rb +209 -0
- data/tests/requests/storage/bucket_tests.rb +399 -0
- data/tests/requests/storage/cors_utils_tests.rb +108 -0
- data/tests/requests/storage/delete_multiple_objects_tests.rb +12 -0
- data/tests/requests/storage/multipart_upload_tests.rb +121 -0
- data/tests/requests/storage/object_tests.rb +189 -0
- data/tests/requests/storage/versioning_tests.rb +258 -0
- data/tests/requests/sts/assume_role_tests.rb +19 -0
- data/tests/requests/sts/assume_role_with_saml_tests.rb +18 -0
- data/tests/requests/sts/get_federation_token_tests.rb +20 -0
- data/tests/requests/sts/session_token_tests.rb +16 -0
- data/tests/signaturev4_tests.rb +88 -0
- data/tests/signed_params_tests.rb +17 -0
- data/tests/storage_tests.rb +7 -0
- metadata +1420 -0
@@ -0,0 +1,19 @@
|
|
1
|
+
Shindo.tests('AWS::STS | assume role', ['aws']) do
|
2
|
+
|
3
|
+
@policy = {"Statement" => [{"Effect" => "Allow", "Action" => "*", "Resource" => "*"}]}
|
4
|
+
|
5
|
+
@response_format = {
|
6
|
+
'SessionToken' => String,
|
7
|
+
'SecretAccessKey' => String,
|
8
|
+
'Expiration' => String,
|
9
|
+
'AccessKeyId' => String,
|
10
|
+
'Arn' => String,
|
11
|
+
'RequestId' => String
|
12
|
+
}
|
13
|
+
|
14
|
+
tests("#assume_role('rolename', 'assumed_role_session', 'external_id', #{@policy.inspect}, 900)").formats(@response_format) do
|
15
|
+
pending if Fog.mocking?
|
16
|
+
Fog::AWS[:sts].assume_role("rolename","assumed_role_session","external_id", @policy, 900).body
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
Shindo.tests('AWS::STS | assume role with SAML', ['aws']) do
|
2
|
+
|
3
|
+
@policy = {"Statement" => [{"Effect" => "Allow", "Action" => "*", "Resource" => "*"}]}
|
4
|
+
|
5
|
+
@response_format = {
|
6
|
+
'SessionToken' => String,
|
7
|
+
'SecretAccessKey' => String,
|
8
|
+
'Expiration' => String,
|
9
|
+
'AccessKeyId' => String,
|
10
|
+
'Arn' => String,
|
11
|
+
'RequestId' => String
|
12
|
+
}
|
13
|
+
|
14
|
+
tests("#assume_role_with_saml('role_arn', 'principal_arn', 'saml_assertion', #{@policy.inspect}, 900)").formats(@response_format) do
|
15
|
+
pending if Fog.mocking?
|
16
|
+
Fog::AWS[:sts].assume_role_with_saml("role_arn","principal_arn","saml_assertion", @policy, 900).body
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
Shindo.tests('AWS::STS | session tokens', ['aws']) do
|
2
|
+
|
3
|
+
@policy = {"Statement" => [{"Effect" => "Allow", "Action" => "*", "Resource" => "*"}]}
|
4
|
+
|
5
|
+
@federation_format = {
|
6
|
+
'SessionToken' => String,
|
7
|
+
'SecretAccessKey' => String,
|
8
|
+
'Expiration' => String,
|
9
|
+
'AccessKeyId' => String,
|
10
|
+
'Arn' => String,
|
11
|
+
'FederatedUserId' => String,
|
12
|
+
'PackedPolicySize' => String,
|
13
|
+
'RequestId' => String
|
14
|
+
}
|
15
|
+
|
16
|
+
tests("#get_federation_token('test@fog.io', #{@policy.inspect})").formats(@federation_format) do
|
17
|
+
Fog::AWS[:sts].get_federation_token("test@fog.io", @policy).body
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
Shindo.tests('AWS::STS | session tokens', ['aws']) do
|
2
|
+
|
3
|
+
@session_format = {
|
4
|
+
'SessionToken' => String,
|
5
|
+
'SecretAccessKey' => String,
|
6
|
+
'Expiration' => String,
|
7
|
+
'AccessKeyId' => String,
|
8
|
+
'RequestId' => String
|
9
|
+
}
|
10
|
+
|
11
|
+
tests("#get_session_token").formats(@session_format) do
|
12
|
+
pending if Fog.mocking?
|
13
|
+
Fog::AWS[:sts].get_session_token.body
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
@@ -0,0 +1,88 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
Shindo.tests('AWS | signaturev4', ['aws']) do
|
4
|
+
|
5
|
+
@now = Fog::Time.utc(2011,9,9,23,36,0)
|
6
|
+
|
7
|
+
# These testcases are from http://docs.amazonwebservices.com/general/latest/gr/signature-v4-test-suite.html
|
8
|
+
@signer = Fog::AWS::SignatureV4.new('AKIDEXAMPLE', 'wJalrXUtnFEMI/K7MDENG+bPxRfiCYEXAMPLEKEY', 'us-east-1','host')
|
9
|
+
|
10
|
+
tests('get-vanilla') do
|
11
|
+
returns(@signer.sign({:headers => {'Host' => 'host.foo.com', 'Date' => 'Mon, 09 Sep 2011 23:36:00 GMT'}, :method => :get, :path => '/'}, @now)) do
|
12
|
+
'AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20110909/us-east-1/host/aws4_request, SignedHeaders=date;host, Signature=b27ccfbfa7df52a200ff74193ca6e32d4b48b8856fab7ebf1c595d0670a7e470'
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
tests('get-vanilla-query-order-key with symbol keys') do
|
17
|
+
returns(@signer.sign({:query => {:'a' => 'foo', :'b' => 'foo'}, :headers => {:'Host' => 'host.foo.com', 'Date' => 'Mon, 09 Sep 2011 23:36:00 GMT'}, :method => :get, :path => '/'}, @now)) do
|
18
|
+
'AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20110909/us-east-1/host/aws4_request, SignedHeaders=date;host, Signature=0dc122f3b28b831ab48ba65cb47300de53fbe91b577fe113edac383730254a3b'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
tests('get-vanilla-query-order-key') do
|
23
|
+
returns(@signer.sign({:query => {'a' => 'foo', 'b' => 'foo'}, :headers => {'Host' => 'host.foo.com', 'Date' => 'Mon, 09 Sep 2011 23:36:00 GMT'}, :method => :get, :path => '/'}, @now)) do
|
24
|
+
'AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20110909/us-east-1/host/aws4_request, SignedHeaders=date;host, Signature=0dc122f3b28b831ab48ba65cb47300de53fbe91b577fe113edac383730254a3b'
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
tests('get-unreserved') do
|
29
|
+
returns(@signer.sign({:headers => {'Host' => 'host.foo.com', 'Date' => 'Mon, 09 Sep 2011 23:36:00 GMT'}, :method => :get, :path => '/-._~0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'}, @now)) do
|
30
|
+
'AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20110909/us-east-1/host/aws4_request, SignedHeaders=date;host, Signature=830cc36d03f0f84e6ee4953fbe701c1c8b71a0372c63af9255aa364dd183281e'
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
tests('post-x-www-form-urlencoded-parameter') do
|
35
|
+
returns(@signer.sign({:headers => {'Content-type' => 'application/x-www-form-urlencoded; charset=utf8', 'Host' => 'host.foo.com', 'Date' => 'Mon, 09 Sep 2011 23:36:00 GMT'}, :method => :post, :path => '/',
|
36
|
+
:body => 'foo=bar'}, @now)) do
|
37
|
+
'AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20110909/us-east-1/host/aws4_request, SignedHeaders=content-type;date;host, Signature=b105eb10c6d318d2294de9d49dd8b031b55e3c3fe139f2e637da70511e9e7b71'
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
tests('get with relative path') do
|
42
|
+
returns(@signer.sign({:query => {}, :headers => {'Host' => 'host.foo.com', 'Date' => 'Mon, 09 Sep 2011 23:36:00 GMT'}, :method => :get, :path => '/foo/bar/../..'}, @now)) do
|
43
|
+
'AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20110909/us-east-1/host/aws4_request, SignedHeaders=date;host, Signature=b27ccfbfa7df52a200ff74193ca6e32d4b48b8856fab7ebf1c595d0670a7e470'
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
tests('get with pointless .') do
|
48
|
+
returns(@signer.sign({:query => {}, :headers => {'Host' => 'host.foo.com', 'Date' => 'Mon, 09 Sep 2011 23:36:00 GMT'}, :method => :get, :path => '/./foo'}, @now)) do
|
49
|
+
'AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20110909/us-east-1/host/aws4_request, SignedHeaders=date;host, Signature=910e4d6c9abafaf87898e1eb4c929135782ea25bb0279703146455745391e63a'
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
tests('get with repeated / ') do
|
54
|
+
returns(@signer.sign({:query => {}, :headers => {'Host' => 'host.foo.com', 'Date' => 'Mon, 09 Sep 2011 23:36:00 GMT'}, :method => :get, :path => '//'}, @now)) do
|
55
|
+
'AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20110909/us-east-1/host/aws4_request, SignedHeaders=date;host, Signature=b27ccfbfa7df52a200ff74193ca6e32d4b48b8856fab7ebf1c595d0670a7e470'
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
tests('get with repeated trailing / ') do
|
60
|
+
returns(@signer.sign({:query => {}, :headers => {'Host' => 'host.foo.com', 'Date' => 'Mon, 09 Sep 2011 23:36:00 GMT'}, :method => :get, :path => '//foo//'}, @now)) do
|
61
|
+
'AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20110909/us-east-1/host/aws4_request, SignedHeaders=date;host, Signature=b00392262853cfe3201e47ccf945601079e9b8a7f51ee4c3d9ee4f187aa9bf19'
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
tests('get signature as components') do
|
66
|
+
returns(@signer.signature_parameters({:query => {'a' => 'foo', 'b' => 'foo'}, :headers => {'Host' => 'host.foo.com', 'Date' => 'Mon, 09 Sep 2011 23:36:00 GMT'}, :method => :get, :path => '/'}, @now)) do
|
67
|
+
{
|
68
|
+
'X-Amz-Algorithm' => 'AWS4-HMAC-SHA256',
|
69
|
+
'X-Amz-Credential' => 'AKIDEXAMPLE/20110909/us-east-1/host/aws4_request',
|
70
|
+
'X-Amz-SignedHeaders' => 'date;host',
|
71
|
+
'X-Amz-Signature' => 'a6c6304682c74bcaebeeab2fdfb8041bbb39c6976300791a283057bccf333fb2'
|
72
|
+
}
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
tests("inject body sha") do
|
77
|
+
returns(@signer.signature_parameters({:query => {'a' => 'foo', 'b' => 'foo'}, :headers => {'Host' => 'host.foo.com', 'Date' => 'Mon, 09 Sep 2011 23:36:00 GMT'}, :method => :get, :path => '/'}, @now, 'STREAMING-AWS4-HMAC-SHA256-PAYLOAD')) do
|
78
|
+
{
|
79
|
+
'X-Amz-Algorithm' => 'AWS4-HMAC-SHA256',
|
80
|
+
'X-Amz-Credential' => 'AKIDEXAMPLE/20110909/us-east-1/host/aws4_request',
|
81
|
+
'X-Amz-SignedHeaders' => 'date;host',
|
82
|
+
'X-Amz-Signature' => '22c32bb0d0b859b94839de4e9360bca1806e73d853f5f97ae0d849f0bdf42fb0'
|
83
|
+
}
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
Fog::Time.now = ::Time.now
|
88
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
Shindo.tests('AWS | signed_params', ['aws']) do
|
4
|
+
returns( Fog::AWS.escape( "'Stöp!' said Fred_-~./" ) ) { "%27St%C3%B6p%21%27%20said%20Fred_-~.%2F" }
|
5
|
+
|
6
|
+
tests('Unicode characters should be escaped') do
|
7
|
+
unicode = ["00E9".to_i(16)].pack("U*")
|
8
|
+
escaped = "%C3%A9"
|
9
|
+
returns( escaped ) { Fog::AWS.escape( unicode ) }
|
10
|
+
end
|
11
|
+
|
12
|
+
tests('Unicode characters with combining marks should be escaped') do
|
13
|
+
unicode = ["0065".to_i(16), "0301".to_i(16)].pack("U*")
|
14
|
+
escaped = "e%CC%81"
|
15
|
+
returns( escaped ) { Fog::AWS.escape( unicode ) }
|
16
|
+
end
|
17
|
+
end
|
metadata
ADDED
@@ -0,0 +1,1420 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fog-aws
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Josh Lane
|
8
|
+
- Wesley Beary
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2015-01-06 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - "~>"
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '1.6'
|
21
|
+
type: :development
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - "~>"
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '1.6'
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: rake
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - "~>"
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '10.0'
|
35
|
+
type: :development
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - "~>"
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '10.0'
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: shindo
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - "~>"
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0.3'
|
49
|
+
type: :development
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - "~>"
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0.3'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: fog-core
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - "~>"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '1.27'
|
63
|
+
type: :runtime
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '1.27'
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: fog-json
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - "~>"
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '1.0'
|
77
|
+
type: :runtime
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - "~>"
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '1.0'
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
name: fog-xml
|
86
|
+
requirement: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - "~>"
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0.1'
|
91
|
+
type: :runtime
|
92
|
+
prerelease: false
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - "~>"
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '0.1'
|
98
|
+
- !ruby/object:Gem::Dependency
|
99
|
+
name: ipaddress
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - "~>"
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0.8'
|
105
|
+
type: :runtime
|
106
|
+
prerelease: false
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - "~>"
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0.8'
|
112
|
+
description: |-
|
113
|
+
This library can be used as a module for `fog` or as standalone provider
|
114
|
+
to use the Amazon Web Services in applications..
|
115
|
+
email:
|
116
|
+
- me@joshualane.com
|
117
|
+
- geemus@gmail.com
|
118
|
+
executables: []
|
119
|
+
extensions: []
|
120
|
+
extra_rdoc_files: []
|
121
|
+
files:
|
122
|
+
- ".gitignore"
|
123
|
+
- ".travis.yml"
|
124
|
+
- Gemfile
|
125
|
+
- LICENSE.txt
|
126
|
+
- README.md
|
127
|
+
- Rakefile
|
128
|
+
- fog-aws.gemspec
|
129
|
+
- gemfiles/Gemfile-edge
|
130
|
+
- gemfiles/Gemfile-ruby-1.8.7
|
131
|
+
- lib/fog/aws.rb
|
132
|
+
- lib/fog/aws/auto_scaling.rb
|
133
|
+
- lib/fog/aws/beanstalk.rb
|
134
|
+
- lib/fog/aws/cdn.rb
|
135
|
+
- lib/fog/aws/cloud_formation.rb
|
136
|
+
- lib/fog/aws/cloud_watch.rb
|
137
|
+
- lib/fog/aws/compute.rb
|
138
|
+
- lib/fog/aws/core.rb
|
139
|
+
- lib/fog/aws/credential_fetcher.rb
|
140
|
+
- lib/fog/aws/data_pipeline.rb
|
141
|
+
- lib/fog/aws/dns.rb
|
142
|
+
- lib/fog/aws/dynamodb.rb
|
143
|
+
- lib/fog/aws/elasticache.rb
|
144
|
+
- lib/fog/aws/elb.rb
|
145
|
+
- lib/fog/aws/elb/policy_types.rb
|
146
|
+
- lib/fog/aws/emr.rb
|
147
|
+
- lib/fog/aws/glacier.rb
|
148
|
+
- lib/fog/aws/iam.rb
|
149
|
+
- lib/fog/aws/models/auto_scaling/activities.rb
|
150
|
+
- lib/fog/aws/models/auto_scaling/activity.rb
|
151
|
+
- lib/fog/aws/models/auto_scaling/configuration.rb
|
152
|
+
- lib/fog/aws/models/auto_scaling/configurations.rb
|
153
|
+
- lib/fog/aws/models/auto_scaling/group.rb
|
154
|
+
- lib/fog/aws/models/auto_scaling/groups.rb
|
155
|
+
- lib/fog/aws/models/auto_scaling/instance.rb
|
156
|
+
- lib/fog/aws/models/auto_scaling/instances.rb
|
157
|
+
- lib/fog/aws/models/auto_scaling/policies.rb
|
158
|
+
- lib/fog/aws/models/auto_scaling/policy.rb
|
159
|
+
- lib/fog/aws/models/beanstalk/application.rb
|
160
|
+
- lib/fog/aws/models/beanstalk/applications.rb
|
161
|
+
- lib/fog/aws/models/beanstalk/environment.rb
|
162
|
+
- lib/fog/aws/models/beanstalk/environments.rb
|
163
|
+
- lib/fog/aws/models/beanstalk/event.rb
|
164
|
+
- lib/fog/aws/models/beanstalk/events.rb
|
165
|
+
- lib/fog/aws/models/beanstalk/template.rb
|
166
|
+
- lib/fog/aws/models/beanstalk/templates.rb
|
167
|
+
- lib/fog/aws/models/beanstalk/version.rb
|
168
|
+
- lib/fog/aws/models/beanstalk/versions.rb
|
169
|
+
- lib/fog/aws/models/cdn/distribution.rb
|
170
|
+
- lib/fog/aws/models/cdn/distribution_helper.rb
|
171
|
+
- lib/fog/aws/models/cdn/distributions.rb
|
172
|
+
- lib/fog/aws/models/cdn/distributions_helper.rb
|
173
|
+
- lib/fog/aws/models/cdn/invalidation.rb
|
174
|
+
- lib/fog/aws/models/cdn/invalidations.rb
|
175
|
+
- lib/fog/aws/models/cdn/streaming_distribution.rb
|
176
|
+
- lib/fog/aws/models/cdn/streaming_distributions.rb
|
177
|
+
- lib/fog/aws/models/cloud_watch/alarm.rb
|
178
|
+
- lib/fog/aws/models/cloud_watch/alarm_data.rb
|
179
|
+
- lib/fog/aws/models/cloud_watch/alarm_datum.rb
|
180
|
+
- lib/fog/aws/models/cloud_watch/alarm_histories.rb
|
181
|
+
- lib/fog/aws/models/cloud_watch/alarm_history.rb
|
182
|
+
- lib/fog/aws/models/cloud_watch/alarms.rb
|
183
|
+
- lib/fog/aws/models/cloud_watch/metric.rb
|
184
|
+
- lib/fog/aws/models/cloud_watch/metric_statistic.rb
|
185
|
+
- lib/fog/aws/models/cloud_watch/metric_statistics.rb
|
186
|
+
- lib/fog/aws/models/cloud_watch/metrics.rb
|
187
|
+
- lib/fog/aws/models/compute/address.rb
|
188
|
+
- lib/fog/aws/models/compute/addresses.rb
|
189
|
+
- lib/fog/aws/models/compute/dhcp_option.rb
|
190
|
+
- lib/fog/aws/models/compute/dhcp_options.rb
|
191
|
+
- lib/fog/aws/models/compute/flavor.rb
|
192
|
+
- lib/fog/aws/models/compute/flavors.rb
|
193
|
+
- lib/fog/aws/models/compute/image.rb
|
194
|
+
- lib/fog/aws/models/compute/images.rb
|
195
|
+
- lib/fog/aws/models/compute/internet_gateway.rb
|
196
|
+
- lib/fog/aws/models/compute/internet_gateways.rb
|
197
|
+
- lib/fog/aws/models/compute/key_pair.rb
|
198
|
+
- lib/fog/aws/models/compute/key_pairs.rb
|
199
|
+
- lib/fog/aws/models/compute/network_acl.rb
|
200
|
+
- lib/fog/aws/models/compute/network_acls.rb
|
201
|
+
- lib/fog/aws/models/compute/network_interface.rb
|
202
|
+
- lib/fog/aws/models/compute/network_interfaces.rb
|
203
|
+
- lib/fog/aws/models/compute/route_table.rb
|
204
|
+
- lib/fog/aws/models/compute/route_tables.rb
|
205
|
+
- lib/fog/aws/models/compute/security_group.rb
|
206
|
+
- lib/fog/aws/models/compute/security_groups.rb
|
207
|
+
- lib/fog/aws/models/compute/server.rb
|
208
|
+
- lib/fog/aws/models/compute/servers.rb
|
209
|
+
- lib/fog/aws/models/compute/snapshot.rb
|
210
|
+
- lib/fog/aws/models/compute/snapshots.rb
|
211
|
+
- lib/fog/aws/models/compute/spot_request.rb
|
212
|
+
- lib/fog/aws/models/compute/spot_requests.rb
|
213
|
+
- lib/fog/aws/models/compute/subnet.rb
|
214
|
+
- lib/fog/aws/models/compute/subnets.rb
|
215
|
+
- lib/fog/aws/models/compute/tag.rb
|
216
|
+
- lib/fog/aws/models/compute/tags.rb
|
217
|
+
- lib/fog/aws/models/compute/volume.rb
|
218
|
+
- lib/fog/aws/models/compute/volumes.rb
|
219
|
+
- lib/fog/aws/models/compute/vpc.rb
|
220
|
+
- lib/fog/aws/models/compute/vpcs.rb
|
221
|
+
- lib/fog/aws/models/data_pipeline/pipeline.rb
|
222
|
+
- lib/fog/aws/models/data_pipeline/pipelines.rb
|
223
|
+
- lib/fog/aws/models/dns/record.rb
|
224
|
+
- lib/fog/aws/models/dns/records.rb
|
225
|
+
- lib/fog/aws/models/dns/zone.rb
|
226
|
+
- lib/fog/aws/models/dns/zones.rb
|
227
|
+
- lib/fog/aws/models/elasticache/cluster.rb
|
228
|
+
- lib/fog/aws/models/elasticache/clusters.rb
|
229
|
+
- lib/fog/aws/models/elasticache/parameter_group.rb
|
230
|
+
- lib/fog/aws/models/elasticache/parameter_groups.rb
|
231
|
+
- lib/fog/aws/models/elasticache/security_group.rb
|
232
|
+
- lib/fog/aws/models/elasticache/security_groups.rb
|
233
|
+
- lib/fog/aws/models/elasticache/subnet_group.rb
|
234
|
+
- lib/fog/aws/models/elasticache/subnet_groups.rb
|
235
|
+
- lib/fog/aws/models/elb/backend_server_description.rb
|
236
|
+
- lib/fog/aws/models/elb/backend_server_descriptions.rb
|
237
|
+
- lib/fog/aws/models/elb/listener.rb
|
238
|
+
- lib/fog/aws/models/elb/listeners.rb
|
239
|
+
- lib/fog/aws/models/elb/load_balancer.rb
|
240
|
+
- lib/fog/aws/models/elb/load_balancers.rb
|
241
|
+
- lib/fog/aws/models/elb/policies.rb
|
242
|
+
- lib/fog/aws/models/elb/policy.rb
|
243
|
+
- lib/fog/aws/models/glacier/archive.rb
|
244
|
+
- lib/fog/aws/models/glacier/archives.rb
|
245
|
+
- lib/fog/aws/models/glacier/job.rb
|
246
|
+
- lib/fog/aws/models/glacier/jobs.rb
|
247
|
+
- lib/fog/aws/models/glacier/vault.rb
|
248
|
+
- lib/fog/aws/models/glacier/vaults.rb
|
249
|
+
- lib/fog/aws/models/iam/access_key.rb
|
250
|
+
- lib/fog/aws/models/iam/access_keys.rb
|
251
|
+
- lib/fog/aws/models/iam/policies.rb
|
252
|
+
- lib/fog/aws/models/iam/policy.rb
|
253
|
+
- lib/fog/aws/models/iam/role.rb
|
254
|
+
- lib/fog/aws/models/iam/roles.rb
|
255
|
+
- lib/fog/aws/models/iam/user.rb
|
256
|
+
- lib/fog/aws/models/iam/users.rb
|
257
|
+
- lib/fog/aws/models/rds/event_subscription.rb
|
258
|
+
- lib/fog/aws/models/rds/event_subscriptions.rb
|
259
|
+
- lib/fog/aws/models/rds/instance_option.rb
|
260
|
+
- lib/fog/aws/models/rds/instance_options.rb
|
261
|
+
- lib/fog/aws/models/rds/log_file.rb
|
262
|
+
- lib/fog/aws/models/rds/log_files.rb
|
263
|
+
- lib/fog/aws/models/rds/parameter.rb
|
264
|
+
- lib/fog/aws/models/rds/parameter_group.rb
|
265
|
+
- lib/fog/aws/models/rds/parameter_groups.rb
|
266
|
+
- lib/fog/aws/models/rds/parameters.rb
|
267
|
+
- lib/fog/aws/models/rds/security_group.rb
|
268
|
+
- lib/fog/aws/models/rds/security_groups.rb
|
269
|
+
- lib/fog/aws/models/rds/server.rb
|
270
|
+
- lib/fog/aws/models/rds/servers.rb
|
271
|
+
- lib/fog/aws/models/rds/snapshot.rb
|
272
|
+
- lib/fog/aws/models/rds/snapshots.rb
|
273
|
+
- lib/fog/aws/models/rds/subnet_group.rb
|
274
|
+
- lib/fog/aws/models/rds/subnet_groups.rb
|
275
|
+
- lib/fog/aws/models/sns/subscription.rb
|
276
|
+
- lib/fog/aws/models/sns/subscriptions.rb
|
277
|
+
- lib/fog/aws/models/sns/topic.rb
|
278
|
+
- lib/fog/aws/models/sns/topics.rb
|
279
|
+
- lib/fog/aws/models/storage/directories.rb
|
280
|
+
- lib/fog/aws/models/storage/directory.rb
|
281
|
+
- lib/fog/aws/models/storage/file.rb
|
282
|
+
- lib/fog/aws/models/storage/files.rb
|
283
|
+
- lib/fog/aws/models/storage/version.rb
|
284
|
+
- lib/fog/aws/models/storage/versions.rb
|
285
|
+
- lib/fog/aws/parsers/auto_scaling/basic.rb
|
286
|
+
- lib/fog/aws/parsers/auto_scaling/describe_adjustment_types.rb
|
287
|
+
- lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_groups.rb
|
288
|
+
- lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_instances.rb
|
289
|
+
- lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_notification_types.rb
|
290
|
+
- lib/fog/aws/parsers/auto_scaling/describe_launch_configurations.rb
|
291
|
+
- lib/fog/aws/parsers/auto_scaling/describe_metric_collection_types.rb
|
292
|
+
- lib/fog/aws/parsers/auto_scaling/describe_notification_configurations.rb
|
293
|
+
- lib/fog/aws/parsers/auto_scaling/describe_policies.rb
|
294
|
+
- lib/fog/aws/parsers/auto_scaling/describe_scaling_activities.rb
|
295
|
+
- lib/fog/aws/parsers/auto_scaling/describe_scaling_process_types.rb
|
296
|
+
- lib/fog/aws/parsers/auto_scaling/describe_scheduled_actions.rb
|
297
|
+
- lib/fog/aws/parsers/auto_scaling/describe_tags.rb
|
298
|
+
- lib/fog/aws/parsers/auto_scaling/describe_termination_policy_types.rb
|
299
|
+
- lib/fog/aws/parsers/auto_scaling/put_notification_configuration.rb
|
300
|
+
- lib/fog/aws/parsers/auto_scaling/put_scaling_policy.rb
|
301
|
+
- lib/fog/aws/parsers/auto_scaling/terminate_instance_in_auto_scaling_group.rb
|
302
|
+
- lib/fog/aws/parsers/beanstalk/check_dns_availability.rb
|
303
|
+
- lib/fog/aws/parsers/beanstalk/create_application.rb
|
304
|
+
- lib/fog/aws/parsers/beanstalk/create_application_version.rb
|
305
|
+
- lib/fog/aws/parsers/beanstalk/create_configuration_template.rb
|
306
|
+
- lib/fog/aws/parsers/beanstalk/create_environment.rb
|
307
|
+
- lib/fog/aws/parsers/beanstalk/create_storage_location.rb
|
308
|
+
- lib/fog/aws/parsers/beanstalk/describe_application_versions.rb
|
309
|
+
- lib/fog/aws/parsers/beanstalk/describe_applications.rb
|
310
|
+
- lib/fog/aws/parsers/beanstalk/describe_configuration_options.rb
|
311
|
+
- lib/fog/aws/parsers/beanstalk/describe_configuration_settings.rb
|
312
|
+
- lib/fog/aws/parsers/beanstalk/describe_environment_resources.rb
|
313
|
+
- lib/fog/aws/parsers/beanstalk/describe_environments.rb
|
314
|
+
- lib/fog/aws/parsers/beanstalk/describe_events.rb
|
315
|
+
- lib/fog/aws/parsers/beanstalk/empty.rb
|
316
|
+
- lib/fog/aws/parsers/beanstalk/list_available_solution_stacks.rb
|
317
|
+
- lib/fog/aws/parsers/beanstalk/parser.rb
|
318
|
+
- lib/fog/aws/parsers/beanstalk/retrieve_environment_info.rb
|
319
|
+
- lib/fog/aws/parsers/beanstalk/terminate_environment.rb
|
320
|
+
- lib/fog/aws/parsers/beanstalk/update_application.rb
|
321
|
+
- lib/fog/aws/parsers/beanstalk/update_application_version.rb
|
322
|
+
- lib/fog/aws/parsers/beanstalk/update_configuration_template.rb
|
323
|
+
- lib/fog/aws/parsers/beanstalk/update_environment.rb
|
324
|
+
- lib/fog/aws/parsers/beanstalk/validate_configuration_settings.rb
|
325
|
+
- lib/fog/aws/parsers/cdn/distribution.rb
|
326
|
+
- lib/fog/aws/parsers/cdn/get_distribution_list.rb
|
327
|
+
- lib/fog/aws/parsers/cdn/get_invalidation.rb
|
328
|
+
- lib/fog/aws/parsers/cdn/get_invalidation_list.rb
|
329
|
+
- lib/fog/aws/parsers/cdn/get_streaming_distribution_list.rb
|
330
|
+
- lib/fog/aws/parsers/cdn/post_invalidation.rb
|
331
|
+
- lib/fog/aws/parsers/cdn/streaming_distribution.rb
|
332
|
+
- lib/fog/aws/parsers/cloud_formation/basic.rb
|
333
|
+
- lib/fog/aws/parsers/cloud_formation/create_stack.rb
|
334
|
+
- lib/fog/aws/parsers/cloud_formation/describe_stack_events.rb
|
335
|
+
- lib/fog/aws/parsers/cloud_formation/describe_stack_resources.rb
|
336
|
+
- lib/fog/aws/parsers/cloud_formation/describe_stacks.rb
|
337
|
+
- lib/fog/aws/parsers/cloud_formation/get_template.rb
|
338
|
+
- lib/fog/aws/parsers/cloud_formation/list_stack_resources.rb
|
339
|
+
- lib/fog/aws/parsers/cloud_formation/list_stacks.rb
|
340
|
+
- lib/fog/aws/parsers/cloud_formation/update_stack.rb
|
341
|
+
- lib/fog/aws/parsers/cloud_formation/validate_template.rb
|
342
|
+
- lib/fog/aws/parsers/cloud_watch/delete_alarms.rb
|
343
|
+
- lib/fog/aws/parsers/cloud_watch/describe_alarm_history.rb
|
344
|
+
- lib/fog/aws/parsers/cloud_watch/describe_alarms.rb
|
345
|
+
- lib/fog/aws/parsers/cloud_watch/describe_alarms_for_metric.rb
|
346
|
+
- lib/fog/aws/parsers/cloud_watch/disable_alarm_actions.rb
|
347
|
+
- lib/fog/aws/parsers/cloud_watch/enable_alarm_actions.rb
|
348
|
+
- lib/fog/aws/parsers/cloud_watch/get_metric_statistics.rb
|
349
|
+
- lib/fog/aws/parsers/cloud_watch/list_metrics.rb
|
350
|
+
- lib/fog/aws/parsers/cloud_watch/put_metric_alarm.rb
|
351
|
+
- lib/fog/aws/parsers/cloud_watch/put_metric_data.rb
|
352
|
+
- lib/fog/aws/parsers/cloud_watch/set_alarm_state.rb
|
353
|
+
- lib/fog/aws/parsers/compute/allocate_address.rb
|
354
|
+
- lib/fog/aws/parsers/compute/assign_private_ip_addresses.rb
|
355
|
+
- lib/fog/aws/parsers/compute/associate_address.rb
|
356
|
+
- lib/fog/aws/parsers/compute/associate_route_table.rb
|
357
|
+
- lib/fog/aws/parsers/compute/attach_network_interface.rb
|
358
|
+
- lib/fog/aws/parsers/compute/attach_volume.rb
|
359
|
+
- lib/fog/aws/parsers/compute/basic.rb
|
360
|
+
- lib/fog/aws/parsers/compute/cancel_spot_instance_requests.rb
|
361
|
+
- lib/fog/aws/parsers/compute/copy_image.rb
|
362
|
+
- lib/fog/aws/parsers/compute/copy_snapshot.rb
|
363
|
+
- lib/fog/aws/parsers/compute/create_dhcp_options.rb
|
364
|
+
- lib/fog/aws/parsers/compute/create_image.rb
|
365
|
+
- lib/fog/aws/parsers/compute/create_internet_gateway.rb
|
366
|
+
- lib/fog/aws/parsers/compute/create_key_pair.rb
|
367
|
+
- lib/fog/aws/parsers/compute/create_network_acl.rb
|
368
|
+
- lib/fog/aws/parsers/compute/create_network_interface.rb
|
369
|
+
- lib/fog/aws/parsers/compute/create_route_table.rb
|
370
|
+
- lib/fog/aws/parsers/compute/create_security_group.rb
|
371
|
+
- lib/fog/aws/parsers/compute/create_snapshot.rb
|
372
|
+
- lib/fog/aws/parsers/compute/create_subnet.rb
|
373
|
+
- lib/fog/aws/parsers/compute/create_volume.rb
|
374
|
+
- lib/fog/aws/parsers/compute/create_vpc.rb
|
375
|
+
- lib/fog/aws/parsers/compute/deregister_image.rb
|
376
|
+
- lib/fog/aws/parsers/compute/describe_account_attributes.rb
|
377
|
+
- lib/fog/aws/parsers/compute/describe_addresses.rb
|
378
|
+
- lib/fog/aws/parsers/compute/describe_availability_zones.rb
|
379
|
+
- lib/fog/aws/parsers/compute/describe_dhcp_options.rb
|
380
|
+
- lib/fog/aws/parsers/compute/describe_images.rb
|
381
|
+
- lib/fog/aws/parsers/compute/describe_instance_status.rb
|
382
|
+
- lib/fog/aws/parsers/compute/describe_instances.rb
|
383
|
+
- lib/fog/aws/parsers/compute/describe_internet_gateways.rb
|
384
|
+
- lib/fog/aws/parsers/compute/describe_key_pairs.rb
|
385
|
+
- lib/fog/aws/parsers/compute/describe_network_acls.rb
|
386
|
+
- lib/fog/aws/parsers/compute/describe_network_interface_attribute.rb
|
387
|
+
- lib/fog/aws/parsers/compute/describe_network_interfaces.rb
|
388
|
+
- lib/fog/aws/parsers/compute/describe_placement_groups.rb
|
389
|
+
- lib/fog/aws/parsers/compute/describe_regions.rb
|
390
|
+
- lib/fog/aws/parsers/compute/describe_reserved_instances.rb
|
391
|
+
- lib/fog/aws/parsers/compute/describe_reserved_instances_offerings.rb
|
392
|
+
- lib/fog/aws/parsers/compute/describe_route_tables.rb
|
393
|
+
- lib/fog/aws/parsers/compute/describe_security_groups.rb
|
394
|
+
- lib/fog/aws/parsers/compute/describe_snapshots.rb
|
395
|
+
- lib/fog/aws/parsers/compute/describe_spot_price_history.rb
|
396
|
+
- lib/fog/aws/parsers/compute/describe_subnets.rb
|
397
|
+
- lib/fog/aws/parsers/compute/describe_tags.rb
|
398
|
+
- lib/fog/aws/parsers/compute/describe_volume_status.rb
|
399
|
+
- lib/fog/aws/parsers/compute/describe_volumes.rb
|
400
|
+
- lib/fog/aws/parsers/compute/describe_vpc_attribute.rb
|
401
|
+
- lib/fog/aws/parsers/compute/describe_vpcs.rb
|
402
|
+
- lib/fog/aws/parsers/compute/detach_volume.rb
|
403
|
+
- lib/fog/aws/parsers/compute/get_console_output.rb
|
404
|
+
- lib/fog/aws/parsers/compute/get_password_data.rb
|
405
|
+
- lib/fog/aws/parsers/compute/import_key_pair.rb
|
406
|
+
- lib/fog/aws/parsers/compute/modify_subnet_attribute.rb
|
407
|
+
- lib/fog/aws/parsers/compute/monitor_unmonitor_instances.rb
|
408
|
+
- lib/fog/aws/parsers/compute/network_acl_parser.rb
|
409
|
+
- lib/fog/aws/parsers/compute/network_interface_parser.rb
|
410
|
+
- lib/fog/aws/parsers/compute/purchase_reserved_instances_offering.rb
|
411
|
+
- lib/fog/aws/parsers/compute/register_image.rb
|
412
|
+
- lib/fog/aws/parsers/compute/replace_network_acl_association.rb
|
413
|
+
- lib/fog/aws/parsers/compute/run_instances.rb
|
414
|
+
- lib/fog/aws/parsers/compute/spot_datafeed_subscription.rb
|
415
|
+
- lib/fog/aws/parsers/compute/spot_instance_requests.rb
|
416
|
+
- lib/fog/aws/parsers/compute/start_stop_instances.rb
|
417
|
+
- lib/fog/aws/parsers/compute/terminate_instances.rb
|
418
|
+
- lib/fog/aws/parsers/dns/change_resource_record_sets.rb
|
419
|
+
- lib/fog/aws/parsers/dns/create_health_check.rb
|
420
|
+
- lib/fog/aws/parsers/dns/create_hosted_zone.rb
|
421
|
+
- lib/fog/aws/parsers/dns/delete_hosted_zone.rb
|
422
|
+
- lib/fog/aws/parsers/dns/get_change.rb
|
423
|
+
- lib/fog/aws/parsers/dns/get_hosted_zone.rb
|
424
|
+
- lib/fog/aws/parsers/dns/health_check.rb
|
425
|
+
- lib/fog/aws/parsers/dns/list_health_checks.rb
|
426
|
+
- lib/fog/aws/parsers/dns/list_hosted_zones.rb
|
427
|
+
- lib/fog/aws/parsers/dns/list_resource_record_sets.rb
|
428
|
+
- lib/fog/aws/parsers/elasticache/authorize_cache_security_group_ingress.rb
|
429
|
+
- lib/fog/aws/parsers/elasticache/base.rb
|
430
|
+
- lib/fog/aws/parsers/elasticache/cache_cluster_parser.rb
|
431
|
+
- lib/fog/aws/parsers/elasticache/create_cache_subnet_group.rb
|
432
|
+
- lib/fog/aws/parsers/elasticache/describe_cache_clusters.rb
|
433
|
+
- lib/fog/aws/parsers/elasticache/describe_cache_parameters.rb
|
434
|
+
- lib/fog/aws/parsers/elasticache/describe_cache_subnet_groups.rb
|
435
|
+
- lib/fog/aws/parsers/elasticache/describe_engine_default_parameters.rb
|
436
|
+
- lib/fog/aws/parsers/elasticache/describe_parameter_groups.rb
|
437
|
+
- lib/fog/aws/parsers/elasticache/describe_reserved_cache_nodes.rb
|
438
|
+
- lib/fog/aws/parsers/elasticache/describe_security_groups.rb
|
439
|
+
- lib/fog/aws/parsers/elasticache/engine_defaults_parser.rb
|
440
|
+
- lib/fog/aws/parsers/elasticache/event_list.rb
|
441
|
+
- lib/fog/aws/parsers/elasticache/modify_parameter_group.rb
|
442
|
+
- lib/fog/aws/parsers/elasticache/parameter_group_parser.rb
|
443
|
+
- lib/fog/aws/parsers/elasticache/reset_parameter_group.rb
|
444
|
+
- lib/fog/aws/parsers/elasticache/security_group_parser.rb
|
445
|
+
- lib/fog/aws/parsers/elasticache/single_cache_cluster.rb
|
446
|
+
- lib/fog/aws/parsers/elasticache/single_parameter_group.rb
|
447
|
+
- lib/fog/aws/parsers/elasticache/single_security_group.rb
|
448
|
+
- lib/fog/aws/parsers/elasticache/subnet_group_parser.rb
|
449
|
+
- lib/fog/aws/parsers/elb/apply_security_groups_to_load_balancer.rb
|
450
|
+
- lib/fog/aws/parsers/elb/attach_load_balancer_to_subnets.rb
|
451
|
+
- lib/fog/aws/parsers/elb/configure_health_check.rb
|
452
|
+
- lib/fog/aws/parsers/elb/create_load_balancer.rb
|
453
|
+
- lib/fog/aws/parsers/elb/delete_load_balancer.rb
|
454
|
+
- lib/fog/aws/parsers/elb/deregister_instances_from_load_balancer.rb
|
455
|
+
- lib/fog/aws/parsers/elb/describe_instance_health.rb
|
456
|
+
- lib/fog/aws/parsers/elb/describe_load_balancer_attributes.rb
|
457
|
+
- lib/fog/aws/parsers/elb/describe_load_balancer_policies.rb
|
458
|
+
- lib/fog/aws/parsers/elb/describe_load_balancer_policy_types.rb
|
459
|
+
- lib/fog/aws/parsers/elb/describe_load_balancers.rb
|
460
|
+
- lib/fog/aws/parsers/elb/describe_tags.rb
|
461
|
+
- lib/fog/aws/parsers/elb/detach_load_balancer_from_subnets.rb
|
462
|
+
- lib/fog/aws/parsers/elb/disable_availability_zones_for_load_balancer.rb
|
463
|
+
- lib/fog/aws/parsers/elb/empty.rb
|
464
|
+
- lib/fog/aws/parsers/elb/enable_availability_zones_for_load_balancer.rb
|
465
|
+
- lib/fog/aws/parsers/elb/register_instances_with_load_balancer.rb
|
466
|
+
- lib/fog/aws/parsers/elb/tag_list_parser.rb
|
467
|
+
- lib/fog/aws/parsers/emr/add_instance_groups.rb
|
468
|
+
- lib/fog/aws/parsers/emr/add_job_flow_steps.rb
|
469
|
+
- lib/fog/aws/parsers/emr/describe_job_flows.rb
|
470
|
+
- lib/fog/aws/parsers/emr/modify_instance_groups.rb
|
471
|
+
- lib/fog/aws/parsers/emr/run_job_flow.rb
|
472
|
+
- lib/fog/aws/parsers/emr/set_termination_protection.rb
|
473
|
+
- lib/fog/aws/parsers/emr/terminate_job_flows.rb
|
474
|
+
- lib/fog/aws/parsers/iam/base_instance_profile.rb
|
475
|
+
- lib/fog/aws/parsers/iam/basic.rb
|
476
|
+
- lib/fog/aws/parsers/iam/create_access_key.rb
|
477
|
+
- lib/fog/aws/parsers/iam/create_group.rb
|
478
|
+
- lib/fog/aws/parsers/iam/create_user.rb
|
479
|
+
- lib/fog/aws/parsers/iam/get_account_password_policy.rb
|
480
|
+
- lib/fog/aws/parsers/iam/get_account_summary.rb
|
481
|
+
- lib/fog/aws/parsers/iam/get_group.rb
|
482
|
+
- lib/fog/aws/parsers/iam/get_group_policy.rb
|
483
|
+
- lib/fog/aws/parsers/iam/get_role_policy.rb
|
484
|
+
- lib/fog/aws/parsers/iam/get_user.rb
|
485
|
+
- lib/fog/aws/parsers/iam/get_user_policy.rb
|
486
|
+
- lib/fog/aws/parsers/iam/instance_profile.rb
|
487
|
+
- lib/fog/aws/parsers/iam/list_access_keys.rb
|
488
|
+
- lib/fog/aws/parsers/iam/list_account_aliases.rb
|
489
|
+
- lib/fog/aws/parsers/iam/list_groups.rb
|
490
|
+
- lib/fog/aws/parsers/iam/list_groups_for_user.rb
|
491
|
+
- lib/fog/aws/parsers/iam/list_instance_profiles.rb
|
492
|
+
- lib/fog/aws/parsers/iam/list_mfa_devices.rb
|
493
|
+
- lib/fog/aws/parsers/iam/list_policies.rb
|
494
|
+
- lib/fog/aws/parsers/iam/list_roles.rb
|
495
|
+
- lib/fog/aws/parsers/iam/list_server_certificates.rb
|
496
|
+
- lib/fog/aws/parsers/iam/list_signing_certificates.rb
|
497
|
+
- lib/fog/aws/parsers/iam/list_users.rb
|
498
|
+
- lib/fog/aws/parsers/iam/login_profile.rb
|
499
|
+
- lib/fog/aws/parsers/iam/role_parser.rb
|
500
|
+
- lib/fog/aws/parsers/iam/single_role.rb
|
501
|
+
- lib/fog/aws/parsers/iam/update_group.rb
|
502
|
+
- lib/fog/aws/parsers/iam/update_user.rb
|
503
|
+
- lib/fog/aws/parsers/iam/upload_server_certificate.rb
|
504
|
+
- lib/fog/aws/parsers/iam/upload_signing_certificate.rb
|
505
|
+
- lib/fog/aws/parsers/rds/authorize_db_security_group_ingress.rb
|
506
|
+
- lib/fog/aws/parsers/rds/base.rb
|
507
|
+
- lib/fog/aws/parsers/rds/create_db_instance.rb
|
508
|
+
- lib/fog/aws/parsers/rds/create_db_instance_read_replica.rb
|
509
|
+
- lib/fog/aws/parsers/rds/create_db_parameter_group.rb
|
510
|
+
- lib/fog/aws/parsers/rds/create_db_security_group.rb
|
511
|
+
- lib/fog/aws/parsers/rds/create_db_snapshot.rb
|
512
|
+
- lib/fog/aws/parsers/rds/create_db_subnet_group.rb
|
513
|
+
- lib/fog/aws/parsers/rds/create_event_subscription.rb
|
514
|
+
- lib/fog/aws/parsers/rds/db_engine_version_parser.rb
|
515
|
+
- lib/fog/aws/parsers/rds/db_parser.rb
|
516
|
+
- lib/fog/aws/parsers/rds/delete_db_instance.rb
|
517
|
+
- lib/fog/aws/parsers/rds/delete_db_parameter_group.rb
|
518
|
+
- lib/fog/aws/parsers/rds/delete_db_security_group.rb
|
519
|
+
- lib/fog/aws/parsers/rds/delete_db_snapshot.rb
|
520
|
+
- lib/fog/aws/parsers/rds/delete_db_subnet_group.rb
|
521
|
+
- lib/fog/aws/parsers/rds/delete_event_subscription.rb
|
522
|
+
- lib/fog/aws/parsers/rds/describe_db_engine_versions.rb
|
523
|
+
- lib/fog/aws/parsers/rds/describe_db_instances.rb
|
524
|
+
- lib/fog/aws/parsers/rds/describe_db_log_files.rb
|
525
|
+
- lib/fog/aws/parsers/rds/describe_db_parameter_groups.rb
|
526
|
+
- lib/fog/aws/parsers/rds/describe_db_parameters.rb
|
527
|
+
- lib/fog/aws/parsers/rds/describe_db_reserved_instances.rb
|
528
|
+
- lib/fog/aws/parsers/rds/describe_db_security_groups.rb
|
529
|
+
- lib/fog/aws/parsers/rds/describe_db_snapshots.rb
|
530
|
+
- lib/fog/aws/parsers/rds/describe_db_subnet_groups.rb
|
531
|
+
- lib/fog/aws/parsers/rds/describe_event_subscriptions.rb
|
532
|
+
- lib/fog/aws/parsers/rds/describe_orderable_db_instance_options.rb
|
533
|
+
- lib/fog/aws/parsers/rds/download_db_logfile_portion.rb
|
534
|
+
- lib/fog/aws/parsers/rds/event_list.rb
|
535
|
+
- lib/fog/aws/parsers/rds/event_subscription_parser.rb
|
536
|
+
- lib/fog/aws/parsers/rds/modify_db_instance.rb
|
537
|
+
- lib/fog/aws/parsers/rds/modify_db_parameter_group.rb
|
538
|
+
- lib/fog/aws/parsers/rds/promote_read_replica.rb
|
539
|
+
- lib/fog/aws/parsers/rds/reboot_db_instance.rb
|
540
|
+
- lib/fog/aws/parsers/rds/restore_db_instance_from_db_snapshot.rb
|
541
|
+
- lib/fog/aws/parsers/rds/restore_db_instance_to_point_in_time.rb
|
542
|
+
- lib/fog/aws/parsers/rds/revoke_db_security_group_ingress.rb
|
543
|
+
- lib/fog/aws/parsers/rds/security_group_parser.rb
|
544
|
+
- lib/fog/aws/parsers/rds/snapshot_parser.rb
|
545
|
+
- lib/fog/aws/parsers/rds/subnet_group_parser.rb
|
546
|
+
- lib/fog/aws/parsers/rds/tag_list_parser.rb
|
547
|
+
- lib/fog/aws/parsers/redshift/cluster.rb
|
548
|
+
- lib/fog/aws/parsers/redshift/cluster_parser.rb
|
549
|
+
- lib/fog/aws/parsers/redshift/cluster_security_group_parser.rb
|
550
|
+
- lib/fog/aws/parsers/redshift/cluster_snapshot.rb
|
551
|
+
- lib/fog/aws/parsers/redshift/cluster_snapshot_parser.rb
|
552
|
+
- lib/fog/aws/parsers/redshift/cluster_subnet_group_parser.rb
|
553
|
+
- lib/fog/aws/parsers/redshift/create_cluster_parameter_group.rb
|
554
|
+
- lib/fog/aws/parsers/redshift/create_cluster_security_group.rb
|
555
|
+
- lib/fog/aws/parsers/redshift/describe_cluster_parameter_groups.rb
|
556
|
+
- lib/fog/aws/parsers/redshift/describe_cluster_parameters.rb
|
557
|
+
- lib/fog/aws/parsers/redshift/describe_cluster_security_groups.rb
|
558
|
+
- lib/fog/aws/parsers/redshift/describe_cluster_snapshots.rb
|
559
|
+
- lib/fog/aws/parsers/redshift/describe_cluster_subnet_groups.rb
|
560
|
+
- lib/fog/aws/parsers/redshift/describe_cluster_versions.rb
|
561
|
+
- lib/fog/aws/parsers/redshift/describe_clusters.rb
|
562
|
+
- lib/fog/aws/parsers/redshift/describe_default_cluster_parameters.rb
|
563
|
+
- lib/fog/aws/parsers/redshift/describe_events.rb
|
564
|
+
- lib/fog/aws/parsers/redshift/describe_orderable_cluster_options.rb
|
565
|
+
- lib/fog/aws/parsers/redshift/describe_reserved_node_offerings.rb
|
566
|
+
- lib/fog/aws/parsers/redshift/describe_reserved_nodes.rb
|
567
|
+
- lib/fog/aws/parsers/redshift/describe_resize.rb
|
568
|
+
- lib/fog/aws/parsers/redshift/purchase_reserved_node_offering.rb
|
569
|
+
- lib/fog/aws/parsers/redshift/revoke_cluster_security_group_ingress.rb
|
570
|
+
- lib/fog/aws/parsers/redshift/update_cluster_parameter_group_parser.rb
|
571
|
+
- lib/fog/aws/parsers/ses/delete_verified_email_address.rb
|
572
|
+
- lib/fog/aws/parsers/ses/get_send_quota.rb
|
573
|
+
- lib/fog/aws/parsers/ses/get_send_statistics.rb
|
574
|
+
- lib/fog/aws/parsers/ses/list_verified_email_addresses.rb
|
575
|
+
- lib/fog/aws/parsers/ses/send_email.rb
|
576
|
+
- lib/fog/aws/parsers/ses/send_raw_email.rb
|
577
|
+
- lib/fog/aws/parsers/ses/verify_domain_identity.rb
|
578
|
+
- lib/fog/aws/parsers/ses/verify_email_address.rb
|
579
|
+
- lib/fog/aws/parsers/simpledb/basic.rb
|
580
|
+
- lib/fog/aws/parsers/simpledb/domain_metadata.rb
|
581
|
+
- lib/fog/aws/parsers/simpledb/get_attributes.rb
|
582
|
+
- lib/fog/aws/parsers/simpledb/list_domains.rb
|
583
|
+
- lib/fog/aws/parsers/simpledb/select.rb
|
584
|
+
- lib/fog/aws/parsers/sns/add_permission.rb
|
585
|
+
- lib/fog/aws/parsers/sns/confirm_subscription.rb
|
586
|
+
- lib/fog/aws/parsers/sns/create_topic.rb
|
587
|
+
- lib/fog/aws/parsers/sns/delete_topic.rb
|
588
|
+
- lib/fog/aws/parsers/sns/get_topic_attributes.rb
|
589
|
+
- lib/fog/aws/parsers/sns/list_subscriptions.rb
|
590
|
+
- lib/fog/aws/parsers/sns/list_topics.rb
|
591
|
+
- lib/fog/aws/parsers/sns/publish.rb
|
592
|
+
- lib/fog/aws/parsers/sns/remove_permission.rb
|
593
|
+
- lib/fog/aws/parsers/sns/set_topic_attributes.rb
|
594
|
+
- lib/fog/aws/parsers/sns/subscribe.rb
|
595
|
+
- lib/fog/aws/parsers/sns/unsubscribe.rb
|
596
|
+
- lib/fog/aws/parsers/sqs/basic.rb
|
597
|
+
- lib/fog/aws/parsers/sqs/create_queue.rb
|
598
|
+
- lib/fog/aws/parsers/sqs/get_queue_attributes.rb
|
599
|
+
- lib/fog/aws/parsers/sqs/list_queues.rb
|
600
|
+
- lib/fog/aws/parsers/sqs/receive_message.rb
|
601
|
+
- lib/fog/aws/parsers/sqs/send_message.rb
|
602
|
+
- lib/fog/aws/parsers/storage/access_control_list.rb
|
603
|
+
- lib/fog/aws/parsers/storage/complete_multipart_upload.rb
|
604
|
+
- lib/fog/aws/parsers/storage/copy_object.rb
|
605
|
+
- lib/fog/aws/parsers/storage/cors_configuration.rb
|
606
|
+
- lib/fog/aws/parsers/storage/delete_multiple_objects.rb
|
607
|
+
- lib/fog/aws/parsers/storage/get_bucket.rb
|
608
|
+
- lib/fog/aws/parsers/storage/get_bucket_lifecycle.rb
|
609
|
+
- lib/fog/aws/parsers/storage/get_bucket_location.rb
|
610
|
+
- lib/fog/aws/parsers/storage/get_bucket_logging.rb
|
611
|
+
- lib/fog/aws/parsers/storage/get_bucket_notification.rb
|
612
|
+
- lib/fog/aws/parsers/storage/get_bucket_object_versions.rb
|
613
|
+
- lib/fog/aws/parsers/storage/get_bucket_tagging.rb
|
614
|
+
- lib/fog/aws/parsers/storage/get_bucket_versioning.rb
|
615
|
+
- lib/fog/aws/parsers/storage/get_bucket_website.rb
|
616
|
+
- lib/fog/aws/parsers/storage/get_request_payment.rb
|
617
|
+
- lib/fog/aws/parsers/storage/get_service.rb
|
618
|
+
- lib/fog/aws/parsers/storage/initiate_multipart_upload.rb
|
619
|
+
- lib/fog/aws/parsers/storage/list_multipart_uploads.rb
|
620
|
+
- lib/fog/aws/parsers/storage/list_parts.rb
|
621
|
+
- lib/fog/aws/parsers/sts/assume_role.rb
|
622
|
+
- lib/fog/aws/parsers/sts/assume_role_with_saml.rb
|
623
|
+
- lib/fog/aws/parsers/sts/get_session_token.rb
|
624
|
+
- lib/fog/aws/rds.rb
|
625
|
+
- lib/fog/aws/redshift.rb
|
626
|
+
- lib/fog/aws/region_methods.rb
|
627
|
+
- lib/fog/aws/requests/auto_scaling/create_auto_scaling_group.rb
|
628
|
+
- lib/fog/aws/requests/auto_scaling/create_launch_configuration.rb
|
629
|
+
- lib/fog/aws/requests/auto_scaling/create_or_update_tags.rb
|
630
|
+
- lib/fog/aws/requests/auto_scaling/delete_auto_scaling_group.rb
|
631
|
+
- lib/fog/aws/requests/auto_scaling/delete_launch_configuration.rb
|
632
|
+
- lib/fog/aws/requests/auto_scaling/delete_notification_configuration.rb
|
633
|
+
- lib/fog/aws/requests/auto_scaling/delete_policy.rb
|
634
|
+
- lib/fog/aws/requests/auto_scaling/delete_scheduled_action.rb
|
635
|
+
- lib/fog/aws/requests/auto_scaling/delete_tags.rb
|
636
|
+
- lib/fog/aws/requests/auto_scaling/describe_adjustment_types.rb
|
637
|
+
- lib/fog/aws/requests/auto_scaling/describe_auto_scaling_groups.rb
|
638
|
+
- lib/fog/aws/requests/auto_scaling/describe_auto_scaling_instances.rb
|
639
|
+
- lib/fog/aws/requests/auto_scaling/describe_auto_scaling_notification_types.rb
|
640
|
+
- lib/fog/aws/requests/auto_scaling/describe_launch_configurations.rb
|
641
|
+
- lib/fog/aws/requests/auto_scaling/describe_metric_collection_types.rb
|
642
|
+
- lib/fog/aws/requests/auto_scaling/describe_notification_configurations.rb
|
643
|
+
- lib/fog/aws/requests/auto_scaling/describe_policies.rb
|
644
|
+
- lib/fog/aws/requests/auto_scaling/describe_scaling_activities.rb
|
645
|
+
- lib/fog/aws/requests/auto_scaling/describe_scaling_process_types.rb
|
646
|
+
- lib/fog/aws/requests/auto_scaling/describe_scheduled_actions.rb
|
647
|
+
- lib/fog/aws/requests/auto_scaling/describe_tags.rb
|
648
|
+
- lib/fog/aws/requests/auto_scaling/describe_termination_policy_types.rb
|
649
|
+
- lib/fog/aws/requests/auto_scaling/disable_metrics_collection.rb
|
650
|
+
- lib/fog/aws/requests/auto_scaling/enable_metrics_collection.rb
|
651
|
+
- lib/fog/aws/requests/auto_scaling/execute_policy.rb
|
652
|
+
- lib/fog/aws/requests/auto_scaling/put_notification_configuration.rb
|
653
|
+
- lib/fog/aws/requests/auto_scaling/put_scaling_policy.rb
|
654
|
+
- lib/fog/aws/requests/auto_scaling/put_scheduled_update_group_action.rb
|
655
|
+
- lib/fog/aws/requests/auto_scaling/resume_processes.rb
|
656
|
+
- lib/fog/aws/requests/auto_scaling/set_desired_capacity.rb
|
657
|
+
- lib/fog/aws/requests/auto_scaling/set_instance_health.rb
|
658
|
+
- lib/fog/aws/requests/auto_scaling/suspend_processes.rb
|
659
|
+
- lib/fog/aws/requests/auto_scaling/terminate_instance_in_auto_scaling_group.rb
|
660
|
+
- lib/fog/aws/requests/auto_scaling/update_auto_scaling_group.rb
|
661
|
+
- lib/fog/aws/requests/beanstalk/check_dns_availability.rb
|
662
|
+
- lib/fog/aws/requests/beanstalk/create_application.rb
|
663
|
+
- lib/fog/aws/requests/beanstalk/create_application_version.rb
|
664
|
+
- lib/fog/aws/requests/beanstalk/create_configuration_template.rb
|
665
|
+
- lib/fog/aws/requests/beanstalk/create_environment.rb
|
666
|
+
- lib/fog/aws/requests/beanstalk/create_storage_location.rb
|
667
|
+
- lib/fog/aws/requests/beanstalk/delete_application.rb
|
668
|
+
- lib/fog/aws/requests/beanstalk/delete_application_version.rb
|
669
|
+
- lib/fog/aws/requests/beanstalk/delete_configuration_template.rb
|
670
|
+
- lib/fog/aws/requests/beanstalk/delete_environment_configuration.rb
|
671
|
+
- lib/fog/aws/requests/beanstalk/describe_application_versions.rb
|
672
|
+
- lib/fog/aws/requests/beanstalk/describe_applications.rb
|
673
|
+
- lib/fog/aws/requests/beanstalk/describe_configuration_options.rb
|
674
|
+
- lib/fog/aws/requests/beanstalk/describe_configuration_settings.rb
|
675
|
+
- lib/fog/aws/requests/beanstalk/describe_environment_resources.rb
|
676
|
+
- lib/fog/aws/requests/beanstalk/describe_environments.rb
|
677
|
+
- lib/fog/aws/requests/beanstalk/describe_events.rb
|
678
|
+
- lib/fog/aws/requests/beanstalk/list_available_solution_stacks.rb
|
679
|
+
- lib/fog/aws/requests/beanstalk/rebuild_environment.rb
|
680
|
+
- lib/fog/aws/requests/beanstalk/request_environment_info.rb
|
681
|
+
- lib/fog/aws/requests/beanstalk/restart_app_server.rb
|
682
|
+
- lib/fog/aws/requests/beanstalk/retrieve_environment_info.rb
|
683
|
+
- lib/fog/aws/requests/beanstalk/swap_environment_cnames.rb
|
684
|
+
- lib/fog/aws/requests/beanstalk/terminate_environment.rb
|
685
|
+
- lib/fog/aws/requests/beanstalk/update_application.rb
|
686
|
+
- lib/fog/aws/requests/beanstalk/update_application_version.rb
|
687
|
+
- lib/fog/aws/requests/beanstalk/update_configuration_template.rb
|
688
|
+
- lib/fog/aws/requests/beanstalk/update_environment.rb
|
689
|
+
- lib/fog/aws/requests/beanstalk/validate_configuration_settings.rb
|
690
|
+
- lib/fog/aws/requests/cdn/delete_distribution.rb
|
691
|
+
- lib/fog/aws/requests/cdn/delete_streaming_distribution.rb
|
692
|
+
- lib/fog/aws/requests/cdn/get_distribution.rb
|
693
|
+
- lib/fog/aws/requests/cdn/get_distribution_list.rb
|
694
|
+
- lib/fog/aws/requests/cdn/get_invalidation.rb
|
695
|
+
- lib/fog/aws/requests/cdn/get_invalidation_list.rb
|
696
|
+
- lib/fog/aws/requests/cdn/get_streaming_distribution.rb
|
697
|
+
- lib/fog/aws/requests/cdn/get_streaming_distribution_list.rb
|
698
|
+
- lib/fog/aws/requests/cdn/post_distribution.rb
|
699
|
+
- lib/fog/aws/requests/cdn/post_invalidation.rb
|
700
|
+
- lib/fog/aws/requests/cdn/post_streaming_distribution.rb
|
701
|
+
- lib/fog/aws/requests/cdn/put_distribution_config.rb
|
702
|
+
- lib/fog/aws/requests/cdn/put_streaming_distribution_config.rb
|
703
|
+
- lib/fog/aws/requests/cloud_formation/create_stack.rb
|
704
|
+
- lib/fog/aws/requests/cloud_formation/delete_stack.rb
|
705
|
+
- lib/fog/aws/requests/cloud_formation/describe_stack_events.rb
|
706
|
+
- lib/fog/aws/requests/cloud_formation/describe_stack_resources.rb
|
707
|
+
- lib/fog/aws/requests/cloud_formation/describe_stacks.rb
|
708
|
+
- lib/fog/aws/requests/cloud_formation/get_template.rb
|
709
|
+
- lib/fog/aws/requests/cloud_formation/list_stack_resources.rb
|
710
|
+
- lib/fog/aws/requests/cloud_formation/list_stacks.rb
|
711
|
+
- lib/fog/aws/requests/cloud_formation/update_stack.rb
|
712
|
+
- lib/fog/aws/requests/cloud_formation/validate_template.rb
|
713
|
+
- lib/fog/aws/requests/cloud_watch/delete_alarms.rb
|
714
|
+
- lib/fog/aws/requests/cloud_watch/describe_alarm_history.rb
|
715
|
+
- lib/fog/aws/requests/cloud_watch/describe_alarms.rb
|
716
|
+
- lib/fog/aws/requests/cloud_watch/describe_alarms_for_metric.rb
|
717
|
+
- lib/fog/aws/requests/cloud_watch/disable_alarm_actions.rb
|
718
|
+
- lib/fog/aws/requests/cloud_watch/enable_alarm_actions.rb
|
719
|
+
- lib/fog/aws/requests/cloud_watch/get_metric_statistics.rb
|
720
|
+
- lib/fog/aws/requests/cloud_watch/list_metrics.rb
|
721
|
+
- lib/fog/aws/requests/cloud_watch/put_metric_alarm.rb
|
722
|
+
- lib/fog/aws/requests/cloud_watch/put_metric_data.rb
|
723
|
+
- lib/fog/aws/requests/cloud_watch/set_alarm_state.rb
|
724
|
+
- lib/fog/aws/requests/compute/allocate_address.rb
|
725
|
+
- lib/fog/aws/requests/compute/assign_private_ip_addresses.rb
|
726
|
+
- lib/fog/aws/requests/compute/associate_address.rb
|
727
|
+
- lib/fog/aws/requests/compute/associate_dhcp_options.rb
|
728
|
+
- lib/fog/aws/requests/compute/associate_route_table.rb
|
729
|
+
- lib/fog/aws/requests/compute/attach_internet_gateway.rb
|
730
|
+
- lib/fog/aws/requests/compute/attach_network_interface.rb
|
731
|
+
- lib/fog/aws/requests/compute/attach_volume.rb
|
732
|
+
- lib/fog/aws/requests/compute/authorize_security_group_ingress.rb
|
733
|
+
- lib/fog/aws/requests/compute/cancel_spot_instance_requests.rb
|
734
|
+
- lib/fog/aws/requests/compute/copy_image.rb
|
735
|
+
- lib/fog/aws/requests/compute/copy_snapshot.rb
|
736
|
+
- lib/fog/aws/requests/compute/create_dhcp_options.rb
|
737
|
+
- lib/fog/aws/requests/compute/create_image.rb
|
738
|
+
- lib/fog/aws/requests/compute/create_internet_gateway.rb
|
739
|
+
- lib/fog/aws/requests/compute/create_key_pair.rb
|
740
|
+
- lib/fog/aws/requests/compute/create_network_acl.rb
|
741
|
+
- lib/fog/aws/requests/compute/create_network_acl_entry.rb
|
742
|
+
- lib/fog/aws/requests/compute/create_network_interface.rb
|
743
|
+
- lib/fog/aws/requests/compute/create_placement_group.rb
|
744
|
+
- lib/fog/aws/requests/compute/create_route.rb
|
745
|
+
- lib/fog/aws/requests/compute/create_route_table.rb
|
746
|
+
- lib/fog/aws/requests/compute/create_security_group.rb
|
747
|
+
- lib/fog/aws/requests/compute/create_snapshot.rb
|
748
|
+
- lib/fog/aws/requests/compute/create_spot_datafeed_subscription.rb
|
749
|
+
- lib/fog/aws/requests/compute/create_subnet.rb
|
750
|
+
- lib/fog/aws/requests/compute/create_tags.rb
|
751
|
+
- lib/fog/aws/requests/compute/create_volume.rb
|
752
|
+
- lib/fog/aws/requests/compute/create_vpc.rb
|
753
|
+
- lib/fog/aws/requests/compute/delete_dhcp_options.rb
|
754
|
+
- lib/fog/aws/requests/compute/delete_internet_gateway.rb
|
755
|
+
- lib/fog/aws/requests/compute/delete_key_pair.rb
|
756
|
+
- lib/fog/aws/requests/compute/delete_network_acl.rb
|
757
|
+
- lib/fog/aws/requests/compute/delete_network_acl_entry.rb
|
758
|
+
- lib/fog/aws/requests/compute/delete_network_interface.rb
|
759
|
+
- lib/fog/aws/requests/compute/delete_placement_group.rb
|
760
|
+
- lib/fog/aws/requests/compute/delete_route.rb
|
761
|
+
- lib/fog/aws/requests/compute/delete_route_table.rb
|
762
|
+
- lib/fog/aws/requests/compute/delete_security_group.rb
|
763
|
+
- lib/fog/aws/requests/compute/delete_snapshot.rb
|
764
|
+
- lib/fog/aws/requests/compute/delete_spot_datafeed_subscription.rb
|
765
|
+
- lib/fog/aws/requests/compute/delete_subnet.rb
|
766
|
+
- lib/fog/aws/requests/compute/delete_tags.rb
|
767
|
+
- lib/fog/aws/requests/compute/delete_volume.rb
|
768
|
+
- lib/fog/aws/requests/compute/delete_vpc.rb
|
769
|
+
- lib/fog/aws/requests/compute/deregister_image.rb
|
770
|
+
- lib/fog/aws/requests/compute/describe_account_attributes.rb
|
771
|
+
- lib/fog/aws/requests/compute/describe_addresses.rb
|
772
|
+
- lib/fog/aws/requests/compute/describe_availability_zones.rb
|
773
|
+
- lib/fog/aws/requests/compute/describe_dhcp_options.rb
|
774
|
+
- lib/fog/aws/requests/compute/describe_images.rb
|
775
|
+
- lib/fog/aws/requests/compute/describe_instance_status.rb
|
776
|
+
- lib/fog/aws/requests/compute/describe_instances.rb
|
777
|
+
- lib/fog/aws/requests/compute/describe_internet_gateways.rb
|
778
|
+
- lib/fog/aws/requests/compute/describe_key_pairs.rb
|
779
|
+
- lib/fog/aws/requests/compute/describe_network_acls.rb
|
780
|
+
- lib/fog/aws/requests/compute/describe_network_interface_attribute.rb
|
781
|
+
- lib/fog/aws/requests/compute/describe_network_interfaces.rb
|
782
|
+
- lib/fog/aws/requests/compute/describe_placement_groups.rb
|
783
|
+
- lib/fog/aws/requests/compute/describe_regions.rb
|
784
|
+
- lib/fog/aws/requests/compute/describe_reserved_instances.rb
|
785
|
+
- lib/fog/aws/requests/compute/describe_reserved_instances_offerings.rb
|
786
|
+
- lib/fog/aws/requests/compute/describe_route_tables.rb
|
787
|
+
- lib/fog/aws/requests/compute/describe_security_groups.rb
|
788
|
+
- lib/fog/aws/requests/compute/describe_snapshots.rb
|
789
|
+
- lib/fog/aws/requests/compute/describe_spot_datafeed_subscription.rb
|
790
|
+
- lib/fog/aws/requests/compute/describe_spot_instance_requests.rb
|
791
|
+
- lib/fog/aws/requests/compute/describe_spot_price_history.rb
|
792
|
+
- lib/fog/aws/requests/compute/describe_subnets.rb
|
793
|
+
- lib/fog/aws/requests/compute/describe_tags.rb
|
794
|
+
- lib/fog/aws/requests/compute/describe_volume_status.rb
|
795
|
+
- lib/fog/aws/requests/compute/describe_volumes.rb
|
796
|
+
- lib/fog/aws/requests/compute/describe_vpc_attribute.rb
|
797
|
+
- lib/fog/aws/requests/compute/describe_vpcs.rb
|
798
|
+
- lib/fog/aws/requests/compute/detach_internet_gateway.rb
|
799
|
+
- lib/fog/aws/requests/compute/detach_network_interface.rb
|
800
|
+
- lib/fog/aws/requests/compute/detach_volume.rb
|
801
|
+
- lib/fog/aws/requests/compute/disassociate_address.rb
|
802
|
+
- lib/fog/aws/requests/compute/disassociate_route_table.rb
|
803
|
+
- lib/fog/aws/requests/compute/get_console_output.rb
|
804
|
+
- lib/fog/aws/requests/compute/get_password_data.rb
|
805
|
+
- lib/fog/aws/requests/compute/import_key_pair.rb
|
806
|
+
- lib/fog/aws/requests/compute/modify_image_attribute.rb
|
807
|
+
- lib/fog/aws/requests/compute/modify_instance_attribute.rb
|
808
|
+
- lib/fog/aws/requests/compute/modify_network_interface_attribute.rb
|
809
|
+
- lib/fog/aws/requests/compute/modify_snapshot_attribute.rb
|
810
|
+
- lib/fog/aws/requests/compute/modify_subnet_attribute.rb
|
811
|
+
- lib/fog/aws/requests/compute/modify_volume_attribute.rb
|
812
|
+
- lib/fog/aws/requests/compute/modify_vpc_attribute.rb
|
813
|
+
- lib/fog/aws/requests/compute/monitor_instances.rb
|
814
|
+
- lib/fog/aws/requests/compute/purchase_reserved_instances_offering.rb
|
815
|
+
- lib/fog/aws/requests/compute/reboot_instances.rb
|
816
|
+
- lib/fog/aws/requests/compute/register_image.rb
|
817
|
+
- lib/fog/aws/requests/compute/release_address.rb
|
818
|
+
- lib/fog/aws/requests/compute/replace_network_acl_association.rb
|
819
|
+
- lib/fog/aws/requests/compute/replace_network_acl_entry.rb
|
820
|
+
- lib/fog/aws/requests/compute/replace_route.rb
|
821
|
+
- lib/fog/aws/requests/compute/request_spot_instances.rb
|
822
|
+
- lib/fog/aws/requests/compute/reset_network_interface_attribute.rb
|
823
|
+
- lib/fog/aws/requests/compute/revoke_security_group_ingress.rb
|
824
|
+
- lib/fog/aws/requests/compute/run_instances.rb
|
825
|
+
- lib/fog/aws/requests/compute/start_instances.rb
|
826
|
+
- lib/fog/aws/requests/compute/stop_instances.rb
|
827
|
+
- lib/fog/aws/requests/compute/terminate_instances.rb
|
828
|
+
- lib/fog/aws/requests/compute/unmonitor_instances.rb
|
829
|
+
- lib/fog/aws/requests/data_pipeline/activate_pipeline.rb
|
830
|
+
- lib/fog/aws/requests/data_pipeline/create_pipeline.rb
|
831
|
+
- lib/fog/aws/requests/data_pipeline/delete_pipeline.rb
|
832
|
+
- lib/fog/aws/requests/data_pipeline/describe_objects.rb
|
833
|
+
- lib/fog/aws/requests/data_pipeline/describe_pipelines.rb
|
834
|
+
- lib/fog/aws/requests/data_pipeline/get_pipeline_definition.rb
|
835
|
+
- lib/fog/aws/requests/data_pipeline/list_pipelines.rb
|
836
|
+
- lib/fog/aws/requests/data_pipeline/put_pipeline_definition.rb
|
837
|
+
- lib/fog/aws/requests/data_pipeline/query_objects.rb
|
838
|
+
- lib/fog/aws/requests/dns/change_resource_record_sets.rb
|
839
|
+
- lib/fog/aws/requests/dns/create_health_check.rb
|
840
|
+
- lib/fog/aws/requests/dns/create_hosted_zone.rb
|
841
|
+
- lib/fog/aws/requests/dns/delete_health_check.rb
|
842
|
+
- lib/fog/aws/requests/dns/delete_hosted_zone.rb
|
843
|
+
- lib/fog/aws/requests/dns/get_change.rb
|
844
|
+
- lib/fog/aws/requests/dns/get_health_check.rb
|
845
|
+
- lib/fog/aws/requests/dns/get_hosted_zone.rb
|
846
|
+
- lib/fog/aws/requests/dns/list_health_checks.rb
|
847
|
+
- lib/fog/aws/requests/dns/list_hosted_zones.rb
|
848
|
+
- lib/fog/aws/requests/dns/list_resource_record_sets.rb
|
849
|
+
- lib/fog/aws/requests/dynamodb/batch_get_item.rb
|
850
|
+
- lib/fog/aws/requests/dynamodb/batch_write_item.rb
|
851
|
+
- lib/fog/aws/requests/dynamodb/create_table.rb
|
852
|
+
- lib/fog/aws/requests/dynamodb/delete_item.rb
|
853
|
+
- lib/fog/aws/requests/dynamodb/delete_table.rb
|
854
|
+
- lib/fog/aws/requests/dynamodb/describe_table.rb
|
855
|
+
- lib/fog/aws/requests/dynamodb/get_item.rb
|
856
|
+
- lib/fog/aws/requests/dynamodb/list_tables.rb
|
857
|
+
- lib/fog/aws/requests/dynamodb/put_item.rb
|
858
|
+
- lib/fog/aws/requests/dynamodb/query.rb
|
859
|
+
- lib/fog/aws/requests/dynamodb/scan.rb
|
860
|
+
- lib/fog/aws/requests/dynamodb/update_item.rb
|
861
|
+
- lib/fog/aws/requests/dynamodb/update_table.rb
|
862
|
+
- lib/fog/aws/requests/elasticache/authorize_cache_security_group_ingress.rb
|
863
|
+
- lib/fog/aws/requests/elasticache/create_cache_cluster.rb
|
864
|
+
- lib/fog/aws/requests/elasticache/create_cache_parameter_group.rb
|
865
|
+
- lib/fog/aws/requests/elasticache/create_cache_security_group.rb
|
866
|
+
- lib/fog/aws/requests/elasticache/create_cache_subnet_group.rb
|
867
|
+
- lib/fog/aws/requests/elasticache/delete_cache_cluster.rb
|
868
|
+
- lib/fog/aws/requests/elasticache/delete_cache_parameter_group.rb
|
869
|
+
- lib/fog/aws/requests/elasticache/delete_cache_security_group.rb
|
870
|
+
- lib/fog/aws/requests/elasticache/delete_cache_subnet_group.rb
|
871
|
+
- lib/fog/aws/requests/elasticache/describe_cache_clusters.rb
|
872
|
+
- lib/fog/aws/requests/elasticache/describe_cache_parameter_groups.rb
|
873
|
+
- lib/fog/aws/requests/elasticache/describe_cache_parameters.rb
|
874
|
+
- lib/fog/aws/requests/elasticache/describe_cache_security_groups.rb
|
875
|
+
- lib/fog/aws/requests/elasticache/describe_cache_subnet_groups.rb
|
876
|
+
- lib/fog/aws/requests/elasticache/describe_engine_default_parameters.rb
|
877
|
+
- lib/fog/aws/requests/elasticache/describe_events.rb
|
878
|
+
- lib/fog/aws/requests/elasticache/describe_reserved_cache_nodes.rb
|
879
|
+
- lib/fog/aws/requests/elasticache/modify_cache_cluster.rb
|
880
|
+
- lib/fog/aws/requests/elasticache/modify_cache_parameter_group.rb
|
881
|
+
- lib/fog/aws/requests/elasticache/reboot_cache_cluster.rb
|
882
|
+
- lib/fog/aws/requests/elasticache/reset_cache_parameter_group.rb
|
883
|
+
- lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
|
884
|
+
- lib/fog/aws/requests/elb/add_tags.rb
|
885
|
+
- lib/fog/aws/requests/elb/apply_security_groups_to_load_balancer.rb
|
886
|
+
- lib/fog/aws/requests/elb/attach_load_balancer_to_subnets.rb
|
887
|
+
- lib/fog/aws/requests/elb/configure_health_check.rb
|
888
|
+
- lib/fog/aws/requests/elb/create_app_cookie_stickiness_policy.rb
|
889
|
+
- lib/fog/aws/requests/elb/create_lb_cookie_stickiness_policy.rb
|
890
|
+
- lib/fog/aws/requests/elb/create_load_balancer.rb
|
891
|
+
- lib/fog/aws/requests/elb/create_load_balancer_listeners.rb
|
892
|
+
- lib/fog/aws/requests/elb/create_load_balancer_policy.rb
|
893
|
+
- lib/fog/aws/requests/elb/delete_load_balancer.rb
|
894
|
+
- lib/fog/aws/requests/elb/delete_load_balancer_listeners.rb
|
895
|
+
- lib/fog/aws/requests/elb/delete_load_balancer_policy.rb
|
896
|
+
- lib/fog/aws/requests/elb/deregister_instances_from_load_balancer.rb
|
897
|
+
- lib/fog/aws/requests/elb/describe_instance_health.rb
|
898
|
+
- lib/fog/aws/requests/elb/describe_load_balancer_attributes.rb
|
899
|
+
- lib/fog/aws/requests/elb/describe_load_balancer_policies.rb
|
900
|
+
- lib/fog/aws/requests/elb/describe_load_balancer_policy_types.rb
|
901
|
+
- lib/fog/aws/requests/elb/describe_load_balancers.rb
|
902
|
+
- lib/fog/aws/requests/elb/describe_tags.rb
|
903
|
+
- lib/fog/aws/requests/elb/detach_load_balancer_from_subnets.rb
|
904
|
+
- lib/fog/aws/requests/elb/disable_availability_zones_for_load_balancer.rb
|
905
|
+
- lib/fog/aws/requests/elb/enable_availability_zones_for_load_balancer.rb
|
906
|
+
- lib/fog/aws/requests/elb/modify_load_balancer_attributes.rb
|
907
|
+
- lib/fog/aws/requests/elb/register_instances_with_load_balancer.rb
|
908
|
+
- lib/fog/aws/requests/elb/remove_tags.rb
|
909
|
+
- lib/fog/aws/requests/elb/set_load_balancer_listener_ssl_certificate.rb
|
910
|
+
- lib/fog/aws/requests/elb/set_load_balancer_policies_for_backend_server.rb
|
911
|
+
- lib/fog/aws/requests/elb/set_load_balancer_policies_of_listener.rb
|
912
|
+
- lib/fog/aws/requests/emr/add_instance_groups.rb
|
913
|
+
- lib/fog/aws/requests/emr/add_job_flow_steps.rb
|
914
|
+
- lib/fog/aws/requests/emr/describe_job_flows.rb
|
915
|
+
- lib/fog/aws/requests/emr/modify_instance_groups.rb
|
916
|
+
- lib/fog/aws/requests/emr/run_job_flow.rb
|
917
|
+
- lib/fog/aws/requests/emr/set_termination_protection.rb
|
918
|
+
- lib/fog/aws/requests/emr/terminate_job_flows.rb
|
919
|
+
- lib/fog/aws/requests/glacier/abort_multipart_upload.rb
|
920
|
+
- lib/fog/aws/requests/glacier/complete_multipart_upload.rb
|
921
|
+
- lib/fog/aws/requests/glacier/create_archive.rb
|
922
|
+
- lib/fog/aws/requests/glacier/create_vault.rb
|
923
|
+
- lib/fog/aws/requests/glacier/delete_archive.rb
|
924
|
+
- lib/fog/aws/requests/glacier/delete_vault.rb
|
925
|
+
- lib/fog/aws/requests/glacier/delete_vault_notification_configuration.rb
|
926
|
+
- lib/fog/aws/requests/glacier/describe_job.rb
|
927
|
+
- lib/fog/aws/requests/glacier/describe_vault.rb
|
928
|
+
- lib/fog/aws/requests/glacier/get_job_output.rb
|
929
|
+
- lib/fog/aws/requests/glacier/get_vault_notification_configuration.rb
|
930
|
+
- lib/fog/aws/requests/glacier/initiate_job.rb
|
931
|
+
- lib/fog/aws/requests/glacier/initiate_multipart_upload.rb
|
932
|
+
- lib/fog/aws/requests/glacier/list_jobs.rb
|
933
|
+
- lib/fog/aws/requests/glacier/list_multipart_uploads.rb
|
934
|
+
- lib/fog/aws/requests/glacier/list_parts.rb
|
935
|
+
- lib/fog/aws/requests/glacier/list_vaults.rb
|
936
|
+
- lib/fog/aws/requests/glacier/set_vault_notification_configuration.rb
|
937
|
+
- lib/fog/aws/requests/glacier/upload_part.rb
|
938
|
+
- lib/fog/aws/requests/iam/add_role_to_instance_profile.rb
|
939
|
+
- lib/fog/aws/requests/iam/add_user_to_group.rb
|
940
|
+
- lib/fog/aws/requests/iam/create_access_key.rb
|
941
|
+
- lib/fog/aws/requests/iam/create_account_alias.rb
|
942
|
+
- lib/fog/aws/requests/iam/create_group.rb
|
943
|
+
- lib/fog/aws/requests/iam/create_instance_profile.rb
|
944
|
+
- lib/fog/aws/requests/iam/create_login_profile.rb
|
945
|
+
- lib/fog/aws/requests/iam/create_role.rb
|
946
|
+
- lib/fog/aws/requests/iam/create_user.rb
|
947
|
+
- lib/fog/aws/requests/iam/delete_access_key.rb
|
948
|
+
- lib/fog/aws/requests/iam/delete_account_alias.rb
|
949
|
+
- lib/fog/aws/requests/iam/delete_account_password_policy.rb
|
950
|
+
- lib/fog/aws/requests/iam/delete_group.rb
|
951
|
+
- lib/fog/aws/requests/iam/delete_group_policy.rb
|
952
|
+
- lib/fog/aws/requests/iam/delete_instance_profile.rb
|
953
|
+
- lib/fog/aws/requests/iam/delete_login_profile.rb
|
954
|
+
- lib/fog/aws/requests/iam/delete_role.rb
|
955
|
+
- lib/fog/aws/requests/iam/delete_role_policy.rb
|
956
|
+
- lib/fog/aws/requests/iam/delete_server_certificate.rb
|
957
|
+
- lib/fog/aws/requests/iam/delete_signing_certificate.rb
|
958
|
+
- lib/fog/aws/requests/iam/delete_user.rb
|
959
|
+
- lib/fog/aws/requests/iam/delete_user_policy.rb
|
960
|
+
- lib/fog/aws/requests/iam/get_account_password_policy.rb
|
961
|
+
- lib/fog/aws/requests/iam/get_account_summary.rb
|
962
|
+
- lib/fog/aws/requests/iam/get_group.rb
|
963
|
+
- lib/fog/aws/requests/iam/get_group_policy.rb
|
964
|
+
- lib/fog/aws/requests/iam/get_instance_profile.rb
|
965
|
+
- lib/fog/aws/requests/iam/get_login_profile.rb
|
966
|
+
- lib/fog/aws/requests/iam/get_role.rb
|
967
|
+
- lib/fog/aws/requests/iam/get_role_policy.rb
|
968
|
+
- lib/fog/aws/requests/iam/get_server_certificate.rb
|
969
|
+
- lib/fog/aws/requests/iam/get_user.rb
|
970
|
+
- lib/fog/aws/requests/iam/get_user_policy.rb
|
971
|
+
- lib/fog/aws/requests/iam/list_access_keys.rb
|
972
|
+
- lib/fog/aws/requests/iam/list_account_aliases.rb
|
973
|
+
- lib/fog/aws/requests/iam/list_group_policies.rb
|
974
|
+
- lib/fog/aws/requests/iam/list_groups.rb
|
975
|
+
- lib/fog/aws/requests/iam/list_groups_for_user.rb
|
976
|
+
- lib/fog/aws/requests/iam/list_instance_profiles.rb
|
977
|
+
- lib/fog/aws/requests/iam/list_instance_profiles_for_role.rb
|
978
|
+
- lib/fog/aws/requests/iam/list_mfa_devices.rb
|
979
|
+
- lib/fog/aws/requests/iam/list_role_policies.rb
|
980
|
+
- lib/fog/aws/requests/iam/list_roles.rb
|
981
|
+
- lib/fog/aws/requests/iam/list_server_certificates.rb
|
982
|
+
- lib/fog/aws/requests/iam/list_signing_certificates.rb
|
983
|
+
- lib/fog/aws/requests/iam/list_user_policies.rb
|
984
|
+
- lib/fog/aws/requests/iam/list_users.rb
|
985
|
+
- lib/fog/aws/requests/iam/put_group_policy.rb
|
986
|
+
- lib/fog/aws/requests/iam/put_role_policy.rb
|
987
|
+
- lib/fog/aws/requests/iam/put_user_policy.rb
|
988
|
+
- lib/fog/aws/requests/iam/remove_role_from_instance_profile.rb
|
989
|
+
- lib/fog/aws/requests/iam/remove_user_from_group.rb
|
990
|
+
- lib/fog/aws/requests/iam/update_access_key.rb
|
991
|
+
- lib/fog/aws/requests/iam/update_account_password_policy.rb
|
992
|
+
- lib/fog/aws/requests/iam/update_group.rb
|
993
|
+
- lib/fog/aws/requests/iam/update_login_profile.rb
|
994
|
+
- lib/fog/aws/requests/iam/update_server_certificate.rb
|
995
|
+
- lib/fog/aws/requests/iam/update_signing_certificate.rb
|
996
|
+
- lib/fog/aws/requests/iam/update_user.rb
|
997
|
+
- lib/fog/aws/requests/iam/upload_server_certificate.rb
|
998
|
+
- lib/fog/aws/requests/iam/upload_signing_certificate.rb
|
999
|
+
- lib/fog/aws/requests/rds/add_tags_to_resource.rb
|
1000
|
+
- lib/fog/aws/requests/rds/authorize_db_security_group_ingress.rb
|
1001
|
+
- lib/fog/aws/requests/rds/create_db_instance.rb
|
1002
|
+
- lib/fog/aws/requests/rds/create_db_instance_read_replica.rb
|
1003
|
+
- lib/fog/aws/requests/rds/create_db_parameter_group.rb
|
1004
|
+
- lib/fog/aws/requests/rds/create_db_security_group.rb
|
1005
|
+
- lib/fog/aws/requests/rds/create_db_snapshot.rb
|
1006
|
+
- lib/fog/aws/requests/rds/create_db_subnet_group.rb
|
1007
|
+
- lib/fog/aws/requests/rds/create_event_subscription.rb
|
1008
|
+
- lib/fog/aws/requests/rds/delete_db_instance.rb
|
1009
|
+
- lib/fog/aws/requests/rds/delete_db_parameter_group.rb
|
1010
|
+
- lib/fog/aws/requests/rds/delete_db_security_group.rb
|
1011
|
+
- lib/fog/aws/requests/rds/delete_db_snapshot.rb
|
1012
|
+
- lib/fog/aws/requests/rds/delete_db_subnet_group.rb
|
1013
|
+
- lib/fog/aws/requests/rds/delete_event_subscription.rb
|
1014
|
+
- lib/fog/aws/requests/rds/describe_db_engine_versions.rb
|
1015
|
+
- lib/fog/aws/requests/rds/describe_db_instances.rb
|
1016
|
+
- lib/fog/aws/requests/rds/describe_db_log_files.rb
|
1017
|
+
- lib/fog/aws/requests/rds/describe_db_parameter_groups.rb
|
1018
|
+
- lib/fog/aws/requests/rds/describe_db_parameters.rb
|
1019
|
+
- lib/fog/aws/requests/rds/describe_db_reserved_instances.rb
|
1020
|
+
- lib/fog/aws/requests/rds/describe_db_security_groups.rb
|
1021
|
+
- lib/fog/aws/requests/rds/describe_db_snapshots.rb
|
1022
|
+
- lib/fog/aws/requests/rds/describe_db_subnet_groups.rb
|
1023
|
+
- lib/fog/aws/requests/rds/describe_event_subscriptions.rb
|
1024
|
+
- lib/fog/aws/requests/rds/describe_events.rb
|
1025
|
+
- lib/fog/aws/requests/rds/describe_orderable_db_instance_options.rb
|
1026
|
+
- lib/fog/aws/requests/rds/download_db_logfile_portion.rb
|
1027
|
+
- lib/fog/aws/requests/rds/list_tags_for_resource.rb
|
1028
|
+
- lib/fog/aws/requests/rds/modify_db_instance.rb
|
1029
|
+
- lib/fog/aws/requests/rds/modify_db_parameter_group.rb
|
1030
|
+
- lib/fog/aws/requests/rds/promote_read_replica.rb
|
1031
|
+
- lib/fog/aws/requests/rds/reboot_db_instance.rb
|
1032
|
+
- lib/fog/aws/requests/rds/remove_tags_from_resource.rb
|
1033
|
+
- lib/fog/aws/requests/rds/restore_db_instance_from_db_snapshot.rb
|
1034
|
+
- lib/fog/aws/requests/rds/restore_db_instance_to_point_in_time.rb
|
1035
|
+
- lib/fog/aws/requests/rds/revoke_db_security_group_ingress.rb
|
1036
|
+
- lib/fog/aws/requests/redshift/authorize_cluster_security_group_ingress.rb
|
1037
|
+
- lib/fog/aws/requests/redshift/authorize_snapshot_access.rb
|
1038
|
+
- lib/fog/aws/requests/redshift/copy_cluster_snapshot.rb
|
1039
|
+
- lib/fog/aws/requests/redshift/create_cluster.rb
|
1040
|
+
- lib/fog/aws/requests/redshift/create_cluster_parameter_group.rb
|
1041
|
+
- lib/fog/aws/requests/redshift/create_cluster_security_group.rb
|
1042
|
+
- lib/fog/aws/requests/redshift/create_cluster_snapshot.rb
|
1043
|
+
- lib/fog/aws/requests/redshift/create_cluster_subnet_group.rb
|
1044
|
+
- lib/fog/aws/requests/redshift/delete_cluster.rb
|
1045
|
+
- lib/fog/aws/requests/redshift/delete_cluster_parameter_group.rb
|
1046
|
+
- lib/fog/aws/requests/redshift/delete_cluster_security_group.rb
|
1047
|
+
- lib/fog/aws/requests/redshift/delete_cluster_snapshot.rb
|
1048
|
+
- lib/fog/aws/requests/redshift/delete_cluster_subnet_group.rb
|
1049
|
+
- lib/fog/aws/requests/redshift/describe_cluster_parameter_groups.rb
|
1050
|
+
- lib/fog/aws/requests/redshift/describe_cluster_parameters.rb
|
1051
|
+
- lib/fog/aws/requests/redshift/describe_cluster_security_groups.rb
|
1052
|
+
- lib/fog/aws/requests/redshift/describe_cluster_snapshots.rb
|
1053
|
+
- lib/fog/aws/requests/redshift/describe_cluster_subnet_groups.rb
|
1054
|
+
- lib/fog/aws/requests/redshift/describe_cluster_versions.rb
|
1055
|
+
- lib/fog/aws/requests/redshift/describe_clusters.rb
|
1056
|
+
- lib/fog/aws/requests/redshift/describe_default_cluster_parameters.rb
|
1057
|
+
- lib/fog/aws/requests/redshift/describe_events.rb
|
1058
|
+
- lib/fog/aws/requests/redshift/describe_orderable_cluster_options.rb
|
1059
|
+
- lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb
|
1060
|
+
- lib/fog/aws/requests/redshift/describe_reserved_nodes.rb
|
1061
|
+
- lib/fog/aws/requests/redshift/describe_resize.rb
|
1062
|
+
- lib/fog/aws/requests/redshift/modify_cluster.rb
|
1063
|
+
- lib/fog/aws/requests/redshift/modify_cluster_parameter_group.rb
|
1064
|
+
- lib/fog/aws/requests/redshift/modify_cluster_subnet_group.rb
|
1065
|
+
- lib/fog/aws/requests/redshift/purchase_reserved_node_offering.rb
|
1066
|
+
- lib/fog/aws/requests/redshift/reboot_cluster.rb
|
1067
|
+
- lib/fog/aws/requests/redshift/reset_cluster_parameter_group.rb
|
1068
|
+
- lib/fog/aws/requests/redshift/restore_from_cluster_snapshot.rb
|
1069
|
+
- lib/fog/aws/requests/redshift/revoke_cluster_security_group_ingress.rb
|
1070
|
+
- lib/fog/aws/requests/redshift/revoke_snapshot_access.rb
|
1071
|
+
- lib/fog/aws/requests/ses/delete_verified_email_address.rb
|
1072
|
+
- lib/fog/aws/requests/ses/get_send_quota.rb
|
1073
|
+
- lib/fog/aws/requests/ses/get_send_statistics.rb
|
1074
|
+
- lib/fog/aws/requests/ses/list_verified_email_addresses.rb
|
1075
|
+
- lib/fog/aws/requests/ses/send_email.rb
|
1076
|
+
- lib/fog/aws/requests/ses/send_raw_email.rb
|
1077
|
+
- lib/fog/aws/requests/ses/verify_domain_identity.rb
|
1078
|
+
- lib/fog/aws/requests/ses/verify_email_address.rb
|
1079
|
+
- lib/fog/aws/requests/simpledb/batch_put_attributes.rb
|
1080
|
+
- lib/fog/aws/requests/simpledb/create_domain.rb
|
1081
|
+
- lib/fog/aws/requests/simpledb/delete_attributes.rb
|
1082
|
+
- lib/fog/aws/requests/simpledb/delete_domain.rb
|
1083
|
+
- lib/fog/aws/requests/simpledb/domain_metadata.rb
|
1084
|
+
- lib/fog/aws/requests/simpledb/get_attributes.rb
|
1085
|
+
- lib/fog/aws/requests/simpledb/list_domains.rb
|
1086
|
+
- lib/fog/aws/requests/simpledb/put_attributes.rb
|
1087
|
+
- lib/fog/aws/requests/simpledb/select.rb
|
1088
|
+
- lib/fog/aws/requests/sns/add_permission.rb
|
1089
|
+
- lib/fog/aws/requests/sns/confirm_subscription.rb
|
1090
|
+
- lib/fog/aws/requests/sns/create_topic.rb
|
1091
|
+
- lib/fog/aws/requests/sns/delete_topic.rb
|
1092
|
+
- lib/fog/aws/requests/sns/get_topic_attributes.rb
|
1093
|
+
- lib/fog/aws/requests/sns/list_subscriptions.rb
|
1094
|
+
- lib/fog/aws/requests/sns/list_subscriptions_by_topic.rb
|
1095
|
+
- lib/fog/aws/requests/sns/list_topics.rb
|
1096
|
+
- lib/fog/aws/requests/sns/publish.rb
|
1097
|
+
- lib/fog/aws/requests/sns/remove_permission.rb
|
1098
|
+
- lib/fog/aws/requests/sns/set_topic_attributes.rb
|
1099
|
+
- lib/fog/aws/requests/sns/subscribe.rb
|
1100
|
+
- lib/fog/aws/requests/sns/unsubscribe.rb
|
1101
|
+
- lib/fog/aws/requests/sqs/change_message_visibility.rb
|
1102
|
+
- lib/fog/aws/requests/sqs/create_queue.rb
|
1103
|
+
- lib/fog/aws/requests/sqs/delete_message.rb
|
1104
|
+
- lib/fog/aws/requests/sqs/delete_queue.rb
|
1105
|
+
- lib/fog/aws/requests/sqs/get_queue_attributes.rb
|
1106
|
+
- lib/fog/aws/requests/sqs/list_queues.rb
|
1107
|
+
- lib/fog/aws/requests/sqs/receive_message.rb
|
1108
|
+
- lib/fog/aws/requests/sqs/send_message.rb
|
1109
|
+
- lib/fog/aws/requests/sqs/set_queue_attributes.rb
|
1110
|
+
- lib/fog/aws/requests/storage/abort_multipart_upload.rb
|
1111
|
+
- lib/fog/aws/requests/storage/acl_utils.rb
|
1112
|
+
- lib/fog/aws/requests/storage/complete_multipart_upload.rb
|
1113
|
+
- lib/fog/aws/requests/storage/copy_object.rb
|
1114
|
+
- lib/fog/aws/requests/storage/cors_utils.rb
|
1115
|
+
- lib/fog/aws/requests/storage/delete_bucket.rb
|
1116
|
+
- lib/fog/aws/requests/storage/delete_bucket_cors.rb
|
1117
|
+
- lib/fog/aws/requests/storage/delete_bucket_lifecycle.rb
|
1118
|
+
- lib/fog/aws/requests/storage/delete_bucket_policy.rb
|
1119
|
+
- lib/fog/aws/requests/storage/delete_bucket_tagging.rb
|
1120
|
+
- lib/fog/aws/requests/storage/delete_bucket_website.rb
|
1121
|
+
- lib/fog/aws/requests/storage/delete_multiple_objects.rb
|
1122
|
+
- lib/fog/aws/requests/storage/delete_object.rb
|
1123
|
+
- lib/fog/aws/requests/storage/get_bucket.rb
|
1124
|
+
- lib/fog/aws/requests/storage/get_bucket_acl.rb
|
1125
|
+
- lib/fog/aws/requests/storage/get_bucket_cors.rb
|
1126
|
+
- lib/fog/aws/requests/storage/get_bucket_lifecycle.rb
|
1127
|
+
- lib/fog/aws/requests/storage/get_bucket_location.rb
|
1128
|
+
- lib/fog/aws/requests/storage/get_bucket_logging.rb
|
1129
|
+
- lib/fog/aws/requests/storage/get_bucket_notification.rb
|
1130
|
+
- lib/fog/aws/requests/storage/get_bucket_object_versions.rb
|
1131
|
+
- lib/fog/aws/requests/storage/get_bucket_policy.rb
|
1132
|
+
- lib/fog/aws/requests/storage/get_bucket_tagging.rb
|
1133
|
+
- lib/fog/aws/requests/storage/get_bucket_versioning.rb
|
1134
|
+
- lib/fog/aws/requests/storage/get_bucket_website.rb
|
1135
|
+
- lib/fog/aws/requests/storage/get_object.rb
|
1136
|
+
- lib/fog/aws/requests/storage/get_object_acl.rb
|
1137
|
+
- lib/fog/aws/requests/storage/get_object_http_url.rb
|
1138
|
+
- lib/fog/aws/requests/storage/get_object_https_url.rb
|
1139
|
+
- lib/fog/aws/requests/storage/get_object_torrent.rb
|
1140
|
+
- lib/fog/aws/requests/storage/get_object_url.rb
|
1141
|
+
- lib/fog/aws/requests/storage/get_request_payment.rb
|
1142
|
+
- lib/fog/aws/requests/storage/get_service.rb
|
1143
|
+
- lib/fog/aws/requests/storage/head_bucket.rb
|
1144
|
+
- lib/fog/aws/requests/storage/head_object.rb
|
1145
|
+
- lib/fog/aws/requests/storage/initiate_multipart_upload.rb
|
1146
|
+
- lib/fog/aws/requests/storage/list_multipart_uploads.rb
|
1147
|
+
- lib/fog/aws/requests/storage/list_parts.rb
|
1148
|
+
- lib/fog/aws/requests/storage/post_object_hidden_fields.rb
|
1149
|
+
- lib/fog/aws/requests/storage/post_object_restore.rb
|
1150
|
+
- lib/fog/aws/requests/storage/put_bucket.rb
|
1151
|
+
- lib/fog/aws/requests/storage/put_bucket_acl.rb
|
1152
|
+
- lib/fog/aws/requests/storage/put_bucket_cors.rb
|
1153
|
+
- lib/fog/aws/requests/storage/put_bucket_lifecycle.rb
|
1154
|
+
- lib/fog/aws/requests/storage/put_bucket_logging.rb
|
1155
|
+
- lib/fog/aws/requests/storage/put_bucket_notification.rb
|
1156
|
+
- lib/fog/aws/requests/storage/put_bucket_policy.rb
|
1157
|
+
- lib/fog/aws/requests/storage/put_bucket_tagging.rb
|
1158
|
+
- lib/fog/aws/requests/storage/put_bucket_versioning.rb
|
1159
|
+
- lib/fog/aws/requests/storage/put_bucket_website.rb
|
1160
|
+
- lib/fog/aws/requests/storage/put_object.rb
|
1161
|
+
- lib/fog/aws/requests/storage/put_object_acl.rb
|
1162
|
+
- lib/fog/aws/requests/storage/put_object_url.rb
|
1163
|
+
- lib/fog/aws/requests/storage/put_request_payment.rb
|
1164
|
+
- lib/fog/aws/requests/storage/shared_mock_methods.rb
|
1165
|
+
- lib/fog/aws/requests/storage/sync_clock.rb
|
1166
|
+
- lib/fog/aws/requests/storage/upload_part.rb
|
1167
|
+
- lib/fog/aws/requests/sts/assume_role.rb
|
1168
|
+
- lib/fog/aws/requests/sts/assume_role_with_saml.rb
|
1169
|
+
- lib/fog/aws/requests/sts/get_federation_token.rb
|
1170
|
+
- lib/fog/aws/requests/sts/get_session_token.rb
|
1171
|
+
- lib/fog/aws/ses.rb
|
1172
|
+
- lib/fog/aws/signaturev4.rb
|
1173
|
+
- lib/fog/aws/simpledb.rb
|
1174
|
+
- lib/fog/aws/sns.rb
|
1175
|
+
- lib/fog/aws/sqs.rb
|
1176
|
+
- lib/fog/aws/storage.rb
|
1177
|
+
- lib/fog/aws/sts.rb
|
1178
|
+
- lib/fog/aws/version.rb
|
1179
|
+
- tests/credentials_tests.rb
|
1180
|
+
- tests/helper.rb
|
1181
|
+
- tests/helpers/collection_helper.rb
|
1182
|
+
- tests/helpers/compute/flavors_helper.rb
|
1183
|
+
- tests/helpers/compute/server_helper.rb
|
1184
|
+
- tests/helpers/compute/servers_helper.rb
|
1185
|
+
- tests/helpers/dns_helper.rb
|
1186
|
+
- tests/helpers/formats_helper.rb
|
1187
|
+
- tests/helpers/formats_helper_tests.rb
|
1188
|
+
- tests/helpers/mock_helper.rb
|
1189
|
+
- tests/helpers/model_helper.rb
|
1190
|
+
- tests/helpers/responds_to_helper.rb
|
1191
|
+
- tests/helpers/schema_validator_tests.rb
|
1192
|
+
- tests/helpers/succeeds_helper.rb
|
1193
|
+
- tests/lorem.txt
|
1194
|
+
- tests/models/auto_scaling/activities_tests.rb
|
1195
|
+
- tests/models/auto_scaling/configuration_test.rb
|
1196
|
+
- tests/models/auto_scaling/configurations_tests.rb
|
1197
|
+
- tests/models/auto_scaling/groups_test.rb
|
1198
|
+
- tests/models/auto_scaling/helper.rb
|
1199
|
+
- tests/models/auto_scaling/instance_tests.rb
|
1200
|
+
- tests/models/auto_scaling/instances_tests.rb
|
1201
|
+
- tests/models/beanstalk/application_tests.rb
|
1202
|
+
- tests/models/beanstalk/applications_tests.rb
|
1203
|
+
- tests/models/beanstalk/environment_tests.rb
|
1204
|
+
- tests/models/beanstalk/environments_tests.rb
|
1205
|
+
- tests/models/beanstalk/template_tests.rb
|
1206
|
+
- tests/models/beanstalk/templates_tests.rb
|
1207
|
+
- tests/models/beanstalk/version_tests.rb
|
1208
|
+
- tests/models/beanstalk/versions_tests.rb
|
1209
|
+
- tests/models/cdn/distribution_tests.rb
|
1210
|
+
- tests/models/cdn/distributions_tests.rb
|
1211
|
+
- tests/models/cdn/invalidation_tests.rb
|
1212
|
+
- tests/models/cdn/invalidations_tests.rb
|
1213
|
+
- tests/models/cdn/streaming_distribution_tests.rb
|
1214
|
+
- tests/models/cdn/streaming_distributions_tests.rb
|
1215
|
+
- tests/models/cloud_watch/alarm_data_tests.rb
|
1216
|
+
- tests/models/cloud_watch/alarm_history_tests.rb
|
1217
|
+
- tests/models/cloud_watch/metric_statistics_tests.rb
|
1218
|
+
- tests/models/cloud_watch/metrics_tests.rb
|
1219
|
+
- tests/models/compute/address_tests.rb
|
1220
|
+
- tests/models/compute/addresses_tests.rb
|
1221
|
+
- tests/models/compute/dhcp_option_tests.rb
|
1222
|
+
- tests/models/compute/dhcp_options_tests.rb
|
1223
|
+
- tests/models/compute/internet_gateway_tests.rb
|
1224
|
+
- tests/models/compute/internet_gateways_tests.rb
|
1225
|
+
- tests/models/compute/key_pair_tests.rb
|
1226
|
+
- tests/models/compute/key_pairs_tests.rb
|
1227
|
+
- tests/models/compute/network_acl_tests.rb
|
1228
|
+
- tests/models/compute/network_acls_tests.rb
|
1229
|
+
- tests/models/compute/network_interfaces_test.rb
|
1230
|
+
- tests/models/compute/security_group_tests.rb
|
1231
|
+
- tests/models/compute/security_groups_tests.rb
|
1232
|
+
- tests/models/compute/server_tests.rb
|
1233
|
+
- tests/models/compute/snapshot_tests.rb
|
1234
|
+
- tests/models/compute/snapshots_tests.rb
|
1235
|
+
- tests/models/compute/subnet_tests.rb
|
1236
|
+
- tests/models/compute/subnets_tests.rb
|
1237
|
+
- tests/models/compute/volume_tests.rb
|
1238
|
+
- tests/models/compute/volumes_tests.rb
|
1239
|
+
- tests/models/compute/vpc_tests.rb
|
1240
|
+
- tests/models/compute/vpcs_tests.rb
|
1241
|
+
- tests/models/data_pipeline/pipeline_tests.rb
|
1242
|
+
- tests/models/data_pipeline/pipelines_tests.rb
|
1243
|
+
- tests/models/dns/record_tests.rb
|
1244
|
+
- tests/models/dns/records_tests.rb
|
1245
|
+
- tests/models/dns/zone_tests.rb
|
1246
|
+
- tests/models/dns/zones_tests.rb
|
1247
|
+
- tests/models/elasticache/cluster_tests.rb
|
1248
|
+
- tests/models/elasticache/parameter_groups_tests.rb
|
1249
|
+
- tests/models/elasticache/security_groups_tests.rb
|
1250
|
+
- tests/models/elasticache/subnet_groups_tests.rb
|
1251
|
+
- tests/models/elb/model_tests.rb
|
1252
|
+
- tests/models/elb/tagging_tests.rb
|
1253
|
+
- tests/models/glacier/model_tests.rb
|
1254
|
+
- tests/models/iam/access_keys_tests.rb
|
1255
|
+
- tests/models/iam/policies_tests.rb
|
1256
|
+
- tests/models/iam/roles_tests.rb
|
1257
|
+
- tests/models/iam/users_tests.rb
|
1258
|
+
- tests/models/rds/event_subscription_tests.rb
|
1259
|
+
- tests/models/rds/event_subscriptions_tests.rb
|
1260
|
+
- tests/models/rds/helper.rb
|
1261
|
+
- tests/models/rds/instance_option_tests.rb
|
1262
|
+
- tests/models/rds/parameter_group_tests.rb
|
1263
|
+
- tests/models/rds/parameter_groups_tests.rb
|
1264
|
+
- tests/models/rds/security_group_tests.rb
|
1265
|
+
- tests/models/rds/security_groups_tests.rb
|
1266
|
+
- tests/models/rds/server_tests.rb
|
1267
|
+
- tests/models/rds/servers_tests.rb
|
1268
|
+
- tests/models/rds/snapshot_tests.rb
|
1269
|
+
- tests/models/rds/snapshots_tests.rb
|
1270
|
+
- tests/models/rds/tagging_tests.rb
|
1271
|
+
- tests/models/sns/topic_tests.rb
|
1272
|
+
- tests/models/sns/topics_tests.rb
|
1273
|
+
- tests/models/storage/directory_tests.rb
|
1274
|
+
- tests/models/storage/file_tests.rb
|
1275
|
+
- tests/models/storage/files_tests.rb
|
1276
|
+
- tests/models/storage/url_tests.rb
|
1277
|
+
- tests/models/storage/version_tests.rb
|
1278
|
+
- tests/models/storage/versions_tests.rb
|
1279
|
+
- tests/parsers/elb/describe_load_balancers.rb
|
1280
|
+
- tests/requests/auto_scaling/auto_scaling_tests.rb
|
1281
|
+
- tests/requests/auto_scaling/describe_types_tests.rb
|
1282
|
+
- tests/requests/auto_scaling/helper.rb
|
1283
|
+
- tests/requests/auto_scaling/model_tests.rb
|
1284
|
+
- tests/requests/auto_scaling/notification_configuration_tests.rb
|
1285
|
+
- tests/requests/auto_scaling/tag_tests.rb
|
1286
|
+
- tests/requests/beanstalk/application_tests.rb
|
1287
|
+
- tests/requests/beanstalk/solution_stack_tests.rb
|
1288
|
+
- tests/requests/cdn/cdn_tests.rb
|
1289
|
+
- tests/requests/cloud_formation/stack_tests.rb
|
1290
|
+
- tests/requests/cloud_watch/get_metric_statistics_tests.rb
|
1291
|
+
- tests/requests/cloud_watch/list_metrics_test.rb
|
1292
|
+
- tests/requests/cloud_watch/put_metric_data_tests.rb
|
1293
|
+
- tests/requests/compute/address_tests.rb
|
1294
|
+
- tests/requests/compute/assign_private_ip_tests.rb
|
1295
|
+
- tests/requests/compute/availability_zone_tests.rb
|
1296
|
+
- tests/requests/compute/client_tests.rb
|
1297
|
+
- tests/requests/compute/dhcp_options_tests.rb
|
1298
|
+
- tests/requests/compute/helper.rb
|
1299
|
+
- tests/requests/compute/image_tests.rb
|
1300
|
+
- tests/requests/compute/instance_tests.rb
|
1301
|
+
- tests/requests/compute/internet_gateway_tests.rb
|
1302
|
+
- tests/requests/compute/key_pair_tests.rb
|
1303
|
+
- tests/requests/compute/network_acl_tests.rb
|
1304
|
+
- tests/requests/compute/network_interface_tests.rb
|
1305
|
+
- tests/requests/compute/placement_group_tests.rb
|
1306
|
+
- tests/requests/compute/region_tests.rb
|
1307
|
+
- tests/requests/compute/route_tests.rb
|
1308
|
+
- tests/requests/compute/security_group_tests.rb
|
1309
|
+
- tests/requests/compute/snapshot_tests.rb
|
1310
|
+
- tests/requests/compute/spot_datafeed_subscription_tests.rb
|
1311
|
+
- tests/requests/compute/spot_instance_tests.rb
|
1312
|
+
- tests/requests/compute/spot_price_history_tests.rb
|
1313
|
+
- tests/requests/compute/subnet_tests.rb
|
1314
|
+
- tests/requests/compute/tag_tests.rb
|
1315
|
+
- tests/requests/compute/volume_tests.rb
|
1316
|
+
- tests/requests/compute/vpc_tests.rb
|
1317
|
+
- tests/requests/data_pipeline/helper.rb
|
1318
|
+
- tests/requests/data_pipeline/pipeline_tests.rb
|
1319
|
+
- tests/requests/dns/dns_tests.rb
|
1320
|
+
- tests/requests/dns/health_check_tests.rb
|
1321
|
+
- tests/requests/dns/helper.rb
|
1322
|
+
- tests/requests/dynamodb/item_tests.rb
|
1323
|
+
- tests/requests/dynamodb/table_tests.rb
|
1324
|
+
- tests/requests/elasticache/cache_cluster_tests.rb
|
1325
|
+
- tests/requests/elasticache/describe_events.rb
|
1326
|
+
- tests/requests/elasticache/describe_reserved_cache_nodes.rb
|
1327
|
+
- tests/requests/elasticache/helper.rb
|
1328
|
+
- tests/requests/elasticache/parameter_group_tests.rb
|
1329
|
+
- tests/requests/elasticache/security_group_tests.rb
|
1330
|
+
- tests/requests/elasticache/subnet_group_tests.rb
|
1331
|
+
- tests/requests/elb/helper.rb
|
1332
|
+
- tests/requests/elb/listener_tests.rb
|
1333
|
+
- tests/requests/elb/load_balancer_tests.rb
|
1334
|
+
- tests/requests/elb/policy_tests.rb
|
1335
|
+
- tests/requests/emr/helper.rb
|
1336
|
+
- tests/requests/emr/instance_group_tests.rb
|
1337
|
+
- tests/requests/emr/job_flow_tests.rb
|
1338
|
+
- tests/requests/glacier/archive_tests.rb
|
1339
|
+
- tests/requests/glacier/multipart_upload_tests.rb
|
1340
|
+
- tests/requests/glacier/tree_hash_tests.rb
|
1341
|
+
- tests/requests/glacier/vault_tests.rb
|
1342
|
+
- tests/requests/iam/access_key_tests.rb
|
1343
|
+
- tests/requests/iam/account_policy_tests.rb
|
1344
|
+
- tests/requests/iam/account_tests.rb
|
1345
|
+
- tests/requests/iam/group_policy_tests.rb
|
1346
|
+
- tests/requests/iam/group_tests.rb
|
1347
|
+
- tests/requests/iam/helper.rb
|
1348
|
+
- tests/requests/iam/login_profile_tests.rb
|
1349
|
+
- tests/requests/iam/mfa_tests.rb
|
1350
|
+
- tests/requests/iam/role_tests.rb
|
1351
|
+
- tests/requests/iam/server_certificate_tests.rb
|
1352
|
+
- tests/requests/iam/user_policy_tests.rb
|
1353
|
+
- tests/requests/iam/user_tests.rb
|
1354
|
+
- tests/requests/rds/describe_events.rb
|
1355
|
+
- tests/requests/rds/event_subscription_tests.rb
|
1356
|
+
- tests/requests/rds/helper.rb
|
1357
|
+
- tests/requests/rds/instance_option_tests.rb
|
1358
|
+
- tests/requests/rds/instance_tests.rb
|
1359
|
+
- tests/requests/rds/log_file_tests.rb
|
1360
|
+
- tests/requests/rds/parameter_group_tests.rb
|
1361
|
+
- tests/requests/rds/parameter_request_tests.rb
|
1362
|
+
- tests/requests/rds/security_group_tests.rb
|
1363
|
+
- tests/requests/rds/subnet_groups_tests.rb
|
1364
|
+
- tests/requests/rds/tagging_tests.rb
|
1365
|
+
- tests/requests/redshift/cluster_parameter_group_tests.rb
|
1366
|
+
- tests/requests/redshift/cluster_security_group_tests.rb
|
1367
|
+
- tests/requests/redshift/cluster_snapshot_tests.rb
|
1368
|
+
- tests/requests/redshift/cluster_tests.rb
|
1369
|
+
- tests/requests/ses/helper.rb
|
1370
|
+
- tests/requests/ses/verified_domain_identity_tests.rb
|
1371
|
+
- tests/requests/ses/verified_email_address_tests.rb
|
1372
|
+
- tests/requests/simpledb/attributes_tests.rb
|
1373
|
+
- tests/requests/simpledb/domain_tests.rb
|
1374
|
+
- tests/requests/simpledb/helper.rb
|
1375
|
+
- tests/requests/sns/helper.rb
|
1376
|
+
- tests/requests/sns/subscription_tests.rb
|
1377
|
+
- tests/requests/sns/topic_tests.rb
|
1378
|
+
- tests/requests/sqs/helper.rb
|
1379
|
+
- tests/requests/sqs/message_tests.rb
|
1380
|
+
- tests/requests/sqs/queue_tests.rb
|
1381
|
+
- tests/requests/storage/acl_utils_tests.rb
|
1382
|
+
- tests/requests/storage/bucket_tests.rb
|
1383
|
+
- tests/requests/storage/cors_utils_tests.rb
|
1384
|
+
- tests/requests/storage/delete_multiple_objects_tests.rb
|
1385
|
+
- tests/requests/storage/multipart_upload_tests.rb
|
1386
|
+
- tests/requests/storage/object_tests.rb
|
1387
|
+
- tests/requests/storage/versioning_tests.rb
|
1388
|
+
- tests/requests/sts/assume_role_tests.rb
|
1389
|
+
- tests/requests/sts/assume_role_with_saml_tests.rb
|
1390
|
+
- tests/requests/sts/get_federation_token_tests.rb
|
1391
|
+
- tests/requests/sts/session_token_tests.rb
|
1392
|
+
- tests/signaturev4_tests.rb
|
1393
|
+
- tests/signed_params_tests.rb
|
1394
|
+
- tests/storage_tests.rb
|
1395
|
+
homepage: http://github.com/fog/fog-aws
|
1396
|
+
licenses:
|
1397
|
+
- MIT
|
1398
|
+
metadata: {}
|
1399
|
+
post_install_message:
|
1400
|
+
rdoc_options: []
|
1401
|
+
require_paths:
|
1402
|
+
- lib
|
1403
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
1404
|
+
requirements:
|
1405
|
+
- - ">="
|
1406
|
+
- !ruby/object:Gem::Version
|
1407
|
+
version: '0'
|
1408
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
1409
|
+
requirements:
|
1410
|
+
- - ">="
|
1411
|
+
- !ruby/object:Gem::Version
|
1412
|
+
version: '0'
|
1413
|
+
requirements: []
|
1414
|
+
rubyforge_project:
|
1415
|
+
rubygems_version: 2.2.2
|
1416
|
+
signing_key:
|
1417
|
+
specification_version: 4
|
1418
|
+
summary: Module for the 'fog' gem to support Amazon Web Services.
|
1419
|
+
test_files: []
|
1420
|
+
has_rdoc:
|