aws-sdk-kinesis 1.44.0 → 1.45.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kinesis/async_client.rb +1 -1
- data/lib/aws-sdk-kinesis/client.rb +1 -1
- data/lib/aws-sdk-kinesis/endpoint_provider.rb +9 -0
- data/lib/aws-sdk-kinesis.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ccbd16678bf4cfd6366cc3114d3baa601c1e7d3d2ace54dbae06c2d1bae0baa
|
|
4
|
+
data.tar.gz: fd988819e86c87694a90cdd5103c070abd5317948220ef4bdc719e053f775bc3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87018f0e1f8075eb5720d0ba1c765e3a4cec8b3913385d59984578a521cedcad8c27f7edb20399ae4016026c94dff8052d84f9b7206ff42e1df40db8fdcced5b
|
|
7
|
+
data.tar.gz: 02415dfc2c18418ede9a36b01f33a6030f60530c53338c65ecdd543fa43e4c473accfbd9f16071efcd27c9f08bae9a4a725d7076a972b0ef4b402eebdb687725
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.45.0
|
|
@@ -595,7 +595,7 @@ module Aws::Kinesis
|
|
|
595
595
|
http_response: Seahorse::Client::Http::AsyncResponse.new,
|
|
596
596
|
config: config)
|
|
597
597
|
context[:gem_name] = 'aws-sdk-kinesis'
|
|
598
|
-
context[:gem_version] = '1.
|
|
598
|
+
context[:gem_version] = '1.45.0'
|
|
599
599
|
Seahorse::Client::Request.new(handlers, context)
|
|
600
600
|
end
|
|
601
601
|
|
|
@@ -2616,7 +2616,7 @@ module Aws::Kinesis
|
|
|
2616
2616
|
params: params,
|
|
2617
2617
|
config: config)
|
|
2618
2618
|
context[:gem_name] = 'aws-sdk-kinesis'
|
|
2619
|
-
context[:gem_version] = '1.
|
|
2619
|
+
context[:gem_version] = '1.45.0'
|
|
2620
2620
|
Seahorse::Client::Request.new(handlers, context)
|
|
2621
2621
|
end
|
|
2622
2622
|
|
|
@@ -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'
|
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.45.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-01-
|
|
11
|
+
date: 2023-01-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|