aws-sdk-emrcontainers 1.6.0 → 1.10.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-emrcontainers/client.rb +18 -4
- data/lib/aws-sdk-emrcontainers/client_api.rb +9 -2
- data/lib/aws-sdk-emrcontainers/types.rb +32 -3
- data/lib/aws-sdk-emrcontainers.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ebb2efc17f47422acedcc524409a3f449bd814cb1c5ab815f7491bf467fbb1aa
|
4
|
+
data.tar.gz: 419382f65c26dc39e845e6a3aa6ad82ec84f3790d865055c60b7317f1440e4be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14a576216e6e19c0ab66f9aeab61edea21d6f66c230731d62a8222c37a485cd55d059184264d77bc11487425dc8fc9e8c4c41a75420d9b141c41315b991c7984
|
7
|
+
data.tar.gz: 8f86b8f6217becd2a8a3c945af4fc8e8d1a0a272215b2e4b9e8337ad929c19568f1cc5651ca4062fdeb55142fb9fcafb09525e5e8e8c982440a0254be567e414
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.10.0 (2021-11-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.9.0 (2021-10-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This feature enables auto-generation of certificate to secure the managed-endpoint and removes the need for customer provided certificate-arn during managed-endpoint setup.
|
13
|
+
|
14
|
+
1.8.0 (2021-10-18)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.7.0 (2021-09-01)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.6.0 (2021-07-30)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.10.0
|
@@ -275,6 +275,15 @@ module Aws::EMRContainers
|
|
275
275
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
276
|
# requests are made, and retries are disabled.
|
277
277
|
#
|
278
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
279
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
280
|
+
# will be used if available.
|
281
|
+
#
|
282
|
+
# @option options [Boolean] :use_fips_endpoint
|
283
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
284
|
+
# When a `fips` region is used, the region is normalized and this config
|
285
|
+
# is set to `true`.
|
286
|
+
#
|
278
287
|
# @option options [Boolean] :validate_params (true)
|
279
288
|
# When `true`, request parameters are validated before
|
280
289
|
# sending the request.
|
@@ -382,8 +391,9 @@ module Aws::EMRContainers
|
|
382
391
|
# @option params [required, String] :execution_role_arn
|
383
392
|
# The ARN of the execution role.
|
384
393
|
#
|
385
|
-
# @option params [
|
386
|
-
# The certificate ARN
|
394
|
+
# @option params [String] :certificate_arn
|
395
|
+
# The certificate ARN provided by users for the managed endpoint. This
|
396
|
+
# fiedd is under deprecation and will be removed in future releases.
|
387
397
|
#
|
388
398
|
# @option params [Types::ConfigurationOverrides] :configuration_overrides
|
389
399
|
# The configuration settings that will be used to override existing
|
@@ -413,7 +423,7 @@ module Aws::EMRContainers
|
|
413
423
|
# type: "EndpointType", # required
|
414
424
|
# release_label: "ReleaseLabel", # required
|
415
425
|
# execution_role_arn: "IAMRoleArn", # required
|
416
|
-
# certificate_arn: "ACMCertArn",
|
426
|
+
# certificate_arn: "ACMCertArn",
|
417
427
|
# configuration_overrides: {
|
418
428
|
# application_configuration: [
|
419
429
|
# {
|
@@ -683,6 +693,8 @@ module Aws::EMRContainers
|
|
683
693
|
# resp.endpoint.release_label #=> String
|
684
694
|
# resp.endpoint.execution_role_arn #=> String
|
685
695
|
# resp.endpoint.certificate_arn #=> String
|
696
|
+
# resp.endpoint.certificate_authority.certificate_arn #=> String
|
697
|
+
# resp.endpoint.certificate_authority.certificate_data #=> String
|
686
698
|
# resp.endpoint.configuration_overrides.application_configuration #=> Array
|
687
699
|
# resp.endpoint.configuration_overrides.application_configuration[0].classification #=> String
|
688
700
|
# resp.endpoint.configuration_overrides.application_configuration[0].properties #=> Hash
|
@@ -896,6 +908,8 @@ module Aws::EMRContainers
|
|
896
908
|
# resp.endpoints[0].release_label #=> String
|
897
909
|
# resp.endpoints[0].execution_role_arn #=> String
|
898
910
|
# resp.endpoints[0].certificate_arn #=> String
|
911
|
+
# resp.endpoints[0].certificate_authority.certificate_arn #=> String
|
912
|
+
# resp.endpoints[0].certificate_authority.certificate_data #=> String
|
899
913
|
# resp.endpoints[0].configuration_overrides.application_configuration #=> Array
|
900
914
|
# resp.endpoints[0].configuration_overrides.application_configuration[0].classification #=> String
|
901
915
|
# resp.endpoints[0].configuration_overrides.application_configuration[0].properties #=> Hash
|
@@ -1200,7 +1214,7 @@ module Aws::EMRContainers
|
|
1200
1214
|
params: params,
|
1201
1215
|
config: config)
|
1202
1216
|
context[:gem_name] = 'aws-sdk-emrcontainers'
|
1203
|
-
context[:gem_version] = '1.
|
1217
|
+
context[:gem_version] = '1.10.0'
|
1204
1218
|
Seahorse::Client::Request.new(handlers, context)
|
1205
1219
|
end
|
1206
1220
|
|
@@ -14,8 +14,10 @@ module Aws::EMRContainers
|
|
14
14
|
include Seahorse::Model
|
15
15
|
|
16
16
|
ACMCertArn = Shapes::StringShape.new(name: 'ACMCertArn')
|
17
|
+
Base64Encoded = Shapes::StringShape.new(name: 'Base64Encoded')
|
17
18
|
CancelJobRunRequest = Shapes::StructureShape.new(name: 'CancelJobRunRequest')
|
18
19
|
CancelJobRunResponse = Shapes::StructureShape.new(name: 'CancelJobRunResponse')
|
20
|
+
Certificate = Shapes::StructureShape.new(name: 'Certificate')
|
19
21
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
20
22
|
CloudWatchMonitoringConfiguration = Shapes::StructureShape.new(name: 'CloudWatchMonitoringConfiguration')
|
21
23
|
ClusterId = Shapes::StringShape.new(name: 'ClusterId')
|
@@ -113,6 +115,10 @@ module Aws::EMRContainers
|
|
113
115
|
CancelJobRunResponse.add_member(:virtual_cluster_id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "virtualClusterId"))
|
114
116
|
CancelJobRunResponse.struct_class = Types::CancelJobRunResponse
|
115
117
|
|
118
|
+
Certificate.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: ACMCertArn, location_name: "certificateArn"))
|
119
|
+
Certificate.add_member(:certificate_data, Shapes::ShapeRef.new(shape: Base64Encoded, location_name: "certificateData"))
|
120
|
+
Certificate.struct_class = Types::Certificate
|
121
|
+
|
116
122
|
CloudWatchMonitoringConfiguration.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, required: true, location_name: "logGroupName"))
|
117
123
|
CloudWatchMonitoringConfiguration.add_member(:log_stream_name_prefix, Shapes::ShapeRef.new(shape: String256, location_name: "logStreamNamePrefix"))
|
118
124
|
CloudWatchMonitoringConfiguration.struct_class = Types::CloudWatchMonitoringConfiguration
|
@@ -144,7 +150,7 @@ module Aws::EMRContainers
|
|
144
150
|
CreateManagedEndpointRequest.add_member(:type, Shapes::ShapeRef.new(shape: EndpointType, required: true, location_name: "type"))
|
145
151
|
CreateManagedEndpointRequest.add_member(:release_label, Shapes::ShapeRef.new(shape: ReleaseLabel, required: true, location_name: "releaseLabel"))
|
146
152
|
CreateManagedEndpointRequest.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: IAMRoleArn, required: true, location_name: "executionRoleArn"))
|
147
|
-
CreateManagedEndpointRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: ACMCertArn,
|
153
|
+
CreateManagedEndpointRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: ACMCertArn, deprecated: true, location_name: "certificateArn", metadata: {"deprecatedMessage"=>"Customer provided certificate-arn is deprecated and would be removed in future."}))
|
148
154
|
CreateManagedEndpointRequest.add_member(:configuration_overrides, Shapes::ShapeRef.new(shape: ConfigurationOverrides, location_name: "configurationOverrides"))
|
149
155
|
CreateManagedEndpointRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
150
156
|
CreateManagedEndpointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
@@ -212,7 +218,8 @@ module Aws::EMRContainers
|
|
212
218
|
Endpoint.add_member(:state, Shapes::ShapeRef.new(shape: EndpointState, location_name: "state"))
|
213
219
|
Endpoint.add_member(:release_label, Shapes::ShapeRef.new(shape: ReleaseLabel, location_name: "releaseLabel"))
|
214
220
|
Endpoint.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: IAMRoleArn, location_name: "executionRoleArn"))
|
215
|
-
Endpoint.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: ACMCertArn, location_name: "certificateArn"))
|
221
|
+
Endpoint.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: ACMCertArn, deprecated: true, location_name: "certificateArn", metadata: {"deprecatedMessage"=>"Customer provided certificate-arn is deprecated and would be removed in future."}))
|
222
|
+
Endpoint.add_member(:certificate_authority, Shapes::ShapeRef.new(shape: Certificate, location_name: "certificateAuthority"))
|
216
223
|
Endpoint.add_member(:configuration_overrides, Shapes::ShapeRef.new(shape: ConfigurationOverrides, location_name: "configurationOverrides"))
|
217
224
|
Endpoint.add_member(:server_url, Shapes::ShapeRef.new(shape: UriString, location_name: "serverUrl"))
|
218
225
|
Endpoint.add_member(:created_at, Shapes::ShapeRef.new(shape: Date, location_name: "createdAt"))
|
@@ -54,6 +54,27 @@ module Aws::EMRContainers
|
|
54
54
|
include Aws::Structure
|
55
55
|
end
|
56
56
|
|
57
|
+
# The entity representing certificate data generated for managed
|
58
|
+
# endpoint.
|
59
|
+
#
|
60
|
+
# @!attribute [rw] certificate_arn
|
61
|
+
# The ARN of the certificate generated for managed endpoint.
|
62
|
+
# @return [String]
|
63
|
+
#
|
64
|
+
# @!attribute [rw] certificate_data
|
65
|
+
# The base64 encoded PEM certificate data generated for managed
|
66
|
+
# endpoint.
|
67
|
+
# @return [String]
|
68
|
+
#
|
69
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/Certificate AWS API Documentation
|
70
|
+
#
|
71
|
+
class Certificate < Struct.new(
|
72
|
+
:certificate_arn,
|
73
|
+
:certificate_data)
|
74
|
+
SENSITIVE = []
|
75
|
+
include Aws::Structure
|
76
|
+
end
|
77
|
+
|
57
78
|
# A configuration for CloudWatch monitoring. You can configure your jobs
|
58
79
|
# to send log information to CloudWatch Logs.
|
59
80
|
#
|
@@ -251,7 +272,7 @@ module Aws::EMRContainers
|
|
251
272
|
# type: "EndpointType", # required
|
252
273
|
# release_label: "ReleaseLabel", # required
|
253
274
|
# execution_role_arn: "IAMRoleArn", # required
|
254
|
-
# certificate_arn: "ACMCertArn",
|
275
|
+
# certificate_arn: "ACMCertArn",
|
255
276
|
# configuration_overrides: {
|
256
277
|
# application_configuration: [
|
257
278
|
# {
|
@@ -303,7 +324,8 @@ module Aws::EMRContainers
|
|
303
324
|
# @return [String]
|
304
325
|
#
|
305
326
|
# @!attribute [rw] certificate_arn
|
306
|
-
# The certificate ARN
|
327
|
+
# The certificate ARN provided by users for the managed endpoint. This
|
328
|
+
# fiedd is under deprecation and will be removed in future releases.
|
307
329
|
# @return [String]
|
308
330
|
#
|
309
331
|
# @!attribute [rw] configuration_overrides
|
@@ -674,9 +696,15 @@ module Aws::EMRContainers
|
|
674
696
|
# @return [String]
|
675
697
|
#
|
676
698
|
# @!attribute [rw] certificate_arn
|
677
|
-
# The certificate ARN of the endpoint.
|
699
|
+
# The certificate ARN of the endpoint. This field is under deprecation
|
700
|
+
# and will be removed in future.
|
678
701
|
# @return [String]
|
679
702
|
#
|
703
|
+
# @!attribute [rw] certificate_authority
|
704
|
+
# The certificate generated by emr control plane on customer behalf to
|
705
|
+
# secure the managed endpoint.
|
706
|
+
# @return [Types::Certificate]
|
707
|
+
#
|
680
708
|
# @!attribute [rw] configuration_overrides
|
681
709
|
# The configuration settings that are used to override existing
|
682
710
|
# configurations for endpoints.
|
@@ -722,6 +750,7 @@ module Aws::EMRContainers
|
|
722
750
|
:release_label,
|
723
751
|
:execution_role_arn,
|
724
752
|
:certificate_arn,
|
753
|
+
:certificate_authority,
|
725
754
|
:configuration_overrides,
|
726
755
|
:server_url,
|
727
756
|
:created_at,
|
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.10.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: 2021-
|
11
|
+
date: 2021-11-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.122.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.122.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '
|
79
|
+
version: '2.3'
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - ">="
|