aws-sdk-emrcontainers 1.41.0 → 1.42.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: d63c44dfd1f11bfb8c3461943041d266ed66bc1383e6c3c6b27db5e6c2aa3603
4
- data.tar.gz: fed490cfb2870aa2ccf4ac82f57bd76437a300629d9968a414cc1810163b84eb
3
+ metadata.gz: 692b7b9b57f1fc4c25e9816b7e65fee21c5030dd80f45e8baa3b17d9e7976267
4
+ data.tar.gz: e2b7854b8b4c8004e496e56f47fa6d7bf80266ae406c16f7d306e71125cc26a0
5
5
  SHA512:
6
- metadata.gz: bc40d494e5569c84cbf60c44f5c5c9efc1151b9034dc0f0c314f274447b622989355222f72bafc3ab9f4495fb3c24846f2698ac141d3e59a7e48ecf4728901c8
7
- data.tar.gz: ec88dbcd33bb212434a37c6272cdbcee9dfbe8279295c17898721123fba456a78e9ce769b73ca189e40fe0f41f905fcc56fcbcd8242cdcbf751aeff2762411bb
6
+ metadata.gz: '0965ab70d69d08417ac9aff473dfa0bf3770e5546df8b519750ca7f22be3c3b4ecc92ce4242e59101dfeb1bf45654f97180d15c3d0cf8eca277ac3c854dd0a71'
7
+ data.tar.gz: 1da63e0d63829238d721648a6564c5132444169c11d92f730240b016601315d2b30e60512896d531ee84009a7d0030dec180e5834ad97bec47cb25ba188604eb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2024-08-22)
5
+ ------------------
6
+
7
+ * Feature - Correct endpoint for FIPS is configured for US Gov Regions.
8
+
4
9
  1.41.0 (2024-07-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.41.0
1
+ 1.42.0
@@ -1884,7 +1884,7 @@ module Aws::EMRContainers
1884
1884
  params: params,
1885
1885
  config: config)
1886
1886
  context[:gem_name] = 'aws-sdk-emrcontainers'
1887
- context[:gem_version] = '1.41.0'
1887
+ context[:gem_version] = '1.42.0'
1888
1888
  Seahorse::Client::Request.new(handlers, context)
1889
1889
  end
1890
1890
 
@@ -33,6 +33,12 @@ module Aws::EMRContainers
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
35
  if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
+ if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-east-1")
37
+ return Aws::Endpoints::Endpoint.new(url: "https://emr-containers.us-gov-east-1.amazonaws.com", headers: {}, properties: {})
38
+ end
39
+ if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-west-1")
40
+ return Aws::Endpoints::Endpoint.new(url: "https://emr-containers.us-gov-west-1.amazonaws.com", headers: {}, properties: {})
41
+ end
36
42
  return Aws::Endpoints::Endpoint.new(url: "https://emr-containers-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
43
  end
38
44
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-emrcontainers/customizations'
52
52
  # @!group service
53
53
  module Aws::EMRContainers
54
54
 
55
- GEM_VERSION = '1.41.0'
55
+ GEM_VERSION = '1.42.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-emrcontainers
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.41.0
4
+ version: 1.42.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: 2024-07-18 00:00:00.000000000 Z
11
+ date: 2024-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core