aws-sdk-sqs 1.76.0 → 1.80.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sqs/client.rb +19 -10
- data/lib/aws-sdk-sqs/client_api.rb +1 -0
- data/lib/aws-sdk-sqs.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f30d391d3a34a4814470391b91fdcd872714b458be107c050ee9cba37465e1b
|
4
|
+
data.tar.gz: 1c15c4193031d38ee70f969f0de8a88546fc22e1a4df43653854c173dbee7e25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf45c30d94cc45b4e1a22a2e45434bf7d505c164c5f8fb6fa5004cdb80b2ab48a6c87fe9ab3e84ed0d7a6e9d0279b988aaa174795c328b34a0372717e729d4a9
|
7
|
+
data.tar.gz: f960011adbf27dbd6165ce92759344b37e4ba891a915431ac0e3ab724bd7a3bdde2e95966df3c6518ed81b4ba65efc8a669c88383ed9ba72a9c10c090850ea64
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.80.0 (2024-07-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.79.0 (2024-06-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.78.0 (2024-06-25)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.77.0 (2024-06-24)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.76.0 (2024-06-06)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.80.0
|
data/lib/aws-sdk-sqs/client.rb
CHANGED
@@ -93,6 +93,11 @@ module Aws::SQS
|
|
93
93
|
|
94
94
|
# @overload initialize(options)
|
95
95
|
# @param [Hash] options
|
96
|
+
#
|
97
|
+
# @option options [Array<Seahorse::Client::Plugin>] :plugins ([]])
|
98
|
+
# A list of plugins to apply to the client. Each plugin is either a
|
99
|
+
# class name or an instance of a plugin class.
|
100
|
+
#
|
96
101
|
# @option options [required, Aws::CredentialProvider] :credentials
|
97
102
|
# Your AWS credentials. This can be an instance of any one of the
|
98
103
|
# following classes:
|
@@ -213,7 +218,6 @@ module Aws::SQS
|
|
213
218
|
# 'https://example.com'
|
214
219
|
# 'http://example.com:123'
|
215
220
|
#
|
216
|
-
#
|
217
221
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
218
222
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
219
223
|
# for endpoint discovery enabled operations. Defaults to 1000.
|
@@ -302,7 +306,6 @@ module Aws::SQS
|
|
302
306
|
# throttling. This is a provisional mode that may change behavior
|
303
307
|
# in the future.
|
304
308
|
#
|
305
|
-
#
|
306
309
|
# @option options [String] :sdk_ua_app_id
|
307
310
|
# A unique and opaque application ID that is appended to the
|
308
311
|
# User-Agent header as app/sdk_ua_app_id. It should have a
|
@@ -313,15 +316,21 @@ module Aws::SQS
|
|
313
316
|
#
|
314
317
|
# @option options [String] :session_token
|
315
318
|
#
|
319
|
+
# @option options [Array] :sigv4a_signing_region_set
|
320
|
+
# A list of regions that should be signed with SigV4a signing. When
|
321
|
+
# not passed, a default `:sigv4a_signing_region_set` is searched for
|
322
|
+
# in the following locations:
|
323
|
+
#
|
324
|
+
# * `Aws.config[:sigv4a_signing_region_set]`
|
325
|
+
# * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
|
326
|
+
# * `~/.aws/config`
|
327
|
+
#
|
316
328
|
# @option options [Boolean] :simple_json (false)
|
317
329
|
# Disables request parameter conversion, validation, and formatting.
|
318
|
-
# Also
|
319
|
-
#
|
320
|
-
#
|
321
|
-
# structures.
|
322
|
-
#
|
323
|
-
# When `:simple_json` is enabled, the request parameters hash must
|
324
|
-
# be formatted exactly as the DynamoDB API expects.
|
330
|
+
# Also disables response data type conversions. The request parameters
|
331
|
+
# hash must be formatted exactly as the API expects.This option is useful
|
332
|
+
# when you want to ensure the highest level of performance by avoiding
|
333
|
+
# overhead of walking request parameters and response data structures.
|
325
334
|
#
|
326
335
|
# @option options [Boolean] :stub_responses (false)
|
327
336
|
# Causes the client to return stubbed responses. By default
|
@@ -2872,7 +2881,7 @@ module Aws::SQS
|
|
2872
2881
|
params: params,
|
2873
2882
|
config: config)
|
2874
2883
|
context[:gem_name] = 'aws-sdk-sqs'
|
2875
|
-
context[:gem_version] = '1.
|
2884
|
+
context[:gem_version] = '1.80.0'
|
2876
2885
|
Seahorse::Client::Request.new(handlers, context)
|
2877
2886
|
end
|
2878
2887
|
|
data/lib/aws-sdk-sqs.rb
CHANGED
data/sig/client.rbs
CHANGED
data/sig/resource.rbs
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.80.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-
|
11
|
+
date: 2024-07-02 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.201.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.201.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for Amazon Simple Queue Service (Amazon SQS). This
|
48
48
|
gem is part of the AWS SDK for Ruby.
|
49
49
|
email:
|