aws-sdk-gluedatabrew 1.59.0 → 1.60.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-gluedatabrew/client.rb +1 -1
- data/lib/aws-sdk-gluedatabrew/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-gluedatabrew.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: 11cf68ef026ac9a20dd2863ecf669437715b9a7222a68b066c58c552330d1be7
|
4
|
+
data.tar.gz: aa8b26f2fc7119db449c91b4f95387247618622ccd26b6d7cd2064ff6d987409
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e86afad9ce37cb255c07eb738fb1e3bf78ea08a5b95770a40f2335bc47194c93e1351e7dfc8dc29607f355b3728faf55c13c9716e8d210ae4cdb5dd447220b3
|
7
|
+
data.tar.gz: 1d39ce1260a981ff0a4e61393ff7e745d5e6f0bdce2a0557bede014fbd2b2bb7cb2953fe3b6f993f53dc62e2f1abf79b3b9d34065a192582755dad444ebcb001
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.60.0
|
@@ -3447,7 +3447,7 @@ module Aws::GlueDataBrew
|
|
3447
3447
|
tracer: tracer
|
3448
3448
|
)
|
3449
3449
|
context[:gem_name] = 'aws-sdk-gluedatabrew'
|
3450
|
-
context[:gem_version] = '1.
|
3450
|
+
context[:gem_version] = '1.60.0'
|
3451
3451
|
Seahorse::Client::Request.new(handlers, context)
|
3452
3452
|
end
|
3453
3453
|
|
@@ -28,7 +28,7 @@ module Aws::GlueDataBrew
|
|
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
|
if Aws::Endpoints::Matchers.string_equals?(parameters.region, "us-gov-west-1")
|
33
33
|
return Aws::Endpoints::Endpoint.new(url: "https://databrew.us-gov-west-1.amazonaws.com", headers: {}, properties: {})
|
34
34
|
end
|
data/lib/aws-sdk-gluedatabrew.rb
CHANGED