aws-sdk-emrserverless 1.48.0 → 1.49.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-emrserverless/client.rb +23 -1
- 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 +6 -0
- data/sig/types.rbs +14 -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: c5c490f77032a5c33417d85ddd074eaad9692a6ebf05ba4f0faed8409d25c017
|
4
|
+
data.tar.gz: 20b961cab72f184d2375e824ce8676247c2e74135fdf42d2fc96db4c1ba6fafe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: feff48028e03fbe0133520f66f958cf25ee4d698c9b159e324379741e170e690874cb16ba878240754630badc1d0a4fe4d6f8c741c05a828b60496b49171a0eb
|
7
|
+
data.tar.gz: 4e1d7844af96954544e21a769891c15cb42c7ec9afea5a0e4b8c4e94460e63a36a7c0663291379d1533f06046398c1f80db4bcb177967ea3d3e706ef02f73cba
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.49.0 (2025-06-19)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds the capability to enable IAM IdentityCenter Trusted Identity Propagation for users running Interactive Sessions on EMR Serverless Applications.
|
8
|
+
|
4
9
|
1.48.0 (2025-06-12)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.49.0
|
@@ -587,6 +587,12 @@ module Aws::EMRServerless
|
|
587
587
|
# The scheduler configuration for batch and streaming jobs running on
|
588
588
|
# this application. Supported with release labels emr-7.0.0 and above.
|
589
589
|
#
|
590
|
+
# @option params [Types::IdentityCenterConfigurationInput] :identity_center_configuration
|
591
|
+
# The IAM Identity Center Configuration accepts the Identity Center
|
592
|
+
# instance parameter required to enable trusted identity propagation.
|
593
|
+
# This configuration allows identity propagation between integrated
|
594
|
+
# services and the Identity Center instance.
|
595
|
+
#
|
590
596
|
# @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
591
597
|
#
|
592
598
|
# * {Types::CreateApplicationResponse#application_id #application_id} => String
|
@@ -682,6 +688,9 @@ module Aws::EMRServerless
|
|
682
688
|
# queue_timeout_minutes: 1,
|
683
689
|
# max_concurrent_runs: 1,
|
684
690
|
# },
|
691
|
+
# identity_center_configuration: {
|
692
|
+
# identity_center_instance_arn: "IdentityCenterInstanceArn",
|
693
|
+
# },
|
685
694
|
# })
|
686
695
|
#
|
687
696
|
# @example Response structure
|
@@ -793,6 +802,8 @@ module Aws::EMRServerless
|
|
793
802
|
# resp.application.interactive_configuration.livy_endpoint_enabled #=> Boolean
|
794
803
|
# resp.application.scheduler_configuration.queue_timeout_minutes #=> Integer
|
795
804
|
# resp.application.scheduler_configuration.max_concurrent_runs #=> Integer
|
805
|
+
# resp.application.identity_center_configuration.identity_center_instance_arn #=> String
|
806
|
+
# resp.application.identity_center_configuration.identity_center_application_arn #=> String
|
796
807
|
#
|
797
808
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/GetApplication AWS API Documentation
|
798
809
|
#
|
@@ -1490,6 +1501,12 @@ module Aws::EMRServerless
|
|
1490
1501
|
# The scheduler configuration for batch and streaming jobs running on
|
1491
1502
|
# this application. Supported with release labels emr-7.0.0 and above.
|
1492
1503
|
#
|
1504
|
+
# @option params [Types::IdentityCenterConfigurationInput] :identity_center_configuration
|
1505
|
+
# Specifies the IAM Identity Center configuration used to enable or
|
1506
|
+
# disable trusted identity propagation. When provided, this
|
1507
|
+
# configuration determines how the application interacts with IAM
|
1508
|
+
# Identity Center for user authentication and access control.
|
1509
|
+
#
|
1493
1510
|
# @return [Types::UpdateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1494
1511
|
#
|
1495
1512
|
# * {Types::UpdateApplicationResponse#application #application} => Types::Application
|
@@ -1579,6 +1596,9 @@ module Aws::EMRServerless
|
|
1579
1596
|
# queue_timeout_minutes: 1,
|
1580
1597
|
# max_concurrent_runs: 1,
|
1581
1598
|
# },
|
1599
|
+
# identity_center_configuration: {
|
1600
|
+
# identity_center_instance_arn: "IdentityCenterInstanceArn",
|
1601
|
+
# },
|
1582
1602
|
# })
|
1583
1603
|
#
|
1584
1604
|
# @example Response structure
|
@@ -1637,6 +1657,8 @@ module Aws::EMRServerless
|
|
1637
1657
|
# resp.application.interactive_configuration.livy_endpoint_enabled #=> Boolean
|
1638
1658
|
# resp.application.scheduler_configuration.queue_timeout_minutes #=> Integer
|
1639
1659
|
# resp.application.scheduler_configuration.max_concurrent_runs #=> Integer
|
1660
|
+
# resp.application.identity_center_configuration.identity_center_instance_arn #=> String
|
1661
|
+
# resp.application.identity_center_configuration.identity_center_application_arn #=> String
|
1640
1662
|
#
|
1641
1663
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/UpdateApplication AWS API Documentation
|
1642
1664
|
#
|
@@ -1665,7 +1687,7 @@ module Aws::EMRServerless
|
|
1665
1687
|
tracer: tracer
|
1666
1688
|
)
|
1667
1689
|
context[:gem_name] = 'aws-sdk-emrserverless'
|
1668
|
-
context[:gem_version] = '1.
|
1690
|
+
context[:gem_version] = '1.49.0'
|
1669
1691
|
Seahorse::Client::Request.new(handlers, context)
|
1670
1692
|
end
|
1671
1693
|
|
@@ -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
@@ -171,6 +171,9 @@ module Aws
|
|
171
171
|
?scheduler_configuration: {
|
172
172
|
queue_timeout_minutes: ::Integer?,
|
173
173
|
max_concurrent_runs: ::Integer?
|
174
|
+
},
|
175
|
+
?identity_center_configuration: {
|
176
|
+
identity_center_instance_arn: ::String?
|
174
177
|
}
|
175
178
|
) -> _CreateApplicationResponseSuccess
|
176
179
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
|
@@ -455,6 +458,9 @@ module Aws
|
|
455
458
|
?scheduler_configuration: {
|
456
459
|
queue_timeout_minutes: ::Integer?,
|
457
460
|
max_concurrent_runs: ::Integer?
|
461
|
+
},
|
462
|
+
?identity_center_configuration: {
|
463
|
+
identity_center_instance_arn: ::String?
|
458
464
|
}
|
459
465
|
) -> _UpdateApplicationResponseSuccess
|
460
466
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
|
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
|
|