aws-sdk-sqs 1.103.0 → 1.104.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-sqs/client.rb +13 -16
- data/lib/aws-sdk-sqs/customizations.rb +0 -1
- data/lib/aws-sdk-sqs/queue.rb +4 -5
- data/lib/aws-sdk-sqs/types.rb +5 -5
- data/lib/aws-sdk-sqs.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98e8d47cbd929ca19881e5058fb621e1beb771fce35f0ccdd098ed9dce6afba6
|
4
|
+
data.tar.gz: ad4eaae85bdb6c31aef6b8ab899a14bb4b0fc1356b4812f8fd6332e08bc98714
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aceb8a7571ee704fc574c76982fcb1f8bef4663912a5c8dac02243d9f20794152e766ad615cccdfec0402873cde4c403bd99c5eb3e5a74074f7671dad35b7017
|
7
|
+
data.tar.gz: a20ea0b6d11cc01ffd9a81fcfac9e9ac6bca4cd1d85205678a2e8d7c315aa1fd9468fc6c9a2c23edc8e55ab77ba6549a27db6315d1354b2eb25aefb9b84360f9
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.104.0
|
data/lib/aws-sdk-sqs/client.rb
CHANGED
@@ -2222,11 +2222,10 @@ module Aws::SQS
|
|
2222
2222
|
# `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to `#xFFFD`
|
2223
2223
|
# \| `#x10000` to `#x10FFFF`
|
2224
2224
|
#
|
2225
|
-
#
|
2226
|
-
# message
|
2227
|
-
#
|
2228
|
-
#
|
2229
|
-
# character.
|
2225
|
+
# If a message contains characters outside the allowed set, Amazon SQS
|
2226
|
+
# rejects the message and returns an InvalidMessageContents error.
|
2227
|
+
# Ensure that your message body includes only valid characters to avoid
|
2228
|
+
# this exception.
|
2230
2229
|
#
|
2231
2230
|
#
|
2232
2231
|
#
|
@@ -2248,11 +2247,10 @@ module Aws::SQS
|
|
2248
2247
|
# `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to `#xFFFD`
|
2249
2248
|
# \| `#x10000` to `#x10FFFF`
|
2250
2249
|
#
|
2251
|
-
#
|
2252
|
-
# message
|
2253
|
-
#
|
2254
|
-
#
|
2255
|
-
# character.
|
2250
|
+
# If a message contains characters outside the allowed set, Amazon SQS
|
2251
|
+
# rejects the message and returns an InvalidMessageContents error.
|
2252
|
+
# Ensure that your message body includes only valid characters to avoid
|
2253
|
+
# this exception.
|
2256
2254
|
#
|
2257
2255
|
#
|
2258
2256
|
#
|
@@ -2479,11 +2477,10 @@ module Aws::SQS
|
|
2479
2477
|
# `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to `#xFFFD`
|
2480
2478
|
# \| `#x10000` to `#x10FFFF`
|
2481
2479
|
#
|
2482
|
-
#
|
2483
|
-
# message
|
2484
|
-
#
|
2485
|
-
#
|
2486
|
-
# character.
|
2480
|
+
# If a message contains characters outside the allowed set, Amazon SQS
|
2481
|
+
# rejects the message and returns an InvalidMessageContents error.
|
2482
|
+
# Ensure that your message body includes only valid characters to avoid
|
2483
|
+
# this exception.
|
2487
2484
|
#
|
2488
2485
|
# If you don't specify the `DelaySeconds` parameter for an entry,
|
2489
2486
|
# Amazon SQS uses the default value for the queue.
|
@@ -2983,7 +2980,7 @@ module Aws::SQS
|
|
2983
2980
|
tracer: tracer
|
2984
2981
|
)
|
2985
2982
|
context[:gem_name] = 'aws-sdk-sqs'
|
2986
|
-
context[:gem_version] = '1.
|
2983
|
+
context[:gem_version] = '1.104.0'
|
2987
2984
|
Seahorse::Client::Request.new(handlers, context)
|
2988
2985
|
end
|
2989
2986
|
|
data/lib/aws-sdk-sqs/queue.rb
CHANGED
@@ -515,11 +515,10 @@ module Aws::SQS
|
|
515
515
|
# `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to `#xFFFD`
|
516
516
|
# \| `#x10000` to `#x10FFFF`
|
517
517
|
#
|
518
|
-
#
|
519
|
-
# message
|
520
|
-
#
|
521
|
-
#
|
522
|
-
# character.
|
518
|
+
# If a message contains characters outside the allowed set, Amazon SQS
|
519
|
+
# rejects the message and returns an InvalidMessageContents error.
|
520
|
+
# Ensure that your message body includes only valid characters to avoid
|
521
|
+
# this exception.
|
523
522
|
#
|
524
523
|
#
|
525
524
|
#
|
data/lib/aws-sdk-sqs/types.rb
CHANGED
@@ -2306,11 +2306,11 @@ module Aws::SQS
|
|
2306
2306
|
# `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to
|
2307
2307
|
# `#xFFFD` \| `#x10000` to `#x10FFFF`
|
2308
2308
|
#
|
2309
|
-
#
|
2310
|
-
#
|
2311
|
-
#
|
2312
|
-
#
|
2313
|
-
#
|
2309
|
+
# If a message contains characters outside the allowed set, Amazon
|
2310
|
+
# SQS
|
2311
|
+
# rejects the message and returns an InvalidMessageContents error.
|
2312
|
+
# Ensure that your message body includes only valid characters to
|
2313
|
+
# avoid this exception.
|
2314
2314
|
#
|
2315
2315
|
#
|
2316
2316
|
#
|
data/lib/aws-sdk-sqs.rb
CHANGED