aws-sdk-lexmodelbuildingservice 1.94.0 → 1.96.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lexmodelbuildingservice/client.rb +1 -1
- data/lib/aws-sdk-lexmodelbuildingservice/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-lexmodelbuildingservice/endpoint_provider.rb +3 -3
- data/lib/aws-sdk-lexmodelbuildingservice.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d802e9d6956298b9d5e6bb8e126634536bc7c6c6259af65fa73d3feb205a5234
|
|
4
|
+
data.tar.gz: a6725d3e0ab79b9c55d08ac030648f726afc84a7e394e6b0598b70de339803ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fbd539eed414abe90f4f5dc50002c3892c3cad5fec0fd8a6a29ca382ce876e44bbd6b2169ec774bfaff153faea5cdb865bff572ff86dddbad20792504d8cb43b
|
|
7
|
+
data.tar.gz: 45f845cc8ae9abda144be13ca27bb3d0b470394d819a7631414367612e6cae9341fe16296311f4d7711fa93330c283bc0441c41b9f9a057291b86b46511b7c32
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.96.0 (2025-10-16)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Update endpoint ruleset parameters casing
|
|
8
|
+
|
|
9
|
+
1.95.0 (2025-08-27)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Remove incorrect endpoint tests
|
|
13
|
+
|
|
4
14
|
1.94.0 (2025-08-26)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.96.0
|
|
@@ -4523,7 +4523,7 @@ module Aws::LexModelBuildingService
|
|
|
4523
4523
|
tracer: tracer
|
|
4524
4524
|
)
|
|
4525
4525
|
context[:gem_name] = 'aws-sdk-lexmodelbuildingservice'
|
|
4526
|
-
context[:gem_version] = '1.
|
|
4526
|
+
context[:gem_version] = '1.96.0'
|
|
4527
4527
|
Seahorse::Client::Request.new(handlers, context)
|
|
4528
4528
|
end
|
|
4529
4529
|
|
|
@@ -13,22 +13,22 @@ module Aws::LexModelBuildingService
|
|
|
13
13
|
# @!attribute region
|
|
14
14
|
# The AWS region used to dispatch the request.
|
|
15
15
|
#
|
|
16
|
-
# @return [
|
|
16
|
+
# @return [string]
|
|
17
17
|
#
|
|
18
18
|
# @!attribute use_dual_stack
|
|
19
19
|
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
|
20
20
|
#
|
|
21
|
-
# @return [
|
|
21
|
+
# @return [boolean]
|
|
22
22
|
#
|
|
23
23
|
# @!attribute use_fips
|
|
24
24
|
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
|
25
25
|
#
|
|
26
|
-
# @return [
|
|
26
|
+
# @return [boolean]
|
|
27
27
|
#
|
|
28
28
|
# @!attribute endpoint
|
|
29
29
|
# Override the endpoint used to send this request
|
|
30
30
|
#
|
|
31
|
-
# @return [
|
|
31
|
+
# @return [string]
|
|
32
32
|
#
|
|
33
33
|
EndpointParameters = Struct.new(
|
|
34
34
|
:region,
|
|
@@ -28,11 +28,11 @@ module Aws::LexModelBuildingService
|
|
|
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?(
|
|
32
|
-
if Aws::Endpoints::Matchers.string_equals?(
|
|
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://models-fips.lex.#{parameters.region}.amazonaws.com", headers: {}, properties: {})
|
|
34
34
|
end
|
|
35
|
-
if Aws::Endpoints::Matchers.string_equals?(
|
|
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://models-fips.lex.#{parameters.region}.amazonaws.com", headers: {}, properties: {})
|
|
37
37
|
end
|
|
38
38
|
return Aws::Endpoints::Endpoint.new(url: "https://models.lex-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|