aws-sdk-emrcontainers 1.8.0 → 1.9.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: 27c29b358d811de31b2a898933cfd2c95c62a55c4eaae05bbd7e6d645266817d
4
- data.tar.gz: 7995740aac8c02e04a833718dc99644642615da56ae911599577d2214c2afdde
3
+ metadata.gz: ab6dc97aaee18d16a71690208a2da957ad1a591f9859ff4394e6410469155de9
4
+ data.tar.gz: 5da27533219e03e17ce23ce21f654e74b7352bef005f49b26d07dac15dd6091a
5
5
  SHA512:
6
- metadata.gz: a7e3ee17e14168a5156712219b9be9293fcf4e4cc2d00fde11a7dbe41fafc8d84a902095606cdc20a5e485818637c0cd3c5f163a0b3ff2b1a5739ca4d7232877
7
- data.tar.gz: b0c2e16bcc15613619eb2594aa681280783c4b8c15713c53eb4d396261a7794f64d2810a14eb81c3ab85008d803f5e6637ad3b1a2dcb4236e920e52008b57467
6
+ metadata.gz: c5970a860bac7ed132cfe6752930d85757ce0f624d87cce86e058b7cc29c4128d5958f5f22479698b16ce51c1ef98e2a638b6383333d784e878b0fa37954ecf7
7
+ data.tar.gz: e7f30fece0c2f324018bd3deb5cfd5f002dd6b3c7268e8b1a079251e338f7a68bf7928fc4e8d9e8582a01c02369b99cf9204c31dae22cdd85ccc327d11daa6f4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.9.0 (2021-10-26)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.8.0 (2021-10-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.9.0
@@ -382,8 +382,9 @@ module Aws::EMRContainers
382
382
  # @option params [required, String] :execution_role_arn
383
383
  # The ARN of the execution role.
384
384
  #
385
- # @option params [required, String] :certificate_arn
386
- # The certificate ARN of the managed endpoint.
385
+ # @option params [String] :certificate_arn
386
+ # The certificate ARN provided by users for the managed endpoint. This
387
+ # fiedd is under deprecation and will be removed in future releases.
387
388
  #
388
389
  # @option params [Types::ConfigurationOverrides] :configuration_overrides
389
390
  # The configuration settings that will be used to override existing
@@ -413,7 +414,7 @@ module Aws::EMRContainers
413
414
  # type: "EndpointType", # required
414
415
  # release_label: "ReleaseLabel", # required
415
416
  # execution_role_arn: "IAMRoleArn", # required
416
- # certificate_arn: "ACMCertArn", # required
417
+ # certificate_arn: "ACMCertArn",
417
418
  # configuration_overrides: {
418
419
  # application_configuration: [
419
420
  # {
@@ -683,6 +684,8 @@ module Aws::EMRContainers
683
684
  # resp.endpoint.release_label #=> String
684
685
  # resp.endpoint.execution_role_arn #=> String
685
686
  # resp.endpoint.certificate_arn #=> String
687
+ # resp.endpoint.certificate_authority.certificate_arn #=> String
688
+ # resp.endpoint.certificate_authority.certificate_data #=> String
686
689
  # resp.endpoint.configuration_overrides.application_configuration #=> Array
687
690
  # resp.endpoint.configuration_overrides.application_configuration[0].classification #=> String
688
691
  # resp.endpoint.configuration_overrides.application_configuration[0].properties #=> Hash
@@ -896,6 +899,8 @@ module Aws::EMRContainers
896
899
  # resp.endpoints[0].release_label #=> String
897
900
  # resp.endpoints[0].execution_role_arn #=> String
898
901
  # resp.endpoints[0].certificate_arn #=> String
902
+ # resp.endpoints[0].certificate_authority.certificate_arn #=> String
903
+ # resp.endpoints[0].certificate_authority.certificate_data #=> String
899
904
  # resp.endpoints[0].configuration_overrides.application_configuration #=> Array
900
905
  # resp.endpoints[0].configuration_overrides.application_configuration[0].classification #=> String
901
906
  # resp.endpoints[0].configuration_overrides.application_configuration[0].properties #=> Hash
@@ -1200,7 +1205,7 @@ module Aws::EMRContainers
1200
1205
  params: params,
1201
1206
  config: config)
1202
1207
  context[:gem_name] = 'aws-sdk-emrcontainers'
1203
- context[:gem_version] = '1.8.0'
1208
+ context[:gem_version] = '1.9.0'
1204
1209
  Seahorse::Client::Request.new(handlers, context)
1205
1210
  end
1206
1211
 
@@ -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, required: true, location_name: "certificateArn"))
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", # required
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 of the managed endpoint.
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,
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-emrcontainers/customizations'
48
48
  # @!group service
49
49
  module Aws::EMRContainers
50
50
 
51
- GEM_VERSION = '1.8.0'
51
+ GEM_VERSION = '1.9.0'
52
52
 
53
53
  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.8.0
4
+ version: 1.9.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-10-18 00:00:00.000000000 Z
11
+ date: 2021-10-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core