aws-sdk-health 1.90.0 → 1.91.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: acd87687d43afa1ca6c75c33a4b2174f971f604c6f8dd4d92bf26994ac938409
4
- data.tar.gz: 457362a8957fe7512323af9c6f5a8677a550a5efa9483a2b482c622d4e627756
3
+ metadata.gz: f1de6464122d7db12f43d2d7b646f82bf94d6b75ba98c06bf83efce722ddf440
4
+ data.tar.gz: '0966ec66f978e6ad0d8d9bff3f8d0d7909fa5c16cc2924a4f08da09073fd601a'
5
5
  SHA512:
6
- metadata.gz: 5fe74b4583fcf1acd5637e8867266b0284aeefb557eada8fd08858557261a686f5cd0abbdbf7480eebd8c52e1dda5651c983115a3f7f77fd0d945b559bf221b8
7
- data.tar.gz: b9050ba708c26a16517455e548ea55c1af84fd2ce5cab334e7ab878d2d92032328415cfe1b6dfe43a4094ad5ba65904fab93407e2509781a1ff4e71d55d483f9
6
+ metadata.gz: c862a0b2e145a6805c542076307c93aee6e70e0aad091501ac5bbca1603e11c47c5bdfdee0b91284044d27e45311ca3479ed4a4d734231320a074686b7eba148
7
+ data.tar.gz: f15fd746c00dda2ca500131627d071a55e4cf44f5ee065ad83acbbf9447fddbe594105acbb71639fe9c854380ae22e26461d2cd1582d8382c02764f76ec645bd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.91.0 (2025-12-15)
5
+ ------------------
6
+
7
+ * Feature - Updating Health API endpoint generation for dualstack only regions
8
+
4
9
  1.90.0 (2025-11-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.90.0
1
+ 1.91.0
@@ -1576,7 +1576,7 @@ module Aws::Health
1576
1576
  tracer: tracer
1577
1577
  )
1578
1578
  context[:gem_name] = 'aws-sdk-health'
1579
- context[:gem_version] = '1.90.0'
1579
+ context[:gem_version] = '1.91.0'
1580
1580
  Seahorse::Client::Request.new(handlers, context)
1581
1581
  end
1582
1582
 
@@ -10,6 +10,12 @@
10
10
  module Aws::Health
11
11
  class EndpointProvider
12
12
  def resolve_endpoint(parameters)
13
+ if Aws::Endpoints::Matchers.not(Aws::Endpoints::Matchers.set?(parameters.endpoint)) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false) && Aws::Endpoints::Matchers.set?(parameters.region) && (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region)) && Aws::Endpoints::Matchers.not(Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws")) && Aws::Endpoints::Matchers.not(Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn")) && Aws::Endpoints::Matchers.not(Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")) && Aws::Endpoints::Matchers.not(Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso")) && Aws::Endpoints::Matchers.not(Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-b")) && Aws::Endpoints::Matchers.not(Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-e")) && Aws::Endpoints::Matchers.not(Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-f"))
14
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
15
+ return Aws::Endpoints::Endpoint.new(url: "https://health-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
16
+ end
17
+ return Aws::Endpoints::Endpoint.new(url: "https://health.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
18
+ end
13
19
  if Aws::Endpoints::Matchers.set?(parameters.endpoint)
14
20
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
15
21
  raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
@@ -54,7 +54,7 @@ module Aws::Health
54
54
  autoload :EndpointProvider, 'aws-sdk-health/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-health/endpoints'
56
56
 
57
- GEM_VERSION = '1.90.0'
57
+ GEM_VERSION = '1.91.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-health
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.90.0
4
+ version: 1.91.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services