aws-sdk-eventbridge 1.83.0 → 1.84.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: 222fd8a9337877ef43874a6c58465c626cba3daa2bb39f6ac35120608e1d619f
4
- data.tar.gz: 37835bd616580a5ada0a0edc6032d0417dd2f2006f4f6bb5df1a4aec4dd78f30
3
+ metadata.gz: 60c3dc78c0027ef0577ab7d9ae0941128a9145b026221c18c25d6ed92483f4b5
4
+ data.tar.gz: c34f593e3563122fd5a107122815780088bdb144812b88d90f54b5fb36e73d18
5
5
  SHA512:
6
- metadata.gz: c2e4b2400da6b401c22ce4263011a32afbff110d759973d51c5b09c62ec63b5abf9e034545f9d8058c95f5a30dd8e84e79f3b35bddd6e0cff96816bb414bb2d1
7
- data.tar.gz: 87b2d5efe10b21e931320e8d066ddcc1497906d7a6cb8670349a0f5cf5e6108266b5ff754b7f39436883e508c61c62c667a571c0708e0bece3a6e05292598c11
6
+ metadata.gz: a7f6073d4ea100a0dfa480acac47ed2a831f879aab13a4d366eed7e5ad3b354756dbe78ddcdd12f7de102abc07d7e3d296aa91735abc233da1ddaa8cbd1e9a90
7
+ data.tar.gz: 6fd301cb72bef7a4d9ddedcf4b0992792364699037b33a17750526b35f3d0ee070609babb7391f1ea0660e53b29853dd81babe38cddaa6cc8fc9a0b603e331fa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.84.0 (2025-06-30)
5
+ ------------------
6
+
7
+ * Feature - Added support for EventBridge Dualstack endpoints in AWS GovCloud (US) regions (us-gov-east-1 and us-gov-west-1). The dualstack endpoints are identical for both FIPS and non-FIPS configurations, following the format: events.{region}.api.aws
8
+
4
9
  1.83.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.83.0
1
+ 1.84.0
@@ -4313,7 +4313,7 @@ module Aws::EventBridge
4313
4313
  tracer: tracer
4314
4314
  )
4315
4315
  context[:gem_name] = 'aws-sdk-eventbridge'
4316
- context[:gem_version] = '1.83.0'
4316
+ context[:gem_version] = '1.84.0'
4317
4317
  Seahorse::Client::Request.new(handlers, context)
4318
4318
  end
4319
4319
 
@@ -10,6 +10,9 @@
10
10
  module Aws::EventBridge
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.set?(parameters.region) && (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region)) && Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
14
+ return Aws::Endpoints::Endpoint.new(url: "https://events.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
15
+ end
13
16
  if Aws::Endpoints::Matchers.set?(parameters.endpoint_id) && Aws::Endpoints::Matchers.set?(parameters.region) && (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
14
17
  if Aws::Endpoints::Matchers.valid_host_label?(parameters.endpoint_id, true)
15
18
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false)
@@ -54,7 +54,7 @@ module Aws::EventBridge
54
54
  autoload :EndpointProvider, 'aws-sdk-eventbridge/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-eventbridge/endpoints'
56
56
 
57
- GEM_VERSION = '1.83.0'
57
+ GEM_VERSION = '1.84.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-eventbridge
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.83.0
4
+ version: 1.84.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services