aws-sdk-emrcontainers 1.40.0 → 1.42.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-emrcontainers/client.rb +1 -1
- data/lib/aws-sdk-emrcontainers/endpoint_provider.rb +6 -0
- data/lib/aws-sdk-emrcontainers/types.rb +1 -1
- data/lib/aws-sdk-emrcontainers.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 692b7b9b57f1fc4c25e9816b7e65fee21c5030dd80f45e8baa3b17d9e7976267
|
4
|
+
data.tar.gz: e2b7854b8b4c8004e496e56f47fa6d7bf80266ae406c16f7d306e71125cc26a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0965ab70d69d08417ac9aff473dfa0bf3770e5546df8b519750ca7f22be3c3b4ecc92ce4242e59101dfeb1bf45654f97180d15c3d0cf8eca277ac3c854dd0a71'
|
7
|
+
data.tar.gz: 1da63e0d63829238d721648a6564c5132444169c11d92f730240b016601315d2b30e60512896d531ee84009a7d0030dec180e5834ad97bec47cb25ba188604eb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
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
|
+
|
9
|
+
1.41.0 (2024-07-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.40.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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.
|
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"
|
@@ -1820,7 +1820,7 @@ module Aws::EMRContainers
|
|
1820
1820
|
:entry_point,
|
1821
1821
|
:entry_point_arguments,
|
1822
1822
|
:spark_submit_parameters)
|
1823
|
-
SENSITIVE = [:entry_point, :spark_submit_parameters]
|
1823
|
+
SENSITIVE = [:entry_point, :entry_point_arguments, :spark_submit_parameters]
|
1824
1824
|
include Aws::Structure
|
1825
1825
|
end
|
1826
1826
|
|
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.
|
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-
|
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
|