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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c1985ff024cc6bbccf2a30b7a0711b746a35607c6481e5dfcf4fae188cc29e53
4
- data.tar.gz: d403eca5590d32e63fdcf33c87a88ebf1b60516c9d78979d668b84c3e4cd0eba
3
+ metadata.gz: 3ccbd16678bf4cfd6366cc3114d3baa601c1e7d3d2ace54dbae06c2d1bae0baa
4
+ data.tar.gz: fd988819e86c87694a90cdd5103c070abd5317948220ef4bdc719e053f775bc3
5
5
  SHA512:
6
- metadata.gz: 5667eed2422d99eabc5b86fe57618bedddd09a339b0afdc7e34cdf4e74c8a4c1ef24a555d0f67d518cff51cfdda11554fd3a5d8935434648aebe8a21e7e0b712
7
- data.tar.gz: a9817890e197cff29522159259cce9957c2615d1ed4c9594bb619ac71af32e0fb5d27596df47325b97c4ab4c8b5ed25b1bc97ddf8cbe46afffc3a311de729c77
6
+ metadata.gz: 87018f0e1f8075eb5720d0ba1c765e3a4cec8b3913385d59984578a521cedcad8c27f7edb20399ae4016026c94dff8052d84f9b7206ff42e1df40db8fdcced5b
7
+ data.tar.gz: 02415dfc2c18418ede9a36b01f33a6030f60530c53338c65ecdd543fa43e4c473accfbd9f16071efcd27c9f08bae9a4a725d7076a972b0ef4b402eebdb687725
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.45.0 (2023-01-31)
5
+ ------------------
6
+
7
+ * Feature - Enabled FIPS endpoints for GovCloud (US) regions in SDK.
8
+
4
9
  1.44.0 (2023-01-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.44.0
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.44.0'
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.44.0'
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'
@@ -55,6 +55,6 @@ require_relative 'aws-sdk-kinesis/event_streams'
55
55
  # @!group service
56
56
  module Aws::Kinesis
57
57
 
58
- GEM_VERSION = '1.44.0'
58
+ GEM_VERSION = '1.45.0'
59
59
 
60
60
  end
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.44.0
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-18 00:00:00.000000000 Z
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