aws-sdk-sqs 1.59.0 → 1.61.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sqs/client.rb +16 -1
- data/lib/aws-sdk-sqs.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: bf04d63f8b32d1200dbbfaede0622053d56f759cae23665d25d633dbb5a0e180
|
4
|
+
data.tar.gz: 0ceda901e2e3a9ba9ef0a22df130bbb6e5962cce62b1164c985d2b5852e56837
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2522a538048f406aa3f8600b3ae674b3a9bf7ebe6879421198b0093e7a8f641ff711c4467ef26322171ed032b38a6cf0108ad02111d976cb517794fb4cd81917
|
7
|
+
data.tar.gz: fb5fb0f1611951e80c58ec080e817c1b686ea554247a43f45164eafe6346071eb5a6901a3fe7a21a337ee73c71349b96ec7a53ce81eb8cfc061400a1b816f5ef
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.61.0 (2023-07-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.60.0 (2023-07-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.59.0 (2023-06-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.61.0
|
data/lib/aws-sdk-sqs/client.rb
CHANGED
@@ -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'
|
@@ -79,6 +80,7 @@ module Aws::SQS
|
|
79
80
|
add_plugin(Aws::Plugins::TransferEncoding)
|
80
81
|
add_plugin(Aws::Plugins::HttpChecksum)
|
81
82
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
83
|
+
add_plugin(Aws::Plugins::RequestCompression)
|
82
84
|
add_plugin(Aws::Plugins::DefaultsMode)
|
83
85
|
add_plugin(Aws::Plugins::RecursionDetection)
|
84
86
|
add_plugin(Aws::Plugins::Sign)
|
@@ -194,6 +196,10 @@ module Aws::SQS
|
|
194
196
|
# Set to true to disable SDK automatically adding host prefix
|
195
197
|
# to default service endpoint when available.
|
196
198
|
#
|
199
|
+
# @option options [Boolean] :disable_request_compression (false)
|
200
|
+
# When set to 'true' the request body will not be compressed
|
201
|
+
# for supported operations.
|
202
|
+
#
|
197
203
|
# @option options [String] :endpoint
|
198
204
|
# The client endpoint is normally constructed from the `:region`
|
199
205
|
# option. You should only configure an `:endpoint` when connecting
|
@@ -214,6 +220,10 @@ module Aws::SQS
|
|
214
220
|
# @option options [Boolean] :endpoint_discovery (false)
|
215
221
|
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
216
222
|
#
|
223
|
+
# @option options [Boolean] :ignore_configured_endpoint_urls
|
224
|
+
# Setting to true disables use of endpoint URLs provided via environment
|
225
|
+
# variables and the shared configuration file.
|
226
|
+
#
|
217
227
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
218
228
|
# The log formatter.
|
219
229
|
#
|
@@ -234,6 +244,11 @@ module Aws::SQS
|
|
234
244
|
# Used when loading credentials from the shared credentials file
|
235
245
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
236
246
|
#
|
247
|
+
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
248
|
+
# The minimum size in bytes that triggers compression for request
|
249
|
+
# bodies. The value must be non-negative integer value between 0
|
250
|
+
# and 10485780 bytes inclusive.
|
251
|
+
#
|
237
252
|
# @option options [Proc] :retry_backoff
|
238
253
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
239
254
|
# This option is only used in the `legacy` retry mode.
|
@@ -2729,7 +2744,7 @@ module Aws::SQS
|
|
2729
2744
|
params: params,
|
2730
2745
|
config: config)
|
2731
2746
|
context[:gem_name] = 'aws-sdk-sqs'
|
2732
|
-
context[:gem_version] = '1.
|
2747
|
+
context[:gem_version] = '1.61.0'
|
2733
2748
|
Seahorse::Client::Request.new(handlers, context)
|
2734
2749
|
end
|
2735
2750
|
|
data/lib/aws-sdk-sqs.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-sqs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.61.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-
|
11
|
+
date: 2023-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.177.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.177.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|