aws-sdk-emrcontainers 1.7.0 → 1.11.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1bf38e9c0f88e330d9c76dbc687344243e6e7ca26a12c10132285ba5b9281edc
4
- data.tar.gz: bd803f1fdb7659fb24e8ede5b46a9dabb2332354dbfe076442852578c965e4b9
3
+ metadata.gz: 7f864ae433222ab8eb7eee17b7c18d3f34ec1f80809c8afde8c13aab70b288bb
4
+ data.tar.gz: 200c102d6bc44a060ffd711ea931169545458ff84070b61d19950f7d2486a0fb
5
5
  SHA512:
6
- metadata.gz: 3e1276f8956250237fa58421fd5e38f4fd51d5a3ec8c1f423fa00f2c975c213d81fde8cd63e9f4ed6dda7d5162d14c0ded60e49c3d0039f1514084dac74b39d4
7
- data.tar.gz: a8e3dea04477d1c5e869f2cffda31cae9e001205b419fa42a210474e9e2fed4d43a351982e28f7ca997411868109a262556a4766e671dfce7efd918f3475cbdb
6
+ metadata.gz: f22893fd6358e73b73768f432eb35c8a9e15b9f9d6af5bcc6cd5ef86d38c0b94e47da93485342a69a3084c17fd544f0303171199f0eb4cd702c26b4d4d5725ff
7
+ data.tar.gz: acf05639ef203358ea491f4d87cef1866f85864f913856bebbdaca281f4ee22f0e75118771f014eb133fd476f616b96107b329a23a2d71bfb38808a005dc49e1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.0 (2021-11-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.10.0 (2021-11-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.9.0 (2021-10-26)
15
+ ------------------
16
+
17
+ * 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.
18
+
19
+ 1.8.0 (2021-10-18)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.7.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.7.0
1
+ 1.11.0
@@ -119,7 +119,9 @@ module Aws::EMRContainers
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -275,6 +277,15 @@ module Aws::EMRContainers
275
277
  # ** Please note ** When response stubbing is enabled, no HTTP
276
278
  # requests are made, and retries are disabled.
277
279
  #
280
+ # @option options [Boolean] :use_dualstack_endpoint
281
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
282
+ # will be used if available.
283
+ #
284
+ # @option options [Boolean] :use_fips_endpoint
285
+ # When set to `true`, fips compatible endpoints will be used if available.
286
+ # When a `fips` region is used, the region is normalized and this config
287
+ # is set to `true`.
288
+ #
278
289
  # @option options [Boolean] :validate_params (true)
279
290
  # When `true`, request parameters are validated before
280
291
  # sending the request.
@@ -382,8 +393,9 @@ module Aws::EMRContainers
382
393
  # @option params [required, String] :execution_role_arn
383
394
  # The ARN of the execution role.
384
395
  #
385
- # @option params [required, String] :certificate_arn
386
- # The certificate ARN of the managed endpoint.
396
+ # @option params [String] :certificate_arn
397
+ # The certificate ARN provided by users for the managed endpoint. This
398
+ # fiedd is under deprecation and will be removed in future releases.
387
399
  #
388
400
  # @option params [Types::ConfigurationOverrides] :configuration_overrides
389
401
  # The configuration settings that will be used to override existing
@@ -413,7 +425,7 @@ module Aws::EMRContainers
413
425
  # type: "EndpointType", # required
414
426
  # release_label: "ReleaseLabel", # required
415
427
  # execution_role_arn: "IAMRoleArn", # required
416
- # certificate_arn: "ACMCertArn", # required
428
+ # certificate_arn: "ACMCertArn",
417
429
  # configuration_overrides: {
418
430
  # application_configuration: [
419
431
  # {
@@ -683,6 +695,8 @@ module Aws::EMRContainers
683
695
  # resp.endpoint.release_label #=> String
684
696
  # resp.endpoint.execution_role_arn #=> String
685
697
  # resp.endpoint.certificate_arn #=> String
698
+ # resp.endpoint.certificate_authority.certificate_arn #=> String
699
+ # resp.endpoint.certificate_authority.certificate_data #=> String
686
700
  # resp.endpoint.configuration_overrides.application_configuration #=> Array
687
701
  # resp.endpoint.configuration_overrides.application_configuration[0].classification #=> String
688
702
  # resp.endpoint.configuration_overrides.application_configuration[0].properties #=> Hash
@@ -896,6 +910,8 @@ module Aws::EMRContainers
896
910
  # resp.endpoints[0].release_label #=> String
897
911
  # resp.endpoints[0].execution_role_arn #=> String
898
912
  # resp.endpoints[0].certificate_arn #=> String
913
+ # resp.endpoints[0].certificate_authority.certificate_arn #=> String
914
+ # resp.endpoints[0].certificate_authority.certificate_data #=> String
899
915
  # resp.endpoints[0].configuration_overrides.application_configuration #=> Array
900
916
  # resp.endpoints[0].configuration_overrides.application_configuration[0].classification #=> String
901
917
  # resp.endpoints[0].configuration_overrides.application_configuration[0].properties #=> Hash
@@ -1200,7 +1216,7 @@ module Aws::EMRContainers
1200
1216
  params: params,
1201
1217
  config: config)
1202
1218
  context[:gem_name] = 'aws-sdk-emrcontainers'
1203
- context[:gem_version] = '1.7.0'
1219
+ context[:gem_version] = '1.11.0'
1204
1220
  Seahorse::Client::Request.new(handlers, context)
1205
1221
  end
1206
1222
 
@@ -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.7.0'
51
+ GEM_VERSION = '1.11.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.7.0
4
+ version: 1.11.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-09-01 00:00:00.000000000 Z
11
+ date: 2021-11-30 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.120.0
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.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement