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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eventbridge/client.rb +1 -1
- data/lib/aws-sdk-eventbridge/endpoint_provider.rb +3 -0
- data/lib/aws-sdk-eventbridge.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60c3dc78c0027ef0577ab7d9ae0941128a9145b026221c18c25d6ed92483f4b5
|
4
|
+
data.tar.gz: c34f593e3563122fd5a107122815780088bdb144812b88d90f54b5fb36e73d18
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
1
|
+
1.84.0
|
@@ -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)
|
data/lib/aws-sdk-eventbridge.rb
CHANGED