aws-sdk-sqs 1.65.0 → 1.69.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: deb95ba88a1099fdc9be73f1cdcc07f050abcb43d14f3b12d7ef4e0eeba718a3
4
- data.tar.gz: a55887d771d042ad936392d196a251e9a41a4635dc0b54ff5ac5f11baf749ada
3
+ metadata.gz: e8f7eada40045bb6562c2c8140a9c71bab06e0934265aa3b47da398bfcc04596
4
+ data.tar.gz: 8b04671036f9aff2482d1aa70ad16c91207d99d741b589733ed4d158de77e9f8
5
5
  SHA512:
6
- metadata.gz: 1fee7c9e83c30cc4cdc66d2a73edb2e23cfa418b3ad7ba500cbc690eb507532c03085efcb224d3c0ffe75c1a6fc534c900b52bb2c7942127e2564919c175fd13
7
- data.tar.gz: d4cac974b7077791b7ea7cfd3f72b240d7eb50c7b3c323ac545279f75bd265aa1bdeb05fdc1db164709c9e91701787657b7cb261f250df9951c024e2d0e98969
6
+ metadata.gz: 70dc137ec859a96a235f3e93da0fd3baed06e07412d767b67a61a5033a9ac48886e1443d1ae41ce82c35bbb033241413069e47ec8d9f4982675f65d1f8f99720
7
+ data.tar.gz: 8180401fa1c43f3021f9e4e7939dd00fe8171331df073cdaf1192e61d1f4e7d27108773034bb46cc9038a8b4295024698685a8d6332c6870d6fdb61a8c385a45
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.69.0 (2023-11-28)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.68.0 (2023-11-22)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.67.0 (2023-11-09)
15
+ ------------------
16
+
17
+ * Feature - This release enables customers to call SQS using AWS JSON-1.0 protocol and bug fix.
18
+
19
+ 1.66.0 (2023-11-08)
20
+ ------------------
21
+
22
+ * Feature - This release enables customers to call SQS using AWS JSON-1.0 protocol.
23
+
4
24
  1.65.0 (2023-10-31)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.69.0
@@ -32,7 +32,7 @@ require 'aws-sdk-core/plugins/request_compression.rb'
32
32
  require 'aws-sdk-core/plugins/defaults_mode.rb'
33
33
  require 'aws-sdk-core/plugins/recursion_detection.rb'
34
34
  require 'aws-sdk-core/plugins/sign.rb'
35
- require 'aws-sdk-core/plugins/protocols/query.rb'
35
+ require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
36
36
  require 'aws-sdk-sqs/plugins/queue_urls.rb'
37
37
  require 'aws-sdk-sqs/plugins/md5s.rb'
38
38
 
@@ -84,7 +84,7 @@ module Aws::SQS
84
84
  add_plugin(Aws::Plugins::DefaultsMode)
85
85
  add_plugin(Aws::Plugins::RecursionDetection)
86
86
  add_plugin(Aws::Plugins::Sign)
87
- add_plugin(Aws::Plugins::Protocols::Query)
87
+ add_plugin(Aws::Plugins::Protocols::JsonRpc)
88
88
  add_plugin(Aws::SQS::Plugins::QueueUrls)
89
89
  add_plugin(Aws::SQS::Plugins::Md5s)
90
90
  add_plugin(Aws::SQS::Plugins::Endpoints)
@@ -303,6 +303,16 @@ module Aws::SQS
303
303
  #
304
304
  # @option options [String] :session_token
305
305
  #
306
+ # @option options [Boolean] :simple_json (false)
307
+ # Disables request parameter conversion, validation, and formatting.
308
+ # Also disable response data type conversions. This option is useful
309
+ # when you want to ensure the highest level of performance by
310
+ # avoiding overhead of walking request parameters and response data
311
+ # structures.
312
+ #
313
+ # When `:simple_json` is enabled, the request parameters hash must
314
+ # be formatted exactly as the DynamoDB API expects.
315
+ #
306
316
  # @option options [Boolean] :stub_responses (false)
307
317
  # Causes the client to return stubbed responses. By default
308
318
  # fake responses are generated and returned. You can specify
@@ -2786,7 +2796,7 @@ module Aws::SQS
2786
2796
  params: params,
2787
2797
  config: config)
2788
2798
  context[:gem_name] = 'aws-sdk-sqs'
2789
- context[:gem_version] = '1.65.0'
2799
+ context[:gem_version] = '1.69.0'
2790
2800
  Seahorse::Client::Request.new(handlers, context)
2791
2801
  end
2792
2802