aws-sdk-iotanalytics 1.85.0 → 1.86.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-iotanalytics/client.rb +1 -1
- data/lib/aws-sdk-iotanalytics/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-iotanalytics.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: d7169e1511dbfb750d35ecf0486b64e76b2d5411775449f84e5c27946d9449c1
|
4
|
+
data.tar.gz: '011827af289c4069e78aa43c6950753aaad88e5d885a754c38bb452cea489545'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 155945543e15cc1b21f88f7e4221abca9cfeec00cfd1b35af939db4ea8f311bfd5f2b8688585a031b4c1f97b7c2893bb75519db2d6d71e3b7f5d936d82d43d5a
|
7
|
+
data.tar.gz: 39c624b7ea7db4f9c3caa922156a57fb165ff0b4acb975a92981a4532ab5c6d98ae62467338e86ebbf527a53cc76d6baa832a5439e0875408c53275274622fb6
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.86.0
|
@@ -2389,7 +2389,7 @@ module Aws::IoTAnalytics
|
|
2389
2389
|
tracer: tracer
|
2390
2390
|
)
|
2391
2391
|
context[:gem_name] = 'aws-sdk-iotanalytics'
|
2392
|
-
context[:gem_version] = '1.
|
2392
|
+
context[:gem_version] = '1.86.0'
|
2393
2393
|
Seahorse::Client::Request.new(handlers, context)
|
2394
2394
|
end
|
2395
2395
|
|
@@ -28,7 +28,7 @@ module Aws::IoTAnalytics
|
|
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?(
|
31
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
32
32
|
return Aws::Endpoints::Endpoint.new(url: "https://iotanalytics-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"
|
data/lib/aws-sdk-iotanalytics.rb
CHANGED