aws-sdk-emrcontainers 1.75.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-emrcontainers/client.rb +106 -20
- data/lib/aws-sdk-emrcontainers/client_api.rb +37 -0
- data/lib/aws-sdk-emrcontainers/types.rb +144 -19
- data/lib/aws-sdk-emrcontainers.rb +1 -1
- data/sig/client.rbs +20 -1
- data/sig/types.rbs +27 -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: 238568197f3fbb93290aa35418e2c89bd383b8b8c25dba8127f487d8aa225bf3
|
|
4
|
+
data.tar.gz: 7dfa240d2b73b0ad29e73cf9310f6a46419ccc5b38bdbfca881de7af39aaee55
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3fac25731d75424d2e9f93086afb7bd849257a0da9a2d780685e42431f3cf33f9f450e8705d2286183e8cfd6cd3b2e23fbc99a262917dfc9135d826a8905ce31
|
|
7
|
+
data.tar.gz: 5fb9dbb6788b62bdbc54b817ff63bbcff7d80efb0c22c860b67a8ad8b20ac445f2cdcf455126c40ee453fcbbb15f486802ba177a046df3d6a7bcce71846b8271
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
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
|
+
|
|
4
9
|
1.75.0 (2026-07-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
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
|
|
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
|
#
|
|
@@ -823,11 +824,11 @@ module Aws::EMRContainers
|
|
|
823
824
|
end
|
|
824
825
|
|
|
825
826
|
# Creates a virtual cluster. Virtual cluster is a managed entity on
|
|
826
|
-
# Amazon EMR on EKS. You can create, describe, list and delete
|
|
827
|
-
# clusters. They do not consume any additional resource in your
|
|
828
|
-
# A single virtual cluster maps to a single Kubernetes
|
|
829
|
-
# this relationship, you can model virtual clusters the
|
|
830
|
-
# 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.
|
|
831
832
|
#
|
|
832
833
|
# @option params [required, String] :name
|
|
833
834
|
# The specified name of the virtual cluster.
|
|
@@ -850,6 +851,11 @@ module Aws::EMRContainers
|
|
|
850
851
|
# @option params [Boolean] :session_enabled
|
|
851
852
|
# Indicates whether the virtual cluster has session support enabled.
|
|
852
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
|
+
#
|
|
853
859
|
# @return [Types::CreateVirtualClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
854
860
|
#
|
|
855
861
|
# * {Types::CreateVirtualClusterResponse#id #id} => String
|
|
@@ -876,6 +882,10 @@ module Aws::EMRContainers
|
|
|
876
882
|
# },
|
|
877
883
|
# security_configuration_id: "ResourceIdString",
|
|
878
884
|
# session_enabled: false,
|
|
885
|
+
# scheduler_configuration: {
|
|
886
|
+
# max_in_queue_job_runs: 1,
|
|
887
|
+
# max_concurrent_job_runs: 1,
|
|
888
|
+
# },
|
|
879
889
|
# })
|
|
880
890
|
#
|
|
881
891
|
# @example Response structure
|
|
@@ -989,11 +999,11 @@ module Aws::EMRContainers
|
|
|
989
999
|
end
|
|
990
1000
|
|
|
991
1001
|
# Deletes a virtual cluster. Virtual cluster is a managed entity on
|
|
992
|
-
# Amazon EMR on EKS. You can create, describe, list and delete
|
|
993
|
-
# clusters. They do not consume any additional resource in your
|
|
994
|
-
# A single virtual cluster maps to a single Kubernetes
|
|
995
|
-
# this relationship, you can model virtual clusters the
|
|
996
|
-
# 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.
|
|
997
1007
|
#
|
|
998
1008
|
# @option params [required, String] :id
|
|
999
1009
|
# The ID of the virtual cluster that will be deleted.
|
|
@@ -1275,8 +1285,8 @@ module Aws::EMRContainers
|
|
|
1275
1285
|
|
|
1276
1286
|
# Displays detailed information about a specified virtual cluster.
|
|
1277
1287
|
# Virtual cluster is a managed entity on Amazon EMR on EKS. You can
|
|
1278
|
-
# create, describe, list and delete virtual clusters. They do
|
|
1279
|
-
# 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
|
|
1280
1290
|
# cluster maps to a single Kubernetes namespace. Given this
|
|
1281
1291
|
# relationship, you can model virtual clusters the same way you model
|
|
1282
1292
|
# Kubernetes namespaces to meet your requirements.
|
|
@@ -1309,6 +1319,10 @@ module Aws::EMRContainers
|
|
|
1309
1319
|
# resp.virtual_cluster.tags["String128"] #=> String
|
|
1310
1320
|
# resp.virtual_cluster.security_configuration_id #=> String
|
|
1311
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
|
|
1312
1326
|
#
|
|
1313
1327
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/DescribeVirtualCluster AWS API Documentation
|
|
1314
1328
|
#
|
|
@@ -1749,12 +1763,12 @@ module Aws::EMRContainers
|
|
|
1749
1763
|
end
|
|
1750
1764
|
|
|
1751
1765
|
# Lists information about the specified virtual cluster. Virtual cluster
|
|
1752
|
-
# is a managed entity on Amazon EMR on EKS. You can create,
|
|
1753
|
-
# list and delete virtual clusters. They do not consume any
|
|
1754
|
-
# resource in your system. A single virtual cluster maps to a
|
|
1755
|
-
# Kubernetes namespace. Given this relationship, you can model
|
|
1756
|
-
# clusters the same way you model Kubernetes namespaces to meet
|
|
1757
|
-
# 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.
|
|
1758
1772
|
#
|
|
1759
1773
|
# @option params [String] :container_provider_id
|
|
1760
1774
|
# The container provider ID of the virtual cluster.
|
|
@@ -1820,6 +1834,10 @@ module Aws::EMRContainers
|
|
|
1820
1834
|
# resp.virtual_clusters[0].tags["String128"] #=> String
|
|
1821
1835
|
# resp.virtual_clusters[0].security_configuration_id #=> String
|
|
1822
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
|
|
1823
1841
|
# resp.next_token #=> String
|
|
1824
1842
|
#
|
|
1825
1843
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/ListVirtualClusters AWS API Documentation
|
|
@@ -2021,6 +2039,74 @@ module Aws::EMRContainers
|
|
|
2021
2039
|
req.send_request(options)
|
|
2022
2040
|
end
|
|
2023
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
|
+
|
|
2024
2110
|
# @!endgroup
|
|
2025
2111
|
|
|
2026
2112
|
# @param params ({})
|
|
@@ -2039,7 +2125,7 @@ module Aws::EMRContainers
|
|
|
2039
2125
|
tracer: tracer
|
|
2040
2126
|
)
|
|
2041
2127
|
context[:gem_name] = 'aws-sdk-emrcontainers'
|
|
2042
|
-
context[:gem_version] = '1.
|
|
2128
|
+
context[:gem_version] = '1.76.0'
|
|
2043
2129
|
Seahorse::Client::Request.new(handlers, context)
|
|
2044
2130
|
end
|
|
2045
2131
|
|
|
@@ -84,11 +84,13 @@ module Aws::EMRContainers
|
|
|
84
84
|
IAMRoleArn = Shapes::StringShape.new(name: 'IAMRoleArn')
|
|
85
85
|
IdentityCenterConfiguration = Shapes::StructureShape.new(name: 'IdentityCenterConfiguration')
|
|
86
86
|
IdentityCenterInstanceARN = Shapes::StringShape.new(name: 'IdentityCenterInstanceARN')
|
|
87
|
+
InQueueJobLimitInteger = Shapes::IntegerShape.new(name: 'InQueueJobLimitInteger')
|
|
87
88
|
InTransitEncryptionConfiguration = Shapes::StructureShape.new(name: 'InTransitEncryptionConfiguration')
|
|
88
89
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
|
89
90
|
JavaInteger = Shapes::IntegerShape.new(name: 'JavaInteger')
|
|
90
91
|
JobArn = Shapes::StringShape.new(name: 'JobArn')
|
|
91
92
|
JobDriver = Shapes::StructureShape.new(name: 'JobDriver')
|
|
93
|
+
JobLimitInteger = Shapes::IntegerShape.new(name: 'JobLimitInteger')
|
|
92
94
|
JobRun = Shapes::StructureShape.new(name: 'JobRun')
|
|
93
95
|
JobRunState = Shapes::StringShape.new(name: 'JobRunState')
|
|
94
96
|
JobRunStates = Shapes::ListShape.new(name: 'JobRunStates')
|
|
@@ -119,6 +121,7 @@ module Aws::EMRContainers
|
|
|
119
121
|
MonitoringConfiguration = Shapes::StructureShape.new(name: 'MonitoringConfiguration')
|
|
120
122
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
|
121
123
|
NodeLabelString = Shapes::StringShape.new(name: 'NodeLabelString')
|
|
124
|
+
NonNegativeInteger = Shapes::IntegerShape.new(name: 'NonNegativeInteger')
|
|
122
125
|
ParametricCloudWatchMonitoringConfiguration = Shapes::StructureShape.new(name: 'ParametricCloudWatchMonitoringConfiguration')
|
|
123
126
|
ParametricConfigurationOverrides = Shapes::StructureShape.new(name: 'ParametricConfigurationOverrides')
|
|
124
127
|
ParametricIAMRoleArn = Shapes::StringShape.new(name: 'ParametricIAMRoleArn')
|
|
@@ -137,6 +140,8 @@ module Aws::EMRContainers
|
|
|
137
140
|
RotationSize = Shapes::StringShape.new(name: 'RotationSize')
|
|
138
141
|
RsiArn = Shapes::StringShape.new(name: 'RsiArn')
|
|
139
142
|
S3MonitoringConfiguration = Shapes::StructureShape.new(name: 'S3MonitoringConfiguration')
|
|
143
|
+
SchedulerConfiguration = Shapes::StructureShape.new(name: 'SchedulerConfiguration')
|
|
144
|
+
SchedulerStatus = Shapes::StructureShape.new(name: 'SchedulerStatus')
|
|
140
145
|
SecretsManagerArn = Shapes::StringShape.new(name: 'SecretsManagerArn')
|
|
141
146
|
SecureNamespaceInfo = Shapes::StructureShape.new(name: 'SecureNamespaceInfo')
|
|
142
147
|
SecurityConfiguration = Shapes::StructureShape.new(name: 'SecurityConfiguration')
|
|
@@ -172,6 +177,8 @@ module Aws::EMRContainers
|
|
|
172
177
|
Token = Shapes::StringShape.new(name: 'Token')
|
|
173
178
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
|
174
179
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
|
180
|
+
UpdateVirtualClusterRequest = Shapes::StructureShape.new(name: 'UpdateVirtualClusterRequest')
|
|
181
|
+
UpdateVirtualClusterResponse = Shapes::StructureShape.new(name: 'UpdateVirtualClusterResponse')
|
|
175
182
|
UriString = Shapes::StringShape.new(name: 'UriString')
|
|
176
183
|
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
|
177
184
|
VirtualCluster = Shapes::StructureShape.new(name: 'VirtualCluster')
|
|
@@ -279,6 +286,7 @@ module Aws::EMRContainers
|
|
|
279
286
|
CreateVirtualClusterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
280
287
|
CreateVirtualClusterRequest.add_member(:security_configuration_id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "securityConfigurationId"))
|
|
281
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"))
|
|
282
290
|
CreateVirtualClusterRequest.struct_class = Types::CreateVirtualClusterRequest
|
|
283
291
|
|
|
284
292
|
CreateVirtualClusterResponse.add_member(:id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "id"))
|
|
@@ -582,6 +590,14 @@ module Aws::EMRContainers
|
|
|
582
590
|
S3MonitoringConfiguration.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "encryptionKeyArn"))
|
|
583
591
|
S3MonitoringConfiguration.struct_class = Types::S3MonitoringConfiguration
|
|
584
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
|
+
|
|
585
601
|
SecureNamespaceInfo.add_member(:cluster_id, Shapes::ShapeRef.new(shape: ClusterId, location_name: "clusterId"))
|
|
586
602
|
SecureNamespaceInfo.add_member(:namespace, Shapes::ShapeRef.new(shape: KubernetesNamespace, location_name: "namespace"))
|
|
587
603
|
SecureNamespaceInfo.struct_class = Types::SecureNamespaceInfo
|
|
@@ -666,6 +682,14 @@ module Aws::EMRContainers
|
|
|
666
682
|
|
|
667
683
|
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
|
668
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
|
+
|
|
669
693
|
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String1024, location_name: "message"))
|
|
670
694
|
ValidationException.struct_class = Types::ValidationException
|
|
671
695
|
|
|
@@ -678,6 +702,8 @@ module Aws::EMRContainers
|
|
|
678
702
|
VirtualCluster.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
679
703
|
VirtualCluster.add_member(:security_configuration_id, Shapes::ShapeRef.new(shape: ResourceIdString, location_name: "securityConfigurationId"))
|
|
680
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"))
|
|
681
707
|
VirtualCluster.struct_class = Types::VirtualCluster
|
|
682
708
|
|
|
683
709
|
VirtualClusterStates.member = Shapes::ShapeRef.new(shape: VirtualClusterState)
|
|
@@ -988,6 +1014,17 @@ module Aws::EMRContainers
|
|
|
988
1014
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
989
1015
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
990
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)
|
|
991
1028
|
end
|
|
992
1029
|
|
|
993
1030
|
end
|
|
@@ -10,15 +10,15 @@
|
|
|
10
10
|
module Aws::EMRContainers
|
|
11
11
|
module Types
|
|
12
12
|
|
|
13
|
-
#
|
|
13
|
+
# Contains the authentication settings for a security configuration,
|
|
14
|
+
# including Identity Center and IAM configuration options.
|
|
14
15
|
#
|
|
15
16
|
# @!attribute [rw] identity_center_configuration
|
|
16
|
-
# Identity Center configuration for authentication
|
|
17
|
-
# configuration.
|
|
17
|
+
# The IAM Identity Center configuration to use for authentication.
|
|
18
18
|
# @return [Types::IdentityCenterConfiguration]
|
|
19
19
|
#
|
|
20
20
|
# @!attribute [rw] iam_configuration
|
|
21
|
-
# IAM configuration for authentication
|
|
21
|
+
# The IAM configuration to use for authentication.
|
|
22
22
|
# @return [Types::IAMConfiguration]
|
|
23
23
|
#
|
|
24
24
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/AuthenticationConfiguration AWS API Documentation
|
|
@@ -354,7 +354,8 @@ module Aws::EMRContainers
|
|
|
354
354
|
# @return [Hash<String,String>]
|
|
355
355
|
#
|
|
356
356
|
# @!attribute [rw] session_idle_timeout_in_minutes
|
|
357
|
-
# The
|
|
357
|
+
# The number of idle minutes before the managed endpoint session times
|
|
358
|
+
# out.
|
|
358
359
|
# @return [Integer]
|
|
359
360
|
#
|
|
360
361
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/CreateManagedEndpointRequest AWS API Documentation
|
|
@@ -486,6 +487,12 @@ module Aws::EMRContainers
|
|
|
486
487
|
# Indicates whether the virtual cluster has session support enabled.
|
|
487
488
|
# @return [Boolean]
|
|
488
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
|
+
#
|
|
489
496
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/CreateVirtualClusterRequest AWS API Documentation
|
|
490
497
|
#
|
|
491
498
|
class CreateVirtualClusterRequest < Struct.new(
|
|
@@ -494,7 +501,8 @@ module Aws::EMRContainers
|
|
|
494
501
|
:client_token,
|
|
495
502
|
:tags,
|
|
496
503
|
:security_configuration_id,
|
|
497
|
-
:session_enabled
|
|
504
|
+
:session_enabled,
|
|
505
|
+
:scheduler_configuration)
|
|
498
506
|
SENSITIVE = []
|
|
499
507
|
include Aws::Structure
|
|
500
508
|
end
|
|
@@ -613,7 +621,7 @@ module Aws::EMRContainers
|
|
|
613
621
|
end
|
|
614
622
|
|
|
615
623
|
# @!attribute [rw] id
|
|
616
|
-
# The ID of the security configuration
|
|
624
|
+
# The ID of the deleted security configuration.
|
|
617
625
|
# @return [String]
|
|
618
626
|
#
|
|
619
627
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/DeleteSecurityConfigurationResponse AWS API Documentation
|
|
@@ -883,7 +891,7 @@ module Aws::EMRContainers
|
|
|
883
891
|
# @return [String]
|
|
884
892
|
#
|
|
885
893
|
# @!attribute [rw] auth_proxy_url
|
|
886
|
-
# The
|
|
894
|
+
# The authentication proxy URL of the endpoint.
|
|
887
895
|
# @return [String]
|
|
888
896
|
#
|
|
889
897
|
# @!attribute [rw] created_at
|
|
@@ -994,7 +1002,7 @@ module Aws::EMRContainers
|
|
|
994
1002
|
# @return [Types::Credentials]
|
|
995
1003
|
#
|
|
996
1004
|
# @!attribute [rw] endpoint_credentials
|
|
997
|
-
# The
|
|
1005
|
+
# The session credentials that the operation returns.
|
|
998
1006
|
# @return [Types::Credentials]
|
|
999
1007
|
#
|
|
1000
1008
|
# @!attribute [rw] expires_at
|
|
@@ -1012,10 +1020,12 @@ module Aws::EMRContainers
|
|
|
1012
1020
|
include Aws::Structure
|
|
1013
1021
|
end
|
|
1014
1022
|
|
|
1015
|
-
# IAM
|
|
1023
|
+
# Contains the IAM settings for a security configuration, including the
|
|
1024
|
+
# system role used for authentication.
|
|
1016
1025
|
#
|
|
1017
1026
|
# @!attribute [rw] system_role
|
|
1018
|
-
# The ARN of the system role used by the
|
|
1027
|
+
# The Amazon Resource Name (ARN) of the system role used by the
|
|
1028
|
+
# security configuration.
|
|
1019
1029
|
# @return [String]
|
|
1020
1030
|
#
|
|
1021
1031
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/IAMConfiguration AWS API Documentation
|
|
@@ -1026,24 +1036,27 @@ module Aws::EMRContainers
|
|
|
1026
1036
|
include Aws::Structure
|
|
1027
1037
|
end
|
|
1028
1038
|
|
|
1029
|
-
# Identity Center
|
|
1039
|
+
# Contains the IAM Identity Center settings for a security
|
|
1040
|
+
# configuration, including instance ARN, application assignment
|
|
1041
|
+
# requirements, and application ARN.
|
|
1030
1042
|
#
|
|
1031
1043
|
# @!attribute [rw] enable_identity_center
|
|
1032
|
-
#
|
|
1044
|
+
# Specifies whether Identity Center is enabled for the security
|
|
1033
1045
|
# configuration.
|
|
1034
1046
|
# @return [Boolean]
|
|
1035
1047
|
#
|
|
1036
1048
|
# @!attribute [rw] identity_center_application_assignment_required
|
|
1037
|
-
#
|
|
1049
|
+
# Specifies whether user assignment is required for the Identity
|
|
1038
1050
|
# Center application.
|
|
1039
1051
|
# @return [Boolean]
|
|
1040
1052
|
#
|
|
1041
1053
|
# @!attribute [rw] identity_center_instance_arn
|
|
1042
|
-
# The ARN of the Identity Center instance.
|
|
1054
|
+
# The Amazon Resource Name (ARN) of the Identity Center instance.
|
|
1043
1055
|
# @return [String]
|
|
1044
1056
|
#
|
|
1045
1057
|
# @!attribute [rw] emr_identity_center_application_arn
|
|
1046
|
-
# The ARN of the EMR Identity Center
|
|
1058
|
+
# The Amazon Resource Name (ARN) of the Amazon EMR Identity Center
|
|
1059
|
+
# application.
|
|
1047
1060
|
# @return [String]
|
|
1048
1061
|
#
|
|
1049
1062
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/IdentityCenterConfiguration AWS API Documentation
|
|
@@ -1837,7 +1850,7 @@ module Aws::EMRContainers
|
|
|
1837
1850
|
# @return [String]
|
|
1838
1851
|
#
|
|
1839
1852
|
# @!attribute [rw] encryption_key_arn
|
|
1840
|
-
# The Amazon
|
|
1853
|
+
# The Amazon Resource Name (ARN) of the encryption key for logs.
|
|
1841
1854
|
# @return [String]
|
|
1842
1855
|
#
|
|
1843
1856
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/S3MonitoringConfiguration AWS API Documentation
|
|
@@ -1849,6 +1862,57 @@ module Aws::EMRContainers
|
|
|
1849
1862
|
include Aws::Structure
|
|
1850
1863
|
end
|
|
1851
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
|
+
|
|
1852
1916
|
# Namespace inputs for the system job.
|
|
1853
1917
|
#
|
|
1854
1918
|
# @!attribute [rw] cluster_id
|
|
@@ -2164,6 +2228,54 @@ module Aws::EMRContainers
|
|
|
2164
2228
|
#
|
|
2165
2229
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
|
2166
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
|
+
|
|
2167
2279
|
# There are invalid parameters in the client request.
|
|
2168
2280
|
#
|
|
2169
2281
|
# @!attribute [rw] message
|
|
@@ -2218,9 +2330,20 @@ module Aws::EMRContainers
|
|
|
2218
2330
|
# @return [String]
|
|
2219
2331
|
#
|
|
2220
2332
|
# @!attribute [rw] session_enabled
|
|
2221
|
-
#
|
|
2333
|
+
# Specifies whether the virtual cluster has session support enabled.
|
|
2222
2334
|
# @return [Boolean]
|
|
2223
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
|
+
#
|
|
2224
2347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/VirtualCluster AWS API Documentation
|
|
2225
2348
|
#
|
|
2226
2349
|
class VirtualCluster < Struct.new(
|
|
@@ -2232,7 +2355,9 @@ module Aws::EMRContainers
|
|
|
2232
2355
|
:created_at,
|
|
2233
2356
|
:tags,
|
|
2234
2357
|
:security_configuration_id,
|
|
2235
|
-
:session_enabled
|
|
2358
|
+
:session_enabled,
|
|
2359
|
+
:scheduler_configuration,
|
|
2360
|
+
:scheduler_status)
|
|
2236
2361
|
SENSITIVE = []
|
|
2237
2362
|
include Aws::Structure
|
|
2238
2363
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -217,7 +217,11 @@ module Aws
|
|
|
217
217
|
client_token: ::String,
|
|
218
218
|
?tags: Hash[::String, ::String],
|
|
219
219
|
?security_configuration_id: ::String,
|
|
220
|
-
?session_enabled: bool
|
|
220
|
+
?session_enabled: bool,
|
|
221
|
+
?scheduler_configuration: {
|
|
222
|
+
max_in_queue_job_runs: ::Integer?,
|
|
223
|
+
max_concurrent_job_runs: ::Integer?
|
|
224
|
+
}
|
|
221
225
|
) -> _CreateVirtualClusterResponseSuccess
|
|
222
226
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVirtualClusterResponseSuccess
|
|
223
227
|
|
|
@@ -468,6 +472,21 @@ module Aws
|
|
|
468
472
|
tag_keys: Array[::String]
|
|
469
473
|
) -> _UntagResourceResponseSuccess
|
|
470
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
|
|
471
490
|
end
|
|
472
491
|
end
|
|
473
492
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -143,6 +143,7 @@ module Aws::EMRContainers
|
|
|
143
143
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
144
144
|
attr_accessor security_configuration_id: ::String
|
|
145
145
|
attr_accessor session_enabled: bool
|
|
146
|
+
attr_accessor scheduler_configuration: Types::SchedulerConfiguration
|
|
146
147
|
SENSITIVE: []
|
|
147
148
|
end
|
|
148
149
|
|
|
@@ -552,6 +553,18 @@ module Aws::EMRContainers
|
|
|
552
553
|
SENSITIVE: []
|
|
553
554
|
end
|
|
554
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
|
+
|
|
555
568
|
class SecureNamespaceInfo
|
|
556
569
|
attr_accessor cluster_id: ::String
|
|
557
570
|
attr_accessor namespace: ::String
|
|
@@ -642,6 +655,18 @@ module Aws::EMRContainers
|
|
|
642
655
|
class UntagResourceResponse < Aws::EmptyStructure
|
|
643
656
|
end
|
|
644
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
|
+
|
|
645
670
|
class ValidationException
|
|
646
671
|
attr_accessor message: ::String
|
|
647
672
|
SENSITIVE: []
|
|
@@ -657,6 +682,8 @@ module Aws::EMRContainers
|
|
|
657
682
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
658
683
|
attr_accessor security_configuration_id: ::String
|
|
659
684
|
attr_accessor session_enabled: bool
|
|
685
|
+
attr_accessor scheduler_configuration: Types::SchedulerConfiguration
|
|
686
|
+
attr_accessor scheduler_status: Types::SchedulerStatus
|
|
660
687
|
SENSITIVE: []
|
|
661
688
|
end
|
|
662
689
|
end
|