aws-sdk-s3control 1.48.0 → 1.49.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-s3control/client.rb +5 -1
- data/lib/aws-sdk-s3control/client_api.rb +2 -0
- data/lib/aws-sdk-s3control/types.rb +15 -1
- data/lib/aws-sdk-s3control.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1cb02c38b2c63293b68f27caf2457db9104a248e97b53083961058bd26ff339d
|
4
|
+
data.tar.gz: 330ca09c63c5b2c41fb37c5719c23d27d922fe7c07327190810542d562506445
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8bad92325555664ef66732d7766ee67087155d97644c28f85d1208cf1892b5a58e5aa7b252867cec083c9365e3161a97587e71dfdb7b103099cea8bb2470ed8
|
7
|
+
data.tar.gz: 5458363f38b23a5d1004475c5992e0a8236a21e99498b520bd53bb1ff7c76719772a62dfca77dc2321c59740e9d62048d0b78a4ba8eddc0f0fcf7909663400c8
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.49.0
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
32
33
|
require 'aws-sdk-core/plugins/protocols/rest_xml.rb'
|
@@ -78,6 +79,7 @@ module Aws::S3Control
|
|
78
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
79
80
|
add_plugin(Aws::Plugins::TransferEncoding)
|
80
81
|
add_plugin(Aws::Plugins::HttpChecksum)
|
82
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
81
83
|
add_plugin(Aws::Plugins::DefaultsMode)
|
82
84
|
add_plugin(Aws::Plugins::RecursionDetection)
|
83
85
|
add_plugin(Aws::Plugins::Protocols::RestXml)
|
@@ -845,6 +847,7 @@ module Aws::S3Control
|
|
845
847
|
# object_lock_mode: "COMPLIANCE", # accepts COMPLIANCE, GOVERNANCE
|
846
848
|
# object_lock_retain_until_date: Time.now,
|
847
849
|
# bucket_key_enabled: false,
|
850
|
+
# checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256
|
848
851
|
# },
|
849
852
|
# s3_put_object_acl: {
|
850
853
|
# access_control_policy: {
|
@@ -1902,6 +1905,7 @@ module Aws::S3Control
|
|
1902
1905
|
# resp.job.operation.s3_put_object_copy.object_lock_mode #=> String, one of "COMPLIANCE", "GOVERNANCE"
|
1903
1906
|
# resp.job.operation.s3_put_object_copy.object_lock_retain_until_date #=> Time
|
1904
1907
|
# resp.job.operation.s3_put_object_copy.bucket_key_enabled #=> Boolean
|
1908
|
+
# resp.job.operation.s3_put_object_copy.checksum_algorithm #=> String, one of "CRC32", "CRC32C", "SHA1", "SHA256"
|
1905
1909
|
# resp.job.operation.s3_put_object_acl.access_control_policy.access_control_list.owner.id #=> String
|
1906
1910
|
# resp.job.operation.s3_put_object_acl.access_control_policy.access_control_list.owner.display_name #=> String
|
1907
1911
|
# resp.job.operation.s3_put_object_acl.access_control_policy.access_control_list.grants #=> Array
|
@@ -4727,7 +4731,7 @@ module Aws::S3Control
|
|
4727
4731
|
params: params,
|
4728
4732
|
config: config)
|
4729
4733
|
context[:gem_name] = 'aws-sdk-s3control'
|
4730
|
-
context[:gem_version] = '1.
|
4734
|
+
context[:gem_version] = '1.49.0'
|
4731
4735
|
Seahorse::Client::Request.new(handlers, context)
|
4732
4736
|
end
|
4733
4737
|
|
@@ -285,6 +285,7 @@ module Aws::S3Control
|
|
285
285
|
S3BucketArnString = Shapes::StringShape.new(name: 'S3BucketArnString')
|
286
286
|
S3BucketDestination = Shapes::StructureShape.new(name: 'S3BucketDestination')
|
287
287
|
S3CannedAccessControlList = Shapes::StringShape.new(name: 'S3CannedAccessControlList')
|
288
|
+
S3ChecksumAlgorithm = Shapes::StringShape.new(name: 'S3ChecksumAlgorithm')
|
288
289
|
S3ContentLength = Shapes::IntegerShape.new(name: 'S3ContentLength')
|
289
290
|
S3CopyObjectOperation = Shapes::StructureShape.new(name: 'S3CopyObjectOperation')
|
290
291
|
S3DeleteObjectTaggingOperation = Shapes::StructureShape.new(name: 'S3DeleteObjectTaggingOperation')
|
@@ -1142,6 +1143,7 @@ module Aws::S3Control
|
|
1142
1143
|
S3CopyObjectOperation.add_member(:object_lock_mode, Shapes::ShapeRef.new(shape: S3ObjectLockMode, location_name: "ObjectLockMode"))
|
1143
1144
|
S3CopyObjectOperation.add_member(:object_lock_retain_until_date, Shapes::ShapeRef.new(shape: TimeStamp, location_name: "ObjectLockRetainUntilDate"))
|
1144
1145
|
S3CopyObjectOperation.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "BucketKeyEnabled"))
|
1146
|
+
S3CopyObjectOperation.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: S3ChecksumAlgorithm, location_name: "ChecksumAlgorithm"))
|
1145
1147
|
S3CopyObjectOperation.struct_class = Types::S3CopyObjectOperation
|
1146
1148
|
|
1147
1149
|
S3DeleteObjectTaggingOperation.struct_class = Types::S3DeleteObjectTaggingOperation
|
@@ -785,6 +785,7 @@ module Aws::S3Control
|
|
785
785
|
# object_lock_mode: "COMPLIANCE", # accepts COMPLIANCE, GOVERNANCE
|
786
786
|
# object_lock_retain_until_date: Time.now,
|
787
787
|
# bucket_key_enabled: false,
|
788
|
+
# checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256
|
788
789
|
# },
|
789
790
|
# s3_put_object_acl: {
|
790
791
|
# access_control_policy: {
|
@@ -3131,6 +3132,7 @@ module Aws::S3Control
|
|
3131
3132
|
# object_lock_mode: "COMPLIANCE", # accepts COMPLIANCE, GOVERNANCE
|
3132
3133
|
# object_lock_retain_until_date: Time.now,
|
3133
3134
|
# bucket_key_enabled: false,
|
3135
|
+
# checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256
|
3134
3136
|
# },
|
3135
3137
|
# s3_put_object_acl: {
|
3136
3138
|
# access_control_policy: {
|
@@ -5515,6 +5517,7 @@ module Aws::S3Control
|
|
5515
5517
|
# object_lock_mode: "COMPLIANCE", # accepts COMPLIANCE, GOVERNANCE
|
5516
5518
|
# object_lock_retain_until_date: Time.now,
|
5517
5519
|
# bucket_key_enabled: false,
|
5520
|
+
# checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256
|
5518
5521
|
# }
|
5519
5522
|
#
|
5520
5523
|
# @!attribute [rw] target_resource
|
@@ -5596,6 +5599,16 @@ module Aws::S3Control
|
|
5596
5599
|
# *bucket-level* settings for S3 Bucket Key.
|
5597
5600
|
# @return [Boolean]
|
5598
5601
|
#
|
5602
|
+
# @!attribute [rw] checksum_algorithm
|
5603
|
+
# Indicates the algorithm you want Amazon S3 to use to create the
|
5604
|
+
# checksum. For more information see [ Checking object integrity][1]
|
5605
|
+
# in the *Amazon S3 User Guide*.
|
5606
|
+
#
|
5607
|
+
#
|
5608
|
+
#
|
5609
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/CheckingObjectIntegrity.xml
|
5610
|
+
# @return [String]
|
5611
|
+
#
|
5599
5612
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/S3CopyObjectOperation AWS API Documentation
|
5600
5613
|
#
|
5601
5614
|
class S3CopyObjectOperation < Struct.new(
|
@@ -5615,7 +5628,8 @@ module Aws::S3Control
|
|
5615
5628
|
:object_lock_legal_hold_status,
|
5616
5629
|
:object_lock_mode,
|
5617
5630
|
:object_lock_retain_until_date,
|
5618
|
-
:bucket_key_enabled
|
5631
|
+
:bucket_key_enabled,
|
5632
|
+
:checksum_algorithm)
|
5619
5633
|
SENSITIVE = []
|
5620
5634
|
include Aws::Structure
|
5621
5635
|
end
|
data/lib/aws-sdk-s3control.rb
CHANGED
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.
|
4
|
+
version: 1.49.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-02-
|
11
|
+
date: 2022-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: '3'
|
34
34
|
- - ">="
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version: 3.
|
36
|
+
version: 3.127.0
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
version: '3'
|
44
44
|
- - ">="
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: 3.
|
46
|
+
version: 3.127.0
|
47
47
|
description: Official AWS Ruby gem for AWS S3 Control. This gem is part of the AWS
|
48
48
|
SDK for Ruby.
|
49
49
|
email:
|