aws-sdk-emrserverless 1.48.0 → 1.50.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-emrserverless/client.rb +41 -9
- data/lib/aws-sdk-emrserverless/client_api.rb +14 -0
- data/lib/aws-sdk-emrserverless/types.rb +64 -3
- data/lib/aws-sdk-emrserverless.rb +1 -1
- data/sig/client.rbs +7 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +14 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 174b70f653012d679d1de46e590aba33edd00174c73881d84fc1182f035171a7
|
4
|
+
data.tar.gz: 30b77a2d3f8316adbfaab28e9d3ecb7d3dfb1f8da76072e6ae9707231fa49720
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 801e3ff64c23135cfb40cfd6d32645c77fbc298511063570467935b601079888c64f230b3d923381899debd1881dc5b4bb9421ce0aeed0e03b2f143c70363c88
|
7
|
+
data.tar.gz: 42a452a6cbc528b05ff7cfde134089ffe9ad0b80de33e7737b61b0f55480dcd9bd3bcc01ae125fbb2af12b7e0728705c622830650c826b9e5e893b9faebff67b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.50.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.49.0 (2025-06-19)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds the capability to enable IAM IdentityCenter Trusted Identity Propagation for users running Interactive Sessions on EMR Serverless Applications.
|
13
|
+
|
4
14
|
1.48.0 (2025-06-12)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.50.0
|
@@ -95,7 +95,7 @@ module Aws::EMRServerless
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::EMRServerless
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::EMRServerless
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::EMRServerless
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::EMRServerless
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -587,6 +597,12 @@ module Aws::EMRServerless
|
|
587
597
|
# The scheduler configuration for batch and streaming jobs running on
|
588
598
|
# this application. Supported with release labels emr-7.0.0 and above.
|
589
599
|
#
|
600
|
+
# @option params [Types::IdentityCenterConfigurationInput] :identity_center_configuration
|
601
|
+
# The IAM Identity Center Configuration accepts the Identity Center
|
602
|
+
# instance parameter required to enable trusted identity propagation.
|
603
|
+
# This configuration allows identity propagation between integrated
|
604
|
+
# services and the Identity Center instance.
|
605
|
+
#
|
590
606
|
# @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
591
607
|
#
|
592
608
|
# * {Types::CreateApplicationResponse#application_id #application_id} => String
|
@@ -682,6 +698,9 @@ module Aws::EMRServerless
|
|
682
698
|
# queue_timeout_minutes: 1,
|
683
699
|
# max_concurrent_runs: 1,
|
684
700
|
# },
|
701
|
+
# identity_center_configuration: {
|
702
|
+
# identity_center_instance_arn: "IdentityCenterInstanceArn",
|
703
|
+
# },
|
685
704
|
# })
|
686
705
|
#
|
687
706
|
# @example Response structure
|
@@ -793,6 +812,8 @@ module Aws::EMRServerless
|
|
793
812
|
# resp.application.interactive_configuration.livy_endpoint_enabled #=> Boolean
|
794
813
|
# resp.application.scheduler_configuration.queue_timeout_minutes #=> Integer
|
795
814
|
# resp.application.scheduler_configuration.max_concurrent_runs #=> Integer
|
815
|
+
# resp.application.identity_center_configuration.identity_center_instance_arn #=> String
|
816
|
+
# resp.application.identity_center_configuration.identity_center_application_arn #=> String
|
796
817
|
#
|
797
818
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/GetApplication AWS API Documentation
|
798
819
|
#
|
@@ -1490,6 +1511,12 @@ module Aws::EMRServerless
|
|
1490
1511
|
# The scheduler configuration for batch and streaming jobs running on
|
1491
1512
|
# this application. Supported with release labels emr-7.0.0 and above.
|
1492
1513
|
#
|
1514
|
+
# @option params [Types::IdentityCenterConfigurationInput] :identity_center_configuration
|
1515
|
+
# Specifies the IAM Identity Center configuration used to enable or
|
1516
|
+
# disable trusted identity propagation. When provided, this
|
1517
|
+
# configuration determines how the application interacts with IAM
|
1518
|
+
# Identity Center for user authentication and access control.
|
1519
|
+
#
|
1493
1520
|
# @return [Types::UpdateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1494
1521
|
#
|
1495
1522
|
# * {Types::UpdateApplicationResponse#application #application} => Types::Application
|
@@ -1579,6 +1606,9 @@ module Aws::EMRServerless
|
|
1579
1606
|
# queue_timeout_minutes: 1,
|
1580
1607
|
# max_concurrent_runs: 1,
|
1581
1608
|
# },
|
1609
|
+
# identity_center_configuration: {
|
1610
|
+
# identity_center_instance_arn: "IdentityCenterInstanceArn",
|
1611
|
+
# },
|
1582
1612
|
# })
|
1583
1613
|
#
|
1584
1614
|
# @example Response structure
|
@@ -1637,6 +1667,8 @@ module Aws::EMRServerless
|
|
1637
1667
|
# resp.application.interactive_configuration.livy_endpoint_enabled #=> Boolean
|
1638
1668
|
# resp.application.scheduler_configuration.queue_timeout_minutes #=> Integer
|
1639
1669
|
# resp.application.scheduler_configuration.max_concurrent_runs #=> Integer
|
1670
|
+
# resp.application.identity_center_configuration.identity_center_instance_arn #=> String
|
1671
|
+
# resp.application.identity_center_configuration.identity_center_application_arn #=> String
|
1640
1672
|
#
|
1641
1673
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/UpdateApplication AWS API Documentation
|
1642
1674
|
#
|
@@ -1665,7 +1697,7 @@ module Aws::EMRServerless
|
|
1665
1697
|
tracer: tracer
|
1666
1698
|
)
|
1667
1699
|
context[:gem_name] = 'aws-sdk-emrserverless'
|
1668
|
-
context[:gem_version] = '1.
|
1700
|
+
context[:gem_version] = '1.50.0'
|
1669
1701
|
Seahorse::Client::Request.new(handlers, context)
|
1670
1702
|
end
|
1671
1703
|
|
@@ -63,6 +63,10 @@ module Aws::EMRServerless
|
|
63
63
|
Hive = Shapes::StructureShape.new(name: 'Hive')
|
64
64
|
HiveCliParameters = Shapes::StringShape.new(name: 'HiveCliParameters')
|
65
65
|
IAMRoleArn = Shapes::StringShape.new(name: 'IAMRoleArn')
|
66
|
+
IdentityCenterApplicationArn = Shapes::StringShape.new(name: 'IdentityCenterApplicationArn')
|
67
|
+
IdentityCenterConfiguration = Shapes::StructureShape.new(name: 'IdentityCenterConfiguration')
|
68
|
+
IdentityCenterConfigurationInput = Shapes::StructureShape.new(name: 'IdentityCenterConfigurationInput')
|
69
|
+
IdentityCenterInstanceArn = Shapes::StringShape.new(name: 'IdentityCenterInstanceArn')
|
66
70
|
ImageConfiguration = Shapes::StructureShape.new(name: 'ImageConfiguration')
|
67
71
|
ImageConfigurationInput = Shapes::StructureShape.new(name: 'ImageConfigurationInput')
|
68
72
|
ImageDigest = Shapes::StringShape.new(name: 'ImageDigest')
|
@@ -184,6 +188,7 @@ module Aws::EMRServerless
|
|
184
188
|
Application.add_member(:monitoring_configuration, Shapes::ShapeRef.new(shape: MonitoringConfiguration, location_name: "monitoringConfiguration"))
|
185
189
|
Application.add_member(:interactive_configuration, Shapes::ShapeRef.new(shape: InteractiveConfiguration, location_name: "interactiveConfiguration"))
|
186
190
|
Application.add_member(:scheduler_configuration, Shapes::ShapeRef.new(shape: SchedulerConfiguration, location_name: "schedulerConfiguration"))
|
191
|
+
Application.add_member(:identity_center_configuration, Shapes::ShapeRef.new(shape: IdentityCenterConfiguration, location_name: "identityCenterConfiguration"))
|
187
192
|
Application.struct_class = Types::Application
|
188
193
|
|
189
194
|
ApplicationList.member = Shapes::ShapeRef.new(shape: ApplicationSummary)
|
@@ -256,6 +261,7 @@ module Aws::EMRServerless
|
|
256
261
|
CreateApplicationRequest.add_member(:monitoring_configuration, Shapes::ShapeRef.new(shape: MonitoringConfiguration, location_name: "monitoringConfiguration"))
|
257
262
|
CreateApplicationRequest.add_member(:interactive_configuration, Shapes::ShapeRef.new(shape: InteractiveConfiguration, location_name: "interactiveConfiguration"))
|
258
263
|
CreateApplicationRequest.add_member(:scheduler_configuration, Shapes::ShapeRef.new(shape: SchedulerConfiguration, location_name: "schedulerConfiguration"))
|
264
|
+
CreateApplicationRequest.add_member(:identity_center_configuration, Shapes::ShapeRef.new(shape: IdentityCenterConfigurationInput, location_name: "identityCenterConfiguration"))
|
259
265
|
CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
|
260
266
|
|
261
267
|
CreateApplicationResponse.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location_name: "applicationId"))
|
@@ -298,6 +304,13 @@ module Aws::EMRServerless
|
|
298
304
|
Hive.add_member(:parameters, Shapes::ShapeRef.new(shape: HiveCliParameters, location_name: "parameters"))
|
299
305
|
Hive.struct_class = Types::Hive
|
300
306
|
|
307
|
+
IdentityCenterConfiguration.add_member(:identity_center_instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, location_name: "identityCenterInstanceArn"))
|
308
|
+
IdentityCenterConfiguration.add_member(:identity_center_application_arn, Shapes::ShapeRef.new(shape: IdentityCenterApplicationArn, location_name: "identityCenterApplicationArn"))
|
309
|
+
IdentityCenterConfiguration.struct_class = Types::IdentityCenterConfiguration
|
310
|
+
|
311
|
+
IdentityCenterConfigurationInput.add_member(:identity_center_instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, location_name: "identityCenterInstanceArn"))
|
312
|
+
IdentityCenterConfigurationInput.struct_class = Types::IdentityCenterConfigurationInput
|
313
|
+
|
301
314
|
ImageConfiguration.add_member(:image_uri, Shapes::ShapeRef.new(shape: ImageUri, required: true, location_name: "imageUri"))
|
302
315
|
ImageConfiguration.add_member(:resolved_image_digest, Shapes::ShapeRef.new(shape: ImageDigest, location_name: "resolvedImageDigest"))
|
303
316
|
ImageConfiguration.struct_class = Types::ImageConfiguration
|
@@ -569,6 +582,7 @@ module Aws::EMRServerless
|
|
569
582
|
UpdateApplicationRequest.add_member(:runtime_configuration, Shapes::ShapeRef.new(shape: ConfigurationList, location_name: "runtimeConfiguration"))
|
570
583
|
UpdateApplicationRequest.add_member(:monitoring_configuration, Shapes::ShapeRef.new(shape: MonitoringConfiguration, location_name: "monitoringConfiguration"))
|
571
584
|
UpdateApplicationRequest.add_member(:scheduler_configuration, Shapes::ShapeRef.new(shape: SchedulerConfiguration, location_name: "schedulerConfiguration"))
|
585
|
+
UpdateApplicationRequest.add_member(:identity_center_configuration, Shapes::ShapeRef.new(shape: IdentityCenterConfigurationInput, location_name: "identityCenterConfiguration"))
|
572
586
|
UpdateApplicationRequest.struct_class = Types::UpdateApplicationRequest
|
573
587
|
|
574
588
|
UpdateApplicationResponse.add_member(:application, Shapes::ShapeRef.new(shape: Application, required: true, location_name: "application"))
|
@@ -118,6 +118,11 @@ module Aws::EMRServerless
|
|
118
118
|
# this application. Supported with release labels emr-7.0.0 and above.
|
119
119
|
# @return [Types::SchedulerConfiguration]
|
120
120
|
#
|
121
|
+
# @!attribute [rw] identity_center_configuration
|
122
|
+
# The IAM Identity Center configuration applied to enable trusted
|
123
|
+
# identity propagation.
|
124
|
+
# @return [Types::IdentityCenterConfiguration]
|
125
|
+
#
|
121
126
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/Application AWS API Documentation
|
122
127
|
#
|
123
128
|
class Application < Struct.new(
|
@@ -142,7 +147,8 @@ module Aws::EMRServerless
|
|
142
147
|
:runtime_configuration,
|
143
148
|
:monitoring_configuration,
|
144
149
|
:interactive_configuration,
|
145
|
-
:scheduler_configuration
|
150
|
+
:scheduler_configuration,
|
151
|
+
:identity_center_configuration)
|
146
152
|
SENSITIVE = []
|
147
153
|
include Aws::Structure
|
148
154
|
end
|
@@ -493,6 +499,13 @@ module Aws::EMRServerless
|
|
493
499
|
# this application. Supported with release labels emr-7.0.0 and above.
|
494
500
|
# @return [Types::SchedulerConfiguration]
|
495
501
|
#
|
502
|
+
# @!attribute [rw] identity_center_configuration
|
503
|
+
# The IAM Identity Center Configuration accepts the Identity Center
|
504
|
+
# instance parameter required to enable trusted identity propagation.
|
505
|
+
# This configuration allows identity propagation between integrated
|
506
|
+
# services and the Identity Center instance.
|
507
|
+
# @return [Types::IdentityCenterConfigurationInput]
|
508
|
+
#
|
496
509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/CreateApplicationRequest AWS API Documentation
|
497
510
|
#
|
498
511
|
class CreateApplicationRequest < Struct.new(
|
@@ -512,7 +525,8 @@ module Aws::EMRServerless
|
|
512
525
|
:runtime_configuration,
|
513
526
|
:monitoring_configuration,
|
514
527
|
:interactive_configuration,
|
515
|
-
:scheduler_configuration
|
528
|
+
:scheduler_configuration,
|
529
|
+
:identity_center_configuration)
|
516
530
|
SENSITIVE = []
|
517
531
|
include Aws::Structure
|
518
532
|
end
|
@@ -681,6 +695,45 @@ module Aws::EMRServerless
|
|
681
695
|
include Aws::Structure
|
682
696
|
end
|
683
697
|
|
698
|
+
# The IAM Identity Center Configuration that includes the Identify
|
699
|
+
# Center instance and application ARNs that provide trusted-identity
|
700
|
+
# propagation.
|
701
|
+
#
|
702
|
+
# @!attribute [rw] identity_center_instance_arn
|
703
|
+
# The ARN of the IAM Identity Center instance.
|
704
|
+
# @return [String]
|
705
|
+
#
|
706
|
+
# @!attribute [rw] identity_center_application_arn
|
707
|
+
# The ARN of the EMR Serverless created IAM Identity Center
|
708
|
+
# Application that provides trusted-identity propagation.
|
709
|
+
# @return [String]
|
710
|
+
#
|
711
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/IdentityCenterConfiguration AWS API Documentation
|
712
|
+
#
|
713
|
+
class IdentityCenterConfiguration < Struct.new(
|
714
|
+
:identity_center_instance_arn,
|
715
|
+
:identity_center_application_arn)
|
716
|
+
SENSITIVE = []
|
717
|
+
include Aws::Structure
|
718
|
+
end
|
719
|
+
|
720
|
+
# Specifies the IAM Identity Center configuration used to enable or
|
721
|
+
# disable trusted identity propagation. When provided, this
|
722
|
+
# configuration determines how the application interacts with IAM
|
723
|
+
# Identity Center for user authentication and access control.
|
724
|
+
#
|
725
|
+
# @!attribute [rw] identity_center_instance_arn
|
726
|
+
# The ARN of the IAM Identity Center instance.
|
727
|
+
# @return [String]
|
728
|
+
#
|
729
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/IdentityCenterConfigurationInput AWS API Documentation
|
730
|
+
#
|
731
|
+
class IdentityCenterConfigurationInput < Struct.new(
|
732
|
+
:identity_center_instance_arn)
|
733
|
+
SENSITIVE = []
|
734
|
+
include Aws::Structure
|
735
|
+
end
|
736
|
+
|
684
737
|
# The applied image configuration.
|
685
738
|
#
|
686
739
|
# @!attribute [rw] image_uri
|
@@ -1884,6 +1937,13 @@ module Aws::EMRServerless
|
|
1884
1937
|
# this application. Supported with release labels emr-7.0.0 and above.
|
1885
1938
|
# @return [Types::SchedulerConfiguration]
|
1886
1939
|
#
|
1940
|
+
# @!attribute [rw] identity_center_configuration
|
1941
|
+
# Specifies the IAM Identity Center configuration used to enable or
|
1942
|
+
# disable trusted identity propagation. When provided, this
|
1943
|
+
# configuration determines how the application interacts with IAM
|
1944
|
+
# Identity Center for user authentication and access control.
|
1945
|
+
# @return [Types::IdentityCenterConfigurationInput]
|
1946
|
+
#
|
1887
1947
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/UpdateApplicationRequest AWS API Documentation
|
1888
1948
|
#
|
1889
1949
|
class UpdateApplicationRequest < Struct.new(
|
@@ -1901,7 +1961,8 @@ module Aws::EMRServerless
|
|
1901
1961
|
:release_label,
|
1902
1962
|
:runtime_configuration,
|
1903
1963
|
:monitoring_configuration,
|
1904
|
-
:scheduler_configuration
|
1964
|
+
:scheduler_configuration,
|
1965
|
+
:identity_center_configuration)
|
1905
1966
|
SENSITIVE = []
|
1906
1967
|
include Aws::Structure
|
1907
1968
|
end
|
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -171,6 +172,9 @@ module Aws
|
|
171
172
|
?scheduler_configuration: {
|
172
173
|
queue_timeout_minutes: ::Integer?,
|
173
174
|
max_concurrent_runs: ::Integer?
|
175
|
+
},
|
176
|
+
?identity_center_configuration: {
|
177
|
+
identity_center_instance_arn: ::String?
|
174
178
|
}
|
175
179
|
) -> _CreateApplicationResponseSuccess
|
176
180
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
|
@@ -455,6 +459,9 @@ module Aws
|
|
455
459
|
?scheduler_configuration: {
|
456
460
|
queue_timeout_minutes: ::Integer?,
|
457
461
|
max_concurrent_runs: ::Integer?
|
462
|
+
},
|
463
|
+
?identity_center_configuration: {
|
464
|
+
identity_center_instance_arn: ::String?
|
458
465
|
}
|
459
466
|
) -> _UpdateApplicationResponseSuccess
|
460
467
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -31,6 +31,7 @@ module Aws::EMRServerless
|
|
31
31
|
attr_accessor monitoring_configuration: Types::MonitoringConfiguration
|
32
32
|
attr_accessor interactive_configuration: Types::InteractiveConfiguration
|
33
33
|
attr_accessor scheduler_configuration: Types::SchedulerConfiguration
|
34
|
+
attr_accessor identity_center_configuration: Types::IdentityCenterConfiguration
|
34
35
|
SENSITIVE: []
|
35
36
|
end
|
36
37
|
|
@@ -117,6 +118,7 @@ module Aws::EMRServerless
|
|
117
118
|
attr_accessor monitoring_configuration: Types::MonitoringConfiguration
|
118
119
|
attr_accessor interactive_configuration: Types::InteractiveConfiguration
|
119
120
|
attr_accessor scheduler_configuration: Types::SchedulerConfiguration
|
121
|
+
attr_accessor identity_center_configuration: Types::IdentityCenterConfigurationInput
|
120
122
|
SENSITIVE: []
|
121
123
|
end
|
122
124
|
|
@@ -177,6 +179,17 @@ module Aws::EMRServerless
|
|
177
179
|
SENSITIVE: [:query, :init_query_file, :parameters]
|
178
180
|
end
|
179
181
|
|
182
|
+
class IdentityCenterConfiguration
|
183
|
+
attr_accessor identity_center_instance_arn: ::String
|
184
|
+
attr_accessor identity_center_application_arn: ::String
|
185
|
+
SENSITIVE: []
|
186
|
+
end
|
187
|
+
|
188
|
+
class IdentityCenterConfigurationInput
|
189
|
+
attr_accessor identity_center_instance_arn: ::String
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
180
193
|
class ImageConfiguration
|
181
194
|
attr_accessor image_uri: ::String
|
182
195
|
attr_accessor resolved_image_digest: ::String
|
@@ -503,6 +516,7 @@ module Aws::EMRServerless
|
|
503
516
|
attr_accessor runtime_configuration: ::Array[Types::Configuration]
|
504
517
|
attr_accessor monitoring_configuration: Types::MonitoringConfiguration
|
505
518
|
attr_accessor scheduler_configuration: Types::SchedulerConfiguration
|
519
|
+
attr_accessor identity_center_configuration: Types::IdentityCenterConfigurationInput
|
506
520
|
SENSITIVE: []
|
507
521
|
end
|
508
522
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-emrserverless
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.50.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|