aws-sdk-emr 1.56.0 → 1.57.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f1be853287db3f37afd57811b6ce11577a7883c6ae962f4914d32b73260e89f7
4
- data.tar.gz: e41cac1b8d7e9715555de960290e21325161b1d085b2a7296ade1228d7f19ceb
3
+ metadata.gz: 3fe6e5dc4a26fe27e315c725e3a293304c1fa5d9fa3c2559df6bdaa517e42a6e
4
+ data.tar.gz: 62b3a3fc6d791c7f78718365c933898faf053bc4ce312c5f7daba650dd5e066f
5
5
  SHA512:
6
- metadata.gz: 3ca94ce5e3290f40ccb75e8fd28e57ada02407057fbb862254a9803b0730908161f02a48505ff0a3d73bd8dade19b0f51880134090149c6de9d72f2be193f9f7
7
- data.tar.gz: d3439e3dea1ba97c8e09de3373a59bdfc4048ca02c7dea2fe072943a17aa8cb4b077bad12abfd69194bff8c7be733de2a4963a3727432833b4736770403cc644
6
+ metadata.gz: 87268f67c32dd0a11e7ab9eb76c2020ecdf0e7d221ce3f326758cb3b45bfe790548bfe6b7ed003a04782c9905ff9b6263619431b347f9bd99fbe2265bba36a1f
7
+ data.tar.gz: dfca87a6dbfd7381af7f31a3f76da3a72eaf311cab3561247da187414e8717b8141fea1b085f48b2b067789af58b12c432084b65a255020ff69d6ffee3f87841
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.57.0 (2022-02-02)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for Amazon EMR.
8
+
4
9
  1.56.0 (2021-12-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.56.0
1
+ 1.57.0
@@ -586,6 +586,11 @@ module Aws::EMR
586
586
  # You can only add steps to a cluster that is in one of the following
587
587
  # states: STARTING, BOOTSTRAPPING, RUNNING, or WAITING.
588
588
  #
589
+ # <note markdown="1"> The string values passed into `HadoopJarStep` object cannot exceed a
590
+ # total of 10240 characters.
591
+ #
592
+ # </note>
593
+ #
589
594
  #
590
595
  #
591
596
  # [1]: https://docs.aws.amazon.com/emr/latest/ManagementGuide/AddMoreThan256Steps.html
@@ -2606,15 +2611,22 @@ module Aws::EMR
2606
2611
  req.send_request(options)
2607
2612
  end
2608
2613
 
2614
+ # <note markdown="1"> Auto-termination is supported in Amazon EMR versions 5.30.0 and 6.1.0
2615
+ # and later. For more information, see [Using an auto-termination
2616
+ # policy][1].
2617
+ #
2618
+ # </note>
2619
+ #
2609
2620
  # Creates or updates an auto-termination policy for an Amazon EMR
2610
2621
  # cluster. An auto-termination policy defines the amount of idle time in
2611
2622
  # seconds after which a cluster automatically terminates. For
2612
2623
  # alternative cluster termination options, see [Control cluster
2613
- # termination][1].
2624
+ # termination][2].
2614
2625
  #
2615
2626
  #
2616
2627
  #
2617
- # [1]: https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-termination.html
2628
+ # [1]: https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-auto-termination-policy.html
2629
+ # [2]: https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-termination.html
2618
2630
  #
2619
2631
  # @option params [required, String] :cluster_id
2620
2632
  # Specifies the ID of the Amazon EMR cluster to which the
@@ -2990,7 +3002,7 @@ module Aws::EMR
2990
3002
  # Applies to Amazon EMR releases 4.0 and later. A case-insensitive list
2991
3003
  # of applications for Amazon EMR to install and configure when launching
2992
3004
  # the cluster. For a list of applications available for each Amazon EMR
2993
- # release version, see the [Amazon EMR Release Guide][1].
3005
+ # release version, see the [Amazon EMRRelease Guide][1].
2994
3006
  #
2995
3007
  #
2996
3008
  #
@@ -3001,6 +3013,9 @@ module Aws::EMR
3001
3013
  # supplied for the EMR cluster you are creating.
3002
3014
  #
3003
3015
  # @option params [Boolean] :visible_to_all_users
3016
+ # The VisibleToAllUsers parameter is no longer supported. By default,
3017
+ # the value is set to `true`. Setting it to `false` now has no effect.
3018
+ #
3004
3019
  # Set this value to `true` so that IAM principals in the Amazon Web
3005
3020
  # Services account associated with the cluster can perform EMR actions
3006
3021
  # on the cluster that their IAM policies allow. This value defaults to
@@ -3448,6 +3463,11 @@ module Aws::EMR
3448
3463
  req.send_request(options)
3449
3464
  end
3450
3465
 
3466
+ # The SetVisibleToAllUsers parameter is no longer supported. Your
3467
+ # cluster may be visible to all users in your account. To restrict
3468
+ # cluster access using an IAM policy, see [Identity and Access
3469
+ # Management for EMR][1].
3470
+ #
3451
3471
  # Sets the Cluster$VisibleToAllUsers value for an EMR cluster. When
3452
3472
  # `true`, IAM principals in the Amazon Web Services account can perform
3453
3473
  # EMR cluster actions that their IAM policies allow. When `false`, only
@@ -3459,11 +3479,12 @@ module Aws::EMR
3459
3479
  # the RunJobFlowInput$VisibleToAllUsers parameter.
3460
3480
  #
3461
3481
  # For more information, see [Understanding the EMR Cluster
3462
- # VisibleToAllUsers Setting][1] in the *Amazon EMRManagement Guide*.
3482
+ # VisibleToAllUsers Setting][2] in the *Amazon EMRManagement Guide*.
3463
3483
  #
3464
3484
  #
3465
3485
  #
3466
- # [1]: https://docs.aws.amazon.com/emr/latest/ManagementGuide/security_iam_emr-with-iam.html#security_set_visible_to_all_users
3486
+ # [1]: https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-access-iam.html
3487
+ # [2]: https://docs.aws.amazon.com/emr/latest/ManagementGuide/security_iam_emr-with-iam.html#security_set_visible_to_all_users
3467
3488
  #
3468
3489
  # @option params [required, Array<String>] :job_flow_ids
3469
3490
  # The unique identifier of the job flow (cluster).
@@ -3741,7 +3762,7 @@ module Aws::EMR
3741
3762
  params: params,
3742
3763
  config: config)
3743
3764
  context[:gem_name] = 'aws-sdk-emr'
3744
- context[:gem_version] = '1.56.0'
3765
+ context[:gem_version] = '1.57.0'
3745
3766
  Seahorse::Client::Request.new(handlers, context)
3746
3767
  end
3747
3768
 
@@ -936,16 +936,11 @@ module Aws::EMR
936
936
  # The default value is `true` if a value is not provided when creating
937
937
  # a cluster using the EMR API RunJobFlow command, the CLI
938
938
  # [create-cluster][1] command, or the Amazon Web Services Management
939
- # Console. IAM principals that are allowed to perform actions on the
940
- # cluster can use the SetVisibleToAllUsers action to change the value
941
- # on a running cluster. For more information, see [Understanding the
942
- # EMR Cluster VisibleToAllUsers Setting][2] in the *Amazon
943
- # EMRManagement Guide*.
939
+ # Console.
944
940
  #
945
941
  #
946
942
  #
947
943
  # [1]: https://docs.aws.amazon.com/cli/latest/reference/emr/create-cluster.html
948
- # [2]: https://docs.aws.amazon.com/emr/latest/ManagementGuide/security_iam_emr-with-iam.html#security_set_visible_to_all_users
949
944
  # @return [Boolean]
950
945
  #
951
946
  # @!attribute [rw] applications
@@ -3390,8 +3385,8 @@ module Aws::EMR
3390
3385
  # @return [Integer]
3391
3386
  #
3392
3387
  # @!attribute [rw] state
3393
- # State of instance group. The following values are deprecated:
3394
- # STARTING, TERMINATED, and FAILED.
3388
+ # State of instance group. The following values are no longer
3389
+ # supported: STARTING, TERMINATED, and FAILED.
3395
3390
  # @return [String]
3396
3391
  #
3397
3392
  # @!attribute [rw] last_state_change_reason
@@ -3952,16 +3947,11 @@ module Aws::EMR
3952
3947
  # The default value is `true` if a value is not provided when creating
3953
3948
  # a cluster using the EMR API RunJobFlow command, the CLI
3954
3949
  # [create-cluster][1] command, or the Amazon Web Services Management
3955
- # Console. IAM principals that are authorized to perform actions on
3956
- # the cluster can use the SetVisibleToAllUsers action to change the
3957
- # value on a running cluster. For more information, see [Understanding
3958
- # the EMR Cluster VisibleToAllUsers Setting][2] in the *Amazon
3959
- # EMRManagement Guide*.
3950
+ # Console.
3960
3951
  #
3961
3952
  #
3962
3953
  #
3963
3954
  # [1]: https://docs.aws.amazon.com/cli/latest/reference/emr/create-cluster.html
3964
- # [2]: https://docs.aws.amazon.com/emr/latest/ManagementGuide/security_iam_emr-with-iam.html#security_set_visible_to_all_users
3965
3955
  # @return [Boolean]
3966
3956
  #
3967
3957
  # @!attribute [rw] job_flow_role
@@ -6483,7 +6473,7 @@ module Aws::EMR
6483
6473
  # Applies to Amazon EMR releases 4.0 and later. A case-insensitive
6484
6474
  # list of applications for Amazon EMR to install and configure when
6485
6475
  # launching the cluster. For a list of applications available for each
6486
- # Amazon EMR release version, see the [Amazon EMR Release Guide][1].
6476
+ # Amazon EMR release version, see the [Amazon EMRRelease Guide][1].
6487
6477
  #
6488
6478
  #
6489
6479
  #
@@ -6496,6 +6486,9 @@ module Aws::EMR
6496
6486
  # @return [Array<Types::Configuration>]
6497
6487
  #
6498
6488
  # @!attribute [rw] visible_to_all_users
6489
+ # The VisibleToAllUsers parameter is no longer supported. By default,
6490
+ # the value is set to `true`. Setting it to `false` now has no effect.
6491
+ #
6499
6492
  # Set this value to `true` so that IAM principals in the Amazon Web
6500
6493
  # Services account associated with the cluster can perform EMR actions
6501
6494
  # on the cluster that their IAM policies allow. This value defaults to
@@ -7199,6 +7192,13 @@ module Aws::EMR
7199
7192
  #
7200
7193
  # </note>
7201
7194
  #
7195
+ # <note markdown="1"> Spot Instances with a defined duration (also known as Spot blocks) are
7196
+ # no longer available to new customers from July 1, 2021. For customers
7197
+ # who have previously used the feature, we will continue to support Spot
7198
+ # Instances with a defined duration until December 31, 2022.
7199
+ #
7200
+ # </note>
7201
+ #
7202
7202
  # @note When making an API call, you may pass SpotProvisioningSpecification
7203
7203
  # data as a hash:
7204
7204
  #
@@ -7237,6 +7237,14 @@ module Aws::EMR
7237
7237
  # marks the Spot Instance for termination and provides a Spot Instance
7238
7238
  # termination notice, which gives the instance a two-minute warning
7239
7239
  # before it terminates.
7240
+ #
7241
+ # <note markdown="1"> Spot Instances with a defined duration (also known as Spot blocks)
7242
+ # are no longer available to new customers from July 1, 2021. For
7243
+ # customers who have previously used the feature, we will continue to
7244
+ # support Spot Instances with a defined duration until December 31,
7245
+ # 2022.
7246
+ #
7247
+ # </note>
7240
7248
  # @return [Integer]
7241
7249
  #
7242
7250
  # @!attribute [rw] allocation_strategy
@@ -7860,7 +7868,7 @@ module Aws::EMR
7860
7868
  #
7861
7869
  # @!attribute [rw] key
7862
7870
  # A user-defined key, which is the minimum required information for a
7863
- # valid tag. For more information, see [Tag ][1].
7871
+ # valid tag. For more information, see [Tag][1].
7864
7872
  #
7865
7873
  #
7866
7874
  #
@@ -8028,7 +8036,7 @@ module Aws::EMR
8028
8036
  # }
8029
8037
  #
8030
8038
  # @!attribute [rw] volume_type
8031
- # The volume type. Volume types supported are gp2, io1, standard.
8039
+ # The volume type. Volume types supported are gp2, io1, and standard.
8032
8040
  # @return [String]
8033
8041
  #
8034
8042
  # @!attribute [rw] iops
data/lib/aws-sdk-emr.rb CHANGED
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-emr/customizations'
49
49
  # @!group service
50
50
  module Aws::EMR
51
51
 
52
- GEM_VERSION = '1.56.0'
52
+ GEM_VERSION = '1.57.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-emr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.56.0
4
+ version: 1.57.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-21 00:00:00.000000000 Z
11
+ date: 2022-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core