aws-sdk 1.6.9 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +1 -1
- data/lib/aws.rb +8 -0
- data/lib/aws/api_config/CloudSearch-2011-02-01.yml +681 -0
- data/lib/aws/api_config/DynamoDB-2011-12-05.yml +4 -0
- data/lib/aws/api_config/EMR-2009-03-31.yml +18 -0
- data/lib/aws/api_config/ElastiCache-2012-03-09.yml +777 -0
- data/lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml +823 -0
- data/lib/aws/api_config/RDS-2012-07-31.yml +1621 -0
- data/lib/aws/cloud_search.rb +31 -0
- data/lib/aws/cloud_search/client.rb +558 -0
- data/lib/aws/cloud_search/config.rb +18 -0
- data/lib/aws/cloud_search/errors.rb +22 -0
- data/lib/aws/cloud_search/request.rb +23 -0
- data/lib/aws/cloud_watch/alarm.rb +1 -1
- data/lib/aws/cloud_watch/metric.rb +3 -3
- data/lib/aws/core.rb +18 -3
- data/lib/aws/core/configuration.rb +11 -0
- data/lib/aws/core/inflection.rb +1 -0
- data/lib/aws/core/service_interface.rb +1 -1
- data/lib/aws/dynamo_db/batch_get.rb +19 -12
- data/lib/aws/dynamo_db/client.rb +27 -1
- data/lib/aws/dynamo_db/config.rb +2 -0
- data/lib/aws/dynamo_db/item_collection.rb +2 -2
- data/lib/aws/dynamo_db/table.rb +8 -2
- data/lib/aws/ec2/reserved_instances.rb +3 -0
- data/lib/aws/ec2/reserved_instances_offering.rb +3 -1
- data/lib/aws/elastic_beanstalk.rb +48 -0
- data/lib/aws/elastic_beanstalk/client.rb +867 -0
- data/lib/aws/elastic_beanstalk/config.rb +18 -0
- data/lib/aws/elastic_beanstalk/errors.rb +22 -0
- data/lib/aws/elastic_beanstalk/request.rb +23 -0
- data/lib/aws/elasticache.rb +48 -0
- data/lib/aws/elasticache/client.rb +758 -0
- data/lib/aws/elasticache/config.rb +18 -0
- data/lib/aws/elasticache/errors.rb +22 -0
- data/lib/aws/elasticache/request.rb +23 -0
- data/lib/aws/emr/client.rb +30 -6
- data/lib/aws/emr/job_flow.rb +10 -0
- data/lib/aws/rds.rb +69 -0
- data/lib/aws/rds/client.rb +1592 -0
- data/lib/aws/rds/config.rb +18 -0
- data/lib/aws/rds/db_instance.rb +201 -0
- data/lib/aws/rds/db_instance_collection.rb +75 -0
- data/lib/aws/rds/db_snapshot.rb +163 -0
- data/lib/aws/rds/db_snapshot_collection.rb +89 -0
- data/lib/aws/rds/errors.rb +22 -0
- data/lib/aws/rds/request.rb +23 -0
- data/lib/aws/s3/bucket_tag_collection.rb +1 -1
- data/lib/aws/s3/client.rb +4 -2
- data/lib/aws/s3/errors.rb +0 -1
- data/lib/aws/s3/object_collection.rb +40 -22
- data/lib/aws/s3/object_version.rb +7 -2
- data/lib/aws/s3/request.rb +1 -1
- data/lib/aws/s3/s3_object.rb +35 -11
- data/lib/aws/version.rb +1 -1
- metadata +33 -2
data/lib/aws/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-11-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: uuidtools
|
@@ -124,6 +124,11 @@ files:
|
|
124
124
|
- lib/aws/cloud_formation/stack_resource_summary_collection.rb
|
125
125
|
- lib/aws/cloud_formation/stack_summary_collection.rb
|
126
126
|
- lib/aws/cloud_formation.rb
|
127
|
+
- lib/aws/cloud_search/client.rb
|
128
|
+
- lib/aws/cloud_search/config.rb
|
129
|
+
- lib/aws/cloud_search/errors.rb
|
130
|
+
- lib/aws/cloud_search/request.rb
|
131
|
+
- lib/aws/cloud_search.rb
|
127
132
|
- lib/aws/cloud_watch/alarm.rb
|
128
133
|
- lib/aws/cloud_watch/alarm_collection.rb
|
129
134
|
- lib/aws/cloud_watch/alarm_history_item.rb
|
@@ -292,6 +297,16 @@ files:
|
|
292
297
|
- lib/aws/ec2/vpn_gateway.rb
|
293
298
|
- lib/aws/ec2/vpn_gateway_collection.rb
|
294
299
|
- lib/aws/ec2.rb
|
300
|
+
- lib/aws/elastic_beanstalk/client.rb
|
301
|
+
- lib/aws/elastic_beanstalk/config.rb
|
302
|
+
- lib/aws/elastic_beanstalk/errors.rb
|
303
|
+
- lib/aws/elastic_beanstalk/request.rb
|
304
|
+
- lib/aws/elastic_beanstalk.rb
|
305
|
+
- lib/aws/elasticache/client.rb
|
306
|
+
- lib/aws/elasticache/config.rb
|
307
|
+
- lib/aws/elasticache/errors.rb
|
308
|
+
- lib/aws/elasticache/request.rb
|
309
|
+
- lib/aws/elasticache.rb
|
295
310
|
- lib/aws/elb/availability_zone_collection.rb
|
296
311
|
- lib/aws/elb/backend_server_policy_collection.rb
|
297
312
|
- lib/aws/elb/client.rb
|
@@ -348,6 +363,15 @@ files:
|
|
348
363
|
- lib/aws/iam/virtual_mfa_device_collection.rb
|
349
364
|
- lib/aws/iam.rb
|
350
365
|
- lib/aws/rails.rb
|
366
|
+
- lib/aws/rds/client.rb
|
367
|
+
- lib/aws/rds/config.rb
|
368
|
+
- lib/aws/rds/db_instance.rb
|
369
|
+
- lib/aws/rds/db_instance_collection.rb
|
370
|
+
- lib/aws/rds/db_snapshot.rb
|
371
|
+
- lib/aws/rds/db_snapshot_collection.rb
|
372
|
+
- lib/aws/rds/errors.rb
|
373
|
+
- lib/aws/rds/request.rb
|
374
|
+
- lib/aws/rds.rb
|
351
375
|
- lib/aws/record/abstract_base.rb
|
352
376
|
- lib/aws/record/attributes.rb
|
353
377
|
- lib/aws/record/conversion.rb
|
@@ -512,12 +536,16 @@ files:
|
|
512
536
|
- lib/aws/api_config/AutoScaling-2011-01-01.yml
|
513
537
|
- lib/aws/api_config/CloudFormation-2010-05-15.yml
|
514
538
|
- lib/aws/api_config/CloudFront-2012-05-05.yml
|
539
|
+
- lib/aws/api_config/CloudSearch-2011-02-01.yml
|
515
540
|
- lib/aws/api_config/CloudWatch-2010-08-01.yml
|
516
541
|
- lib/aws/api_config/DynamoDB-2011-12-05.yml
|
517
542
|
- lib/aws/api_config/EC2-2012-07-20.yml
|
543
|
+
- lib/aws/api_config/ElastiCache-2012-03-09.yml
|
544
|
+
- lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml
|
518
545
|
- lib/aws/api_config/ELB-2012-06-01.yml
|
519
546
|
- lib/aws/api_config/EMR-2009-03-31.yml
|
520
547
|
- lib/aws/api_config/IAM-2010-05-08.yml
|
548
|
+
- lib/aws/api_config/RDS-2012-07-31.yml
|
521
549
|
- lib/aws/api_config/Route53-2012-02-29.yml
|
522
550
|
- lib/aws/api_config/SimpleDB-2009-04-15.yml
|
523
551
|
- lib/aws/api_config/SimpleEmailService-2010-12-01.yml
|
@@ -538,6 +566,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
538
566
|
- - ! '>='
|
539
567
|
- !ruby/object:Gem::Version
|
540
568
|
version: '0'
|
569
|
+
segments:
|
570
|
+
- 0
|
571
|
+
hash: 543278940560316057
|
541
572
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
542
573
|
none: false
|
543
574
|
requirements:
|