aws-sdk-s3 1.113.2 → 1.115.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +1 -1
- data/lib/aws-sdk-s3/client.rb +126 -121
- data/lib/aws-sdk-s3/client_api.rb +94 -94
- data/lib/aws-sdk-s3/object_summary.rb +3 -1
- data/lib/aws-sdk-s3/resource.rb +1 -1
- data/lib/aws-sdk-s3/types.rb +10 -6
- data/lib/aws-sdk-s3.rb +1 -1
- metadata +2 -2
@@ -66,7 +66,9 @@ module Aws::S3
|
|
66
66
|
#
|
67
67
|
# * If an object is created by either the Multipart Upload or Part Copy
|
68
68
|
# operation, the ETag is not an MD5 digest, regardless of the method
|
69
|
-
# of encryption.
|
69
|
+
# of encryption. If an object is larger than 16 MB, the Amazon Web
|
70
|
+
# Services Management Console will upload or copy that object as a
|
71
|
+
# Multipart Upload, and therefore the ETag will not be an MD5 digest.
|
70
72
|
# @return [String]
|
71
73
|
def etag
|
72
74
|
data[:etag]
|
data/lib/aws-sdk-s3/resource.rb
CHANGED
@@ -41,7 +41,7 @@ module Aws::S3
|
|
41
41
|
# acl: "private", # accepts private, public-read, public-read-write, authenticated-read
|
42
42
|
# bucket: "BucketName", # required
|
43
43
|
# create_bucket_configuration: {
|
44
|
-
# location_constraint: "af-south-1", # accepts af-south-1, ap-east-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, cn-north-1, cn-northwest-1, EU, eu-central-1, eu-north-1, eu-south-1, eu-west-1, eu-west-2, eu-west-3, me-south-1, sa-east-1, us-east-2, us-gov-east-1, us-gov-west-1, us-west-1, us-west-2
|
44
|
+
# location_constraint: "af-south-1", # accepts af-south-1, ap-east-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ca-central-1, cn-north-1, cn-northwest-1, EU, eu-central-1, eu-north-1, eu-south-1, eu-west-1, eu-west-2, eu-west-3, me-south-1, sa-east-1, us-east-2, us-gov-east-1, us-gov-west-1, us-west-1, us-west-2
|
45
45
|
# },
|
46
46
|
# grant_full_control: "GrantFullControl",
|
47
47
|
# grant_read: "GrantRead",
|
data/lib/aws-sdk-s3/types.rb
CHANGED
@@ -2154,7 +2154,7 @@ module Aws::S3
|
|
2154
2154
|
# data as a hash:
|
2155
2155
|
#
|
2156
2156
|
# {
|
2157
|
-
# location_constraint: "af-south-1", # accepts af-south-1, ap-east-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, cn-north-1, cn-northwest-1, EU, eu-central-1, eu-north-1, eu-south-1, eu-west-1, eu-west-2, eu-west-3, me-south-1, sa-east-1, us-east-2, us-gov-east-1, us-gov-west-1, us-west-1, us-west-2
|
2157
|
+
# location_constraint: "af-south-1", # accepts af-south-1, ap-east-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ca-central-1, cn-north-1, cn-northwest-1, EU, eu-central-1, eu-north-1, eu-south-1, eu-west-1, eu-west-2, eu-west-3, me-south-1, sa-east-1, us-east-2, us-gov-east-1, us-gov-west-1, us-west-1, us-west-2
|
2158
2158
|
# }
|
2159
2159
|
#
|
2160
2160
|
# @!attribute [rw] location_constraint
|
@@ -2190,7 +2190,7 @@ module Aws::S3
|
|
2190
2190
|
# acl: "private", # accepts private, public-read, public-read-write, authenticated-read
|
2191
2191
|
# bucket: "BucketName", # required
|
2192
2192
|
# create_bucket_configuration: {
|
2193
|
-
# location_constraint: "af-south-1", # accepts af-south-1, ap-east-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, cn-north-1, cn-northwest-1, EU, eu-central-1, eu-north-1, eu-south-1, eu-west-1, eu-west-2, eu-west-3, me-south-1, sa-east-1, us-east-2, us-gov-east-1, us-gov-west-1, us-west-1, us-west-2
|
2193
|
+
# location_constraint: "af-south-1", # accepts af-south-1, ap-east-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ca-central-1, cn-north-1, cn-northwest-1, EU, eu-central-1, eu-north-1, eu-south-1, eu-west-1, eu-west-2, eu-west-3, me-south-1, sa-east-1, us-east-2, us-gov-east-1, us-gov-west-1, us-west-1, us-west-2
|
2194
2194
|
# },
|
2195
2195
|
# grant_full_control: "GrantFullControl",
|
2196
2196
|
# grant_read: "GrantRead",
|
@@ -10202,9 +10202,10 @@ module Aws::S3
|
|
10202
10202
|
#
|
10203
10203
|
# @!attribute [rw] noncurrent_days
|
10204
10204
|
# Specifies the number of days an object is noncurrent before Amazon
|
10205
|
-
# S3 can perform the associated action.
|
10206
|
-
#
|
10207
|
-
#
|
10205
|
+
# S3 can perform the associated action. The value must be a non-zero
|
10206
|
+
# positive integer. For information about the noncurrent days
|
10207
|
+
# calculations, see [How Amazon S3 Calculates When an Object Became
|
10208
|
+
# Noncurrent][1] in the *Amazon S3 User Guide*.
|
10208
10209
|
#
|
10209
10210
|
#
|
10210
10211
|
#
|
@@ -10497,7 +10498,10 @@ module Aws::S3
|
|
10497
10498
|
#
|
10498
10499
|
# * If an object is created by either the Multipart Upload or Part
|
10499
10500
|
# Copy operation, the ETag is not an MD5 digest, regardless of the
|
10500
|
-
# method of encryption.
|
10501
|
+
# method of encryption. If an object is larger than 16 MB, the
|
10502
|
+
# Amazon Web Services Management Console will upload or copy that
|
10503
|
+
# object as a Multipart Upload, and therefore the ETag will not be
|
10504
|
+
# an MD5 digest.
|
10501
10505
|
# @return [String]
|
10502
10506
|
#
|
10503
10507
|
# @!attribute [rw] checksum_algorithm
|
data/lib/aws-sdk-s3.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-s3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.115.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-10-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-kms
|