aws-sdk 1.8.4 → 1.8.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/api_config/EC2-2013-02-01.yml +2 -3
- data/lib/aws/api_config/RDS-2013-02-12.yml +2377 -0
- data/lib/aws/core.rb +1 -1
- data/lib/aws/core/configuration.rb +1 -1
- data/lib/aws/ec2/client.rb +2 -3
- data/lib/aws/ec2/snapshot_collection.rb +3 -2
- data/lib/aws/rds/client.rb +471 -21
- data/lib/aws/s3/s3_object.rb +3 -0
- data/lib/aws/version.rb +1 -1
- metadata +3 -2
data/lib/aws/s3/s3_object.rb
CHANGED
@@ -585,6 +585,9 @@ module AWS
|
|
585
585
|
# client-side encryption materials in a separate object in S3
|
586
586
|
# instead of in the object metadata.
|
587
587
|
#
|
588
|
+
# @option options [String] :expires The date and time at which the
|
589
|
+
# object is no longer cacheable.
|
590
|
+
#
|
588
591
|
# @return [S3Object, ObjectVersion] If the bucket has versioning
|
589
592
|
# enabled, this methods returns an {ObjectVersion}, otherwise
|
590
593
|
# this method returns +self+.
|
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.8.
|
4
|
+
version: 1.8.5
|
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: 2013-03-
|
12
|
+
date: 2013-03-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: uuidtools
|
@@ -591,6 +591,7 @@ files:
|
|
591
591
|
- lib/aws/api_config/ImportExport-2010-06-01.yml
|
592
592
|
- lib/aws/api_config/OpsWorks-2013-02-18.yml
|
593
593
|
- lib/aws/api_config/RDS-2012-09-17.yml
|
594
|
+
- lib/aws/api_config/RDS-2013-02-12.yml
|
594
595
|
- lib/aws/api_config/Redshift-2012-12-01.yml
|
595
596
|
- lib/aws/api_config/Route53-2012-02-29.yml
|
596
597
|
- lib/aws/api_config/Route53-2012-12-12.yml
|