aws-sdk-emrcontainers 1.73.0 → 1.74.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-emrcontainers/client.rb +23 -3
- data/lib/aws-sdk-emrcontainers/client_api.rb +9 -1
- data/lib/aws-sdk-emrcontainers/types.rb +34 -4
- data/lib/aws-sdk-emrcontainers.rb +1 -1
- data/sig/client.rbs +5 -2
- data/sig/params.rbs +2 -1
- data/sig/types.rbs +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f6e6eee6e60c2cb33d7d7e118880c8ba899ded767377b10a8eeca7296b249393
|
|
4
|
+
data.tar.gz: 81fe974a2ff0c25710a05305aa0c187ecc5108e687a8848def0bb785edfa5643
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d590a4180b51674623679acd7b750523ad962137180abc63b358ed6280122a9be0f50571d90b49b6c13f3e8d18769276ae55a5f3ef104325e985989bc683137f
|
|
7
|
+
data.tar.gz: e9aaf203b460ca64f1ae39c6b080c681dde41a4b3b86b13c1b996bb7cad609b8d93e62609172bae1c868f98a3dcc056bb4a7413cad1bca4d432b9d9b21850351
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.74.0 (2026-07-14)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Introduced 5 new fields across 3 APIs as part of Spark Connect server launch for EMR on EKS. The fields added are sessionIdleTimeoutInMinutes, sessionEnabled, endpointToken, authProxyUrl and encryptionKeyArn.
|
|
8
|
+
|
|
4
9
|
1.73.0 (2026-07-09)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.74.0
|
|
@@ -650,6 +650,9 @@ module Aws::EMRContainers
|
|
|
650
650
|
# @option params [Hash<String,String>] :tags
|
|
651
651
|
# The tags of the managed endpoint.
|
|
652
652
|
#
|
|
653
|
+
# @option params [Integer] :session_idle_timeout_in_minutes
|
|
654
|
+
# The idle timeout in minutes for the managed endpoint session.
|
|
655
|
+
#
|
|
653
656
|
# @return [Types::CreateManagedEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
654
657
|
#
|
|
655
658
|
# * {Types::CreateManagedEndpointResponse#id #id} => String
|
|
@@ -690,6 +693,7 @@ module Aws::EMRContainers
|
|
|
690
693
|
# },
|
|
691
694
|
# s3_monitoring_configuration: {
|
|
692
695
|
# log_uri: "UriString", # required
|
|
696
|
+
# encryption_key_arn: "KmsKeyArn",
|
|
693
697
|
# },
|
|
694
698
|
# container_log_rotation_configuration: {
|
|
695
699
|
# rotation_size: "RotationSize", # required
|
|
@@ -701,6 +705,7 @@ module Aws::EMRContainers
|
|
|
701
705
|
# tags: {
|
|
702
706
|
# "String128" => "StringEmpty256",
|
|
703
707
|
# },
|
|
708
|
+
# session_idle_timeout_in_minutes: 1,
|
|
704
709
|
# })
|
|
705
710
|
#
|
|
706
711
|
# @example Response structure
|
|
@@ -761,7 +766,7 @@ module Aws::EMRContainers
|
|
|
761
766
|
# info: {
|
|
762
767
|
# eks_info: {
|
|
763
768
|
# namespace: "KubernetesNamespace",
|
|
764
|
-
# node_label: "
|
|
769
|
+
# node_label: "NodeLabelString",
|
|
765
770
|
# },
|
|
766
771
|
# },
|
|
767
772
|
# },
|
|
@@ -831,6 +836,9 @@ module Aws::EMRContainers
|
|
|
831
836
|
# @option params [String] :security_configuration_id
|
|
832
837
|
# The ID of the security configuration.
|
|
833
838
|
#
|
|
839
|
+
# @option params [Boolean] :session_enabled
|
|
840
|
+
# Indicates whether the virtual cluster has session support enabled.
|
|
841
|
+
#
|
|
834
842
|
# @return [Types::CreateVirtualClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
835
843
|
#
|
|
836
844
|
# * {Types::CreateVirtualClusterResponse#id #id} => String
|
|
@@ -847,7 +855,7 @@ module Aws::EMRContainers
|
|
|
847
855
|
# info: {
|
|
848
856
|
# eks_info: {
|
|
849
857
|
# namespace: "KubernetesNamespace",
|
|
850
|
-
# node_label: "
|
|
858
|
+
# node_label: "NodeLabelString",
|
|
851
859
|
# },
|
|
852
860
|
# },
|
|
853
861
|
# },
|
|
@@ -856,6 +864,7 @@ module Aws::EMRContainers
|
|
|
856
864
|
# "String128" => "StringEmpty256",
|
|
857
865
|
# },
|
|
858
866
|
# security_configuration_id: "ResourceIdString",
|
|
867
|
+
# session_enabled: false,
|
|
859
868
|
# })
|
|
860
869
|
#
|
|
861
870
|
# @example Response structure
|
|
@@ -1015,6 +1024,7 @@ module Aws::EMRContainers
|
|
|
1015
1024
|
# resp.job_run.configuration_overrides.monitoring_configuration.cloud_watch_monitoring_configuration.log_group_name #=> String
|
|
1016
1025
|
# resp.job_run.configuration_overrides.monitoring_configuration.cloud_watch_monitoring_configuration.log_stream_name_prefix #=> String
|
|
1017
1026
|
# resp.job_run.configuration_overrides.monitoring_configuration.s3_monitoring_configuration.log_uri #=> String
|
|
1027
|
+
# resp.job_run.configuration_overrides.monitoring_configuration.s3_monitoring_configuration.encryption_key_arn #=> String
|
|
1018
1028
|
# resp.job_run.configuration_overrides.monitoring_configuration.container_log_rotation_configuration.rotation_size #=> String
|
|
1019
1029
|
# resp.job_run.configuration_overrides.monitoring_configuration.container_log_rotation_configuration.max_files_to_keep #=> Integer
|
|
1020
1030
|
# resp.job_run.job_driver.spark_submit_job_driver.entry_point #=> String
|
|
@@ -1150,9 +1160,11 @@ module Aws::EMRContainers
|
|
|
1150
1160
|
# resp.endpoint.configuration_overrides.monitoring_configuration.cloud_watch_monitoring_configuration.log_group_name #=> String
|
|
1151
1161
|
# resp.endpoint.configuration_overrides.monitoring_configuration.cloud_watch_monitoring_configuration.log_stream_name_prefix #=> String
|
|
1152
1162
|
# resp.endpoint.configuration_overrides.monitoring_configuration.s3_monitoring_configuration.log_uri #=> String
|
|
1163
|
+
# resp.endpoint.configuration_overrides.monitoring_configuration.s3_monitoring_configuration.encryption_key_arn #=> String
|
|
1153
1164
|
# resp.endpoint.configuration_overrides.monitoring_configuration.container_log_rotation_configuration.rotation_size #=> String
|
|
1154
1165
|
# resp.endpoint.configuration_overrides.monitoring_configuration.container_log_rotation_configuration.max_files_to_keep #=> Integer
|
|
1155
1166
|
# resp.endpoint.server_url #=> String
|
|
1167
|
+
# resp.endpoint.auth_proxy_url #=> String
|
|
1156
1168
|
# resp.endpoint.created_at #=> Time
|
|
1157
1169
|
# resp.endpoint.security_group #=> String
|
|
1158
1170
|
# resp.endpoint.subnet_ids #=> Array
|
|
@@ -1252,6 +1264,7 @@ module Aws::EMRContainers
|
|
|
1252
1264
|
# resp.virtual_cluster.tags #=> Hash
|
|
1253
1265
|
# resp.virtual_cluster.tags["String128"] #=> String
|
|
1254
1266
|
# resp.virtual_cluster.security_configuration_id #=> String
|
|
1267
|
+
# resp.virtual_cluster.session_enabled #=> Boolean
|
|
1255
1268
|
#
|
|
1256
1269
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/DescribeVirtualCluster AWS API Documentation
|
|
1257
1270
|
#
|
|
@@ -1295,6 +1308,7 @@ module Aws::EMRContainers
|
|
|
1295
1308
|
#
|
|
1296
1309
|
# * {Types::GetManagedEndpointSessionCredentialsResponse#id #id} => String
|
|
1297
1310
|
# * {Types::GetManagedEndpointSessionCredentialsResponse#credentials #credentials} => Types::Credentials
|
|
1311
|
+
# * {Types::GetManagedEndpointSessionCredentialsResponse#endpoint_credentials #endpoint_credentials} => Types::Credentials
|
|
1298
1312
|
# * {Types::GetManagedEndpointSessionCredentialsResponse#expires_at #expires_at} => Time
|
|
1299
1313
|
#
|
|
1300
1314
|
# @example Request syntax with placeholder values
|
|
@@ -1313,6 +1327,7 @@ module Aws::EMRContainers
|
|
|
1313
1327
|
#
|
|
1314
1328
|
# resp.id #=> String
|
|
1315
1329
|
# resp.credentials.token #=> String
|
|
1330
|
+
# resp.endpoint_credentials.token #=> String
|
|
1316
1331
|
# resp.expires_at #=> Time
|
|
1317
1332
|
#
|
|
1318
1333
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/GetManagedEndpointSessionCredentials AWS API Documentation
|
|
@@ -1390,6 +1405,7 @@ module Aws::EMRContainers
|
|
|
1390
1405
|
# resp.job_runs[0].configuration_overrides.monitoring_configuration.cloud_watch_monitoring_configuration.log_group_name #=> String
|
|
1391
1406
|
# resp.job_runs[0].configuration_overrides.monitoring_configuration.cloud_watch_monitoring_configuration.log_stream_name_prefix #=> String
|
|
1392
1407
|
# resp.job_runs[0].configuration_overrides.monitoring_configuration.s3_monitoring_configuration.log_uri #=> String
|
|
1408
|
+
# resp.job_runs[0].configuration_overrides.monitoring_configuration.s3_monitoring_configuration.encryption_key_arn #=> String
|
|
1393
1409
|
# resp.job_runs[0].configuration_overrides.monitoring_configuration.container_log_rotation_configuration.rotation_size #=> String
|
|
1394
1410
|
# resp.job_runs[0].configuration_overrides.monitoring_configuration.container_log_rotation_configuration.max_files_to_keep #=> Integer
|
|
1395
1411
|
# resp.job_runs[0].job_driver.spark_submit_job_driver.entry_point #=> String
|
|
@@ -1567,9 +1583,11 @@ module Aws::EMRContainers
|
|
|
1567
1583
|
# resp.endpoints[0].configuration_overrides.monitoring_configuration.cloud_watch_monitoring_configuration.log_group_name #=> String
|
|
1568
1584
|
# resp.endpoints[0].configuration_overrides.monitoring_configuration.cloud_watch_monitoring_configuration.log_stream_name_prefix #=> String
|
|
1569
1585
|
# resp.endpoints[0].configuration_overrides.monitoring_configuration.s3_monitoring_configuration.log_uri #=> String
|
|
1586
|
+
# resp.endpoints[0].configuration_overrides.monitoring_configuration.s3_monitoring_configuration.encryption_key_arn #=> String
|
|
1570
1587
|
# resp.endpoints[0].configuration_overrides.monitoring_configuration.container_log_rotation_configuration.rotation_size #=> String
|
|
1571
1588
|
# resp.endpoints[0].configuration_overrides.monitoring_configuration.container_log_rotation_configuration.max_files_to_keep #=> Integer
|
|
1572
1589
|
# resp.endpoints[0].server_url #=> String
|
|
1590
|
+
# resp.endpoints[0].auth_proxy_url #=> String
|
|
1573
1591
|
# resp.endpoints[0].created_at #=> Time
|
|
1574
1592
|
# resp.endpoints[0].security_group #=> String
|
|
1575
1593
|
# resp.endpoints[0].subnet_ids #=> Array
|
|
@@ -1752,6 +1770,7 @@ module Aws::EMRContainers
|
|
|
1752
1770
|
# resp.virtual_clusters[0].tags #=> Hash
|
|
1753
1771
|
# resp.virtual_clusters[0].tags["String128"] #=> String
|
|
1754
1772
|
# resp.virtual_clusters[0].security_configuration_id #=> String
|
|
1773
|
+
# resp.virtual_clusters[0].session_enabled #=> Boolean
|
|
1755
1774
|
# resp.next_token #=> String
|
|
1756
1775
|
#
|
|
1757
1776
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/ListVirtualClusters AWS API Documentation
|
|
@@ -1853,6 +1872,7 @@ module Aws::EMRContainers
|
|
|
1853
1872
|
# },
|
|
1854
1873
|
# s3_monitoring_configuration: {
|
|
1855
1874
|
# log_uri: "UriString", # required
|
|
1875
|
+
# encryption_key_arn: "KmsKeyArn",
|
|
1856
1876
|
# },
|
|
1857
1877
|
# container_log_rotation_configuration: {
|
|
1858
1878
|
# rotation_size: "RotationSize", # required
|
|
@@ -1970,7 +1990,7 @@ module Aws::EMRContainers
|
|
|
1970
1990
|
tracer: tracer
|
|
1971
1991
|
)
|
|
1972
1992
|
context[:gem_name] = 'aws-sdk-emrcontainers'
|
|
1973
|
-
context[:gem_version] = '1.
|
|
1993
|
+
context[:gem_version] = '1.74.0'
|
|
1974
1994
|
Seahorse::Client::Request.new(handlers, context)
|
|
1975
1995
|
end
|
|
1976
1996
|
|
|
@@ -111,6 +111,7 @@ module Aws::EMRContainers
|
|
|
111
111
|
MaxFilesToKeep = Shapes::IntegerShape.new(name: 'MaxFilesToKeep')
|
|
112
112
|
MonitoringConfiguration = Shapes::StructureShape.new(name: 'MonitoringConfiguration')
|
|
113
113
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
|
114
|
+
NodeLabelString = Shapes::StringShape.new(name: 'NodeLabelString')
|
|
114
115
|
ParametricCloudWatchMonitoringConfiguration = Shapes::StructureShape.new(name: 'ParametricCloudWatchMonitoringConfiguration')
|
|
115
116
|
ParametricConfigurationOverrides = Shapes::StructureShape.new(name: 'ParametricConfigurationOverrides')
|
|
116
117
|
ParametricIAMRoleArn = Shapes::StringShape.new(name: 'ParametricIAMRoleArn')
|
|
@@ -136,6 +137,7 @@ module Aws::EMRContainers
|
|
|
136
137
|
SecurityConfigurationData = Shapes::StructureShape.new(name: 'SecurityConfigurationData')
|
|
137
138
|
SecurityConfigurations = Shapes::ListShape.new(name: 'SecurityConfigurations')
|
|
138
139
|
SensitivePropertiesMap = Shapes::MapShape.new(name: 'SensitivePropertiesMap')
|
|
140
|
+
SessionIdleTimeoutInMinutes = Shapes::IntegerShape.new(name: 'SessionIdleTimeoutInMinutes')
|
|
139
141
|
SessionTagValue = Shapes::StringShape.new(name: 'SessionTagValue')
|
|
140
142
|
SparkSqlJobDriver = Shapes::StructureShape.new(name: 'SparkSqlJobDriver')
|
|
141
143
|
SparkSqlParameters = Shapes::StringShape.new(name: 'SparkSqlParameters')
|
|
@@ -239,6 +241,7 @@ module Aws::EMRContainers
|
|
|
239
241
|
CreateManagedEndpointRequest.add_member(:configuration_overrides, Shapes::ShapeRef.new(shape: ConfigurationOverrides, location_name: "configurationOverrides"))
|
|
240
242
|
CreateManagedEndpointRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
241
243
|
CreateManagedEndpointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
244
|
+
CreateManagedEndpointRequest.add_member(:session_idle_timeout_in_minutes, Shapes::ShapeRef.new(shape: SessionIdleTimeoutInMinutes, location_name: "sessionIdleTimeoutInMinutes"))
|
|
242
245
|
CreateManagedEndpointRequest.struct_class = Types::CreateManagedEndpointRequest
|
|
243
246
|
|
|
244
247
|
CreateManagedEndpointResponse.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "id"))
|
|
@@ -264,6 +267,7 @@ module Aws::EMRContainers
|
|
|
264
267
|
CreateVirtualClusterRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
265
268
|
CreateVirtualClusterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
266
269
|
CreateVirtualClusterRequest.add_member(:security_configuration_id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "securityConfigurationId"))
|
|
270
|
+
CreateVirtualClusterRequest.add_member(:session_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "sessionEnabled"))
|
|
267
271
|
CreateVirtualClusterRequest.struct_class = Types::CreateVirtualClusterRequest
|
|
268
272
|
|
|
269
273
|
CreateVirtualClusterResponse.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "id"))
|
|
@@ -333,7 +337,7 @@ module Aws::EMRContainers
|
|
|
333
337
|
EKSRequestThrottledException.struct_class = Types::EKSRequestThrottledException
|
|
334
338
|
|
|
335
339
|
EksInfo.add_member(:namespace, Shapes::ShapeRef.new(shape: KubernetesNamespace, location_name: "namespace"))
|
|
336
|
-
EksInfo.add_member(:node_label, Shapes::ShapeRef.new(shape:
|
|
340
|
+
EksInfo.add_member(:node_label, Shapes::ShapeRef.new(shape: NodeLabelString, location_name: "nodeLabel"))
|
|
337
341
|
EksInfo.struct_class = Types::EksInfo
|
|
338
342
|
|
|
339
343
|
EncryptionConfiguration.add_member(:in_transit_encryption_configuration, Shapes::ShapeRef.new(shape: InTransitEncryptionConfiguration, location_name: "inTransitEncryptionConfiguration"))
|
|
@@ -351,6 +355,7 @@ module Aws::EMRContainers
|
|
|
351
355
|
Endpoint.add_member(:certificate_authority, Shapes::ShapeRef.new(shape: Certificate, location_name: "certificateAuthority"))
|
|
352
356
|
Endpoint.add_member(:configuration_overrides, Shapes::ShapeRef.new(shape: ConfigurationOverrides, location_name: "configurationOverrides"))
|
|
353
357
|
Endpoint.add_member(:server_url, Shapes::ShapeRef.new(shape: UriString, location_name: "serverUrl"))
|
|
358
|
+
Endpoint.add_member(:auth_proxy_url, Shapes::ShapeRef.new(shape: UriString, location_name: "authProxyUrl"))
|
|
354
359
|
Endpoint.add_member(:created_at, Shapes::ShapeRef.new(shape: Date, location_name: "createdAt"))
|
|
355
360
|
Endpoint.add_member(:security_group, Shapes::ShapeRef.new(shape: String256, location_name: "securityGroup"))
|
|
356
361
|
Endpoint.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "subnetIds"))
|
|
@@ -378,6 +383,7 @@ module Aws::EMRContainers
|
|
|
378
383
|
|
|
379
384
|
GetManagedEndpointSessionCredentialsResponse.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "id"))
|
|
380
385
|
GetManagedEndpointSessionCredentialsResponse.add_member(:credentials, Shapes::ShapeRef.new(shape: Credentials, location_name: "credentials"))
|
|
386
|
+
GetManagedEndpointSessionCredentialsResponse.add_member(:endpoint_credentials, Shapes::ShapeRef.new(shape: Credentials, location_name: "endpointCredentials"))
|
|
381
387
|
GetManagedEndpointSessionCredentialsResponse.add_member(:expires_at, Shapes::ShapeRef.new(shape: Date, location_name: "expiresAt"))
|
|
382
388
|
GetManagedEndpointSessionCredentialsResponse.struct_class = Types::GetManagedEndpointSessionCredentialsResponse
|
|
383
389
|
|
|
@@ -547,6 +553,7 @@ module Aws::EMRContainers
|
|
|
547
553
|
RetryPolicyExecution.struct_class = Types::RetryPolicyExecution
|
|
548
554
|
|
|
549
555
|
S3MonitoringConfiguration.add_member(:log_uri, Shapes::ShapeRef.new(shape: UriString, required: true, location_name: "logUri"))
|
|
556
|
+
S3MonitoringConfiguration.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "encryptionKeyArn"))
|
|
550
557
|
S3MonitoringConfiguration.struct_class = Types::S3MonitoringConfiguration
|
|
551
558
|
|
|
552
559
|
SecureNamespaceInfo.add_member(:cluster_id, Shapes::ShapeRef.new(shape: ClusterId, location_name: "clusterId"))
|
|
@@ -643,6 +650,7 @@ module Aws::EMRContainers
|
|
|
643
650
|
VirtualCluster.add_member(:created_at, Shapes::ShapeRef.new(shape: Date, location_name: "createdAt"))
|
|
644
651
|
VirtualCluster.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
645
652
|
VirtualCluster.add_member(:security_configuration_id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "securityConfigurationId"))
|
|
653
|
+
VirtualCluster.add_member(:session_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "sessionEnabled"))
|
|
646
654
|
VirtualCluster.struct_class = Types::VirtualCluster
|
|
647
655
|
|
|
648
656
|
VirtualClusterStates.member = Shapes::ShapeRef.new(shape: VirtualClusterState)
|
|
@@ -333,6 +333,10 @@ module Aws::EMRContainers
|
|
|
333
333
|
# The tags of the managed endpoint.
|
|
334
334
|
# @return [Hash<String,String>]
|
|
335
335
|
#
|
|
336
|
+
# @!attribute [rw] session_idle_timeout_in_minutes
|
|
337
|
+
# The idle timeout in minutes for the managed endpoint session.
|
|
338
|
+
# @return [Integer]
|
|
339
|
+
#
|
|
336
340
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/CreateManagedEndpointRequest AWS API Documentation
|
|
337
341
|
#
|
|
338
342
|
class CreateManagedEndpointRequest < Struct.new(
|
|
@@ -344,7 +348,8 @@ module Aws::EMRContainers
|
|
|
344
348
|
:certificate_arn,
|
|
345
349
|
:configuration_overrides,
|
|
346
350
|
:client_token,
|
|
347
|
-
:tags
|
|
351
|
+
:tags,
|
|
352
|
+
:session_idle_timeout_in_minutes)
|
|
348
353
|
SENSITIVE = []
|
|
349
354
|
include Aws::Structure
|
|
350
355
|
end
|
|
@@ -457,6 +462,10 @@ module Aws::EMRContainers
|
|
|
457
462
|
# The ID of the security configuration.
|
|
458
463
|
# @return [String]
|
|
459
464
|
#
|
|
465
|
+
# @!attribute [rw] session_enabled
|
|
466
|
+
# Indicates whether the virtual cluster has session support enabled.
|
|
467
|
+
# @return [Boolean]
|
|
468
|
+
#
|
|
460
469
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/CreateVirtualClusterRequest AWS API Documentation
|
|
461
470
|
#
|
|
462
471
|
class CreateVirtualClusterRequest < Struct.new(
|
|
@@ -464,7 +473,8 @@ module Aws::EMRContainers
|
|
|
464
473
|
:container_provider,
|
|
465
474
|
:client_token,
|
|
466
475
|
:tags,
|
|
467
|
-
:security_configuration_id
|
|
476
|
+
:security_configuration_id,
|
|
477
|
+
:session_enabled)
|
|
468
478
|
SENSITIVE = []
|
|
469
479
|
include Aws::Structure
|
|
470
480
|
end
|
|
@@ -828,6 +838,10 @@ module Aws::EMRContainers
|
|
|
828
838
|
# The server URL of the endpoint.
|
|
829
839
|
# @return [String]
|
|
830
840
|
#
|
|
841
|
+
# @!attribute [rw] auth_proxy_url
|
|
842
|
+
# The auth proxy URL of the endpoint.
|
|
843
|
+
# @return [String]
|
|
844
|
+
#
|
|
831
845
|
# @!attribute [rw] created_at
|
|
832
846
|
# The date and time when the endpoint was created.
|
|
833
847
|
# @return [Time]
|
|
@@ -867,6 +881,7 @@ module Aws::EMRContainers
|
|
|
867
881
|
:certificate_authority,
|
|
868
882
|
:configuration_overrides,
|
|
869
883
|
:server_url,
|
|
884
|
+
:auth_proxy_url,
|
|
870
885
|
:created_at,
|
|
871
886
|
:security_group,
|
|
872
887
|
:subnet_ids,
|
|
@@ -934,6 +949,10 @@ module Aws::EMRContainers
|
|
|
934
949
|
# The structure containing the session credentials.
|
|
935
950
|
# @return [Types::Credentials]
|
|
936
951
|
#
|
|
952
|
+
# @!attribute [rw] endpoint_credentials
|
|
953
|
+
# The structure containing the session token being returned.
|
|
954
|
+
# @return [Types::Credentials]
|
|
955
|
+
#
|
|
937
956
|
# @!attribute [rw] expires_at
|
|
938
957
|
# The date and time when the session token will expire.
|
|
939
958
|
# @return [Time]
|
|
@@ -943,6 +962,7 @@ module Aws::EMRContainers
|
|
|
943
962
|
class GetManagedEndpointSessionCredentialsResponse < Struct.new(
|
|
944
963
|
:id,
|
|
945
964
|
:credentials,
|
|
965
|
+
:endpoint_credentials,
|
|
946
966
|
:expires_at)
|
|
947
967
|
SENSITIVE = []
|
|
948
968
|
include Aws::Structure
|
|
@@ -1727,10 +1747,15 @@ module Aws::EMRContainers
|
|
|
1727
1747
|
# Amazon S3 destination URI for log publishing.
|
|
1728
1748
|
# @return [String]
|
|
1729
1749
|
#
|
|
1750
|
+
# @!attribute [rw] encryption_key_arn
|
|
1751
|
+
# The Amazon resource name (ARN) of the encryption key for logs.
|
|
1752
|
+
# @return [String]
|
|
1753
|
+
#
|
|
1730
1754
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/S3MonitoringConfiguration AWS API Documentation
|
|
1731
1755
|
#
|
|
1732
1756
|
class S3MonitoringConfiguration < Struct.new(
|
|
1733
|
-
:log_uri
|
|
1757
|
+
:log_uri,
|
|
1758
|
+
:encryption_key_arn)
|
|
1734
1759
|
SENSITIVE = []
|
|
1735
1760
|
include Aws::Structure
|
|
1736
1761
|
end
|
|
@@ -2097,6 +2122,10 @@ module Aws::EMRContainers
|
|
|
2097
2122
|
# The ID of the security configuration.
|
|
2098
2123
|
# @return [String]
|
|
2099
2124
|
#
|
|
2125
|
+
# @!attribute [rw] session_enabled
|
|
2126
|
+
# Indicates whether the virtual cluster has session support enabled.
|
|
2127
|
+
# @return [Boolean]
|
|
2128
|
+
#
|
|
2100
2129
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/VirtualCluster AWS API Documentation
|
|
2101
2130
|
#
|
|
2102
2131
|
class VirtualCluster < Struct.new(
|
|
@@ -2107,7 +2136,8 @@ module Aws::EMRContainers
|
|
|
2107
2136
|
:container_provider,
|
|
2108
2137
|
:created_at,
|
|
2109
2138
|
:tags,
|
|
2110
|
-
:security_configuration_id
|
|
2139
|
+
:security_configuration_id,
|
|
2140
|
+
:session_enabled)
|
|
2111
2141
|
SENSITIVE = []
|
|
2112
2142
|
include Aws::Structure
|
|
2113
2143
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -152,7 +152,8 @@ module Aws
|
|
|
152
152
|
?certificate_arn: ::String,
|
|
153
153
|
?configuration_overrides: Params::configuration_overrides,
|
|
154
154
|
client_token: ::String,
|
|
155
|
-
?tags: Hash[::String, ::String]
|
|
155
|
+
?tags: Hash[::String, ::String],
|
|
156
|
+
?session_idle_timeout_in_minutes: ::Integer
|
|
156
157
|
) -> _CreateManagedEndpointResponseSuccess
|
|
157
158
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateManagedEndpointResponseSuccess
|
|
158
159
|
|
|
@@ -204,7 +205,8 @@ module Aws
|
|
|
204
205
|
container_provider: Params::container_provider,
|
|
205
206
|
client_token: ::String,
|
|
206
207
|
?tags: Hash[::String, ::String],
|
|
207
|
-
?security_configuration_id: ::String
|
|
208
|
+
?security_configuration_id: ::String,
|
|
209
|
+
?session_enabled: bool
|
|
208
210
|
) -> _CreateVirtualClusterResponseSuccess
|
|
209
211
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVirtualClusterResponseSuccess
|
|
210
212
|
|
|
@@ -296,6 +298,7 @@ module Aws
|
|
|
296
298
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetManagedEndpointSessionCredentialsResponse]
|
|
297
299
|
def id: () -> ::String
|
|
298
300
|
def credentials: () -> Types::Credentials
|
|
301
|
+
def endpoint_credentials: () -> Types::Credentials
|
|
299
302
|
def expires_at: () -> ::Time
|
|
300
303
|
end
|
|
301
304
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EMRContainers/Client.html#get_managed_endpoint_session_credentials-instance_method
|
data/sig/params.rbs
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -102,6 +102,7 @@ module Aws::EMRContainers
|
|
|
102
102
|
attr_accessor configuration_overrides: Types::ConfigurationOverrides
|
|
103
103
|
attr_accessor client_token: ::String
|
|
104
104
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
105
|
+
attr_accessor session_idle_timeout_in_minutes: ::Integer
|
|
105
106
|
SENSITIVE: []
|
|
106
107
|
end
|
|
107
108
|
|
|
@@ -135,6 +136,7 @@ module Aws::EMRContainers
|
|
|
135
136
|
attr_accessor client_token: ::String
|
|
136
137
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
137
138
|
attr_accessor security_configuration_id: ::String
|
|
139
|
+
attr_accessor session_enabled: bool
|
|
138
140
|
SENSITIVE: []
|
|
139
141
|
end
|
|
140
142
|
|
|
@@ -269,6 +271,7 @@ module Aws::EMRContainers
|
|
|
269
271
|
attr_accessor certificate_authority: Types::Certificate
|
|
270
272
|
attr_accessor configuration_overrides: Types::ConfigurationOverrides
|
|
271
273
|
attr_accessor server_url: ::String
|
|
274
|
+
attr_accessor auth_proxy_url: ::String
|
|
272
275
|
attr_accessor created_at: ::Time
|
|
273
276
|
attr_accessor security_group: ::String
|
|
274
277
|
attr_accessor subnet_ids: ::Array[::String]
|
|
@@ -292,6 +295,7 @@ module Aws::EMRContainers
|
|
|
292
295
|
class GetManagedEndpointSessionCredentialsResponse
|
|
293
296
|
attr_accessor id: ::String
|
|
294
297
|
attr_accessor credentials: Types::Credentials
|
|
298
|
+
attr_accessor endpoint_credentials: Types::Credentials
|
|
295
299
|
attr_accessor expires_at: ::Time
|
|
296
300
|
SENSITIVE: []
|
|
297
301
|
end
|
|
@@ -515,6 +519,7 @@ module Aws::EMRContainers
|
|
|
515
519
|
|
|
516
520
|
class S3MonitoringConfiguration
|
|
517
521
|
attr_accessor log_uri: ::String
|
|
522
|
+
attr_accessor encryption_key_arn: ::String
|
|
518
523
|
SENSITIVE: []
|
|
519
524
|
end
|
|
520
525
|
|
|
@@ -621,6 +626,7 @@ module Aws::EMRContainers
|
|
|
621
626
|
attr_accessor created_at: ::Time
|
|
622
627
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
623
628
|
attr_accessor security_configuration_id: ::String
|
|
629
|
+
attr_accessor session_enabled: bool
|
|
624
630
|
SENSITIVE: []
|
|
625
631
|
end
|
|
626
632
|
end
|