aws-sdk-s3 1.135.0 → 1.137.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b4312762a051a1316d3e9bf604cc515013d79ab8d69c40f3afdd09db961abb0d
4
- data.tar.gz: 33bbdef2172c9a372528535cac262ba397ce074f8a6b8e66e3fc82c09d37955c
3
+ metadata.gz: 39652278a10e7d8be5b3bcd63b8e34e6429a1eb41e4643ca6fc12932f280b5e2
4
+ data.tar.gz: 877e1b4e2b4fd93b9051197658cfa771822fa63130f3b0ab68d431163fa258d9
5
5
  SHA512:
6
- metadata.gz: 923d86f0eef2170067b2b0d943ca902e1b007ce1cf4d917f7dc6cf320b7b7ec07901e6c8246d405b86ef262135d6b0da71963d27488876e4bab8e6fd615f8ce5
7
- data.tar.gz: 3b8c7ee1b28d1cb50ab50f833b37c12dec006bf9fe0980b7c1518ab6f7bf14a4c496f611a8f3bac416a64a1b7b7574cf8341877a5d3c34f2e0b6f82bb9269441
6
+ metadata.gz: bfad21d40c4a497e0350ac4e74899b060a3f5e5ad4c681414ff921d85bf7a540f6c34781f67f4a0da706ce0175e0d41c04d739a376d0ecf9fb8349ea2685b14b
7
+ data.tar.gz: 87327c8b9acd926e0a5c111936140ffdf93cc07f016687209fe0b891eb74d371e7deedb7d5263b032da827116c1f63d2a013dbc7b6a74cfcae9201870b2b7a8f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.137.0 (2023-11-17)
5
+ ------------------
6
+
7
+ * Feature - Removes all default 0 values for numbers and false values for booleans
8
+
9
+ 1.136.0 (2023-09-26)
10
+ ------------------
11
+
12
+ * Feature - This release adds a new field COMPLETED to the ReplicationStatus Enum. You can now use this field to validate the replication status of S3 objects using the AWS SDK.
13
+
4
14
  1.135.0 (2023-09-20)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.135.0
1
+ 1.137.0
@@ -6089,7 +6089,7 @@ module Aws::S3
6089
6089
  # resp.bucket_key_enabled #=> Boolean
6090
6090
  # resp.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW"
6091
6091
  # resp.request_charged #=> String, one of "requester"
6092
- # resp.replication_status #=> String, one of "COMPLETE", "PENDING", "FAILED", "REPLICA"
6092
+ # resp.replication_status #=> String, one of "COMPLETE", "PENDING", "FAILED", "REPLICA", "COMPLETED"
6093
6093
  # resp.parts_count #=> Integer
6094
6094
  # resp.tag_count #=> Integer
6095
6095
  # resp.object_lock_mode #=> String, one of "GOVERNANCE", "COMPLIANCE"
@@ -7495,7 +7495,7 @@ module Aws::S3
7495
7495
  # resp.bucket_key_enabled #=> Boolean
7496
7496
  # resp.storage_class #=> String, one of "STANDARD", "REDUCED_REDUNDANCY", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "GLACIER", "DEEP_ARCHIVE", "OUTPOSTS", "GLACIER_IR", "SNOW"
7497
7497
  # resp.request_charged #=> String, one of "requester"
7498
- # resp.replication_status #=> String, one of "COMPLETE", "PENDING", "FAILED", "REPLICA"
7498
+ # resp.replication_status #=> String, one of "COMPLETE", "PENDING", "FAILED", "REPLICA", "COMPLETED"
7499
7499
  # resp.parts_count #=> Integer
7500
7500
  # resp.object_lock_mode #=> String, one of "GOVERNANCE", "COMPLIANCE"
7501
7501
  # resp.object_lock_retain_until_date #=> Time
@@ -13637,7 +13637,7 @@ module Aws::S3
13637
13637
  # bucket or an object, it checks the `PublicAccessBlock` configuration
13638
13638
  # for both the bucket (or the bucket that contains the object) and the
13639
13639
  # bucket owner's account. If the `PublicAccessBlock` configurations are
13640
- # different between the bucket and the account, S3 uses the most
13640
+ # different between the bucket and the account, Amazon S3 uses the most
13641
13641
  # restrictive combination of the bucket-level and account-level
13642
13642
  # settings.
13643
13643
  #
@@ -15662,7 +15662,7 @@ module Aws::S3
15662
15662
  # object_lock_legal_hold_status: "ON", # accepts ON, OFF
15663
15663
  # object_lock_retain_until_date: Time.now,
15664
15664
  # parts_count: 1,
15665
- # replication_status: "COMPLETE", # accepts COMPLETE, PENDING, FAILED, REPLICA
15665
+ # replication_status: "COMPLETE", # accepts COMPLETE, PENDING, FAILED, REPLICA, COMPLETED
15666
15666
  # request_charged: "requester", # accepts requester
15667
15667
  # restore: "Restore",
15668
15668
  # server_side_encryption: "AES256", # accepts AES256, aws:kms, aws:kms:dsse
@@ -15697,7 +15697,7 @@ module Aws::S3
15697
15697
  params: params,
15698
15698
  config: config)
15699
15699
  context[:gem_name] = 'aws-sdk-s3'
15700
- context[:gem_version] = '1.135.0'
15700
+ context[:gem_version] = '1.137.0'
15701
15701
  Seahorse::Client::Request.new(handlers, context)
15702
15702
  end
15703
15703
 
data/lib/aws-sdk-s3.rb CHANGED
@@ -73,6 +73,6 @@ require_relative 'aws-sdk-s3/event_streams'
73
73
  # @!group service
74
74
  module Aws::S3
75
75
 
76
- GEM_VERSION = '1.135.0'
76
+ GEM_VERSION = '1.137.0'
77
77
 
78
78
  end
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.135.0
4
+ version: 1.137.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: 2023-09-20 00:00:00.000000000 Z
11
+ date: 2023-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-kms