aws-sdk-kinesis 1.36.0 → 1.40.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-kinesis/async_client.rb +26 -4
- data/lib/aws-sdk-kinesis/client.rb +212 -89
- data/lib/aws-sdk-kinesis/client_api.rb +37 -1
- data/lib/aws-sdk-kinesis/errors.rb +16 -0
- data/lib/aws-sdk-kinesis/types.rb +256 -56
- 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: e802ca0459c8ae276eb751a7d0b3d1860b6b8774ed7e891b5497f4e670e11558
|
4
|
+
data.tar.gz: 593d3060b1bd79841cf3c16ae3b68feaac59fdab7298ecb4d845831a765dfbd7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7c28bc45c25d958886dcd45b802574ca2f520f83faef8f94556b585fc0b4ecf394e30882540289be5b9e3d5da08be1d8c40392de551cb140a7f09e8d01d4abd
|
7
|
+
data.tar.gz: '058840afd0de98fc07d5c8ecaf5635e702e815a4037989c0126e525ab902fdbf0bfc27f7e9ed279bea8f1eb42693ee7b0ceedaa880661ef835164972cbfeb283'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.40.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.39.0 (2021-12-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.38.0 (2021-11-30)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Amazon Kinesis Data Streams now supports on demand streams.
|
18
|
+
|
19
|
+
1.37.0 (2021-11-04)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.36.0 (2021-10-18)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.40.0
|
@@ -23,6 +23,8 @@ require 'aws-sdk-core/plugins/stub_responses.rb'
|
|
23
23
|
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
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
27
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
26
28
|
require 'aws-sdk-core/plugins/invocation_id.rb'
|
27
29
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
30
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
@@ -52,6 +54,8 @@ module Aws::Kinesis
|
|
52
54
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
53
55
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
54
56
|
add_plugin(Aws::Plugins::HttpChecksum)
|
57
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
58
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
55
59
|
add_plugin(Aws::Plugins::InvocationId)
|
56
60
|
add_plugin(Aws::Plugins::SignatureV4)
|
57
61
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
@@ -98,7 +102,9 @@ module Aws::Kinesis
|
|
98
102
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
99
103
|
# are very aggressive. Construct and pass an instance of
|
100
104
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
101
|
-
# enable retries and extended timeouts.
|
105
|
+
# enable retries and extended timeouts. Instance profile credential
|
106
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
107
|
+
# to true.
|
102
108
|
#
|
103
109
|
# @option options [required, String] :region
|
104
110
|
# The AWS region to connect to. The configured `:region` is
|
@@ -128,6 +134,10 @@ module Aws::Kinesis
|
|
128
134
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
129
135
|
# a clock skew correction and retry requests with skewed client clocks.
|
130
136
|
#
|
137
|
+
# @option options [String] :defaults_mode ("legacy")
|
138
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
139
|
+
# accepted modes and the configuration defaults that are included.
|
140
|
+
#
|
131
141
|
# @option options [String] :endpoint
|
132
142
|
# The client endpoint is normally constructed from the `:region`
|
133
143
|
# option. You should only configure an `:endpoint` when connecting
|
@@ -230,6 +240,15 @@ module Aws::Kinesis
|
|
230
240
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
231
241
|
# requests are made, and retries are disabled.
|
232
242
|
#
|
243
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
244
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
245
|
+
# will be used if available.
|
246
|
+
#
|
247
|
+
# @option options [Boolean] :use_fips_endpoint
|
248
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
249
|
+
# When a `fips` region is used, the region is normalized and this config
|
250
|
+
# is set to `true`.
|
251
|
+
#
|
233
252
|
# @option options [Boolean] :validate_params (true)
|
234
253
|
# When `true`, request parameters are validated before
|
235
254
|
# sending the request.
|
@@ -267,8 +286,9 @@ module Aws::Kinesis
|
|
267
286
|
# If you call `SubscribeToShard` again with the same `ConsumerARN` and
|
268
287
|
# `ShardId` within 5 seconds of a successful call, you'll get a
|
269
288
|
# `ResourceInUseException`. If you call `SubscribeToShard` 5 seconds or
|
270
|
-
# more after a successful call, the
|
271
|
-
#
|
289
|
+
# more after a successful call, the second call takes over the
|
290
|
+
# subscription and the previous connection expires or fails with a
|
291
|
+
# `ResourceInUseException`.
|
272
292
|
#
|
273
293
|
# For an example of how to use this operations, see [Enhanced Fan-Out
|
274
294
|
# Using the Kinesis Data Streams
|
@@ -283,6 +303,8 @@ module Aws::Kinesis
|
|
283
303
|
# shards for a given stream, use ListShards.
|
284
304
|
#
|
285
305
|
# @option params [required, Types::StartingPosition] :starting_position
|
306
|
+
# The starting position in the data stream from which to start
|
307
|
+
# streaming.
|
286
308
|
#
|
287
309
|
# @return [Types::SubscribeToShardOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
288
310
|
#
|
@@ -554,7 +576,7 @@ module Aws::Kinesis
|
|
554
576
|
http_response: Seahorse::Client::Http::AsyncResponse.new,
|
555
577
|
config: config)
|
556
578
|
context[:gem_name] = 'aws-sdk-kinesis'
|
557
|
-
context[:gem_version] = '1.
|
579
|
+
context[:gem_version] = '1.40.0'
|
558
580
|
Seahorse::Client::Request.new(handlers, context)
|
559
581
|
end
|
560
582
|
|