aws-sdk-emr 1.127.0 → 1.128.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-emr/client.rb +16 -1
- data/lib/aws-sdk-emr/client_api.rb +1 -0
- data/lib/aws-sdk-emr/types.rb +16 -0
- data/lib/aws-sdk-emr.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/types.rbs +1 -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: a8d197b3fde11e756ef04a4f7a5844932bf8045a9d4044492d87a7266e31ee84
|
|
4
|
+
data.tar.gz: e846d8c3c9eb8956ed9fd1526db0b0fcc0f07b63e54dc7a99e75145fab3592dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3b0ae1023f151dfc45c1862675708cb33386faf63fdb7f6922c8626fcf40a99e5b41a7e428df8a3169ef771a818bf21b038805312d81828e4afa2049c1d7e43
|
|
7
|
+
data.tar.gz: 44c53629d2692b816efc4f164f5a6f6c3d563fd9d6c8facf7afbed78ba18d1c6b8f3d9df30f4191e0e7650379103aa31ac40c870dac339540998eff425c8da50
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.128.0
|
data/lib/aws-sdk-emr/client.rb
CHANGED
|
@@ -3533,6 +3533,20 @@ module Aws::EMR
|
|
|
3533
3533
|
# @option params [Array<Types::StepConfig>] :steps
|
|
3534
3534
|
# A list of steps to run.
|
|
3535
3535
|
#
|
|
3536
|
+
# @option params [String] :step_execution_role_arn
|
|
3537
|
+
# The Amazon Resource Name (ARN) of the runtime role for steps specified
|
|
3538
|
+
# in the RunJobFlow request. The runtime role can be a cross-account IAM
|
|
3539
|
+
# role. The runtime role ARN is a combination of account ID, role name,
|
|
3540
|
+
# and role type using the following format:
|
|
3541
|
+
# `arn:partition:iam::account-id:role/role-name`.
|
|
3542
|
+
#
|
|
3543
|
+
# For example, `arn:aws:iam::1234567890:role/ReadOnly` is a correctly
|
|
3544
|
+
# formatted runtime role ARN.
|
|
3545
|
+
#
|
|
3546
|
+
# This parameter applies only to steps included in the `Steps` parameter
|
|
3547
|
+
# of this RunJobFlow request. It does not apply to steps added later to
|
|
3548
|
+
# the cluster.
|
|
3549
|
+
#
|
|
3536
3550
|
# @option params [Array<Types::BootstrapActionConfig>] :bootstrap_actions
|
|
3537
3551
|
# A list of bootstrap actions to run before Hadoop starts on the cluster
|
|
3538
3552
|
# nodes.
|
|
@@ -3960,6 +3974,7 @@ module Aws::EMR
|
|
|
3960
3974
|
# },
|
|
3961
3975
|
# },
|
|
3962
3976
|
# ],
|
|
3977
|
+
# step_execution_role_arn: "ArnType",
|
|
3963
3978
|
# bootstrap_actions: [
|
|
3964
3979
|
# {
|
|
3965
3980
|
# name: "XmlStringMaxLen256", # required
|
|
@@ -4560,7 +4575,7 @@ module Aws::EMR
|
|
|
4560
4575
|
tracer: tracer
|
|
4561
4576
|
)
|
|
4562
4577
|
context[:gem_name] = 'aws-sdk-emr'
|
|
4563
|
-
context[:gem_version] = '1.
|
|
4578
|
+
context[:gem_version] = '1.128.0'
|
|
4564
4579
|
Seahorse::Client::Request.new(handlers, context)
|
|
4565
4580
|
end
|
|
4566
4581
|
|
|
@@ -1426,6 +1426,7 @@ module Aws::EMR
|
|
|
1426
1426
|
RunJobFlowInput.add_member(:release_label, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "ReleaseLabel"))
|
|
1427
1427
|
RunJobFlowInput.add_member(:instances, Shapes::ShapeRef.new(shape: JobFlowInstancesConfig, required: true, location_name: "Instances"))
|
|
1428
1428
|
RunJobFlowInput.add_member(:steps, Shapes::ShapeRef.new(shape: StepConfigList, location_name: "Steps"))
|
|
1429
|
+
RunJobFlowInput.add_member(:step_execution_role_arn, Shapes::ShapeRef.new(shape: ArnType, location_name: "StepExecutionRoleArn"))
|
|
1429
1430
|
RunJobFlowInput.add_member(:bootstrap_actions, Shapes::ShapeRef.new(shape: BootstrapActionConfigList, location_name: "BootstrapActions"))
|
|
1430
1431
|
RunJobFlowInput.add_member(:supported_products, Shapes::ShapeRef.new(shape: SupportedProductsList, location_name: "SupportedProducts"))
|
|
1431
1432
|
RunJobFlowInput.add_member(:new_supported_products, Shapes::ShapeRef.new(shape: NewSupportedProductsList, location_name: "NewSupportedProducts"))
|
data/lib/aws-sdk-emr/types.rb
CHANGED
|
@@ -5730,6 +5730,21 @@ module Aws::EMR
|
|
|
5730
5730
|
# A list of steps to run.
|
|
5731
5731
|
# @return [Array<Types::StepConfig>]
|
|
5732
5732
|
#
|
|
5733
|
+
# @!attribute [rw] step_execution_role_arn
|
|
5734
|
+
# The Amazon Resource Name (ARN) of the runtime role for steps
|
|
5735
|
+
# specified in the RunJobFlow request. The runtime role can be a
|
|
5736
|
+
# cross-account IAM role. The runtime role ARN is a combination of
|
|
5737
|
+
# account ID, role name, and role type using the following format:
|
|
5738
|
+
# `arn:partition:iam::account-id:role/role-name`.
|
|
5739
|
+
#
|
|
5740
|
+
# For example, `arn:aws:iam::1234567890:role/ReadOnly` is a correctly
|
|
5741
|
+
# formatted runtime role ARN.
|
|
5742
|
+
#
|
|
5743
|
+
# This parameter applies only to steps included in the `Steps`
|
|
5744
|
+
# parameter of this RunJobFlow request. It does not apply to steps
|
|
5745
|
+
# added later to the cluster.
|
|
5746
|
+
# @return [String]
|
|
5747
|
+
#
|
|
5733
5748
|
# @!attribute [rw] bootstrap_actions
|
|
5734
5749
|
# A list of bootstrap actions to run before Hadoop starts on the
|
|
5735
5750
|
# cluster nodes.
|
|
@@ -5990,6 +6005,7 @@ module Aws::EMR
|
|
|
5990
6005
|
:release_label,
|
|
5991
6006
|
:instances,
|
|
5992
6007
|
:steps,
|
|
6008
|
+
:step_execution_role_arn,
|
|
5993
6009
|
:bootstrap_actions,
|
|
5994
6010
|
:supported_products,
|
|
5995
6011
|
:new_supported_products,
|
data/lib/aws-sdk-emr.rb
CHANGED
data/sig/client.rbs
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -1327,6 +1327,7 @@ module Aws::EMR
|
|
|
1327
1327
|
attr_accessor release_label: ::String
|
|
1328
1328
|
attr_accessor instances: Types::JobFlowInstancesConfig
|
|
1329
1329
|
attr_accessor steps: ::Array[Types::StepConfig]
|
|
1330
|
+
attr_accessor step_execution_role_arn: ::String
|
|
1330
1331
|
attr_accessor bootstrap_actions: ::Array[Types::BootstrapActionConfig]
|
|
1331
1332
|
attr_accessor supported_products: ::Array[::String]
|
|
1332
1333
|
attr_accessor new_supported_products: ::Array[Types::SupportedProductConfig]
|