aws-sdk-kinesis 1.44.0 → 1.46.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 +6 -1
- data/lib/aws-sdk-kinesis/client.rb +6 -1
- data/lib/aws-sdk-kinesis/endpoint_provider.rb +9 -0
- data/lib/aws-sdk-kinesis/types.rb +13 -13
- 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: d7d991d9fceb00dc4cbda1f7ec088a325a46623a6ff0a4775e2a364b3f5ad454
|
4
|
+
data.tar.gz: 712f0563d1470c3940fb83bcd91b0c057b38230846898a6e3006c179c2ee7b7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5bb35764acbe75f8788d5771f08f47f5a6f9aabf3aa4cee36dd8dc44a5d0df6295f5f7776942eea3f8fed6cbb3aa2ae27dc921a15bfea902c0f90ad91f15072e
|
7
|
+
data.tar.gz: d9869861806b6fd3f0ed946ba9b774ddb7ea5769e389e198db3b9abac7a79e9a2e89aec40abd46523bbf6e4ce2729d605b7e30d9e2aa3237ce5c78f6dfc2460f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.46.0 (2023-05-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.45.0 (2023-01-31)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Enabled FIPS endpoints for GovCloud (US) regions in SDK.
|
13
|
+
|
4
14
|
1.44.0 (2023-01-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.46.0
|
@@ -220,6 +220,11 @@ module Aws::Kinesis
|
|
220
220
|
# in the future.
|
221
221
|
#
|
222
222
|
#
|
223
|
+
# @option options [String] :sdk_ua_app_id
|
224
|
+
# A unique and opaque application ID that is appended to the
|
225
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
226
|
+
# maximum length of 50.
|
227
|
+
#
|
223
228
|
# @option options [String] :secret_access_key
|
224
229
|
#
|
225
230
|
# @option options [String] :session_token
|
@@ -595,7 +600,7 @@ module Aws::Kinesis
|
|
595
600
|
http_response: Seahorse::Client::Http::AsyncResponse.new,
|
596
601
|
config: config)
|
597
602
|
context[:gem_name] = 'aws-sdk-kinesis'
|
598
|
-
context[:gem_version] = '1.
|
603
|
+
context[:gem_version] = '1.46.0'
|
599
604
|
Seahorse::Client::Request.new(handlers, context)
|
600
605
|
end
|
601
606
|
|
@@ -286,6 +286,11 @@ module Aws::Kinesis
|
|
286
286
|
# in the future.
|
287
287
|
#
|
288
288
|
#
|
289
|
+
# @option options [String] :sdk_ua_app_id
|
290
|
+
# A unique and opaque application ID that is appended to the
|
291
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
292
|
+
# maximum length of 50.
|
293
|
+
#
|
289
294
|
# @option options [String] :secret_access_key
|
290
295
|
#
|
291
296
|
# @option options [String] :session_token
|
@@ -2616,7 +2621,7 @@ module Aws::Kinesis
|
|
2616
2621
|
params: params,
|
2617
2622
|
config: config)
|
2618
2623
|
context[:gem_name] = 'aws-sdk-kinesis'
|
2619
|
-
context[:gem_version] = '1.
|
2624
|
+
context[:gem_version] = '1.46.0'
|
2620
2625
|
Seahorse::Client::Request.new(handlers, context)
|
2621
2626
|
end
|
2622
2627
|
|
@@ -131,6 +131,9 @@ module Aws::Kinesis
|
|
131
131
|
end
|
132
132
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
133
133
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
134
|
+
if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
135
|
+
return Aws::Endpoints::Endpoint.new(url: "https://kinesis.#{region}.amazonaws.com", headers: {}, properties: {})
|
136
|
+
end
|
134
137
|
return Aws::Endpoints::Endpoint.new(url: "https://kinesis-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
135
138
|
end
|
136
139
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -141,6 +144,12 @@ module Aws::Kinesis
|
|
141
144
|
end
|
142
145
|
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
143
146
|
end
|
147
|
+
if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-east-1")
|
148
|
+
return Aws::Endpoints::Endpoint.new(url: "https://kinesis.us-gov-east-1.amazonaws.com", headers: {}, properties: {})
|
149
|
+
end
|
150
|
+
if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-west-1")
|
151
|
+
return Aws::Endpoints::Endpoint.new(url: "https://kinesis.us-gov-west-1.amazonaws.com", headers: {}, properties: {})
|
152
|
+
end
|
144
153
|
return Aws::Endpoints::Endpoint.new(url: "https://kinesis.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
145
154
|
end
|
146
155
|
raise ArgumentError, 'No endpoint could be resolved'
|
@@ -1460,9 +1460,9 @@ module Aws::Kinesis
|
|
1460
1460
|
# The encryption type to use on the record. This parameter can be one
|
1461
1461
|
# of the following values:
|
1462
1462
|
#
|
1463
|
-
# * `NONE
|
1463
|
+
# * `NONE`: Do not encrypt the records in the stream.
|
1464
1464
|
#
|
1465
|
-
# * `KMS
|
1465
|
+
# * `KMS`: Use server-side encryption on the records in the stream
|
1466
1466
|
# using a customer-managed Amazon Web Services KMS key.
|
1467
1467
|
# @return [String]
|
1468
1468
|
#
|
@@ -1519,9 +1519,9 @@ module Aws::Kinesis
|
|
1519
1519
|
# The encryption type used on the records. This parameter can be one
|
1520
1520
|
# of the following values:
|
1521
1521
|
#
|
1522
|
-
# * `NONE
|
1522
|
+
# * `NONE`: Do not encrypt the records.
|
1523
1523
|
#
|
1524
|
-
# * `KMS
|
1524
|
+
# * `KMS`: Use server-side encryption on the records using a
|
1525
1525
|
# customer-managed Amazon Web Services KMS key.
|
1526
1526
|
# @return [String]
|
1527
1527
|
#
|
@@ -1637,9 +1637,9 @@ module Aws::Kinesis
|
|
1637
1637
|
# The encryption type used on the record. This parameter can be one of
|
1638
1638
|
# the following values:
|
1639
1639
|
#
|
1640
|
-
# * `NONE
|
1640
|
+
# * `NONE`: Do not encrypt the records in the stream.
|
1641
1641
|
#
|
1642
|
-
# * `KMS
|
1642
|
+
# * `KMS`: Use server-side encryption on the records in the stream
|
1643
1643
|
# using a customer-managed Amazon Web Services KMS key.
|
1644
1644
|
# @return [String]
|
1645
1645
|
#
|
@@ -1951,20 +1951,20 @@ module Aws::Kinesis
|
|
1951
1951
|
# @!attribute [rw] type
|
1952
1952
|
# You can set the starting position to one of the following values:
|
1953
1953
|
#
|
1954
|
-
# `AT_SEQUENCE_NUMBER
|
1954
|
+
# `AT_SEQUENCE_NUMBER`: Start streaming from the position denoted by
|
1955
1955
|
# the sequence number specified in the `SequenceNumber` field.
|
1956
1956
|
#
|
1957
|
-
# `AFTER_SEQUENCE_NUMBER
|
1957
|
+
# `AFTER_SEQUENCE_NUMBER`: Start streaming right after the position
|
1958
1958
|
# denoted by the sequence number specified in the `SequenceNumber`
|
1959
1959
|
# field.
|
1960
1960
|
#
|
1961
|
-
# `AT_TIMESTAMP
|
1961
|
+
# `AT_TIMESTAMP`: Start streaming from the position denoted by the
|
1962
1962
|
# time stamp specified in the `Timestamp` field.
|
1963
1963
|
#
|
1964
|
-
# `TRIM_HORIZON
|
1964
|
+
# `TRIM_HORIZON`: Start streaming at the last untrimmed record in the
|
1965
1965
|
# shard, which is the oldest data record in the shard.
|
1966
1966
|
#
|
1967
|
-
# `LATEST
|
1967
|
+
# `LATEST`: Start streaming just after the most recent record in the
|
1968
1968
|
# shard, so that you always read the most recent data in the shard.
|
1969
1969
|
# @return [String]
|
1970
1970
|
#
|
@@ -2104,9 +2104,9 @@ module Aws::Kinesis
|
|
2104
2104
|
# The server-side encryption type used on the stream. This parameter
|
2105
2105
|
# can be one of the following values:
|
2106
2106
|
#
|
2107
|
-
# * `NONE
|
2107
|
+
# * `NONE`: Do not encrypt the records in the stream.
|
2108
2108
|
#
|
2109
|
-
# * `KMS
|
2109
|
+
# * `KMS`: Use server-side encryption on the records in the stream
|
2110
2110
|
# using a customer-managed Amazon Web Services KMS key.
|
2111
2111
|
# @return [String]
|
2112
2112
|
#
|
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.46.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-05-31 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.174.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.174.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|