aws_sdk 3.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/aws-sdk.rb +14 -0
- data/lib/aws.rb +49 -0
- data/lib/aws/api_config/AutoScaling-2011-01-01.yml +791 -0
- data/lib/aws/api_config/CloudFormation-2010-05-15.yml +303 -0
- data/lib/aws/api_config/DynamoDB-2011-12-05.yml +540 -0
- data/lib/aws/api_config/EC2-2011-12-15.yml +3638 -0
- data/lib/aws/api_config/EC2-2012-04-01.yml +3739 -0
- data/lib/aws/api_config/ELB-2011-08-15.yml +512 -0
- data/lib/aws/api_config/IAM-2010-05-08.yml +1221 -0
- data/lib/aws/api_config/SNS-2010-03-31.yml +248 -0
- data/lib/aws/api_config/SQS-2011-10-01.yml +314 -0
- data/lib/aws/api_config/STS-2011-06-15.yml +54 -0
- data/lib/aws/api_config/SimpleDB-2009-04-15.yml +305 -0
- data/lib/aws/api_config/SimpleEmailService-2010-12-01.yml +231 -0
- data/lib/aws/api_config/SimpleWorkflow-2012-01-25.yml +721 -0
- data/lib/aws/auto_scaling.rb +162 -0
- data/lib/aws/auto_scaling/activity.rb +102 -0
- data/lib/aws/auto_scaling/activity_collection.rb +82 -0
- data/lib/aws/auto_scaling/client.rb +765 -0
- data/lib/aws/auto_scaling/config.rb +18 -0
- data/lib/aws/auto_scaling/errors.rb +22 -0
- data/lib/aws/auto_scaling/group.rb +420 -0
- data/lib/aws/auto_scaling/group_collection.rb +96 -0
- data/lib/aws/auto_scaling/group_options.rb +146 -0
- data/lib/aws/auto_scaling/instance.rb +192 -0
- data/lib/aws/auto_scaling/instance_collection.rb +63 -0
- data/lib/aws/auto_scaling/launch_configuration.rb +150 -0
- data/lib/aws/auto_scaling/launch_configuration_collection.rb +144 -0
- data/lib/aws/auto_scaling/notification_configuration.rb +89 -0
- data/lib/aws/auto_scaling/notification_configuration_collection.rb +184 -0
- data/lib/aws/auto_scaling/request.rb +23 -0
- data/lib/aws/auto_scaling/scaling_policy.rb +125 -0
- data/lib/aws/auto_scaling/scaling_policy_collection.rb +72 -0
- data/lib/aws/auto_scaling/scaling_policy_options.rb +61 -0
- data/lib/aws/auto_scaling/scheduled_action.rb +145 -0
- data/lib/aws/auto_scaling/scheduled_action_collection.rb +195 -0
- data/lib/aws/auto_scaling/tag.rb +59 -0
- data/lib/aws/auto_scaling/tag_collection.rb +112 -0
- data/lib/aws/cloud_formation.rb +270 -0
- data/lib/aws/cloud_formation/client.rb +339 -0
- data/lib/aws/cloud_formation/config.rb +18 -0
- data/lib/aws/cloud_formation/errors.rb +22 -0
- data/lib/aws/cloud_formation/request.rb +29 -0
- data/lib/aws/cloud_formation/stack.rb +256 -0
- data/lib/aws/cloud_formation/stack_collection.rb +206 -0
- data/lib/aws/cloud_formation/stack_event.rb +75 -0
- data/lib/aws/cloud_formation/stack_event_collection.rb +47 -0
- data/lib/aws/cloud_formation/stack_options.rb +72 -0
- data/lib/aws/cloud_formation/stack_output.rb +53 -0
- data/lib/aws/cloud_formation/stack_resource.rb +117 -0
- data/lib/aws/cloud_formation/stack_resource_collection.rb +84 -0
- data/lib/aws/cloud_formation/stack_resource_summary_collection.rb +72 -0
- data/lib/aws/cloud_formation/stack_summary.rb +71 -0
- data/lib/aws/cloud_formation/stack_summary_collection.rb +127 -0
- data/lib/aws/core.rb +474 -0
- data/lib/aws/core/async_handle.rb +90 -0
- data/lib/aws/core/autoloader.rb +64 -0
- data/lib/aws/core/cacheable.rb +78 -0
- data/lib/aws/core/client.rb +541 -0
- data/lib/aws/core/client/query_json.rb +110 -0
- data/lib/aws/core/client/query_xml.rb +122 -0
- data/lib/aws/core/collection.rb +234 -0
- data/lib/aws/core/collection/limitable.rb +99 -0
- data/lib/aws/core/collection/simple.rb +90 -0
- data/lib/aws/core/configuration.rb +445 -0
- data/lib/aws/core/data.rb +242 -0
- data/lib/aws/core/default_signer.rb +67 -0
- data/lib/aws/core/http/curb_handler.rb +136 -0
- data/lib/aws/core/http/handler.rb +77 -0
- data/lib/aws/core/http/httparty_handler.rb +114 -0
- data/lib/aws/core/http/net_http_handler.rb +85 -0
- data/lib/aws/core/http/request.rb +250 -0
- data/lib/aws/core/http/response.rb +74 -0
- data/lib/aws/core/indifferent_hash.rb +88 -0
- data/lib/aws/core/inflection.rb +47 -0
- data/lib/aws/core/lazy_error_classes.rb +90 -0
- data/lib/aws/core/log_formatter.rb +454 -0
- data/lib/aws/core/meta_utils.rb +45 -0
- data/lib/aws/core/model.rb +57 -0
- data/lib/aws/core/naming.rb +30 -0
- data/lib/aws/core/option_grammar.rb +700 -0
- data/lib/aws/core/page_result.rb +73 -0
- data/lib/aws/core/policy.rb +916 -0
- data/lib/aws/core/resource.rb +408 -0
- data/lib/aws/core/resource_cache.rb +40 -0
- data/lib/aws/core/response.rb +202 -0
- data/lib/aws/core/response_cache.rb +50 -0
- data/lib/aws/core/service_interface.rb +61 -0
- data/lib/aws/core/session_signer.rb +90 -0
- data/lib/aws/core/signature/version_2.rb +42 -0
- data/lib/aws/core/signature/version_3.rb +73 -0
- data/lib/aws/core/signature/version_3_http.rb +72 -0
- data/lib/aws/core/signature/version_4.rb +138 -0
- data/lib/aws/core/uri_escape.rb +42 -0
- data/lib/aws/core/xml/frame.rb +242 -0
- data/lib/aws/core/xml/frame_stack.rb +85 -0
- data/lib/aws/core/xml/grammar.rb +299 -0
- data/lib/aws/core/xml/parser.rb +70 -0
- data/lib/aws/core/xml/root_frame.rb +65 -0
- data/lib/aws/core/xml/sax_handlers/libxml.rb +47 -0
- data/lib/aws/core/xml/sax_handlers/nokogiri.rb +55 -0
- data/lib/aws/core/xml/sax_handlers/ox.rb +41 -0
- data/lib/aws/core/xml/sax_handlers/rexml.rb +43 -0
- data/lib/aws/core/xml/stub.rb +123 -0
- data/lib/aws/dynamo_db.rb +213 -0
- data/lib/aws/dynamo_db/attribute_collection.rb +460 -0
- data/lib/aws/dynamo_db/batch_get.rb +206 -0
- data/lib/aws/dynamo_db/batch_write.rb +251 -0
- data/lib/aws/dynamo_db/client.rb +888 -0
- data/lib/aws/dynamo_db/config.rb +20 -0
- data/lib/aws/dynamo_db/errors.rb +20 -0
- data/lib/aws/dynamo_db/expectations.rb +40 -0
- data/lib/aws/dynamo_db/item.rb +130 -0
- data/lib/aws/dynamo_db/item_collection.rb +852 -0
- data/lib/aws/dynamo_db/item_data.rb +31 -0
- data/lib/aws/dynamo_db/keys.rb +41 -0
- data/lib/aws/dynamo_db/primary_key_element.rb +47 -0
- data/lib/aws/dynamo_db/request.rb +28 -0
- data/lib/aws/dynamo_db/resource.rb +33 -0
- data/lib/aws/dynamo_db/table.rb +489 -0
- data/lib/aws/dynamo_db/table_collection.rb +165 -0
- data/lib/aws/dynamo_db/types.rb +86 -0
- data/lib/aws/ec2.rb +431 -0
- data/lib/aws/ec2/attachment.rb +140 -0
- data/lib/aws/ec2/attachment_collection.rb +54 -0
- data/lib/aws/ec2/availability_zone.rb +87 -0
- data/lib/aws/ec2/availability_zone_collection.rb +43 -0
- data/lib/aws/ec2/block_device_mappings.rb +53 -0
- data/lib/aws/ec2/client.rb +4121 -0
- data/lib/aws/ec2/collection.rb +36 -0
- data/lib/aws/ec2/config.rb +18 -0
- data/lib/aws/ec2/config_transform.rb +63 -0
- data/lib/aws/ec2/customer_gateway.rb +90 -0
- data/lib/aws/ec2/customer_gateway_collection.rb +73 -0
- data/lib/aws/ec2/dhcp_options.rb +106 -0
- data/lib/aws/ec2/dhcp_options_collection.rb +87 -0
- data/lib/aws/ec2/elastic_ip.rb +157 -0
- data/lib/aws/ec2/elastic_ip_collection.rb +97 -0
- data/lib/aws/ec2/errors.rb +32 -0
- data/lib/aws/ec2/filtered_collection.rb +90 -0
- data/lib/aws/ec2/has_permissions.rb +44 -0
- data/lib/aws/ec2/image.rb +254 -0
- data/lib/aws/ec2/image_collection.rb +228 -0
- data/lib/aws/ec2/instance.rb +669 -0
- data/lib/aws/ec2/instance_collection.rb +346 -0
- data/lib/aws/ec2/internet_gateway.rb +122 -0
- data/lib/aws/ec2/internet_gateway/attachment.rb +78 -0
- data/lib/aws/ec2/internet_gateway_collection.rb +54 -0
- data/lib/aws/ec2/key_pair.rb +82 -0
- data/lib/aws/ec2/key_pair_collection.rb +99 -0
- data/lib/aws/ec2/network_acl.rb +256 -0
- data/lib/aws/ec2/network_acl/association.rb +56 -0
- data/lib/aws/ec2/network_acl/entry.rb +147 -0
- data/lib/aws/ec2/network_acl_collection.rb +64 -0
- data/lib/aws/ec2/network_interface.rb +228 -0
- data/lib/aws/ec2/network_interface/attachment.rb +100 -0
- data/lib/aws/ec2/network_interface_collection.rb +103 -0
- data/lib/aws/ec2/permission_collection.rb +174 -0
- data/lib/aws/ec2/region.rb +97 -0
- data/lib/aws/ec2/region_collection.rb +51 -0
- data/lib/aws/ec2/request.rb +22 -0
- data/lib/aws/ec2/reserved_instances.rb +53 -0
- data/lib/aws/ec2/reserved_instances_collection.rb +40 -0
- data/lib/aws/ec2/reserved_instances_offering.rb +58 -0
- data/lib/aws/ec2/reserved_instances_offering_collection.rb +39 -0
- data/lib/aws/ec2/resource.rb +161 -0
- data/lib/aws/ec2/resource_tag_collection.rb +211 -0
- data/lib/aws/ec2/route_table.rb +205 -0
- data/lib/aws/ec2/route_table/association.rb +119 -0
- data/lib/aws/ec2/route_table/route.rb +113 -0
- data/lib/aws/ec2/route_table_collection.rb +72 -0
- data/lib/aws/ec2/security_group.rb +458 -0
- data/lib/aws/ec2/security_group/egress_ip_permission_collection.rb +63 -0
- data/lib/aws/ec2/security_group/ingress_ip_permission_collection.rb +61 -0
- data/lib/aws/ec2/security_group/ip_permission.rb +128 -0
- data/lib/aws/ec2/security_group_collection.rb +135 -0
- data/lib/aws/ec2/snapshot.rb +143 -0
- data/lib/aws/ec2/snapshot_collection.rb +131 -0
- data/lib/aws/ec2/subnet.rb +161 -0
- data/lib/aws/ec2/subnet_collection.rb +115 -0
- data/lib/aws/ec2/tag.rb +81 -0
- data/lib/aws/ec2/tag_collection.rb +107 -0
- data/lib/aws/ec2/tagged_collection.rb +53 -0
- data/lib/aws/ec2/tagged_item.rb +85 -0
- data/lib/aws/ec2/volume.rb +170 -0
- data/lib/aws/ec2/volume_collection.rb +97 -0
- data/lib/aws/ec2/vpc.rb +166 -0
- data/lib/aws/ec2/vpc_collection.rb +70 -0
- data/lib/aws/ec2/vpn_connection.rb +99 -0
- data/lib/aws/ec2/vpn_connection/telemetry.rb +49 -0
- data/lib/aws/ec2/vpn_connection_collection.rb +96 -0
- data/lib/aws/ec2/vpn_gateway.rb +123 -0
- data/lib/aws/ec2/vpn_gateway/attachment.rb +45 -0
- data/lib/aws/ec2/vpn_gateway_collection.rb +77 -0
- data/lib/aws/elb.rb +65 -0
- data/lib/aws/elb/availability_zone_collection.rb +138 -0
- data/lib/aws/elb/backend_server_policy_collection.rb +140 -0
- data/lib/aws/elb/client.rb +539 -0
- data/lib/aws/elb/config.rb +18 -0
- data/lib/aws/elb/errors.rb +26 -0
- data/lib/aws/elb/instance_collection.rb +174 -0
- data/lib/aws/elb/listener.rb +189 -0
- data/lib/aws/elb/listener_collection.rb +119 -0
- data/lib/aws/elb/listener_opts.rb +45 -0
- data/lib/aws/elb/load_balancer.rb +253 -0
- data/lib/aws/elb/load_balancer_collection.rb +113 -0
- data/lib/aws/elb/load_balancer_policy.rb +93 -0
- data/lib/aws/elb/load_balancer_policy_collection.rb +208 -0
- data/lib/aws/elb/request.rb +23 -0
- data/lib/aws/errors.rb +122 -0
- data/lib/aws/iam.rb +418 -0
- data/lib/aws/iam/access_key.rb +180 -0
- data/lib/aws/iam/access_key_collection.rb +128 -0
- data/lib/aws/iam/account_alias_collection.rb +79 -0
- data/lib/aws/iam/client.rb +1609 -0
- data/lib/aws/iam/collection.rb +83 -0
- data/lib/aws/iam/config.rb +18 -0
- data/lib/aws/iam/errors.rb +22 -0
- data/lib/aws/iam/group.rb +111 -0
- data/lib/aws/iam/group_collection.rb +132 -0
- data/lib/aws/iam/group_policy_collection.rb +47 -0
- data/lib/aws/iam/group_user_collection.rb +84 -0
- data/lib/aws/iam/login_profile.rb +99 -0
- data/lib/aws/iam/mfa_device.rb +52 -0
- data/lib/aws/iam/mfa_device_collection.rb +127 -0
- data/lib/aws/iam/policy.rb +46 -0
- data/lib/aws/iam/policy_collection.rb +188 -0
- data/lib/aws/iam/request.rb +29 -0
- data/lib/aws/iam/resource.rb +71 -0
- data/lib/aws/iam/server_certificate.rb +141 -0
- data/lib/aws/iam/server_certificate_collection.rb +138 -0
- data/lib/aws/iam/signing_certificate.rb +169 -0
- data/lib/aws/iam/signing_certificate_collection.rb +131 -0
- data/lib/aws/iam/user.rb +205 -0
- data/lib/aws/iam/user_collection.rb +133 -0
- data/lib/aws/iam/user_group_collection.rb +98 -0
- data/lib/aws/iam/user_policy.rb +90 -0
- data/lib/aws/iam/user_policy_collection.rb +45 -0
- data/lib/aws/iam/virtual_mfa_device.rb +139 -0
- data/lib/aws/iam/virtual_mfa_device_collection.rb +73 -0
- data/lib/aws/rails.rb +195 -0
- data/lib/aws/record.rb +116 -0
- data/lib/aws/record/abstract_base.rb +645 -0
- data/lib/aws/record/attributes.rb +384 -0
- data/lib/aws/record/conversion.rb +38 -0
- data/lib/aws/record/dirty_tracking.rb +285 -0
- data/lib/aws/record/errors.rb +143 -0
- data/lib/aws/record/exceptions.rb +48 -0
- data/lib/aws/record/hash_model.rb +161 -0
- data/lib/aws/record/hash_model/attributes.rb +182 -0
- data/lib/aws/record/hash_model/finder_methods.rb +172 -0
- data/lib/aws/record/hash_model/scope.rb +108 -0
- data/lib/aws/record/model.rb +427 -0
- data/lib/aws/record/model/attributes.rb +379 -0
- data/lib/aws/record/model/finder_methods.rb +232 -0
- data/lib/aws/record/model/scope.rb +213 -0
- data/lib/aws/record/naming.rb +31 -0
- data/lib/aws/record/scope.rb +199 -0
- data/lib/aws/record/validations.rb +694 -0
- data/lib/aws/record/validator.rb +237 -0
- data/lib/aws/record/validators/acceptance.rb +51 -0
- data/lib/aws/record/validators/block.rb +38 -0
- data/lib/aws/record/validators/confirmation.rb +43 -0
- data/lib/aws/record/validators/count.rb +108 -0
- data/lib/aws/record/validators/exclusion.rb +43 -0
- data/lib/aws/record/validators/format.rb +57 -0
- data/lib/aws/record/validators/inclusion.rb +56 -0
- data/lib/aws/record/validators/length.rb +107 -0
- data/lib/aws/record/validators/method.rb +33 -0
- data/lib/aws/record/validators/numericality.rb +138 -0
- data/lib/aws/record/validators/presence.rb +45 -0
- data/lib/aws/s3.rb +135 -0
- data/lib/aws/s3/access_control_list.rb +250 -0
- data/lib/aws/s3/acl_object.rb +264 -0
- data/lib/aws/s3/bucket.rb +393 -0
- data/lib/aws/s3/bucket_collection.rb +143 -0
- data/lib/aws/s3/bucket_lifecycle_configuration.rb +360 -0
- data/lib/aws/s3/bucket_version_collection.rb +77 -0
- data/lib/aws/s3/client.rb +1184 -0
- data/lib/aws/s3/client/xml.rb +177 -0
- data/lib/aws/s3/config.rb +26 -0
- data/lib/aws/s3/data_options.rb +100 -0
- data/lib/aws/s3/errors.rb +81 -0
- data/lib/aws/s3/multipart_upload.rb +317 -0
- data/lib/aws/s3/multipart_upload_collection.rb +68 -0
- data/lib/aws/s3/object_collection.rb +337 -0
- data/lib/aws/s3/object_metadata.rb +96 -0
- data/lib/aws/s3/object_upload_collection.rb +77 -0
- data/lib/aws/s3/object_version.rb +143 -0
- data/lib/aws/s3/object_version_collection.rb +89 -0
- data/lib/aws/s3/paginated_collection.rb +75 -0
- data/lib/aws/s3/policy.rb +74 -0
- data/lib/aws/s3/prefix_and_delimiter_collection.rb +47 -0
- data/lib/aws/s3/prefixed_collection.rb +81 -0
- data/lib/aws/s3/presigned_post.rb +553 -0
- data/lib/aws/s3/request.rb +201 -0
- data/lib/aws/s3/s3_object.rb +1037 -0
- data/lib/aws/s3/tree.rb +118 -0
- data/lib/aws/s3/tree/branch_node.rb +68 -0
- data/lib/aws/s3/tree/child_collection.rb +104 -0
- data/lib/aws/s3/tree/leaf_node.rb +94 -0
- data/lib/aws/s3/tree/node.rb +22 -0
- data/lib/aws/s3/tree/parent.rb +87 -0
- data/lib/aws/s3/uploaded_part.rb +80 -0
- data/lib/aws/s3/uploaded_part_collection.rb +84 -0
- data/lib/aws/simple_db.rb +217 -0
- data/lib/aws/simple_db/attribute.rb +154 -0
- data/lib/aws/simple_db/attribute_collection.rb +231 -0
- data/lib/aws/simple_db/client.rb +349 -0
- data/lib/aws/simple_db/config.rb +20 -0
- data/lib/aws/simple_db/consistent_read_option.rb +42 -0
- data/lib/aws/simple_db/delete_attributes.rb +62 -0
- data/lib/aws/simple_db/domain.rb +121 -0
- data/lib/aws/simple_db/domain_collection.rb +113 -0
- data/lib/aws/simple_db/domain_metadata.rb +110 -0
- data/lib/aws/simple_db/errors.rb +55 -0
- data/lib/aws/simple_db/expect_condition_option.rb +45 -0
- data/lib/aws/simple_db/item.rb +93 -0
- data/lib/aws/simple_db/item_collection.rb +649 -0
- data/lib/aws/simple_db/item_data.rb +73 -0
- data/lib/aws/simple_db/put_attributes.rb +60 -0
- data/lib/aws/simple_db/request.rb +23 -0
- data/lib/aws/simple_email_service.rb +426 -0
- data/lib/aws/simple_email_service/client.rb +286 -0
- data/lib/aws/simple_email_service/config.rb +19 -0
- data/lib/aws/simple_email_service/email_address_collection.rb +69 -0
- data/lib/aws/simple_email_service/errors.rb +22 -0
- data/lib/aws/simple_email_service/identity.rb +91 -0
- data/lib/aws/simple_email_service/identity_collection.rb +81 -0
- data/lib/aws/simple_email_service/quotas.rb +64 -0
- data/lib/aws/simple_email_service/request.rb +29 -0
- data/lib/aws/simple_workflow.rb +226 -0
- data/lib/aws/simple_workflow/activity_task.rb +173 -0
- data/lib/aws/simple_workflow/activity_task_collection.rb +123 -0
- data/lib/aws/simple_workflow/activity_type.rb +131 -0
- data/lib/aws/simple_workflow/activity_type_collection.rb +93 -0
- data/lib/aws/simple_workflow/client.rb +1434 -0
- data/lib/aws/simple_workflow/config.rb +18 -0
- data/lib/aws/simple_workflow/count.rb +49 -0
- data/lib/aws/simple_workflow/decision_task.rb +601 -0
- data/lib/aws/simple_workflow/decision_task_collection.rb +225 -0
- data/lib/aws/simple_workflow/domain.rb +122 -0
- data/lib/aws/simple_workflow/domain_collection.rb +169 -0
- data/lib/aws/simple_workflow/errors.rb +20 -0
- data/lib/aws/simple_workflow/history_event.rb +276 -0
- data/lib/aws/simple_workflow/history_event_collection.rb +76 -0
- data/lib/aws/simple_workflow/option_formatters.rb +82 -0
- data/lib/aws/simple_workflow/request.rb +36 -0
- data/lib/aws/simple_workflow/resource.rb +94 -0
- data/lib/aws/simple_workflow/type.rb +89 -0
- data/lib/aws/simple_workflow/type_collection.rb +140 -0
- data/lib/aws/simple_workflow/workflow_execution.rb +386 -0
- data/lib/aws/simple_workflow/workflow_execution_collection.rb +617 -0
- data/lib/aws/simple_workflow/workflow_type.rb +177 -0
- data/lib/aws/simple_workflow/workflow_type_collection.rb +91 -0
- data/lib/aws/sns.rb +74 -0
- data/lib/aws/sns/client.rb +371 -0
- data/lib/aws/sns/config.rb +18 -0
- data/lib/aws/sns/errors.rb +22 -0
- data/lib/aws/sns/has_delivery_policy.rb +68 -0
- data/lib/aws/sns/policy.rb +47 -0
- data/lib/aws/sns/request.rb +23 -0
- data/lib/aws/sns/subscription.rb +144 -0
- data/lib/aws/sns/subscription_collection.rb +80 -0
- data/lib/aws/sns/topic.rb +403 -0
- data/lib/aws/sns/topic_collection.rb +67 -0
- data/lib/aws/sns/topic_subscription_collection.rb +55 -0
- data/lib/aws/sqs.rb +79 -0
- data/lib/aws/sqs/client.rb +360 -0
- data/lib/aws/sqs/config.rb +18 -0
- data/lib/aws/sqs/errors.rb +101 -0
- data/lib/aws/sqs/policy.rb +48 -0
- data/lib/aws/sqs/queue.rb +725 -0
- data/lib/aws/sqs/queue_collection.rb +170 -0
- data/lib/aws/sqs/received_message.rb +181 -0
- data/lib/aws/sqs/received_sns_message.rb +112 -0
- data/lib/aws/sqs/request.rb +43 -0
- data/lib/aws/sts.rb +152 -0
- data/lib/aws/sts/client.rb +105 -0
- data/lib/aws/sts/config.rb +18 -0
- data/lib/aws/sts/errors.rb +22 -0
- data/lib/aws/sts/federated_session.rb +56 -0
- data/lib/aws/sts/policy.rb +30 -0
- data/lib/aws/sts/request.rb +29 -0
- data/lib/aws/sts/session.rb +48 -0
- data/lib/net/http/connection_pool.rb +210 -0
- data/lib/net/http/connection_pool/connection.rb +132 -0
- data/lib/net/http/connection_pool/session.rb +93 -0
- data/lib/user.rb +49 -0
- metadata +433 -0
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# Copyright 2011-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
|
5
|
+
# the License is located at
|
|
6
|
+
#
|
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
|
8
|
+
#
|
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
|
12
|
+
# language governing permissions and limitations under the License.
|
|
13
|
+
|
|
14
|
+
module AWS
|
|
15
|
+
class CloudFormation
|
|
16
|
+
|
|
17
|
+
# = Stack Resource Summaries
|
|
18
|
+
#
|
|
19
|
+
# Stack summaries contain information about CloudFormation
|
|
20
|
+
# stack resources. You can enumerate these from a stack.
|
|
21
|
+
#
|
|
22
|
+
# stack = cfm.stacks['stack-name']
|
|
23
|
+
# stack.resource_summaries.each do |summary|
|
|
24
|
+
# puts "#{summary[:physical_resource_id]}: #{summary[:resource_status]}"
|
|
25
|
+
# end
|
|
26
|
+
#
|
|
27
|
+
# Each summary yielded is a hash with the following keys:
|
|
28
|
+
#
|
|
29
|
+
# * +:logical_resource_id+
|
|
30
|
+
# * +:physical_resource_id+
|
|
31
|
+
# * +:resource_type+
|
|
32
|
+
# * +:resource_status+
|
|
33
|
+
# * +:resource_status_reason+
|
|
34
|
+
# * +:last_updated_timestamp+
|
|
35
|
+
#
|
|
36
|
+
class StackResourceSummaryCollection
|
|
37
|
+
|
|
38
|
+
include Core::Collection::Simple
|
|
39
|
+
|
|
40
|
+
# @param [Stack] stack
|
|
41
|
+
# @param [Hash] options
|
|
42
|
+
def initialize stack, options = {}
|
|
43
|
+
@stack = stack
|
|
44
|
+
super
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
# @return [Stack]
|
|
48
|
+
attr_reader :stack
|
|
49
|
+
|
|
50
|
+
protected
|
|
51
|
+
|
|
52
|
+
def _each_item options = {}
|
|
53
|
+
next_token = nil
|
|
54
|
+
begin
|
|
55
|
+
|
|
56
|
+
options = {}
|
|
57
|
+
options[:next_token] = next_token if next_token
|
|
58
|
+
options[:stack_name] = stack.name
|
|
59
|
+
resp = client.list_stack_resources(options)
|
|
60
|
+
|
|
61
|
+
resp.stack_resource_summaries.each do |summary|
|
|
62
|
+
yield(summary.to_hash)
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
next_token = resp.data[:next_token]
|
|
66
|
+
|
|
67
|
+
end while next_token
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
end
|
|
71
|
+
end
|
|
72
|
+
end
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# Copyright 2011-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
|
5
|
+
# the License is located at
|
|
6
|
+
#
|
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
|
8
|
+
#
|
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
|
12
|
+
# language governing permissions and limitations under the License.
|
|
13
|
+
|
|
14
|
+
module AWS
|
|
15
|
+
class CloudFormation
|
|
16
|
+
|
|
17
|
+
# A stack summary contains some information about a stack. You
|
|
18
|
+
# can get summary information on any stack (including stacks
|
|
19
|
+
# deleted within the last 90 days).
|
|
20
|
+
#
|
|
21
|
+
# To get summary information, enumerate the summaries on an
|
|
22
|
+
# AWS::CloudFormation object:
|
|
23
|
+
#
|
|
24
|
+
# cf = AWS::CloudFormation.new
|
|
25
|
+
# cf.stack_summaries.each do |summary|
|
|
26
|
+
# puts "#{summary.stack_name} : #{summary.stack_status}"
|
|
27
|
+
# end
|
|
28
|
+
#
|
|
29
|
+
# You can get the full {Stack} object from a summary by calling
|
|
30
|
+
# {#stack}.
|
|
31
|
+
#
|
|
32
|
+
class StackSummary
|
|
33
|
+
|
|
34
|
+
# @private
|
|
35
|
+
def initialize stack, details
|
|
36
|
+
@stack = stack
|
|
37
|
+
details.each_pair do |attr_name,attr_value|
|
|
38
|
+
instance_variable_set("@#{attr_name}", attr_value)
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
# @return [Stack]
|
|
43
|
+
attr_reader :stack
|
|
44
|
+
|
|
45
|
+
# @return [Time]
|
|
46
|
+
attr_reader :creation_time
|
|
47
|
+
|
|
48
|
+
# @return [Time,nil]
|
|
49
|
+
attr_reader :last_updated_time
|
|
50
|
+
|
|
51
|
+
# @return [String]
|
|
52
|
+
attr_reader :stack_name
|
|
53
|
+
|
|
54
|
+
# @return [String]
|
|
55
|
+
attr_reader :stack_id
|
|
56
|
+
|
|
57
|
+
# @return [String]
|
|
58
|
+
attr_reader :stack_status
|
|
59
|
+
|
|
60
|
+
# @return [String]
|
|
61
|
+
attr_reader :stack_status_reason
|
|
62
|
+
|
|
63
|
+
# @return [Time,nil]
|
|
64
|
+
attr_reader :deletion_time
|
|
65
|
+
|
|
66
|
+
# @return [Strin]
|
|
67
|
+
attr_reader :template_description
|
|
68
|
+
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
end
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
# Copyright 2011-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
|
5
|
+
# the License is located at
|
|
6
|
+
#
|
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
|
8
|
+
#
|
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
|
12
|
+
# language governing permissions and limitations under the License.
|
|
13
|
+
|
|
14
|
+
module AWS
|
|
15
|
+
class CloudFormation
|
|
16
|
+
|
|
17
|
+
# = Stack Summaries
|
|
18
|
+
#
|
|
19
|
+
# Stack summaries contain information about CloudFormation
|
|
20
|
+
# stacks. You can filter the stacks you want summary information
|
|
21
|
+
# for by one or more statuses. You can even get information
|
|
22
|
+
# about deleted stacks for up to 90 days.
|
|
23
|
+
#
|
|
24
|
+
# == Enumerating Stack Summaries
|
|
25
|
+
#
|
|
26
|
+
# You can enumerate all available summaries using enumerable
|
|
27
|
+
# methods. Yielded summaries are simple hashes.
|
|
28
|
+
#
|
|
29
|
+
# cfm = AWS::CloudFormation.new
|
|
30
|
+
# cfm.stack_summaries.each do |summary|
|
|
31
|
+
# puts summary.to_yaml
|
|
32
|
+
# end
|
|
33
|
+
#
|
|
34
|
+
# == Filtering Stack Summaries
|
|
35
|
+
#
|
|
36
|
+
# You can optionally provide one or more stack stasus values
|
|
37
|
+
# to filter the results by. Only stacks with the given status(es)
|
|
38
|
+
# will be enumerated.
|
|
39
|
+
#
|
|
40
|
+
# cfm.stack_summaries.with_status(:create_failed).each do |summary|
|
|
41
|
+
# # ...
|
|
42
|
+
# end
|
|
43
|
+
#
|
|
44
|
+
# # enumerate stacks with various delete statuses
|
|
45
|
+
# statuses = %w(delete_in_progress delete_failed delete_complete)
|
|
46
|
+
# cf.stack_summaries.with_status(statuses).each do |summary|
|
|
47
|
+
# # ...
|
|
48
|
+
# end
|
|
49
|
+
#
|
|
50
|
+
class StackSummaryCollection
|
|
51
|
+
|
|
52
|
+
include Core::Collection::Simple
|
|
53
|
+
|
|
54
|
+
# @private
|
|
55
|
+
def initialize options = {}
|
|
56
|
+
@filters = options[:filters]
|
|
57
|
+
super
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
# Limits the stacks summaries that are enumerated.
|
|
61
|
+
#
|
|
62
|
+
# cfm.stack_summaries.with_status(:create_complete).each do |summary|
|
|
63
|
+
# puts summary[:stack_name]
|
|
64
|
+
# end
|
|
65
|
+
#
|
|
66
|
+
# You can provide multiple statuses:
|
|
67
|
+
#
|
|
68
|
+
# statuses = [:create_failed, :rollback_failed]
|
|
69
|
+
# cfm.stack_summaries.with_status(statuses).each do |summary|
|
|
70
|
+
# puts summary[:stack_name]
|
|
71
|
+
# end
|
|
72
|
+
#
|
|
73
|
+
# Status names may be symbolized (snake-cased) or upper-cased strings
|
|
74
|
+
# (e.g. :create_in_progress, 'CREATE_IN_PROGRESS').
|
|
75
|
+
#
|
|
76
|
+
# @param [Symbol,String] status_filters One or more statuses to filter
|
|
77
|
+
# stacks with. Valid values include:
|
|
78
|
+
# * +:create_in_progress+
|
|
79
|
+
# * +:create_failed+
|
|
80
|
+
# * +:create_complete+
|
|
81
|
+
# * +:rollback_in_progress+
|
|
82
|
+
# * +:rollback_failed+
|
|
83
|
+
# * +:rollback_complete+
|
|
84
|
+
# * +:delete_in_progress+
|
|
85
|
+
# * +:delete_failed+
|
|
86
|
+
# * +:delete_complete+
|
|
87
|
+
# * +:update_in_progress+
|
|
88
|
+
# * +:update_complete_cleanup_in_progress+
|
|
89
|
+
# * +:update_complete+
|
|
90
|
+
# * +:update_rollback_in_progress+
|
|
91
|
+
# * +:update_rollback_failed+
|
|
92
|
+
# * +:update_rollback_complete_cleanup_in_progress+
|
|
93
|
+
# * +:update_rollback_complete+
|
|
94
|
+
#
|
|
95
|
+
# @return [StackSummaryCollection] Returns a new stack summary
|
|
96
|
+
# collection that restricts what stack summariess will be
|
|
97
|
+
# enumerated.
|
|
98
|
+
#
|
|
99
|
+
def with_status *status_filters
|
|
100
|
+
StackSummaryCollection.new(
|
|
101
|
+
:filters => status_filters.flatten.map(&:to_s).map(&:upcase),
|
|
102
|
+
:config => config)
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
protected
|
|
106
|
+
|
|
107
|
+
def _each_item options = {}
|
|
108
|
+
next_token = nil
|
|
109
|
+
begin
|
|
110
|
+
|
|
111
|
+
client_opts = {}
|
|
112
|
+
client_opts[:next_token] = next_token if next_token
|
|
113
|
+
client_opts[:stack_status_filter] = @filters if @filters
|
|
114
|
+
resp = client.list_stacks(client_opts)
|
|
115
|
+
|
|
116
|
+
resp.stack_summaries.each do |summary|
|
|
117
|
+
yield(summary.to_hash)
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
next_token = resp.data[:next_token]
|
|
121
|
+
|
|
122
|
+
end while next_token
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
end
|
|
126
|
+
end
|
|
127
|
+
end
|
data/lib/aws/core.rb
ADDED
|
@@ -0,0 +1,474 @@
|
|
|
1
|
+
# Copyright 2011-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
|
5
|
+
# the License is located at
|
|
6
|
+
#
|
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
|
8
|
+
#
|
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
|
12
|
+
# language governing permissions and limitations under the License.
|
|
13
|
+
|
|
14
|
+
require 'aws/core/autoloader'
|
|
15
|
+
|
|
16
|
+
# AWS is the root module for all of the Amazon Web Services. It is also
|
|
17
|
+
# where you can configure you access to AWS.
|
|
18
|
+
#
|
|
19
|
+
# = Supported Services
|
|
20
|
+
#
|
|
21
|
+
# The currently supported services are:
|
|
22
|
+
#
|
|
23
|
+
# * {AWS::AutoScaling}
|
|
24
|
+
# * {AWS::CloudFormation}
|
|
25
|
+
# * {AWS::DynamoDB}
|
|
26
|
+
# * {AWS::EC2}
|
|
27
|
+
# * {AWS::ELB}
|
|
28
|
+
# * {AWS::IAM}
|
|
29
|
+
# * {AWS::S3}
|
|
30
|
+
# * {AWS::SNS}
|
|
31
|
+
# * {AWS::SQS}
|
|
32
|
+
# * {AWS::STS}
|
|
33
|
+
# * {AWS::SimpleDB}
|
|
34
|
+
# * {AWS::SimpleEmailService}
|
|
35
|
+
# * {AWS::SimpleWorkflow}
|
|
36
|
+
#
|
|
37
|
+
# = AWS::Record
|
|
38
|
+
#
|
|
39
|
+
# In addition to the above services, bundled is an ORM based on AWS services
|
|
40
|
+
# See {AWS::Record} for more information.
|
|
41
|
+
#
|
|
42
|
+
# = Configuration
|
|
43
|
+
#
|
|
44
|
+
# You call {AWS.config} with a hash of options to configure your
|
|
45
|
+
# access to the Amazon Web Services.
|
|
46
|
+
#
|
|
47
|
+
# At a minimum you need to set your access credentials. See {AWS.config}
|
|
48
|
+
# for additional configuration options.
|
|
49
|
+
#
|
|
50
|
+
# AWS.config(
|
|
51
|
+
# :access_key_id => 'ACCESS_KEY_ID',
|
|
52
|
+
# :secret_access_key => 'SECRET_ACCESS_KEY')
|
|
53
|
+
#
|
|
54
|
+
# == Rails
|
|
55
|
+
#
|
|
56
|
+
# If you are loading AWS inside a Rails web application, it is recomended to
|
|
57
|
+
# place your configuration inside:
|
|
58
|
+
#
|
|
59
|
+
# config/initializers/aws.rb
|
|
60
|
+
#
|
|
61
|
+
module AWS
|
|
62
|
+
|
|
63
|
+
# Current version of the AWS SDK for Ruby
|
|
64
|
+
VERSION = "1.5.2"
|
|
65
|
+
|
|
66
|
+
register_autoloads(self) do
|
|
67
|
+
autoload :Errors, 'errors'
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
module Core
|
|
71
|
+
|
|
72
|
+
AWS.register_autoloads(self) do
|
|
73
|
+
autoload :AsyncHandle, 'async_handle'
|
|
74
|
+
autoload :Cacheable, 'cacheable'
|
|
75
|
+
autoload :Client, 'client'
|
|
76
|
+
autoload :Collection, 'collection'
|
|
77
|
+
autoload :Configuration, 'configuration'
|
|
78
|
+
autoload :Data, 'data'
|
|
79
|
+
autoload :DefaultSigner, 'default_signer'
|
|
80
|
+
autoload :IndifferentHash, 'indifferent_hash'
|
|
81
|
+
autoload :Inflection, 'inflection'
|
|
82
|
+
autoload :LazyErrorClasses, 'lazy_error_classes'
|
|
83
|
+
autoload :LogFormatter, 'log_formatter'
|
|
84
|
+
autoload :MetaUtils, 'meta_utils'
|
|
85
|
+
autoload :Model, 'model'
|
|
86
|
+
autoload :Naming, 'naming'
|
|
87
|
+
autoload :OptionGrammar, 'option_grammar'
|
|
88
|
+
autoload :PageResult, 'page_result'
|
|
89
|
+
autoload :Policy, 'policy'
|
|
90
|
+
autoload :Resource, 'resource'
|
|
91
|
+
autoload :ResourceCache, 'resource_cache'
|
|
92
|
+
autoload :Response, 'response'
|
|
93
|
+
autoload :ResponseCache, 'response_cache'
|
|
94
|
+
autoload :ServiceInterface, 'service_interface'
|
|
95
|
+
autoload :SessionSigner, 'session_signer'
|
|
96
|
+
autoload :UriEscape, 'uri_escape'
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
module Signature
|
|
100
|
+
AWS.register_autoloads(self) do
|
|
101
|
+
autoload :Version2, 'version_2'
|
|
102
|
+
autoload :Version3, 'version_3'
|
|
103
|
+
autoload :Version4, 'version_4'
|
|
104
|
+
end
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
module XML
|
|
108
|
+
AWS.register_autoloads(self) do
|
|
109
|
+
autoload :Parser, 'parser'
|
|
110
|
+
autoload :Grammar, 'grammar'
|
|
111
|
+
autoload :Stub, 'stub'
|
|
112
|
+
autoload :Frame, 'frame'
|
|
113
|
+
autoload :RootFrame, 'root_frame'
|
|
114
|
+
autoload :FrameStack, 'frame_stack'
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
module SaxHandlers
|
|
118
|
+
AWS.register_autoloads(self, 'aws/core/xml/sax_handlers') do
|
|
119
|
+
autoload :Nokogiri, 'nokogiri'
|
|
120
|
+
autoload :REXML, 'rexml'
|
|
121
|
+
end
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
module Http
|
|
127
|
+
AWS.register_autoloads(self) do
|
|
128
|
+
autoload :Handler, 'handler'
|
|
129
|
+
autoload :NetHttpHandler, 'net_http_handler'
|
|
130
|
+
autoload :HTTPartyHandler, 'httparty_handler' # non-standard inflection
|
|
131
|
+
autoload :Request, 'request'
|
|
132
|
+
autoload :Response, 'response'
|
|
133
|
+
end
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
end
|
|
137
|
+
|
|
138
|
+
# the http party handler should still be accessible from its old namespace
|
|
139
|
+
module Http
|
|
140
|
+
AWS.register_autoloads(self, 'aws/core/http') do
|
|
141
|
+
autoload :HTTPartyHandler, 'httparty_handler'
|
|
142
|
+
end
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
class << self
|
|
146
|
+
|
|
147
|
+
# @private
|
|
148
|
+
@@config = nil
|
|
149
|
+
|
|
150
|
+
# The global configuration for AWS. Generally you set your prefered
|
|
151
|
+
# configuration operations once after loading the aws-sdk gem.
|
|
152
|
+
#
|
|
153
|
+
# AWS.config({
|
|
154
|
+
# :access_key_id => 'ACCESS_KEY_ID',
|
|
155
|
+
# :secret_access_key => 'SECRET_ACCESS_KEY',
|
|
156
|
+
# :simple_db_endpoint => 'sdb.us-west-1.amazonaws.com',
|
|
157
|
+
# :max_retries => 2,
|
|
158
|
+
# })
|
|
159
|
+
#
|
|
160
|
+
# When using AWS classes they will always default to use configuration
|
|
161
|
+
# values defined in {AWS.config}.
|
|
162
|
+
#
|
|
163
|
+
# AWS.config(:max_retries => 2)
|
|
164
|
+
#
|
|
165
|
+
# sqs = AWS::SQS.new
|
|
166
|
+
# sqs.config.max_retries #=> 2
|
|
167
|
+
#
|
|
168
|
+
# If you want to change a configuration value for a single instance you
|
|
169
|
+
# pass the new configuration value to that object's initializer:
|
|
170
|
+
#
|
|
171
|
+
# AWS::SQS.new(:max_retries => 0)
|
|
172
|
+
#
|
|
173
|
+
# @note Changing the global configuration does not affect objects
|
|
174
|
+
# that have already been constructed.
|
|
175
|
+
#
|
|
176
|
+
# @param [Hash] options
|
|
177
|
+
#
|
|
178
|
+
# @option options [String] :access_key_id (nil) AWS access key id
|
|
179
|
+
# credential.
|
|
180
|
+
#
|
|
181
|
+
# @option options [String] :secret_access_key (nil) AWS secret access
|
|
182
|
+
# key credential.
|
|
183
|
+
#
|
|
184
|
+
# @option options [String,nil] :session_token (nil) AWS secret token
|
|
185
|
+
# credential.
|
|
186
|
+
#
|
|
187
|
+
# @option options [String] :auto_scaling_endpoint ('autoscaling.us-east-1.amazonaws.com')
|
|
188
|
+
# The service endpoint for Auto Scaling.
|
|
189
|
+
#
|
|
190
|
+
# @option options [String] :cloud_formation_endpoint ('cloudformation.us-east-1.amazonaws.com')
|
|
191
|
+
# The service endpoint for AWS CloudFormation.
|
|
192
|
+
#
|
|
193
|
+
# @option options [String] :dynamo_db_endpoint ('dynamodb.amazonaws.com')
|
|
194
|
+
# The service endpoint for Amazon DynamoDB.
|
|
195
|
+
#
|
|
196
|
+
# @option options [String] :dynamo_db_retry_throughput_errors (true) When
|
|
197
|
+
# true, AWS::DynamoDB::Errors::ProvisionedThroughputExceededException
|
|
198
|
+
# errors will be retried.
|
|
199
|
+
#
|
|
200
|
+
# @option options [String] :ec2_endpoint ('ec2.amazonaws.com') The
|
|
201
|
+
# service endpoint for Amazon EC2.
|
|
202
|
+
#
|
|
203
|
+
# @option options [String] :elb_endpoint ('elasticloadbalancing.us-east-1.amazonaws.com')
|
|
204
|
+
# The server endpoint for Elastic Load Balancing.
|
|
205
|
+
#
|
|
206
|
+
# @option options [Object] :http_handler (AWS::HTTPartyHandler) The
|
|
207
|
+
# http handler that sends requests to AWS.
|
|
208
|
+
#
|
|
209
|
+
# @option options [String] :iam_endpoint ('iam.amazonaws.com') The
|
|
210
|
+
# service endpoint for AWS Idenity Access Management (IAM).
|
|
211
|
+
#
|
|
212
|
+
# @option options [Logger,nil] :logger (nil) A logger to send
|
|
213
|
+
# log messages to. Here is an example that logs to standard out.
|
|
214
|
+
#
|
|
215
|
+
# require 'logger'
|
|
216
|
+
# AWS.config(:logger => Logger.new($stdout))
|
|
217
|
+
#
|
|
218
|
+
# @option options [Symbol] :log_level (:info) The level log messages are
|
|
219
|
+
# sent to the logger with (e.g. +:notice+, +:info+, +:warn+,
|
|
220
|
+
# +:debug+, etc).
|
|
221
|
+
#
|
|
222
|
+
# @option options [Object] :log_formatter The log formatter is responsible
|
|
223
|
+
# for building log messages from responses. You can quickly change
|
|
224
|
+
# log formats by providing a canned log formatter.
|
|
225
|
+
#
|
|
226
|
+
# AWS.config(:log_formatter => AWS::Core::LogFormatter.colored)
|
|
227
|
+
#
|
|
228
|
+
# Here is the complete list of canned log formatters:
|
|
229
|
+
#
|
|
230
|
+
# * +AWS::Core::LogFormatter.default+
|
|
231
|
+
# * +AWS::Core::LogFormatter.short+
|
|
232
|
+
# * +AWS::Core::LogFormatter.debug+
|
|
233
|
+
# * +AWS::Core::LogFormatter.colored+
|
|
234
|
+
#
|
|
235
|
+
# You can also create an instance of AWS::Core::LogFormatter
|
|
236
|
+
# with a custom log message pattern. See {Core::LogFormatter} for
|
|
237
|
+
# a complete list of pattern substituions.
|
|
238
|
+
#
|
|
239
|
+
# pattern = "[AWS :operation :duration] :error_message"
|
|
240
|
+
# AWS.config(:log_formatter => AWS::Core::LogFormatter.new(pattern))
|
|
241
|
+
#
|
|
242
|
+
# Lastly you can pass any object that responds to +#format+ accepting
|
|
243
|
+
# and instance of {Core::Response} and returns a string.
|
|
244
|
+
#
|
|
245
|
+
# @option options [Integer] :max_retries (3) The maximum number of times
|
|
246
|
+
# service errors (500) should be retried. There is an exponential
|
|
247
|
+
# backoff in between service request retries, so the more retries the
|
|
248
|
+
# longer it can take to fail.
|
|
249
|
+
#
|
|
250
|
+
# @option options [String, URI, nil] :proxy_uri (nil) The URI of the proxy
|
|
251
|
+
# to send service requests through. You can pass a URI object or a
|
|
252
|
+
# URI string:
|
|
253
|
+
#
|
|
254
|
+
# AWS.config(:proxy_uri => 'https://user:password@my.proxy:443/path?query')
|
|
255
|
+
#
|
|
256
|
+
# @option options [String] :s3_endpoint ('s3.amazonaws.com') The
|
|
257
|
+
# service endpoint for Amazon S3.
|
|
258
|
+
#
|
|
259
|
+
# @option options [Integer] :s3_multipart_max_parts (1000) The maximum
|
|
260
|
+
# number of parts to split a file into when uploading in parts to S3.
|
|
261
|
+
#
|
|
262
|
+
# @option options [Integer] :s3_multipart_threshold (16777216) When
|
|
263
|
+
# uploading data to S3, if the number of bytes to send exceedes
|
|
264
|
+
# +:s3_multipart_threshold+ then a multi part session is automatically
|
|
265
|
+
# started and the data is sent up in chunks. The size of each part
|
|
266
|
+
# is specified by +:s3_multipart_min_part_size+. Defaults to
|
|
267
|
+
# 16777216 (16MB).
|
|
268
|
+
#
|
|
269
|
+
# @option options [Integer] :s3_multipart_min_part_size (5242880) The
|
|
270
|
+
# absolute minimum size (in bytes) each S3 multipart segment should be.
|
|
271
|
+
# Defaults to 5242880 (5MB).
|
|
272
|
+
#
|
|
273
|
+
# @option options [Symbol] :s3_server_side_encryption (nil) The
|
|
274
|
+
# algorithm to use when encrypting object data on the server
|
|
275
|
+
# side. The only valid value is +:aes256+, which specifies that
|
|
276
|
+
# the object should be stored using the AES encryption algorithm
|
|
277
|
+
# with 256 bit keys. Defaults to +nil+, meaning server side
|
|
278
|
+
# encryption is not used unless specified on each individual
|
|
279
|
+
# call to upload an object. This option controls the default
|
|
280
|
+
# behavior for the following methods:
|
|
281
|
+
#
|
|
282
|
+
# * {S3::S3Object#write}
|
|
283
|
+
# * {S3::S3Object#multipart_upload}
|
|
284
|
+
# * {S3::S3Object#copy_from} and {S3::S3Object#copy_to}
|
|
285
|
+
# * {S3::S3Object#presigned_post}
|
|
286
|
+
# * {S3::Bucket#presigned_post}
|
|
287
|
+
#
|
|
288
|
+
# @option options [String] :simple_db_endpoint ('sdb.amazonaws.com') The
|
|
289
|
+
# service endpoint for Amazon SimpleDB.
|
|
290
|
+
#
|
|
291
|
+
# @option options [Boolean] :simple_db_consistent_reads (false) Determines
|
|
292
|
+
# if all SimpleDB read requests should be done consistently.
|
|
293
|
+
# Consistent reads are slower, but reflect all changes to SDB.
|
|
294
|
+
#
|
|
295
|
+
# @option options [String] :simple_email_service_endpoint ('email.us-east-1.amazonaws.com')
|
|
296
|
+
# The service endpoint for Amazon Simple Email Service.
|
|
297
|
+
#
|
|
298
|
+
# @option options [String] :simple_workflow_service ('swf.us-east-1.amazonaws.com')
|
|
299
|
+
# The service endpoint for Amazon Simple Workflow Service.
|
|
300
|
+
#
|
|
301
|
+
# @option options [Object] :signer (AWS::DefaultSigner) The request signer. Defaults to
|
|
302
|
+
# a default request signer implementation.
|
|
303
|
+
#
|
|
304
|
+
# @option options [String] :ssl_ca_file The path to a CA cert bundle in
|
|
305
|
+
# PEM format.
|
|
306
|
+
#
|
|
307
|
+
# If +:ssl_verify_peer+ is +true+ (the default) this bundle will be
|
|
308
|
+
# used to validate the server certificate in each HTTPS request.
|
|
309
|
+
# The AWS SDK for Ruby ships with a CA cert bundle, which is the
|
|
310
|
+
# default value for this option.
|
|
311
|
+
#
|
|
312
|
+
# @option options [String] :ssl_ca_path (nil)
|
|
313
|
+
# The path the a CA cert directory.
|
|
314
|
+
#
|
|
315
|
+
# @option options [Boolean] :ssl_verify_peer (true) When +true+
|
|
316
|
+
# the HTTP handler validate server certificates for HTTPS requests.
|
|
317
|
+
#
|
|
318
|
+
# This option should only be disabled for diagnostic purposes;
|
|
319
|
+
# leaving this option set to +false+ exposes your application to
|
|
320
|
+
# man-in-the-middle attacks and can pose a serious security
|
|
321
|
+
# risk.
|
|
322
|
+
#
|
|
323
|
+
# @option options[Boolean] :stub_requests (false) When +true+ requests
|
|
324
|
+
# are not sent to AWS, instead empty reponses are generated and
|
|
325
|
+
# returned to each service request.
|
|
326
|
+
#
|
|
327
|
+
# @option options [String] :sns_endpoint ('sns.us-east-1.amazonaws.com') The
|
|
328
|
+
# service endpoint for Amazon SNS.
|
|
329
|
+
#
|
|
330
|
+
# @option options [String] :sqs_endpoint ('sqs.us-east-1.amazonaws.com') The
|
|
331
|
+
# service endpoint for Amazon SQS.
|
|
332
|
+
#
|
|
333
|
+
# @option options [String] :sts_endpoint ('sts.amazonaws.com') The
|
|
334
|
+
# service endpoint for AWS Security Token Service.
|
|
335
|
+
#
|
|
336
|
+
# @option options [Boolean] :use_ssl (true) When +true+, all requests
|
|
337
|
+
# to AWS are sent using HTTPS instead vanilla HTTP.
|
|
338
|
+
#
|
|
339
|
+
# @option options [String] :user_agent_prefix (nil) A string prefix to
|
|
340
|
+
# append to all requets against AWS services. This should be set
|
|
341
|
+
# for clients and applications built ontop of the aws-sdk gem.
|
|
342
|
+
#
|
|
343
|
+
# @return [Core::Configuration] Returns the new configuration.
|
|
344
|
+
#
|
|
345
|
+
def config options = {}
|
|
346
|
+
@@config ||= Core::Configuration.new
|
|
347
|
+
@@config = @@config.with(options) unless options.empty?
|
|
348
|
+
@@config
|
|
349
|
+
end
|
|
350
|
+
|
|
351
|
+
# @note Memoization is currently only supported for the EC2 APIs;
|
|
352
|
+
# other APIs are unaffected by the status of memoization. To
|
|
353
|
+
# protect your code from future changes in memoization support,
|
|
354
|
+
# you should not enable memoization while calling non-EC2 APIs.
|
|
355
|
+
#
|
|
356
|
+
# Starts memoizing service requests made in the current thread.
|
|
357
|
+
# See {memoize} for a full discussion of the memoization feature.
|
|
358
|
+
# This has no effect if memoization is already enabled.
|
|
359
|
+
def start_memoizing
|
|
360
|
+
Thread.current[:aws_memoization] ||= {}
|
|
361
|
+
nil
|
|
362
|
+
end
|
|
363
|
+
|
|
364
|
+
# @note Memoization is currently only supported for the EC2 APIs;
|
|
365
|
+
# other APIs are unaffected by the status of memoization. To
|
|
366
|
+
# protect your code from future changes in memoization support,
|
|
367
|
+
# you should not enable memoization while calling non-EC2 APIs.
|
|
368
|
+
#
|
|
369
|
+
# Stops memoizing service requests made in the current thread.
|
|
370
|
+
# See {memoize} for a full discussion of the memoization feature.
|
|
371
|
+
# This has no effect if memoization is already disabled.
|
|
372
|
+
def stop_memoizing
|
|
373
|
+
Thread.current[:aws_memoization] = nil
|
|
374
|
+
end
|
|
375
|
+
|
|
376
|
+
# @note Memoization is currently only supported for the EC2 APIs;
|
|
377
|
+
# other APIs are unaffected by the status of memoization. To
|
|
378
|
+
# protect your code from future changes in memoization support,
|
|
379
|
+
# you should not enable memoization while calling non-EC2 APIs.
|
|
380
|
+
#
|
|
381
|
+
# @return [Boolean] True if memoization is enabled for the current
|
|
382
|
+
# thread. See {memoize} for a full discussion of the
|
|
383
|
+
# memoization feature.
|
|
384
|
+
def memoizing?
|
|
385
|
+
!Thread.current[:aws_memoization].nil?
|
|
386
|
+
end
|
|
387
|
+
|
|
388
|
+
# @note Memoization is currently only supported for the EC2 APIs;
|
|
389
|
+
# other APIs are unaffected by the status of memoization. To
|
|
390
|
+
# protect your code from future changes in memoization support,
|
|
391
|
+
# you should not enable memoization while calling non-EC2 APIs.
|
|
392
|
+
#
|
|
393
|
+
# Enables memoization for the current thread, within a block.
|
|
394
|
+
# Memoization lets you avoid making multiple requests for the same
|
|
395
|
+
# data by reusing the responses which have already been received.
|
|
396
|
+
# For example, consider the following code to get the most
|
|
397
|
+
# recently launched EC2 instance:
|
|
398
|
+
#
|
|
399
|
+
# latest = ec2.instances.sort_by(&:launch_time).last
|
|
400
|
+
#
|
|
401
|
+
# The above code would make N+1 requests (where N is the number of
|
|
402
|
+
# instances in the account); iterating the collection of instances
|
|
403
|
+
# is one request, and +Enumerable#sort_by+ calls
|
|
404
|
+
# {AWS::EC2::Instance#launch_time} for each instance, causing
|
|
405
|
+
# another request per instance. We can rewrite the code as
|
|
406
|
+
# follows to make only one request:
|
|
407
|
+
#
|
|
408
|
+
# latest = AWS.memoize do
|
|
409
|
+
# ec2.instances.sort_by(&:launch_time).last
|
|
410
|
+
# end
|
|
411
|
+
#
|
|
412
|
+
# Iterating the collection still causes a request, but each
|
|
413
|
+
# subsequent call to {AWS::EC2::Instance#launch_time} uses the
|
|
414
|
+
# results from that first request rather than making a new request
|
|
415
|
+
# for the same data.
|
|
416
|
+
#
|
|
417
|
+
# While memoization is enabled, every response that is received
|
|
418
|
+
# from the service is retained in memory. Therefore you should
|
|
419
|
+
# use memoization only for short-lived blocks of code that make
|
|
420
|
+
# relatively small numbers of requests. The cached responses are
|
|
421
|
+
# used in two ways while memoization is enabled:
|
|
422
|
+
#
|
|
423
|
+
# 1. Before making a request, the SDK checks the cache for a
|
|
424
|
+
# response to a request with the same signature (credentials,
|
|
425
|
+
# service endpoint, operation name, and parameters). If such a
|
|
426
|
+
# response is found, it is used instead of making a new
|
|
427
|
+
# request.
|
|
428
|
+
#
|
|
429
|
+
# 2. Before retrieving data for an attribute of a resource
|
|
430
|
+
# (e.g. {AWS::EC2::Instance#launch_time}), the SDK attempts to
|
|
431
|
+
# find a cached response that contains the requested data. If
|
|
432
|
+
# such a response is found, the cached data is returned instead
|
|
433
|
+
# of making a new request.
|
|
434
|
+
#
|
|
435
|
+
# When memoization is disabled, all previously cached responses
|
|
436
|
+
# are discarded.
|
|
437
|
+
def memoize
|
|
438
|
+
return yield if memoizing?
|
|
439
|
+
|
|
440
|
+
begin
|
|
441
|
+
start_memoizing
|
|
442
|
+
yield if block_given?
|
|
443
|
+
ensure
|
|
444
|
+
stop_memoizing
|
|
445
|
+
end
|
|
446
|
+
end
|
|
447
|
+
|
|
448
|
+
# @private
|
|
449
|
+
def resource_cache
|
|
450
|
+
if memoizing?
|
|
451
|
+
Thread.current[:aws_memoization][:resource_cache] ||=
|
|
452
|
+
Core::ResourceCache.new
|
|
453
|
+
end
|
|
454
|
+
end
|
|
455
|
+
|
|
456
|
+
# @private
|
|
457
|
+
def response_cache
|
|
458
|
+
if memoizing?
|
|
459
|
+
Thread.current[:aws_memoization][:response_cache] ||=
|
|
460
|
+
Core::ResponseCache.new
|
|
461
|
+
end
|
|
462
|
+
end
|
|
463
|
+
|
|
464
|
+
# Causes all requests to return empty responses without making any
|
|
465
|
+
# requests against the live services. This does not attempt to
|
|
466
|
+
# mock the services.
|
|
467
|
+
# @return [nil]
|
|
468
|
+
def stub!
|
|
469
|
+
config(:stub_requests => true)
|
|
470
|
+
nil
|
|
471
|
+
end
|
|
472
|
+
|
|
473
|
+
end
|
|
474
|
+
end
|