aws-sdk-lex 1.82.0 → 1.83.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: 29698a28f616b5e1a9dce967aeeb317d26b76bc8722cca51c57cc679aeff9ad4
4
- data.tar.gz: f28e3878bc195e3102aaaf1fb64e528ab7a047774237f04a91392d31231bfa2a
3
+ metadata.gz: 33a9ea464a23832aa5bcbf0e942cf34f3b4718bcf7b151912fe1f16136b5b64b
4
+ data.tar.gz: 493987ff37eb7ddd4ade30874fd3df96adb386c4c387ead8e7fd6ea991695b10
5
5
  SHA512:
6
- metadata.gz: '02779eaeb2947f088a13bfc720ea31e07899da82975c8e838f5c67c932d2dffae12417d64c20b90e3818cb36f0314439481e05c507ff48363837136c2c39add1'
7
- data.tar.gz: f1d15b0a85128fbbfee428dca262493423fe4abbe0d4fe11529873d93a00b16d99f630ddeff362451116c803b07ef2a11d3dca4f4270f21629a3fa8e00f128db
6
+ metadata.gz: f3d6b36c49efef5015d2a7d5a36f98b44dd30156e3c8d1ef8eb20d6b08768cb7144f343784a54e5155a00f370d9f6504753f0353bc566b70bfdd42e2fc0ab2d5
7
+ data.tar.gz: f1bb66beba5b0cf1b79370eab6cf8fc348ac20f6ae4834c17449c0a4c5925f27fc3271893a9f38b1c60b788b33ba0c394562440e703f4fd916502fdd54721cda
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.83.0 (2025-08-25)
5
+ ------------------
6
+
7
+ * Feature - Remove incorrect endpoint tests
8
+
4
9
  1.82.0 (2025-08-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.82.0
1
+ 1.83.0
@@ -1278,7 +1278,7 @@ module Aws::Lex
1278
1278
  tracer: tracer
1279
1279
  )
1280
1280
  context[:gem_name] = 'aws-sdk-lex'
1281
- context[:gem_version] = '1.82.0'
1281
+ context[:gem_version] = '1.83.0'
1282
1282
  Seahorse::Client::Request.new(handlers, context)
1283
1283
  end
1284
1284
 
@@ -28,11 +28,11 @@ module Aws::Lex
28
28
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
29
29
  end
30
30
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
31
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
32
- if Aws::Endpoints::Matchers.string_equals?("aws", Aws::Endpoints::Matchers.attr(partition_result, "name"))
31
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
32
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws")
33
33
  return Aws::Endpoints::Endpoint.new(url: "https://runtime-fips.lex.#{parameters.region}.amazonaws.com", headers: {}, properties: {})
34
34
  end
35
- if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
35
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://runtime-fips.lex.#{parameters.region}.amazonaws.com", headers: {}, properties: {})
37
37
  end
38
38
  return Aws::Endpoints::Endpoint.new(url: "https://runtime.lex-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
data/lib/aws-sdk-lex.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::Lex
54
54
  autoload :EndpointProvider, 'aws-sdk-lex/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-lex/endpoints'
56
56
 
57
- GEM_VERSION = '1.82.0'
57
+ GEM_VERSION = '1.83.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lex
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.82.0
4
+ version: 1.83.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services