aws-sdk-dsql 1.2.0 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dsql/client.rb +1 -1
- data/lib/aws-sdk-dsql/endpoint_provider.rb +8 -11
- data/lib/aws-sdk-dsql.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 39241b71512226f795c5826d8a91bd4bfa63aad961f72bfce0f4f70fea2cdecf
|
4
|
+
data.tar.gz: '0803d12e53fc1a6164b3fc07980583580b8bbb08f69d6375a02302ba751773a5'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e537435b122f12f0ff45474748c76ed1e38821c9a7c4f689c8fc9924b1bb1e3f1f9bd1746ba61940872afc95b7c83c609efa3205bea3cf6e382f989429e9c380
|
7
|
+
data.tar.gz: ec79a60bd1b87558d0338dcb79ea746bf158cd1b049a5be86de7191d00efdb93d61846891c10631adb93c83dff0b48d21b95aee85396493b107ea3d3f2bb789c
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.3.0
|
data/lib/aws-sdk-dsql/client.rb
CHANGED
@@ -10,21 +10,18 @@
|
|
10
10
|
module Aws::DSQL
|
11
11
|
class EndpointProvider
|
12
12
|
def resolve_endpoint(parameters)
|
13
|
-
|
14
|
-
|
15
|
-
region = parameters.region
|
16
|
-
if Aws::Endpoints::Matchers.set?(endpoint)
|
17
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
13
|
+
if Aws::Endpoints::Matchers.set?(parameters.endpoint)
|
14
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
|
18
15
|
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
19
16
|
end
|
20
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
17
|
+
return Aws::Endpoints::Endpoint.new(url: parameters.endpoint, headers: {}, properties: {})
|
21
18
|
end
|
22
|
-
if Aws::Endpoints::Matchers.set?(region)
|
23
|
-
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
24
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
25
|
-
return Aws::Endpoints::Endpoint.new(url: "https://dsql-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
19
|
+
if Aws::Endpoints::Matchers.set?(parameters.region)
|
20
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
|
21
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
|
22
|
+
return Aws::Endpoints::Endpoint.new(url: "https://dsql-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
26
23
|
end
|
27
|
-
return Aws::Endpoints::Endpoint.new(url: "https://dsql.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: "https://dsql.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
28
25
|
end
|
29
26
|
end
|
30
27
|
raise ArgumentError, "Invalid Configuration: Missing Region"
|
data/lib/aws-sdk-dsql.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-dsql
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-02-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|