aws-sdk-applicationsignals 1.14.0 → 1.15.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: 6f61fd5ba1644cc4d24935084f47ffe56ed0568f49d7a40df00c20fa21378f86
4
- data.tar.gz: 5dcbef16a32d96d64413e77ef9bb0eb7ed780dc55a473b42d3303f69c6595cdc
3
+ metadata.gz: 8f7f8030669696b75bed6c6ac4154429c0c35054f0e9c0704215bc34136b9041
4
+ data.tar.gz: 52b7788a5588c6dea6842f38dfa5ff6078f78a4cd4be56c1b0c1cd7382396e5d
5
5
  SHA512:
6
- metadata.gz: 8f740427cbda2090d5ffb5009b539b1d66bd18b20b53794b3bdf189d7e3e087dbe8d24c8e543183a066700906187f7cd38764d8f6a21bc677ee1b10850ae1c19
7
- data.tar.gz: fa4b4cf0c51a85e7d628b167aaf865f03d989a861fbad8b35278f685f468886a11ecb5c03c27a7345bf3883a575188a57c6f523c53997f91be6ec221307c848b
6
+ metadata.gz: 6b5f94e1152605aecdacc31493bcd12585c286a62f5253b7722c685388f6cc0df011c1c59551a88be7ee3bb975689f3bc4ca16b7e635a152d564472282bac82e
7
+ data.tar.gz: a3db732cb253b7342089a35ed317c7f6512783b870835cbc72259fd53b8a795cf9f3c308f11fa7d8a2bfb461b2ba9342307c8b6b9e17c7a67fd8b8198b9b21f5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.15.0 (2025-02-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.14.0 (2025-01-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
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.14.0'
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
- use_fips = parameters.use_fips
14
- endpoint = parameters.endpoint
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"
@@ -54,7 +54,7 @@ module Aws::ApplicationSignals
54
54
  autoload :EndpointProvider, 'aws-sdk-applicationsignals/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-applicationsignals/endpoints'
56
56
 
57
- GEM_VERSION = '1.14.0'
57
+ GEM_VERSION = '1.15.0'
58
58
 
59
59
  end
60
60
 
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.14.0
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-01-15 00:00:00.000000000 Z
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