aws-sdk-kinesis 1.34.0 → 1.38.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kinesis/async_client.rb +21 -9
- data/lib/aws-sdk-kinesis/client.rb +200 -88
- 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 +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eac4d4cecdba7a2a01bf4c7eaa8fdb618c1241b2095425c14fdee808a03f06d8
|
4
|
+
data.tar.gz: 6140ade32140e09d1e732a489dcb41642cbb4dda3b4831260d7c3ca173c304ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c54f5ba41fd45fccf416c1654397e3fc48a84c33973b5f36f2047968c4478518701f76fedbaea75ace5fb4c44f71897587d48585ff932b08070c7674943e93c
|
7
|
+
data.tar.gz: 6feebd9c5ebc17f96ddb23398534b9128359c25bd7290c7940252e0acea54418badb2e469121eecfcf06f6c6a529377bc00e10924539888db517c8a8c3e804c2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.38.0 (2021-11-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Amazon Kinesis Data Streams now supports on demand streams.
|
8
|
+
|
9
|
+
1.37.0 (2021-11-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.36.0 (2021-10-18)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.35.0 (2021-09-01)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.34.0 (2021-07-30)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.38.0
|
@@ -7,11 +7,9 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
rescue LoadError; end
|
14
|
-
end
|
10
|
+
begin
|
11
|
+
require 'http/2'
|
12
|
+
rescue LoadError; end
|
15
13
|
require 'aws-sdk-core/plugins/credentials_configuration.rb'
|
16
14
|
require 'aws-sdk-core/plugins/logging.rb'
|
17
15
|
require 'aws-sdk-core/plugins/param_converter.rb'
|
@@ -100,7 +98,9 @@ module Aws::Kinesis
|
|
100
98
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
101
99
|
# are very aggressive. Construct and pass an instance of
|
102
100
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
103
|
-
# enable retries and extended timeouts.
|
101
|
+
# enable retries and extended timeouts. Instance profile credential
|
102
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
103
|
+
# to true.
|
104
104
|
#
|
105
105
|
# @option options [required, String] :region
|
106
106
|
# The AWS region to connect to. The configured `:region` is
|
@@ -232,6 +232,15 @@ module Aws::Kinesis
|
|
232
232
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
233
233
|
# requests are made, and retries are disabled.
|
234
234
|
#
|
235
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
236
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
237
|
+
# will be used if available.
|
238
|
+
#
|
239
|
+
# @option options [Boolean] :use_fips_endpoint
|
240
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
241
|
+
# When a `fips` region is used, the region is normalized and this config
|
242
|
+
# is set to `true`.
|
243
|
+
#
|
235
244
|
# @option options [Boolean] :validate_params (true)
|
236
245
|
# When `true`, request parameters are validated before
|
237
246
|
# sending the request.
|
@@ -269,8 +278,9 @@ module Aws::Kinesis
|
|
269
278
|
# If you call `SubscribeToShard` again with the same `ConsumerARN` and
|
270
279
|
# `ShardId` within 5 seconds of a successful call, you'll get a
|
271
280
|
# `ResourceInUseException`. If you call `SubscribeToShard` 5 seconds or
|
272
|
-
# more after a successful call, the
|
273
|
-
#
|
281
|
+
# more after a successful call, the second call takes over the
|
282
|
+
# subscription and the previous connection expires or fails with a
|
283
|
+
# `ResourceInUseException`.
|
274
284
|
#
|
275
285
|
# For an example of how to use this operations, see [Enhanced Fan-Out
|
276
286
|
# Using the Kinesis Data Streams
|
@@ -285,6 +295,8 @@ module Aws::Kinesis
|
|
285
295
|
# shards for a given stream, use ListShards.
|
286
296
|
#
|
287
297
|
# @option params [required, Types::StartingPosition] :starting_position
|
298
|
+
# The starting position in the data stream from which to start
|
299
|
+
# streaming.
|
288
300
|
#
|
289
301
|
# @return [Types::SubscribeToShardOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
290
302
|
#
|
@@ -556,7 +568,7 @@ module Aws::Kinesis
|
|
556
568
|
http_response: Seahorse::Client::Http::AsyncResponse.new,
|
557
569
|
config: config)
|
558
570
|
context[:gem_name] = 'aws-sdk-kinesis'
|
559
|
-
context[:gem_version] = '1.
|
571
|
+
context[:gem_version] = '1.38.0'
|
560
572
|
Seahorse::Client::Request.new(handlers, context)
|
561
573
|
end
|
562
574
|
|