aws-sdk-kendraranking 1.35.0 → 1.37.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 065421560a78d7685c2a12b6909b81bf26fa3d8c0ab8611228a316195a3bef01
|
|
4
|
+
data.tar.gz: f184b91b8e562e7432a12391432a1fea5312f285f24991f08d05b97c201e15f1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bee86d19d78925f266fad01887957824eb5560a9c37aceae3160d428580d43230774462196fb873f098e3c616fc8cf43019922e86f49ffc4ddeb49f2d7a50693
|
|
7
|
+
data.tar.gz: ce0707d6b760ec8a1e00b3eed023ab5af5fd1d5e34c4c18c18ea3679f5c3e8235871bd224349a357fcfc46afb1e38f6a5792358821786067842a140d81da4d48
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.37.0 (2025-10-17)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Update endpoint ruleset parameters casing
|
|
8
|
+
|
|
9
|
+
1.36.0 (2025-09-19)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Model whitespace change - no client difference
|
|
13
|
+
|
|
4
14
|
1.35.0 (2025-08-26)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.37.0
|
|
@@ -13,17 +13,17 @@ module Aws::KendraRanking
|
|
|
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_fips
|
|
19
19
|
# 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.
|
|
20
20
|
#
|
|
21
|
-
# @return [
|
|
21
|
+
# @return [boolean]
|
|
22
22
|
#
|
|
23
23
|
# @!attribute endpoint
|
|
24
24
|
# Override the endpoint used to send this request
|
|
25
25
|
#
|
|
26
|
-
# @return [
|
|
26
|
+
# @return [string]
|
|
27
27
|
#
|
|
28
28
|
EndpointParameters = Struct.new(
|
|
29
29
|
:region,
|
|
@@ -20,7 +20,7 @@ module Aws::KendraRanking
|
|
|
20
20
|
if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
|
|
21
21
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
22
22
|
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
|
|
23
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
|
23
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
|
24
24
|
return Aws::Endpoints::Endpoint.new(url: "https://kendra-ranking-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
25
25
|
end
|
|
26
26
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
@@ -28,7 +28,7 @@ module Aws::KendraRanking
|
|
|
28
28
|
return Aws::Endpoints::Endpoint.new(url: "https://kendra-ranking.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
29
29
|
end
|
|
30
30
|
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
|
|
31
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
|
31
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
|
32
32
|
return Aws::Endpoints::Endpoint.new(url: "https://kendra-ranking-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
33
33
|
end
|
|
34
34
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|