aws-sdk-s3 1.174.0 → 1.175.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +2 -2
- data/lib/aws-sdk-s3/client.rb +957 -755
- data/lib/aws-sdk-s3/endpoint_provider.rb +36 -0
- data/lib/aws-sdk-s3/object.rb +3 -1
- data/lib/aws-sdk-s3/resource.rb +9 -8
- data/lib/aws-sdk-s3/types.rb +202 -116
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +2 -2
- data/sig/client.rbs +3 -3
- data/sig/resource.rbs +2 -2
- data/sig/types.rbs +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a4ee2c0b63c4bbcd23a867b373d5e5def8a9383bc662f202dff55ecd19b9070
|
4
|
+
data.tar.gz: 8b450f1bb5847813b453c4ac04cbc639aa0c8a93a13840598987c38ecc6bd388
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c8539f2b8cf0f516c79c24c21cae6f24be3bf20ec80240c37a61273a39f5dff87e6dae670b6bedafac8c731cb2d9b6410b2a288235e98225af7dfc852516ed2
|
7
|
+
data.tar.gz: 1ed838dbc7cdb5d29a29643b362c088c243e8970b1979924cc99152c73dcf381a7f96b7490d52d45620d1d4081ed13f16a2843ef223b863bd7b31b8574c89e70
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.175.0
|
data/lib/aws-sdk-s3/bucket.rb
CHANGED
@@ -239,11 +239,11 @@ module Aws::S3
|
|
239
239
|
# create_bucket_configuration: {
|
240
240
|
# 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-south-2, 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-south-2, 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
|
241
241
|
# location: {
|
242
|
-
# type: "AvailabilityZone", # accepts AvailabilityZone
|
242
|
+
# type: "AvailabilityZone", # accepts AvailabilityZone, LocalZone
|
243
243
|
# name: "LocationNameAsString",
|
244
244
|
# },
|
245
245
|
# bucket: {
|
246
|
-
# data_redundancy: "SingleAvailabilityZone", # accepts SingleAvailabilityZone
|
246
|
+
# data_redundancy: "SingleAvailabilityZone", # accepts SingleAvailabilityZone, SingleLocalZone
|
247
247
|
# type: "Directory", # accepts Directory
|
248
248
|
# },
|
249
249
|
# },
|