aws-sdk-emrcontainers 1.74.0 → 1.76.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: f6e6eee6e60c2cb33d7d7e118880c8ba899ded767377b10a8eeca7296b249393
4
- data.tar.gz: 81fe974a2ff0c25710a05305aa0c187ecc5108e687a8848def0bb785edfa5643
3
+ metadata.gz: 238568197f3fbb93290aa35418e2c89bd383b8b8c25dba8127f487d8aa225bf3
4
+ data.tar.gz: 7dfa240d2b73b0ad29e73cf9310f6a46419ccc5b38bdbfca881de7af39aaee55
5
5
  SHA512:
6
- metadata.gz: d590a4180b51674623679acd7b750523ad962137180abc63b358ed6280122a9be0f50571d90b49b6c13f3e8d18769276ae55a5f3ef104325e985989bc683137f
7
- data.tar.gz: e9aaf203b460ca64f1ae39c6b080c681dde41a4b3b86b13c1b996bb7cad609b8d93e62609172bae1c868f98a3dcc056bb4a7413cad1bca4d432b9d9b21850351
6
+ metadata.gz: 3fac25731d75424d2e9f93086afb7bd849257a0da9a2d780685e42431f3cf33f9f450e8705d2286183e8cfd6cd3b2e23fbc99a262917dfc9135d826a8905ce31
7
+ data.tar.gz: 5fb9dbb6788b62bdbc54b817ff63bbcff7d80efb0c22c860b67a8ad8b20ac445f2cdcf455126c40ee453fcbbb15f486802ba177a046df3d6a7bcce71846b8271
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.76.0 (2026-07-27)
5
+ ------------------
6
+
7
+ * Feature - With this launch, you can now set concurrent job limits on a virtual cluster, giving you fine-grained control over how many job runs execute at once and how many can wait in queue.
8
+
9
+ 1.75.0 (2026-07-21)
10
+ ------------------
11
+
12
+ * Feature - Added support for the DeleteSecurityConfiguration API, which allows customers to delete security configurations in Amazon EMR on EKS. Also added authenticationConfiguration in securityConfigurationdata structure.
13
+
4
14
  1.74.0 (2026-07-14)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.74.0
1
+ 1.76.0
@@ -651,7 +651,8 @@ module Aws::EMRContainers
651
651
  # The tags of the managed endpoint.
652
652
  #
653
653
  # @option params [Integer] :session_idle_timeout_in_minutes
654
- # The idle timeout in minutes for the managed endpoint session.
654
+ # The number of idle minutes before the managed endpoint session times
655
+ # out.
655
656
  #
656
657
  # @return [Types::CreateManagedEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
657
658
  #
@@ -790,6 +791,17 @@ module Aws::EMRContainers
790
791
  # },
791
792
  # },
792
793
  # },
794
+ # authentication_configuration: {
795
+ # identity_center_configuration: {
796
+ # enable_identity_center: false,
797
+ # identity_center_application_assignment_required: false,
798
+ # identity_center_instance_arn: "IdentityCenterInstanceARN",
799
+ # emr_identity_center_application_arn: "EmrIdentityCenterApplicationARN",
800
+ # },
801
+ # iam_configuration: {
802
+ # system_role: "IAMRoleArn",
803
+ # },
804
+ # },
793
805
  # },
794
806
  # tags: {
795
807
  # "String128" => "StringEmpty256",
@@ -812,11 +824,11 @@ module Aws::EMRContainers
812
824
  end
813
825
 
814
826
  # Creates a virtual cluster. Virtual cluster is a managed entity on
815
- # Amazon EMR on EKS. You can create, describe, list and delete virtual
816
- # clusters. They do not consume any additional resource in your system.
817
- # A single virtual cluster maps to a single Kubernetes namespace. Given
818
- # this relationship, you can model virtual clusters the same way you
819
- # model Kubernetes namespaces to meet your requirements.
827
+ # Amazon EMR on EKS. You can create, update, describe, list and delete
828
+ # virtual clusters. They do not consume any additional resource in your
829
+ # system. A single virtual cluster maps to a single Kubernetes
830
+ # namespace. Given this relationship, you can model virtual clusters the
831
+ # same way you model Kubernetes namespaces to meet your requirements.
820
832
  #
821
833
  # @option params [required, String] :name
822
834
  # The specified name of the virtual cluster.
@@ -839,6 +851,11 @@ module Aws::EMRContainers
839
851
  # @option params [Boolean] :session_enabled
840
852
  # Indicates whether the virtual cluster has session support enabled.
841
853
  #
854
+ # @option params [Types::SchedulerConfiguration] :scheduler_configuration
855
+ # The scheduler configuration (concurrency and queue limits) to apply to
856
+ # the virtual cluster at creation time. When omitted, no limits are
857
+ # applied.
858
+ #
842
859
  # @return [Types::CreateVirtualClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
843
860
  #
844
861
  # * {Types::CreateVirtualClusterResponse#id #id} => String
@@ -865,6 +882,10 @@ module Aws::EMRContainers
865
882
  # },
866
883
  # security_configuration_id: "ResourceIdString",
867
884
  # session_enabled: false,
885
+ # scheduler_configuration: {
886
+ # max_in_queue_job_runs: 1,
887
+ # max_concurrent_job_runs: 1,
888
+ # },
868
889
  # })
869
890
  #
870
891
  # @example Response structure
@@ -949,12 +970,40 @@ module Aws::EMRContainers
949
970
  req.send_request(options)
950
971
  end
951
972
 
973
+ # Deletes a security configuration.
974
+ #
975
+ # @option params [required, String] :id
976
+ # The ID of the security configuration to delete.
977
+ #
978
+ # @return [Types::DeleteSecurityConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
979
+ #
980
+ # * {Types::DeleteSecurityConfigurationResponse#id #id} => String
981
+ #
982
+ # @example Request syntax with placeholder values
983
+ #
984
+ # resp = client.delete_security_configuration({
985
+ # id: "ResourceIdString", # required
986
+ # })
987
+ #
988
+ # @example Response structure
989
+ #
990
+ # resp.id #=> String
991
+ #
992
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/DeleteSecurityConfiguration AWS API Documentation
993
+ #
994
+ # @overload delete_security_configuration(params = {})
995
+ # @param [Hash] params ({})
996
+ def delete_security_configuration(params = {}, options = {})
997
+ req = build_request(:delete_security_configuration, params)
998
+ req.send_request(options)
999
+ end
1000
+
952
1001
  # Deletes a virtual cluster. Virtual cluster is a managed entity on
953
- # Amazon EMR on EKS. You can create, describe, list and delete virtual
954
- # clusters. They do not consume any additional resource in your system.
955
- # A single virtual cluster maps to a single Kubernetes namespace. Given
956
- # this relationship, you can model virtual clusters the same way you
957
- # model Kubernetes namespaces to meet your requirements.
1002
+ # Amazon EMR on EKS. You can create, update, describe, list and delete
1003
+ # virtual clusters. They do not consume any additional resource in your
1004
+ # system. A single virtual cluster maps to a single Kubernetes
1005
+ # namespace. Given this relationship, you can model virtual clusters the
1006
+ # same way you model Kubernetes namespaces to meet your requirements.
958
1007
  #
959
1008
  # @option params [required, String] :id
960
1009
  # The ID of the virtual cluster that will be deleted.
@@ -1217,6 +1266,11 @@ module Aws::EMRContainers
1217
1266
  # resp.security_configuration.security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.certificate_provider_type #=> String, one of "PEM"
1218
1267
  # resp.security_configuration.security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.public_certificate_secret_arn #=> String
1219
1268
  # resp.security_configuration.security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.private_certificate_secret_arn #=> String
1269
+ # resp.security_configuration.security_configuration_data.authentication_configuration.identity_center_configuration.enable_identity_center #=> Boolean
1270
+ # resp.security_configuration.security_configuration_data.authentication_configuration.identity_center_configuration.identity_center_application_assignment_required #=> Boolean
1271
+ # resp.security_configuration.security_configuration_data.authentication_configuration.identity_center_configuration.identity_center_instance_arn #=> String
1272
+ # resp.security_configuration.security_configuration_data.authentication_configuration.identity_center_configuration.emr_identity_center_application_arn #=> String
1273
+ # resp.security_configuration.security_configuration_data.authentication_configuration.iam_configuration.system_role #=> String
1220
1274
  # resp.security_configuration.tags #=> Hash
1221
1275
  # resp.security_configuration.tags["String128"] #=> String
1222
1276
  #
@@ -1231,8 +1285,8 @@ module Aws::EMRContainers
1231
1285
 
1232
1286
  # Displays detailed information about a specified virtual cluster.
1233
1287
  # Virtual cluster is a managed entity on Amazon EMR on EKS. You can
1234
- # create, describe, list and delete virtual clusters. They do not
1235
- # consume any additional resource in your system. A single virtual
1288
+ # create, update, describe, list and delete virtual clusters. They do
1289
+ # not consume any additional resource in your system. A single virtual
1236
1290
  # cluster maps to a single Kubernetes namespace. Given this
1237
1291
  # relationship, you can model virtual clusters the same way you model
1238
1292
  # Kubernetes namespaces to meet your requirements.
@@ -1265,6 +1319,10 @@ module Aws::EMRContainers
1265
1319
  # resp.virtual_cluster.tags["String128"] #=> String
1266
1320
  # resp.virtual_cluster.security_configuration_id #=> String
1267
1321
  # resp.virtual_cluster.session_enabled #=> Boolean
1322
+ # resp.virtual_cluster.scheduler_configuration.max_in_queue_job_runs #=> Integer
1323
+ # resp.virtual_cluster.scheduler_configuration.max_concurrent_job_runs #=> Integer
1324
+ # resp.virtual_cluster.scheduler_status.current_in_queue_job_runs #=> Integer
1325
+ # resp.virtual_cluster.scheduler_status.current_concurrent_job_runs #=> Integer
1268
1326
  #
1269
1327
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/DescribeVirtualCluster AWS API Documentation
1270
1328
  #
@@ -1657,6 +1715,11 @@ module Aws::EMRContainers
1657
1715
  # resp.security_configurations[0].security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.certificate_provider_type #=> String, one of "PEM"
1658
1716
  # resp.security_configurations[0].security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.public_certificate_secret_arn #=> String
1659
1717
  # resp.security_configurations[0].security_configuration_data.authorization_configuration.encryption_configuration.in_transit_encryption_configuration.tls_certificate_configuration.private_certificate_secret_arn #=> String
1718
+ # resp.security_configurations[0].security_configuration_data.authentication_configuration.identity_center_configuration.enable_identity_center #=> Boolean
1719
+ # resp.security_configurations[0].security_configuration_data.authentication_configuration.identity_center_configuration.identity_center_application_assignment_required #=> Boolean
1720
+ # resp.security_configurations[0].security_configuration_data.authentication_configuration.identity_center_configuration.identity_center_instance_arn #=> String
1721
+ # resp.security_configurations[0].security_configuration_data.authentication_configuration.identity_center_configuration.emr_identity_center_application_arn #=> String
1722
+ # resp.security_configurations[0].security_configuration_data.authentication_configuration.iam_configuration.system_role #=> String
1660
1723
  # resp.security_configurations[0].tags #=> Hash
1661
1724
  # resp.security_configurations[0].tags["String128"] #=> String
1662
1725
  # resp.next_token #=> String
@@ -1700,12 +1763,12 @@ module Aws::EMRContainers
1700
1763
  end
1701
1764
 
1702
1765
  # Lists information about the specified virtual cluster. Virtual cluster
1703
- # is a managed entity on Amazon EMR on EKS. You can create, describe,
1704
- # list and delete virtual clusters. They do not consume any additional
1705
- # resource in your system. A single virtual cluster maps to a single
1706
- # Kubernetes namespace. Given this relationship, you can model virtual
1707
- # clusters the same way you model Kubernetes namespaces to meet your
1708
- # requirements.
1766
+ # is a managed entity on Amazon EMR on EKS. You can create, update,
1767
+ # describe, list and delete virtual clusters. They do not consume any
1768
+ # additional resource in your system. A single virtual cluster maps to a
1769
+ # single Kubernetes namespace. Given this relationship, you can model
1770
+ # virtual clusters the same way you model Kubernetes namespaces to meet
1771
+ # your requirements.
1709
1772
  #
1710
1773
  # @option params [String] :container_provider_id
1711
1774
  # The container provider ID of the virtual cluster.
@@ -1771,6 +1834,10 @@ module Aws::EMRContainers
1771
1834
  # resp.virtual_clusters[0].tags["String128"] #=> String
1772
1835
  # resp.virtual_clusters[0].security_configuration_id #=> String
1773
1836
  # resp.virtual_clusters[0].session_enabled #=> Boolean
1837
+ # resp.virtual_clusters[0].scheduler_configuration.max_in_queue_job_runs #=> Integer
1838
+ # resp.virtual_clusters[0].scheduler_configuration.max_concurrent_job_runs #=> Integer
1839
+ # resp.virtual_clusters[0].scheduler_status.current_in_queue_job_runs #=> Integer
1840
+ # resp.virtual_clusters[0].scheduler_status.current_concurrent_job_runs #=> Integer
1774
1841
  # resp.next_token #=> String
1775
1842
  #
1776
1843
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/ListVirtualClusters AWS API Documentation
@@ -1972,6 +2039,74 @@ module Aws::EMRContainers
1972
2039
  req.send_request(options)
1973
2040
  end
1974
2041
 
2042
+ # Updates a virtual cluster. Virtual cluster is a managed entity on
2043
+ # Amazon EMR on EKS. You can create, update, describe, list and delete
2044
+ # virtual clusters. They do not consume any additional resource in your
2045
+ # system. A single virtual cluster maps to a single Kubernetes
2046
+ # namespace. Given this relationship, you can model virtual clusters the
2047
+ # same way you model Kubernetes namespaces to meet your requirements.
2048
+ #
2049
+ # @option params [required, String] :id
2050
+ # The ID of the virtual cluster to update.
2051
+ #
2052
+ # @option params [Types::SchedulerConfiguration] :scheduler_configuration
2053
+ # The scheduler configuration to apply to the virtual cluster. The new
2054
+ # configuration fully replaces the existing one. If you omit a field,
2055
+ # the corresponding limit is removed.
2056
+ #
2057
+ # @option params [required, String] :client_token
2058
+ # A unique, case-sensitive identifier that you provide to ensure that
2059
+ # the operation completes no more than one time. If this token matches a
2060
+ # previous request, the service ignores the request, but does not return
2061
+ # an error.
2062
+ #
2063
+ # **A suitable default value is auto-generated.** You should normally
2064
+ # not need to pass this option.**
2065
+ #
2066
+ # @return [Types::UpdateVirtualClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2067
+ #
2068
+ # * {Types::UpdateVirtualClusterResponse#virtual_cluster #virtual_cluster} => Types::VirtualCluster
2069
+ #
2070
+ # @example Request syntax with placeholder values
2071
+ #
2072
+ # resp = client.update_virtual_cluster({
2073
+ # id: "ResourceIdString", # required
2074
+ # scheduler_configuration: {
2075
+ # max_in_queue_job_runs: 1,
2076
+ # max_concurrent_job_runs: 1,
2077
+ # },
2078
+ # client_token: "ClientToken", # required
2079
+ # })
2080
+ #
2081
+ # @example Response structure
2082
+ #
2083
+ # resp.virtual_cluster.id #=> String
2084
+ # resp.virtual_cluster.name #=> String
2085
+ # resp.virtual_cluster.arn #=> String
2086
+ # resp.virtual_cluster.state #=> String, one of "RUNNING", "TERMINATING", "TERMINATED", "ARRESTED"
2087
+ # resp.virtual_cluster.container_provider.type #=> String, one of "EKS"
2088
+ # resp.virtual_cluster.container_provider.id #=> String
2089
+ # resp.virtual_cluster.container_provider.info.eks_info.namespace #=> String
2090
+ # resp.virtual_cluster.container_provider.info.eks_info.node_label #=> String
2091
+ # resp.virtual_cluster.created_at #=> Time
2092
+ # resp.virtual_cluster.tags #=> Hash
2093
+ # resp.virtual_cluster.tags["String128"] #=> String
2094
+ # resp.virtual_cluster.security_configuration_id #=> String
2095
+ # resp.virtual_cluster.session_enabled #=> Boolean
2096
+ # resp.virtual_cluster.scheduler_configuration.max_in_queue_job_runs #=> Integer
2097
+ # resp.virtual_cluster.scheduler_configuration.max_concurrent_job_runs #=> Integer
2098
+ # resp.virtual_cluster.scheduler_status.current_in_queue_job_runs #=> Integer
2099
+ # resp.virtual_cluster.scheduler_status.current_concurrent_job_runs #=> Integer
2100
+ #
2101
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/UpdateVirtualCluster AWS API Documentation
2102
+ #
2103
+ # @overload update_virtual_cluster(params = {})
2104
+ # @param [Hash] params ({})
2105
+ def update_virtual_cluster(params = {}, options = {})
2106
+ req = build_request(:update_virtual_cluster, params)
2107
+ req.send_request(options)
2108
+ end
2109
+
1975
2110
  # @!endgroup
1976
2111
 
1977
2112
  # @param params ({})
@@ -1990,7 +2125,7 @@ module Aws::EMRContainers
1990
2125
  tracer: tracer
1991
2126
  )
1992
2127
  context[:gem_name] = 'aws-sdk-emrcontainers'
1993
- context[:gem_version] = '1.74.0'
2128
+ context[:gem_version] = '1.76.0'
1994
2129
  Seahorse::Client::Request.new(handlers, context)
1995
2130
  end
1996
2131
 
@@ -16,6 +16,7 @@ module Aws::EMRContainers
16
16
 
17
17
  ACMCertArn = Shapes::StringShape.new(name: 'ACMCertArn')
18
18
  AllowAWSToRetainLogs = Shapes::StringShape.new(name: 'AllowAWSToRetainLogs')
19
+ AuthenticationConfiguration = Shapes::StructureShape.new(name: 'AuthenticationConfiguration')
19
20
  AuthorizationConfiguration = Shapes::StructureShape.new(name: 'AuthorizationConfiguration')
20
21
  Base64Encoded = Shapes::StringShape.new(name: 'Base64Encoded')
21
22
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
@@ -48,6 +49,8 @@ module Aws::EMRContainers
48
49
  DeleteJobTemplateResponse = Shapes::StructureShape.new(name: 'DeleteJobTemplateResponse')
49
50
  DeleteManagedEndpointRequest = Shapes::StructureShape.new(name: 'DeleteManagedEndpointRequest')
50
51
  DeleteManagedEndpointResponse = Shapes::StructureShape.new(name: 'DeleteManagedEndpointResponse')
52
+ DeleteSecurityConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteSecurityConfigurationRequest')
53
+ DeleteSecurityConfigurationResponse = Shapes::StructureShape.new(name: 'DeleteSecurityConfigurationResponse')
51
54
  DeleteVirtualClusterRequest = Shapes::StructureShape.new(name: 'DeleteVirtualClusterRequest')
52
55
  DeleteVirtualClusterResponse = Shapes::StructureShape.new(name: 'DeleteVirtualClusterResponse')
53
56
  DescribeJobRunRequest = Shapes::StructureShape.new(name: 'DescribeJobRunRequest')
@@ -62,6 +65,7 @@ module Aws::EMRContainers
62
65
  DescribeVirtualClusterResponse = Shapes::StructureShape.new(name: 'DescribeVirtualClusterResponse')
63
66
  EKSRequestThrottledException = Shapes::StructureShape.new(name: 'EKSRequestThrottledException')
64
67
  EksInfo = Shapes::StructureShape.new(name: 'EksInfo')
68
+ EmrIdentityCenterApplicationARN = Shapes::StringShape.new(name: 'EmrIdentityCenterApplicationARN')
65
69
  EncryptionConfiguration = Shapes::StructureShape.new(name: 'EncryptionConfiguration')
66
70
  Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
67
71
  EndpointArn = Shapes::StringShape.new(name: 'EndpointArn')
@@ -76,12 +80,17 @@ module Aws::EMRContainers
76
80
  FailureReason = Shapes::StringShape.new(name: 'FailureReason')
77
81
  GetManagedEndpointSessionCredentialsRequest = Shapes::StructureShape.new(name: 'GetManagedEndpointSessionCredentialsRequest')
78
82
  GetManagedEndpointSessionCredentialsResponse = Shapes::StructureShape.new(name: 'GetManagedEndpointSessionCredentialsResponse')
83
+ IAMConfiguration = Shapes::StructureShape.new(name: 'IAMConfiguration')
79
84
  IAMRoleArn = Shapes::StringShape.new(name: 'IAMRoleArn')
85
+ IdentityCenterConfiguration = Shapes::StructureShape.new(name: 'IdentityCenterConfiguration')
86
+ IdentityCenterInstanceARN = Shapes::StringShape.new(name: 'IdentityCenterInstanceARN')
87
+ InQueueJobLimitInteger = Shapes::IntegerShape.new(name: 'InQueueJobLimitInteger')
80
88
  InTransitEncryptionConfiguration = Shapes::StructureShape.new(name: 'InTransitEncryptionConfiguration')
81
89
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
82
90
  JavaInteger = Shapes::IntegerShape.new(name: 'JavaInteger')
83
91
  JobArn = Shapes::StringShape.new(name: 'JobArn')
84
92
  JobDriver = Shapes::StructureShape.new(name: 'JobDriver')
93
+ JobLimitInteger = Shapes::IntegerShape.new(name: 'JobLimitInteger')
85
94
  JobRun = Shapes::StructureShape.new(name: 'JobRun')
86
95
  JobRunState = Shapes::StringShape.new(name: 'JobRunState')
87
96
  JobRunStates = Shapes::ListShape.new(name: 'JobRunStates')
@@ -112,6 +121,7 @@ module Aws::EMRContainers
112
121
  MonitoringConfiguration = Shapes::StructureShape.new(name: 'MonitoringConfiguration')
113
122
  NextToken = Shapes::StringShape.new(name: 'NextToken')
114
123
  NodeLabelString = Shapes::StringShape.new(name: 'NodeLabelString')
124
+ NonNegativeInteger = Shapes::IntegerShape.new(name: 'NonNegativeInteger')
115
125
  ParametricCloudWatchMonitoringConfiguration = Shapes::StructureShape.new(name: 'ParametricCloudWatchMonitoringConfiguration')
116
126
  ParametricConfigurationOverrides = Shapes::StructureShape.new(name: 'ParametricConfigurationOverrides')
117
127
  ParametricIAMRoleArn = Shapes::StringShape.new(name: 'ParametricIAMRoleArn')
@@ -130,6 +140,8 @@ module Aws::EMRContainers
130
140
  RotationSize = Shapes::StringShape.new(name: 'RotationSize')
131
141
  RsiArn = Shapes::StringShape.new(name: 'RsiArn')
132
142
  S3MonitoringConfiguration = Shapes::StructureShape.new(name: 'S3MonitoringConfiguration')
143
+ SchedulerConfiguration = Shapes::StructureShape.new(name: 'SchedulerConfiguration')
144
+ SchedulerStatus = Shapes::StructureShape.new(name: 'SchedulerStatus')
133
145
  SecretsManagerArn = Shapes::StringShape.new(name: 'SecretsManagerArn')
134
146
  SecureNamespaceInfo = Shapes::StructureShape.new(name: 'SecureNamespaceInfo')
135
147
  SecurityConfiguration = Shapes::StructureShape.new(name: 'SecurityConfiguration')
@@ -165,6 +177,8 @@ module Aws::EMRContainers
165
177
  Token = Shapes::StringShape.new(name: 'Token')
166
178
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
167
179
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
180
+ UpdateVirtualClusterRequest = Shapes::StructureShape.new(name: 'UpdateVirtualClusterRequest')
181
+ UpdateVirtualClusterResponse = Shapes::StructureShape.new(name: 'UpdateVirtualClusterResponse')
168
182
  UriString = Shapes::StringShape.new(name: 'UriString')
169
183
  ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
170
184
  VirtualCluster = Shapes::StructureShape.new(name: 'VirtualCluster')
@@ -173,6 +187,10 @@ module Aws::EMRContainers
173
187
  VirtualClusterStates = Shapes::ListShape.new(name: 'VirtualClusterStates')
174
188
  VirtualClusters = Shapes::ListShape.new(name: 'VirtualClusters')
175
189
 
190
+ AuthenticationConfiguration.add_member(:identity_center_configuration, Shapes::ShapeRef.new(shape: IdentityCenterConfiguration, location_name: "identityCenterConfiguration"))
191
+ AuthenticationConfiguration.add_member(:iam_configuration, Shapes::ShapeRef.new(shape: IAMConfiguration, location_name: "iamConfiguration"))
192
+ AuthenticationConfiguration.struct_class = Types::AuthenticationConfiguration
193
+
176
194
  AuthorizationConfiguration.add_member(:lake_formation_configuration, Shapes::ShapeRef.new(shape: LakeFormationConfiguration, location_name: "lakeFormationConfiguration"))
177
195
  AuthorizationConfiguration.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "encryptionConfiguration"))
178
196
  AuthorizationConfiguration.struct_class = Types::AuthorizationConfiguration
@@ -268,6 +286,7 @@ module Aws::EMRContainers
268
286
  CreateVirtualClusterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
269
287
  CreateVirtualClusterRequest.add_member(:security_configuration_id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "securityConfigurationId"))
270
288
  CreateVirtualClusterRequest.add_member(:session_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "sessionEnabled"))
289
+ CreateVirtualClusterRequest.add_member(:scheduler_configuration, Shapes::ShapeRef.new(shape: SchedulerConfiguration, location_name: "schedulerConfiguration"))
271
290
  CreateVirtualClusterRequest.struct_class = Types::CreateVirtualClusterRequest
272
291
 
273
292
  CreateVirtualClusterResponse.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "id"))
@@ -295,6 +314,12 @@ module Aws::EMRContainers
295
314
  DeleteManagedEndpointResponse.add_member(:virtual_cluster_id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "virtualClusterId"))
296
315
  DeleteManagedEndpointResponse.struct_class = Types::DeleteManagedEndpointResponse
297
316
 
317
+ DeleteSecurityConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, required: true, location: "uri", location_name: "securityConfigurationId"))
318
+ DeleteSecurityConfigurationRequest.struct_class = Types::DeleteSecurityConfigurationRequest
319
+
320
+ DeleteSecurityConfigurationResponse.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "id"))
321
+ DeleteSecurityConfigurationResponse.struct_class = Types::DeleteSecurityConfigurationResponse
322
+
298
323
  DeleteVirtualClusterRequest.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, required: true, location: "uri", location_name: "virtualClusterId"))
299
324
  DeleteVirtualClusterRequest.struct_class = Types::DeleteVirtualClusterRequest
300
325
 
@@ -387,6 +412,15 @@ module Aws::EMRContainers
387
412
  GetManagedEndpointSessionCredentialsResponse.add_member(:expires_at, Shapes::ShapeRef.new(shape: Date, location_name: "expiresAt"))
388
413
  GetManagedEndpointSessionCredentialsResponse.struct_class = Types::GetManagedEndpointSessionCredentialsResponse
389
414
 
415
+ IAMConfiguration.add_member(:system_role, Shapes::ShapeRef.new(shape: IAMRoleArn, location_name: "systemRole"))
416
+ IAMConfiguration.struct_class = Types::IAMConfiguration
417
+
418
+ IdentityCenterConfiguration.add_member(:enable_identity_center, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableIdentityCenter"))
419
+ IdentityCenterConfiguration.add_member(:identity_center_application_assignment_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "identityCenterApplicationAssignmentRequired"))
420
+ IdentityCenterConfiguration.add_member(:identity_center_instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceARN, location_name: "identityCenterInstanceARN"))
421
+ IdentityCenterConfiguration.add_member(:emr_identity_center_application_arn, Shapes::ShapeRef.new(shape: EmrIdentityCenterApplicationARN, location_name: "emrIdentityCenterApplicationARN"))
422
+ IdentityCenterConfiguration.struct_class = Types::IdentityCenterConfiguration
423
+
390
424
  InTransitEncryptionConfiguration.add_member(:tls_certificate_configuration, Shapes::ShapeRef.new(shape: TLSCertificateConfiguration, location_name: "tlsCertificateConfiguration"))
391
425
  InTransitEncryptionConfiguration.struct_class = Types::InTransitEncryptionConfiguration
392
426
 
@@ -556,6 +590,14 @@ module Aws::EMRContainers
556
590
  S3MonitoringConfiguration.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "encryptionKeyArn"))
557
591
  S3MonitoringConfiguration.struct_class = Types::S3MonitoringConfiguration
558
592
 
593
+ SchedulerConfiguration.add_member(:max_in_queue_job_runs, Shapes::ShapeRef.new(shape: InQueueJobLimitInteger, location_name: "maxInQueueJobRuns", metadata: {"box" => true}))
594
+ SchedulerConfiguration.add_member(:max_concurrent_job_runs, Shapes::ShapeRef.new(shape: JobLimitInteger, location_name: "maxConcurrentJobRuns", metadata: {"box" => true}))
595
+ SchedulerConfiguration.struct_class = Types::SchedulerConfiguration
596
+
597
+ SchedulerStatus.add_member(:current_in_queue_job_runs, Shapes::ShapeRef.new(shape: NonNegativeInteger, location_name: "currentInQueueJobRuns"))
598
+ SchedulerStatus.add_member(:current_concurrent_job_runs, Shapes::ShapeRef.new(shape: NonNegativeInteger, location_name: "currentConcurrentJobRuns"))
599
+ SchedulerStatus.struct_class = Types::SchedulerStatus
600
+
559
601
  SecureNamespaceInfo.add_member(:cluster_id, Shapes::ShapeRef.new(shape: ClusterId, location_name: "clusterId"))
560
602
  SecureNamespaceInfo.add_member(:namespace, Shapes::ShapeRef.new(shape: KubernetesNamespace, location_name: "namespace"))
561
603
  SecureNamespaceInfo.struct_class = Types::SecureNamespaceInfo
@@ -570,6 +612,7 @@ module Aws::EMRContainers
570
612
  SecurityConfiguration.struct_class = Types::SecurityConfiguration
571
613
 
572
614
  SecurityConfigurationData.add_member(:authorization_configuration, Shapes::ShapeRef.new(shape: AuthorizationConfiguration, location_name: "authorizationConfiguration"))
615
+ SecurityConfigurationData.add_member(:authentication_configuration, Shapes::ShapeRef.new(shape: AuthenticationConfiguration, location_name: "authenticationConfiguration"))
573
616
  SecurityConfigurationData.struct_class = Types::SecurityConfigurationData
574
617
 
575
618
  SecurityConfigurations.member = Shapes::ShapeRef.new(shape: SecurityConfiguration)
@@ -639,6 +682,14 @@ module Aws::EMRContainers
639
682
 
640
683
  UntagResourceResponse.struct_class = Types::UntagResourceResponse
641
684
 
685
+ UpdateVirtualClusterRequest.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, required: true, location: "uri", location_name: "virtualClusterId"))
686
+ UpdateVirtualClusterRequest.add_member(:scheduler_configuration, Shapes::ShapeRef.new(shape: SchedulerConfiguration, location_name: "schedulerConfiguration"))
687
+ UpdateVirtualClusterRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
688
+ UpdateVirtualClusterRequest.struct_class = Types::UpdateVirtualClusterRequest
689
+
690
+ UpdateVirtualClusterResponse.add_member(:virtual_cluster, Shapes::ShapeRef.new(shape: VirtualCluster, location_name: "virtualCluster"))
691
+ UpdateVirtualClusterResponse.struct_class = Types::UpdateVirtualClusterResponse
692
+
642
693
  ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String1024, location_name: "message"))
643
694
  ValidationException.struct_class = Types::ValidationException
644
695
 
@@ -651,6 +702,8 @@ module Aws::EMRContainers
651
702
  VirtualCluster.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
652
703
  VirtualCluster.add_member(:security_configuration_id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "securityConfigurationId"))
653
704
  VirtualCluster.add_member(:session_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "sessionEnabled"))
705
+ VirtualCluster.add_member(:scheduler_configuration, Shapes::ShapeRef.new(shape: SchedulerConfiguration, location_name: "schedulerConfiguration"))
706
+ VirtualCluster.add_member(:scheduler_status, Shapes::ShapeRef.new(shape: SchedulerStatus, location_name: "schedulerStatus"))
654
707
  VirtualCluster.struct_class = Types::VirtualCluster
655
708
 
656
709
  VirtualClusterStates.member = Shapes::ShapeRef.new(shape: VirtualClusterState)
@@ -751,6 +804,16 @@ module Aws::EMRContainers
751
804
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
752
805
  end)
753
806
 
807
+ api.add_operation(:delete_security_configuration, Seahorse::Model::Operation.new.tap do |o|
808
+ o.name = "DeleteSecurityConfiguration"
809
+ o.http_method = "DELETE"
810
+ o.http_request_uri = "/securityconfigurations/{securityConfigurationId}"
811
+ o.input = Shapes::ShapeRef.new(shape: DeleteSecurityConfigurationRequest)
812
+ o.output = Shapes::ShapeRef.new(shape: DeleteSecurityConfigurationResponse)
813
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
814
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
815
+ end)
816
+
754
817
  api.add_operation(:delete_virtual_cluster, Seahorse::Model::Operation.new.tap do |o|
755
818
  o.name = "DeleteVirtualCluster"
756
819
  o.http_method = "DELETE"
@@ -951,6 +1014,17 @@ module Aws::EMRContainers
951
1014
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
952
1015
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
953
1016
  end)
1017
+
1018
+ api.add_operation(:update_virtual_cluster, Seahorse::Model::Operation.new.tap do |o|
1019
+ o.name = "UpdateVirtualCluster"
1020
+ o.http_method = "PATCH"
1021
+ o.http_request_uri = "/virtualclusters/{virtualClusterId}"
1022
+ o.input = Shapes::ShapeRef.new(shape: UpdateVirtualClusterRequest)
1023
+ o.output = Shapes::ShapeRef.new(shape: UpdateVirtualClusterResponse)
1024
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1025
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1026
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1027
+ end)
954
1028
  end
955
1029
 
956
1030
  end
@@ -10,6 +10,26 @@
10
10
  module Aws::EMRContainers
11
11
  module Types
12
12
 
13
+ # Contains the authentication settings for a security configuration,
14
+ # including Identity Center and IAM configuration options.
15
+ #
16
+ # @!attribute [rw] identity_center_configuration
17
+ # The IAM Identity Center configuration to use for authentication.
18
+ # @return [Types::IdentityCenterConfiguration]
19
+ #
20
+ # @!attribute [rw] iam_configuration
21
+ # The IAM configuration to use for authentication.
22
+ # @return [Types::IAMConfiguration]
23
+ #
24
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/AuthenticationConfiguration AWS API Documentation
25
+ #
26
+ class AuthenticationConfiguration < Struct.new(
27
+ :identity_center_configuration,
28
+ :iam_configuration)
29
+ SENSITIVE = []
30
+ include Aws::Structure
31
+ end
32
+
13
33
  # Authorization-related configuration inputs for the security
14
34
  # configuration.
15
35
  #
@@ -334,7 +354,8 @@ module Aws::EMRContainers
334
354
  # @return [Hash<String,String>]
335
355
  #
336
356
  # @!attribute [rw] session_idle_timeout_in_minutes
337
- # The idle timeout in minutes for the managed endpoint session.
357
+ # The number of idle minutes before the managed endpoint session times
358
+ # out.
338
359
  # @return [Integer]
339
360
  #
340
361
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/CreateManagedEndpointRequest AWS API Documentation
@@ -466,6 +487,12 @@ module Aws::EMRContainers
466
487
  # Indicates whether the virtual cluster has session support enabled.
467
488
  # @return [Boolean]
468
489
  #
490
+ # @!attribute [rw] scheduler_configuration
491
+ # The scheduler configuration (concurrency and queue limits) to apply
492
+ # to the virtual cluster at creation time. When omitted, no limits are
493
+ # applied.
494
+ # @return [Types::SchedulerConfiguration]
495
+ #
469
496
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/CreateVirtualClusterRequest AWS API Documentation
470
497
  #
471
498
  class CreateVirtualClusterRequest < Struct.new(
@@ -474,7 +501,8 @@ module Aws::EMRContainers
474
501
  :client_token,
475
502
  :tags,
476
503
  :security_configuration_id,
477
- :session_enabled)
504
+ :session_enabled,
505
+ :scheduler_configuration)
478
506
  SENSITIVE = []
479
507
  include Aws::Structure
480
508
  end
@@ -580,6 +608,30 @@ module Aws::EMRContainers
580
608
  include Aws::Structure
581
609
  end
582
610
 
611
+ # @!attribute [rw] id
612
+ # The ID of the security configuration to delete.
613
+ # @return [String]
614
+ #
615
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/DeleteSecurityConfigurationRequest AWS API Documentation
616
+ #
617
+ class DeleteSecurityConfigurationRequest < Struct.new(
618
+ :id)
619
+ SENSITIVE = []
620
+ include Aws::Structure
621
+ end
622
+
623
+ # @!attribute [rw] id
624
+ # The ID of the deleted security configuration.
625
+ # @return [String]
626
+ #
627
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/DeleteSecurityConfigurationResponse AWS API Documentation
628
+ #
629
+ class DeleteSecurityConfigurationResponse < Struct.new(
630
+ :id)
631
+ SENSITIVE = []
632
+ include Aws::Structure
633
+ end
634
+
583
635
  # @!attribute [rw] id
584
636
  # The ID of the virtual cluster that will be deleted.
585
637
  # @return [String]
@@ -839,7 +891,7 @@ module Aws::EMRContainers
839
891
  # @return [String]
840
892
  #
841
893
  # @!attribute [rw] auth_proxy_url
842
- # The auth proxy URL of the endpoint.
894
+ # The authentication proxy URL of the endpoint.
843
895
  # @return [String]
844
896
  #
845
897
  # @!attribute [rw] created_at
@@ -950,7 +1002,7 @@ module Aws::EMRContainers
950
1002
  # @return [Types::Credentials]
951
1003
  #
952
1004
  # @!attribute [rw] endpoint_credentials
953
- # The structure containing the session token being returned.
1005
+ # The session credentials that the operation returns.
954
1006
  # @return [Types::Credentials]
955
1007
  #
956
1008
  # @!attribute [rw] expires_at
@@ -968,6 +1020,56 @@ module Aws::EMRContainers
968
1020
  include Aws::Structure
969
1021
  end
970
1022
 
1023
+ # Contains the IAM settings for a security configuration, including the
1024
+ # system role used for authentication.
1025
+ #
1026
+ # @!attribute [rw] system_role
1027
+ # The Amazon Resource Name (ARN) of the system role used by the
1028
+ # security configuration.
1029
+ # @return [String]
1030
+ #
1031
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/IAMConfiguration AWS API Documentation
1032
+ #
1033
+ class IAMConfiguration < Struct.new(
1034
+ :system_role)
1035
+ SENSITIVE = []
1036
+ include Aws::Structure
1037
+ end
1038
+
1039
+ # Contains the IAM Identity Center settings for a security
1040
+ # configuration, including instance ARN, application assignment
1041
+ # requirements, and application ARN.
1042
+ #
1043
+ # @!attribute [rw] enable_identity_center
1044
+ # Specifies whether Identity Center is enabled for the security
1045
+ # configuration.
1046
+ # @return [Boolean]
1047
+ #
1048
+ # @!attribute [rw] identity_center_application_assignment_required
1049
+ # Specifies whether user assignment is required for the Identity
1050
+ # Center application.
1051
+ # @return [Boolean]
1052
+ #
1053
+ # @!attribute [rw] identity_center_instance_arn
1054
+ # The Amazon Resource Name (ARN) of the Identity Center instance.
1055
+ # @return [String]
1056
+ #
1057
+ # @!attribute [rw] emr_identity_center_application_arn
1058
+ # The Amazon Resource Name (ARN) of the Amazon EMR Identity Center
1059
+ # application.
1060
+ # @return [String]
1061
+ #
1062
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/IdentityCenterConfiguration AWS API Documentation
1063
+ #
1064
+ class IdentityCenterConfiguration < Struct.new(
1065
+ :enable_identity_center,
1066
+ :identity_center_application_assignment_required,
1067
+ :identity_center_instance_arn,
1068
+ :emr_identity_center_application_arn)
1069
+ SENSITIVE = []
1070
+ include Aws::Structure
1071
+ end
1072
+
971
1073
  # Configurations related to in-transit encryption for the security
972
1074
  # configuration.
973
1075
  #
@@ -1748,7 +1850,7 @@ module Aws::EMRContainers
1748
1850
  # @return [String]
1749
1851
  #
1750
1852
  # @!attribute [rw] encryption_key_arn
1751
- # The Amazon resource name (ARN) of the encryption key for logs.
1853
+ # The Amazon Resource Name (ARN) of the encryption key for logs.
1752
1854
  # @return [String]
1753
1855
  #
1754
1856
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/S3MonitoringConfiguration AWS API Documentation
@@ -1760,6 +1862,57 @@ module Aws::EMRContainers
1760
1862
  include Aws::Structure
1761
1863
  end
1762
1864
 
1865
+ # The scheduler configuration for a virtual cluster on Amazon EMR on
1866
+ # EKS. It controls how many job runs can run concurrently and how many
1867
+ # can wait in the queue. When not set, no concurrency or queue limits
1868
+ # are applied.
1869
+ #
1870
+ # @!attribute [rw] max_in_queue_job_runs
1871
+ # The maximum number of job runs that can be in the `PENDING` or
1872
+ # `SUBMITTED` state at any time for the virtual cluster. When the
1873
+ # queue is full, the service rejects `StartJobRun` requests with a
1874
+ # `ValidationException`. If you omit this field, the service applies
1875
+ # no queue-depth limit.
1876
+ # @return [Integer]
1877
+ #
1878
+ # @!attribute [rw] max_concurrent_job_runs
1879
+ # The maximum number of job runs that can be in the `RUNNING` state at
1880
+ # any time for the virtual cluster. As running slots free up, queued
1881
+ # job runs start automatically. If you omit this field, the service
1882
+ # applies no concurrency limit.
1883
+ # @return [Integer]
1884
+ #
1885
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/SchedulerConfiguration AWS API Documentation
1886
+ #
1887
+ class SchedulerConfiguration < Struct.new(
1888
+ :max_in_queue_job_runs,
1889
+ :max_concurrent_job_runs)
1890
+ SENSITIVE = []
1891
+ include Aws::Structure
1892
+ end
1893
+
1894
+ # The current job-run counts for a virtual cluster, reflecting how much
1895
+ # of the configured scheduler capacity is in use.
1896
+ #
1897
+ # @!attribute [rw] current_in_queue_job_runs
1898
+ # The number of job runs currently waiting in the queue (`PENDING` or
1899
+ # `SUBMITTED`) for the virtual cluster.
1900
+ # @return [Integer]
1901
+ #
1902
+ # @!attribute [rw] current_concurrent_job_runs
1903
+ # The number of job runs currently in the `RUNNING` state for the
1904
+ # virtual cluster.
1905
+ # @return [Integer]
1906
+ #
1907
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/SchedulerStatus AWS API Documentation
1908
+ #
1909
+ class SchedulerStatus < Struct.new(
1910
+ :current_in_queue_job_runs,
1911
+ :current_concurrent_job_runs)
1912
+ SENSITIVE = []
1913
+ include Aws::Structure
1914
+ end
1915
+
1763
1916
  # Namespace inputs for the system job.
1764
1917
  #
1765
1918
  # @!attribute [rw] cluster_id
@@ -1834,10 +1987,16 @@ module Aws::EMRContainers
1834
1987
  # configuration.
1835
1988
  # @return [Types::AuthorizationConfiguration]
1836
1989
  #
1990
+ # @!attribute [rw] authentication_configuration
1991
+ # Authentication-related configuration input for the security
1992
+ # configuration.
1993
+ # @return [Types::AuthenticationConfiguration]
1994
+ #
1837
1995
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/SecurityConfigurationData AWS API Documentation
1838
1996
  #
1839
1997
  class SecurityConfigurationData < Struct.new(
1840
- :authorization_configuration)
1998
+ :authorization_configuration,
1999
+ :authentication_configuration)
1841
2000
  SENSITIVE = []
1842
2001
  include Aws::Structure
1843
2002
  end
@@ -2069,6 +2228,54 @@ module Aws::EMRContainers
2069
2228
  #
2070
2229
  class UntagResourceResponse < Aws::EmptyStructure; end
2071
2230
 
2231
+ # Contains the parameters for a request to update a virtual cluster on
2232
+ # Amazon EMR on EKS.
2233
+ #
2234
+ # @!attribute [rw] id
2235
+ # The ID of the virtual cluster to update.
2236
+ # @return [String]
2237
+ #
2238
+ # @!attribute [rw] scheduler_configuration
2239
+ # The scheduler configuration to apply to the virtual cluster. The new
2240
+ # configuration fully replaces the existing one. If you omit a field,
2241
+ # the corresponding limit is removed.
2242
+ # @return [Types::SchedulerConfiguration]
2243
+ #
2244
+ # @!attribute [rw] client_token
2245
+ # A unique, case-sensitive identifier that you provide to ensure that
2246
+ # the operation completes no more than one time. If this token matches
2247
+ # a previous request, the service ignores the request, but does not
2248
+ # return an error.
2249
+ #
2250
+ # **A suitable default value is auto-generated.** You should normally
2251
+ # not need to pass this option.
2252
+ # @return [String]
2253
+ #
2254
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/UpdateVirtualClusterRequest AWS API Documentation
2255
+ #
2256
+ class UpdateVirtualClusterRequest < Struct.new(
2257
+ :id,
2258
+ :scheduler_configuration,
2259
+ :client_token)
2260
+ SENSITIVE = []
2261
+ include Aws::Structure
2262
+ end
2263
+
2264
+ # Contains the virtual cluster returned after a successful update
2265
+ # request.
2266
+ #
2267
+ # @!attribute [rw] virtual_cluster
2268
+ # The updated virtual cluster.
2269
+ # @return [Types::VirtualCluster]
2270
+ #
2271
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/UpdateVirtualClusterResponse AWS API Documentation
2272
+ #
2273
+ class UpdateVirtualClusterResponse < Struct.new(
2274
+ :virtual_cluster)
2275
+ SENSITIVE = []
2276
+ include Aws::Structure
2277
+ end
2278
+
2072
2279
  # There are invalid parameters in the client request.
2073
2280
  #
2074
2281
  # @!attribute [rw] message
@@ -2123,9 +2330,20 @@ module Aws::EMRContainers
2123
2330
  # @return [String]
2124
2331
  #
2125
2332
  # @!attribute [rw] session_enabled
2126
- # Indicates whether the virtual cluster has session support enabled.
2333
+ # Specifies whether the virtual cluster has session support enabled.
2127
2334
  # @return [Boolean]
2128
2335
  #
2336
+ # @!attribute [rw] scheduler_configuration
2337
+ # The scheduler configuration (concurrency and queue limits) applied
2338
+ # to the virtual cluster. The service does not return this field when
2339
+ # no scheduler limits are configured.
2340
+ # @return [Types::SchedulerConfiguration]
2341
+ #
2342
+ # @!attribute [rw] scheduler_status
2343
+ # The current in-queue and concurrent job-run counts for the virtual
2344
+ # cluster.
2345
+ # @return [Types::SchedulerStatus]
2346
+ #
2129
2347
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/VirtualCluster AWS API Documentation
2130
2348
  #
2131
2349
  class VirtualCluster < Struct.new(
@@ -2137,7 +2355,9 @@ module Aws::EMRContainers
2137
2355
  :created_at,
2138
2356
  :tags,
2139
2357
  :security_configuration_id,
2140
- :session_enabled)
2358
+ :session_enabled,
2359
+ :scheduler_configuration,
2360
+ :scheduler_status)
2141
2361
  SENSITIVE = []
2142
2362
  include Aws::Structure
2143
2363
  end
@@ -54,7 +54,7 @@ module Aws::EMRContainers
54
54
  autoload :EndpointProvider, 'aws-sdk-emrcontainers/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-emrcontainers/endpoints'
56
56
 
57
- GEM_VERSION = '1.74.0'
57
+ GEM_VERSION = '1.76.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -187,6 +187,17 @@ module Aws
187
187
  }?
188
188
  }?
189
189
  }?
190
+ }?,
191
+ authentication_configuration: {
192
+ identity_center_configuration: {
193
+ enable_identity_center: bool?,
194
+ identity_center_application_assignment_required: bool?,
195
+ identity_center_instance_arn: ::String?,
196
+ emr_identity_center_application_arn: ::String?
197
+ }?,
198
+ iam_configuration: {
199
+ system_role: ::String?
200
+ }?
190
201
  }?
191
202
  },
192
203
  ?tags: Hash[::String, ::String]
@@ -206,7 +217,11 @@ module Aws
206
217
  client_token: ::String,
207
218
  ?tags: Hash[::String, ::String],
208
219
  ?security_configuration_id: ::String,
209
- ?session_enabled: bool
220
+ ?session_enabled: bool,
221
+ ?scheduler_configuration: {
222
+ max_in_queue_job_runs: ::Integer?,
223
+ max_concurrent_job_runs: ::Integer?
224
+ }
210
225
  ) -> _CreateVirtualClusterResponseSuccess
211
226
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVirtualClusterResponseSuccess
212
227
 
@@ -232,6 +247,16 @@ module Aws
232
247
  ) -> _DeleteManagedEndpointResponseSuccess
233
248
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteManagedEndpointResponseSuccess
234
249
 
250
+ interface _DeleteSecurityConfigurationResponseSuccess
251
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSecurityConfigurationResponse]
252
+ def id: () -> ::String
253
+ end
254
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EMRContainers/Client.html#delete_security_configuration-instance_method
255
+ def delete_security_configuration: (
256
+ id: ::String
257
+ ) -> _DeleteSecurityConfigurationResponseSuccess
258
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSecurityConfigurationResponseSuccess
259
+
235
260
  interface _DeleteVirtualClusterResponseSuccess
236
261
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVirtualClusterResponse]
237
262
  def id: () -> ::String
@@ -447,6 +472,21 @@ module Aws
447
472
  tag_keys: Array[::String]
448
473
  ) -> _UntagResourceResponseSuccess
449
474
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
475
+
476
+ interface _UpdateVirtualClusterResponseSuccess
477
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVirtualClusterResponse]
478
+ def virtual_cluster: () -> Types::VirtualCluster
479
+ end
480
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EMRContainers/Client.html#update_virtual_cluster-instance_method
481
+ def update_virtual_cluster: (
482
+ id: ::String,
483
+ ?scheduler_configuration: {
484
+ max_in_queue_job_runs: ::Integer?,
485
+ max_concurrent_job_runs: ::Integer?
486
+ },
487
+ client_token: ::String
488
+ ) -> _UpdateVirtualClusterResponseSuccess
489
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVirtualClusterResponseSuccess
450
490
  end
451
491
  end
452
492
  end
data/sig/types.rbs CHANGED
@@ -8,6 +8,12 @@
8
8
  module Aws::EMRContainers
9
9
  module Types
10
10
 
11
+ class AuthenticationConfiguration
12
+ attr_accessor identity_center_configuration: Types::IdentityCenterConfiguration
13
+ attr_accessor iam_configuration: Types::IAMConfiguration
14
+ SENSITIVE: []
15
+ end
16
+
11
17
  class AuthorizationConfiguration
12
18
  attr_accessor lake_formation_configuration: Types::LakeFormationConfiguration
13
19
  attr_accessor encryption_configuration: Types::EncryptionConfiguration
@@ -137,6 +143,7 @@ module Aws::EMRContainers
137
143
  attr_accessor tags: ::Hash[::String, ::String]
138
144
  attr_accessor security_configuration_id: ::String
139
145
  attr_accessor session_enabled: bool
146
+ attr_accessor scheduler_configuration: Types::SchedulerConfiguration
140
147
  SENSITIVE: []
141
148
  end
142
149
 
@@ -180,6 +187,16 @@ module Aws::EMRContainers
180
187
  SENSITIVE: []
181
188
  end
182
189
 
190
+ class DeleteSecurityConfigurationRequest
191
+ attr_accessor id: ::String
192
+ SENSITIVE: []
193
+ end
194
+
195
+ class DeleteSecurityConfigurationResponse
196
+ attr_accessor id: ::String
197
+ SENSITIVE: []
198
+ end
199
+
183
200
  class DeleteVirtualClusterRequest
184
201
  attr_accessor id: ::String
185
202
  SENSITIVE: []
@@ -300,6 +317,19 @@ module Aws::EMRContainers
300
317
  SENSITIVE: []
301
318
  end
302
319
 
320
+ class IAMConfiguration
321
+ attr_accessor system_role: ::String
322
+ SENSITIVE: []
323
+ end
324
+
325
+ class IdentityCenterConfiguration
326
+ attr_accessor enable_identity_center: bool
327
+ attr_accessor identity_center_application_assignment_required: bool
328
+ attr_accessor identity_center_instance_arn: ::String
329
+ attr_accessor emr_identity_center_application_arn: ::String
330
+ SENSITIVE: []
331
+ end
332
+
303
333
  class InTransitEncryptionConfiguration
304
334
  attr_accessor tls_certificate_configuration: Types::TLSCertificateConfiguration
305
335
  SENSITIVE: []
@@ -523,6 +553,18 @@ module Aws::EMRContainers
523
553
  SENSITIVE: []
524
554
  end
525
555
 
556
+ class SchedulerConfiguration
557
+ attr_accessor max_in_queue_job_runs: ::Integer
558
+ attr_accessor max_concurrent_job_runs: ::Integer
559
+ SENSITIVE: []
560
+ end
561
+
562
+ class SchedulerStatus
563
+ attr_accessor current_in_queue_job_runs: ::Integer
564
+ attr_accessor current_concurrent_job_runs: ::Integer
565
+ SENSITIVE: []
566
+ end
567
+
526
568
  class SecureNamespaceInfo
527
569
  attr_accessor cluster_id: ::String
528
570
  attr_accessor namespace: ::String
@@ -542,6 +584,7 @@ module Aws::EMRContainers
542
584
 
543
585
  class SecurityConfigurationData
544
586
  attr_accessor authorization_configuration: Types::AuthorizationConfiguration
587
+ attr_accessor authentication_configuration: Types::AuthenticationConfiguration
545
588
  SENSITIVE: []
546
589
  end
547
590
 
@@ -612,6 +655,18 @@ module Aws::EMRContainers
612
655
  class UntagResourceResponse < Aws::EmptyStructure
613
656
  end
614
657
 
658
+ class UpdateVirtualClusterRequest
659
+ attr_accessor id: ::String
660
+ attr_accessor scheduler_configuration: Types::SchedulerConfiguration
661
+ attr_accessor client_token: ::String
662
+ SENSITIVE: []
663
+ end
664
+
665
+ class UpdateVirtualClusterResponse
666
+ attr_accessor virtual_cluster: Types::VirtualCluster
667
+ SENSITIVE: []
668
+ end
669
+
615
670
  class ValidationException
616
671
  attr_accessor message: ::String
617
672
  SENSITIVE: []
@@ -627,6 +682,8 @@ module Aws::EMRContainers
627
682
  attr_accessor tags: ::Hash[::String, ::String]
628
683
  attr_accessor security_configuration_id: ::String
629
684
  attr_accessor session_enabled: bool
685
+ attr_accessor scheduler_configuration: Types::SchedulerConfiguration
686
+ attr_accessor scheduler_status: Types::SchedulerStatus
630
687
  SENSITIVE: []
631
688
  end
632
689
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-emrcontainers
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.74.0
4
+ version: 1.76.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services