aws-sdk-kinesis 1.48.0 → 1.50.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kinesis/async_client.rb +16 -1
- data/lib/aws-sdk-kinesis/client.rb +16 -1
- data/lib/aws-sdk-kinesis.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: 7e9203d14233926dd22b73ccfb14b1bbd1eb86ac400851f349f1e146fd6baa3f
|
4
|
+
data.tar.gz: dc4dde31a9a72b6dea23d6a888f9bc100e1c03d3aa148bbf582a1e55f52d4ee7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b61f7744088c27eb15289b3ff6a7acab490262a5f662de7b850d6586841d180e4044c49df1d21e3688a659320a7780a10ed32b680b0fdad17e97f9bdc758d81f
|
7
|
+
data.tar.gz: 88079d9938fff69aeb2f7aff8a31c6fa68d8b4af7ec5ca7931fd3540cfe4c4f46246a93da7c4f32b032d3b8921487f1ee239607e9ff624a7352dd21fd063e0ec
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.50.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.49.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.48.0 (2023-06-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.50.0
|
@@ -24,6 +24,7 @@ require 'aws-sdk-core/plugins/idempotency_token.rb'
|
|
24
24
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
25
25
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
26
26
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
27
|
+
require 'aws-sdk-core/plugins/request_compression.rb'
|
27
28
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
28
29
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
29
30
|
require 'aws-sdk-core/plugins/invocation_id.rb'
|
@@ -56,6 +57,7 @@ module Aws::Kinesis
|
|
56
57
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
57
58
|
add_plugin(Aws::Plugins::HttpChecksum)
|
58
59
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
60
|
+
add_plugin(Aws::Plugins::RequestCompression)
|
59
61
|
add_plugin(Aws::Plugins::DefaultsMode)
|
60
62
|
add_plugin(Aws::Plugins::RecursionDetection)
|
61
63
|
add_plugin(Aws::Plugins::InvocationId)
|
@@ -141,6 +143,10 @@ module Aws::Kinesis
|
|
141
143
|
# See {Aws::DefaultsModeConfiguration} for a list of the
|
142
144
|
# accepted modes and the configuration defaults that are included.
|
143
145
|
#
|
146
|
+
# @option options [Boolean] :disable_request_compression (false)
|
147
|
+
# When set to 'true' the request body will not be compressed
|
148
|
+
# for supported operations.
|
149
|
+
#
|
144
150
|
# @option options [String] :endpoint
|
145
151
|
# The client endpoint is normally constructed from the `:region`
|
146
152
|
# option. You should only configure an `:endpoint` when connecting
|
@@ -149,6 +155,10 @@ module Aws::Kinesis
|
|
149
155
|
# @option options [Proc] :event_stream_handler
|
150
156
|
# When an EventStream or Proc object is provided, it will be used as callback for each chunk of event stream response received along the way.
|
151
157
|
#
|
158
|
+
# @option options [Boolean] :ignore_configured_endpoint_urls
|
159
|
+
# Setting to true disables use of endpoint URLs provided via environment
|
160
|
+
# variables and the shared configuration file.
|
161
|
+
#
|
152
162
|
# @option options [Proc] :input_event_stream_handler
|
153
163
|
# When an EventStream or Proc object is provided, it can be used for sending events for the event stream.
|
154
164
|
#
|
@@ -175,6 +185,11 @@ module Aws::Kinesis
|
|
175
185
|
# Used when loading credentials from the shared credentials file
|
176
186
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
177
187
|
#
|
188
|
+
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
189
|
+
# The minimum size in bytes that triggers compression for request
|
190
|
+
# bodies. The value must be non-negative integer value between 0
|
191
|
+
# and 10485780 bytes inclusive.
|
192
|
+
#
|
178
193
|
# @option options [Proc] :retry_backoff
|
179
194
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
180
195
|
# This option is only used in the `legacy` retry mode.
|
@@ -600,7 +615,7 @@ module Aws::Kinesis
|
|
600
615
|
http_response: Seahorse::Client::Http::AsyncResponse.new,
|
601
616
|
config: config)
|
602
617
|
context[:gem_name] = 'aws-sdk-kinesis'
|
603
|
-
context[:gem_version] = '1.
|
618
|
+
context[:gem_version] = '1.50.0'
|
604
619
|
Seahorse::Client::Request.new(handlers, context)
|
605
620
|
end
|
606
621
|
|
@@ -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'
|
@@ -78,6 +79,7 @@ module Aws::Kinesis
|
|
78
79
|
add_plugin(Aws::Plugins::TransferEncoding)
|
79
80
|
add_plugin(Aws::Plugins::HttpChecksum)
|
80
81
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
82
|
+
add_plugin(Aws::Plugins::RequestCompression)
|
81
83
|
add_plugin(Aws::Plugins::DefaultsMode)
|
82
84
|
add_plugin(Aws::Plugins::RecursionDetection)
|
83
85
|
add_plugin(Aws::Plugins::Sign)
|
@@ -192,6 +194,10 @@ module Aws::Kinesis
|
|
192
194
|
# Set to true to disable SDK automatically adding host prefix
|
193
195
|
# to default service endpoint when available.
|
194
196
|
#
|
197
|
+
# @option options [Boolean] :disable_request_compression (false)
|
198
|
+
# When set to 'true' the request body will not be compressed
|
199
|
+
# for supported operations.
|
200
|
+
#
|
195
201
|
# @option options [String] :endpoint
|
196
202
|
# The client endpoint is normally constructed from the `:region`
|
197
203
|
# option. You should only configure an `:endpoint` when connecting
|
@@ -215,6 +221,10 @@ module Aws::Kinesis
|
|
215
221
|
# @option options [Proc] :event_stream_handler
|
216
222
|
# When an EventStream or Proc object is provided, it will be used as callback for each chunk of event stream response received along the way.
|
217
223
|
#
|
224
|
+
# @option options [Boolean] :ignore_configured_endpoint_urls
|
225
|
+
# Setting to true disables use of endpoint URLs provided via environment
|
226
|
+
# variables and the shared configuration file.
|
227
|
+
#
|
218
228
|
# @option options [Proc] :input_event_stream_handler
|
219
229
|
# When an EventStream or Proc object is provided, it can be used for sending events for the event stream.
|
220
230
|
#
|
@@ -241,6 +251,11 @@ module Aws::Kinesis
|
|
241
251
|
# Used when loading credentials from the shared credentials file
|
242
252
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
243
253
|
#
|
254
|
+
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
255
|
+
# The minimum size in bytes that triggers compression for request
|
256
|
+
# bodies. The value must be non-negative integer value between 0
|
257
|
+
# and 10485780 bytes inclusive.
|
258
|
+
#
|
244
259
|
# @option options [Proc] :retry_backoff
|
245
260
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
246
261
|
# This option is only used in the `legacy` retry mode.
|
@@ -2621,7 +2636,7 @@ module Aws::Kinesis
|
|
2621
2636
|
params: params,
|
2622
2637
|
config: config)
|
2623
2638
|
context[:gem_name] = 'aws-sdk-kinesis'
|
2624
|
-
context[:gem_version] = '1.
|
2639
|
+
context[:gem_version] = '1.50.0'
|
2625
2640
|
Seahorse::Client::Request.new(handlers, context)
|
2626
2641
|
end
|
2627
2642
|
|
data/lib/aws-sdk-kinesis.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-kinesis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.50.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
|