aws-sdk-applicationsignals 1.14.0 → 1.15.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-applicationsignals/client.rb +1 -1
- data/lib/aws-sdk-applicationsignals/endpoint_provider.rb +8 -11
- data/lib/aws-sdk-applicationsignals.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: 8f7f8030669696b75bed6c6ac4154429c0c35054f0e9c0704215bc34136b9041
|
4
|
+
data.tar.gz: 52b7788a5588c6dea6842f38dfa5ff6078f78a4cd4be56c1b0c1cd7382396e5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b5f94e1152605aecdacc31493bcd12585c286a62f5253b7722c685388f6cc0df011c1c59551a88be7ee3bb975689f3bc4ca16b7e635a152d564472282bac82e
|
7
|
+
data.tar.gz: a3db732cb253b7342089a35ed317c7f6512783b870835cbc72259fd53b8a795cf9f3c308f11fa7d8a2bfb461b2ba9342307c8b6b9e17c7a67fd8b8198b9b21f5
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.15.0
|
@@ -2160,7 +2160,7 @@ module Aws::ApplicationSignals
|
|
2160
2160
|
tracer: tracer
|
2161
2161
|
)
|
2162
2162
|
context[:gem_name] = 'aws-sdk-applicationsignals'
|
2163
|
-
context[:gem_version] = '1.
|
2163
|
+
context[:gem_version] = '1.15.0'
|
2164
2164
|
Seahorse::Client::Request.new(handlers, context)
|
2165
2165
|
end
|
2166
2166
|
|
@@ -10,21 +10,18 @@
|
|
10
10
|
module Aws::ApplicationSignals
|
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://application-signals-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://application-signals-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
26
23
|
end
|
27
|
-
return Aws::Endpoints::Endpoint.new(url: "https://application-signals.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: "https://application-signals.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
28
25
|
end
|
29
26
|
end
|
30
27
|
raise ArgumentError, "Invalid Configuration: Missing Region"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-applicationsignals
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.15.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
|