aws-sdk-s3control 1.98.0 → 1.99.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db33c789a00afaca6ea88d86d6f2ca59a3d014603aa1959eff7f153d4ae06d0e
4
- data.tar.gz: 5271d9ab0ceb8aa0c5e930caacea68f725534e3bf551f5f3f48d7ac3e7c57709
3
+ metadata.gz: a2177ac0aad4f1bc0af9afb89a5b6a3311c8754d44c96aefb37129eff15d310b
4
+ data.tar.gz: 2bb2314fc3f666343c24517fb7e6d53c78a7ac1840156a3c16c85e2c16a0f082
5
5
  SHA512:
6
- metadata.gz: 191a0a94b18d346e353c06e6843049a724640fbd81e51d7e34752b02adb719ed3a7238d501b2cfb29666a436587e19344d25039b8961bb090fdb92dbbfd4724b
7
- data.tar.gz: 34cb7e707e3a5507b18ec04690a46b3962b53c0e205e1decdee5d04b63e36b5795d077399b763b2583de4f80c3a10eed2902fbc417539d85471aa0bdd1de0f5e
6
+ metadata.gz: d9403af2698f4b597c1fcc3c77b2bcb008b1577381c5715d21df7d845715f9dc6f140d791c086847c0e867f1fb4d00fbfe26f2fcab063f74edb5d1a1b9cecd6d
7
+ data.tar.gz: 5b23efb92902012a35ddae456e39bbe91f691e692d5e8be4d07da7c44c7bad959113cb404f78b784fbe9a6a30c2bacf7b04653913d25ee0b525df03fecf69984
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.99.0 (2024-12-03)
5
+ ------------------
6
+
7
+ * Feature - It allows customers to pass CRC64NVME as a header in S3 Batch Operations copy requests
8
+
4
9
  1.98.0 (2024-12-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.98.0
1
+ 1.99.0
@@ -1336,7 +1336,7 @@ module Aws::S3Control
1336
1336
  # object_lock_mode: "COMPLIANCE", # accepts COMPLIANCE, GOVERNANCE
1337
1337
  # object_lock_retain_until_date: Time.now,
1338
1338
  # bucket_key_enabled: false,
1339
- # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256
1339
+ # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
1340
1340
  # },
1341
1341
  # s3_put_object_acl: {
1342
1342
  # access_control_policy: {
@@ -2847,7 +2847,7 @@ module Aws::S3Control
2847
2847
  # resp.job.operation.s3_put_object_copy.object_lock_mode #=> String, one of "COMPLIANCE", "GOVERNANCE"
2848
2848
  # resp.job.operation.s3_put_object_copy.object_lock_retain_until_date #=> Time
2849
2849
  # resp.job.operation.s3_put_object_copy.bucket_key_enabled #=> Boolean
2850
- # resp.job.operation.s3_put_object_copy.checksum_algorithm #=> String, one of "CRC32", "CRC32C", "SHA1", "SHA256"
2850
+ # resp.job.operation.s3_put_object_copy.checksum_algorithm #=> String, one of "CRC32", "CRC32C", "SHA1", "SHA256", "CRC64NVME"
2851
2851
  # resp.job.operation.s3_put_object_acl.access_control_policy.access_control_list.owner.id #=> String
2852
2852
  # resp.job.operation.s3_put_object_acl.access_control_policy.access_control_list.owner.display_name #=> String
2853
2853
  # resp.job.operation.s3_put_object_acl.access_control_policy.access_control_list.grants #=> Array
@@ -7734,7 +7734,7 @@ module Aws::S3Control
7734
7734
  tracer: tracer
7735
7735
  )
7736
7736
  context[:gem_name] = 'aws-sdk-s3control'
7737
- context[:gem_version] = '1.98.0'
7737
+ context[:gem_version] = '1.99.0'
7738
7738
  Seahorse::Client::Request.new(handlers, context)
7739
7739
  end
7740
7740
 
@@ -6938,20 +6938,9 @@ module Aws::S3Control
6938
6938
  #
6939
6939
  # * **Directory buckets** - For example, to copy objects to a
6940
6940
  # directory bucket named `destinationBucket` in the Availability
6941
- # Zone identified by the AZ ID `usw2-az1`, set the `TargetResource`
6941
+ # Zone; identified by the AZ ID `usw2-az1`, set the `TargetResource`
6942
6942
  # property to
6943
6943
  # `arn:aws:s3express:region:account_id:/bucket/destination_bucket_base_name--usw2-az1--x-s3`.
6944
- # A directory bucket as a destination bucket can be in Availability
6945
- # Zone or Local Zone.
6946
- #
6947
- # <note markdown="1"> Copying objects across different Amazon Web Services Regions
6948
- # isn't supported when the source or destination bucket is in
6949
- # Amazon Web Services Local Zones. The source and destination
6950
- # buckets must have the same parent Amazon Web Services Region.
6951
- # Otherwise, you get an HTTP `400 Bad Request` error with the error
6952
- # code `InvalidRequest`.
6953
- #
6954
- # </note>
6955
6944
  # @return [String]
6956
6945
  #
6957
6946
  # @!attribute [rw] canned_access_control_list
@@ -54,7 +54,7 @@ module Aws::S3Control
54
54
  autoload :EndpointProvider, 'aws-sdk-s3control/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-s3control/endpoints'
56
56
 
57
- GEM_VERSION = '1.98.0'
57
+ GEM_VERSION = '1.99.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -293,7 +293,7 @@ module Aws
293
293
  object_lock_mode: ("COMPLIANCE" | "GOVERNANCE")?,
294
294
  object_lock_retain_until_date: ::Time?,
295
295
  bucket_key_enabled: bool?,
296
- checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")?
296
+ checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")?
297
297
  }?,
298
298
  s3_put_object_acl: {
299
299
  access_control_policy: {
data/sig/types.rbs CHANGED
@@ -1646,7 +1646,7 @@ module Aws::S3Control
1646
1646
  attr_accessor object_lock_mode: ("COMPLIANCE" | "GOVERNANCE")
1647
1647
  attr_accessor object_lock_retain_until_date: ::Time
1648
1648
  attr_accessor bucket_key_enabled: bool
1649
- attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
1649
+ attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1650
1650
  SENSITIVE: []
1651
1651
  end
1652
1652
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3control
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.98.0
4
+ version: 1.99.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: 2024-12-02 00:00:00.000000000 Z
11
+ date: 2024-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core