aws-sdk-s3control 1.66.0 → 1.67.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: 883409d938711e0ebfef9521539236683d5478239dec6ecddfad391645754b6f
4
- data.tar.gz: 9647c96e7464b0fbec1311875b398dbd8bd791324e0c2820252c2a75db251486
3
+ metadata.gz: 8eb7e0390950bf66515d8d753a3259128a180b44549e487f2f1e843b910995e0
4
+ data.tar.gz: 2b6ed252993dd0454a4d1cc39fe013e70fad86f7419f63c995618c5bba05c549
5
5
  SHA512:
6
- metadata.gz: 074d1bb3e59b668851030a5dbf96b69db3c0b3904ba505abd88f1c7900ff418dc6877f39d1fd1f6f88442157813f395bca4a5ed0dc6ffc4b15f02f6c6382a92f
7
- data.tar.gz: b27354c5ade9d36fd5f60fe4fc42942202babc7623068be289e83c546b661263441c9e698553f365ed4a92dc672b98bcee7635b99b4564ea61d598af48455310
6
+ metadata.gz: 93606aa5b43145247a4a40cc8675f4d87368ec77d95312900017a44759388304af2bf7fcae9c791890b5a9399bb13826d92b7bfd9d8ea089e7a0107ea9d39859
7
+ data.tar.gz: a7439e16a84bb7f9916f16de4f783058fd9bda89bba4f1aff38f4ede6c368064a1f327707c263b6a9e9939b510bd95a5c3abcd19b4e8f485bba1f0c793d819b9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.0 (2023-07-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.66.0 (2023-06-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.67.0
@@ -28,6 +28,7 @@ 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
30
  require 'aws-sdk-core/plugins/checksum_algorithm.rb'
31
+ require 'aws-sdk-core/plugins/request_compression.rb'
31
32
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
33
  require 'aws-sdk-core/plugins/recursion_detection.rb'
33
34
  require 'aws-sdk-core/plugins/sign.rb'
@@ -80,6 +81,7 @@ module Aws::S3Control
80
81
  add_plugin(Aws::Plugins::TransferEncoding)
81
82
  add_plugin(Aws::Plugins::HttpChecksum)
82
83
  add_plugin(Aws::Plugins::ChecksumAlgorithm)
84
+ add_plugin(Aws::Plugins::RequestCompression)
83
85
  add_plugin(Aws::Plugins::DefaultsMode)
84
86
  add_plugin(Aws::Plugins::RecursionDetection)
85
87
  add_plugin(Aws::Plugins::Sign)
@@ -196,6 +198,10 @@ module Aws::S3Control
196
198
  # Set to true to disable SDK automatically adding host prefix
197
199
  # to default service endpoint when available.
198
200
  #
201
+ # @option options [Boolean] :disable_request_compression (false)
202
+ # When set to 'true' the request body will not be compressed
203
+ # for supported operations.
204
+ #
199
205
  # @option options [String] :endpoint
200
206
  # The client endpoint is normally constructed from the `:region`
201
207
  # option. You should only configure an `:endpoint` when connecting
@@ -236,6 +242,11 @@ module Aws::S3Control
236
242
  # Used when loading credentials from the shared credentials file
237
243
  # at HOME/.aws/credentials. When not specified, 'default' is used.
238
244
  #
245
+ # @option options [Integer] :request_min_compression_size_bytes (10240)
246
+ # The minimum size in bytes that triggers compression for request
247
+ # bodies. The value must be non-negative integer value between 0
248
+ # and 10485780 bytes inclusive.
249
+ #
239
250
  # @option options [Proc] :retry_backoff
240
251
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
241
252
  # This option is only used in the `legacy` retry mode.
@@ -5553,7 +5564,7 @@ module Aws::S3Control
5553
5564
  params: params,
5554
5565
  config: config)
5555
5566
  context[:gem_name] = 'aws-sdk-s3control'
5556
- context[:gem_version] = '1.66.0'
5567
+ context[:gem_version] = '1.67.0'
5557
5568
  Seahorse::Client::Request.new(handlers, context)
5558
5569
  end
5559
5570
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-s3control/customizations'
52
52
  # @!group service
53
53
  module Aws::S3Control
54
54
 
55
- GEM_VERSION = '1.66.0'
55
+ GEM_VERSION = '1.67.0'
56
56
 
57
57
  end
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.66.0
4
+ version: 1.67.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-06-28 00:00:00.000000000 Z
11
+ date: 2023-07-06 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.176.0
36
+ version: 3.177.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.176.0
46
+ version: 3.177.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: