aws-sdk-emr 1.112.0 → 1.113.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 00cc183092173834970407b79c800f68f65cccd473ab172511a2422f68efc49f
4
- data.tar.gz: 8709fba682b34e01aa3b3022a4e907b2fe0be6f8ffe9d0e70e4c3844c1fc9fa2
3
+ metadata.gz: 349738f32a698f5f4c0ddd1ac5acffd1ac187d485be05a1c1176e1b5f3cb1b23
4
+ data.tar.gz: 8cc5402d01488ba00eb8f47cabad0507b9cc671b49034ac1d64df503331bb382
5
5
  SHA512:
6
- metadata.gz: 87a67350e75d866b38d9ebe854865338383b998e47f70dd0ce859a36cbcd05bdc35e5f8cab66d0be46803f9dc0d422fedff7138a70d4c38ed6f33d5bd9ca8b5d
7
- data.tar.gz: 20632e9d70fe0038e27633f5c8a4b7be00100e3bef6e843c9cba3516a76514ca7b0f8e8866a52f176aa3528a3b1a05600162b1a0a9a2089dfd224aec0d8becf0
6
+ metadata.gz: e0edce3dd2bba79ea356005d305a9d1e8baf944bb877835d45241987412af779cce977e5ce9d078796a0b55b0beaebe8749b3c73dfe6496590c4604f87487ebd
7
+ data.tar.gz: ef2e723d1d58814e6152f1d2237f1da5c10fdf2a888908ff32329a3aaabdf050156247b2c6311946c9e5f4b7f1f1502c4795308f9874dfa47763cc04629e3207
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.113.0 (2025-07-22)
5
+ ------------------
6
+
7
+ * Feature - This release adds new parameter 'ExtendedSupport' in AWS EMR RunJobFlow, ModifyCluster and DescribeCluster API.
8
+
4
9
  1.112.0 (2025-07-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.112.0
1
+ 1.113.0
@@ -903,8 +903,7 @@ module Aws::EMR
903
903
  # The cross reference for the persistent application user interface.
904
904
  #
905
905
  # @option params [String] :profiler_type
906
- # The profiler type for the persistent application user interface. Valid
907
- # values are SHS, TEZUI, or YTS.
906
+ # The profiler type for the persistent application user interface.
908
907
  #
909
908
  # @return [Types::CreatePersistentAppUIOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
910
909
  #
@@ -1378,6 +1377,7 @@ module Aws::EMR
1378
1377
  # resp.cluster.os_release_label #=> String
1379
1378
  # resp.cluster.ebs_root_volume_iops #=> Integer
1380
1379
  # resp.cluster.ebs_root_volume_throughput #=> Integer
1380
+ # resp.cluster.extended_support #=> Boolean
1381
1381
  #
1382
1382
  #
1383
1383
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -2909,20 +2909,26 @@ module Aws::EMR
2909
2909
  # `ActionOnFailure` setting may not behave as expected. For more
2910
2910
  # information see Step$ActionOnFailure.
2911
2911
  #
2912
+ # @option params [Boolean] :extended_support
2913
+ # Reserved.
2914
+ #
2912
2915
  # @return [Types::ModifyClusterOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2913
2916
  #
2914
2917
  # * {Types::ModifyClusterOutput#step_concurrency_level #step_concurrency_level} => Integer
2918
+ # * {Types::ModifyClusterOutput#extended_support #extended_support} => Boolean
2915
2919
  #
2916
2920
  # @example Request syntax with placeholder values
2917
2921
  #
2918
2922
  # resp = client.modify_cluster({
2919
2923
  # cluster_id: "String", # required
2920
2924
  # step_concurrency_level: 1,
2925
+ # extended_support: false,
2921
2926
  # })
2922
2927
  #
2923
2928
  # @example Response structure
2924
2929
  #
2925
2930
  # resp.step_concurrency_level #=> Integer
2931
+ # resp.extended_support #=> Boolean
2926
2932
  #
2927
2933
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ModifyCluster AWS API Documentation
2928
2934
  #
@@ -3723,6 +3729,9 @@ module Aws::EMR
3723
3729
  # Linux AMI that is used for each Amazon EC2 instance. Available in
3724
3730
  # Amazon EMR releases 6.15.0 and later.
3725
3731
  #
3732
+ # @option params [Boolean] :extended_support
3733
+ # Reserved.
3734
+ #
3726
3735
  # @return [Types::RunJobFlowOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3727
3736
  #
3728
3737
  # * {Types::RunJobFlowOutput#job_flow_id #job_flow_id} => String
@@ -4007,6 +4016,7 @@ module Aws::EMR
4007
4016
  # os_release_label: "XmlStringMaxLen256",
4008
4017
  # ebs_root_volume_iops: 1,
4009
4018
  # ebs_root_volume_throughput: 1,
4019
+ # extended_support: false,
4010
4020
  # })
4011
4021
  #
4012
4022
  # @example Response structure
@@ -4507,7 +4517,7 @@ module Aws::EMR
4507
4517
  tracer: tracer
4508
4518
  )
4509
4519
  context[:gem_name] = 'aws-sdk-emr'
4510
- context[:gem_version] = '1.112.0'
4520
+ context[:gem_version] = '1.113.0'
4511
4521
  Seahorse::Client::Request.new(handlers, context)
4512
4522
  end
4513
4523
 
@@ -501,6 +501,7 @@ module Aws::EMR
501
501
  Cluster.add_member(:os_release_label, Shapes::ShapeRef.new(shape: String, location_name: "OSReleaseLabel"))
502
502
  Cluster.add_member(:ebs_root_volume_iops, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeIops"))
503
503
  Cluster.add_member(:ebs_root_volume_throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeThroughput"))
504
+ Cluster.add_member(:extended_support, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "ExtendedSupport"))
504
505
  Cluster.struct_class = Types::Cluster
505
506
 
506
507
  ClusterStateChangeReason.add_member(:code, Shapes::ShapeRef.new(shape: ClusterStateChangeReasonCode, location_name: "Code"))
@@ -1225,9 +1226,11 @@ module Aws::EMR
1225
1226
 
1226
1227
  ModifyClusterInput.add_member(:cluster_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterId"))
1227
1228
  ModifyClusterInput.add_member(:step_concurrency_level, Shapes::ShapeRef.new(shape: Integer, location_name: "StepConcurrencyLevel"))
1229
+ ModifyClusterInput.add_member(:extended_support, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "ExtendedSupport"))
1228
1230
  ModifyClusterInput.struct_class = Types::ModifyClusterInput
1229
1231
 
1230
1232
  ModifyClusterOutput.add_member(:step_concurrency_level, Shapes::ShapeRef.new(shape: Integer, location_name: "StepConcurrencyLevel"))
1233
+ ModifyClusterOutput.add_member(:extended_support, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "ExtendedSupport"))
1231
1234
  ModifyClusterOutput.struct_class = Types::ModifyClusterOutput
1232
1235
 
1233
1236
  ModifyInstanceFleetInput.add_member(:cluster_id, Shapes::ShapeRef.new(shape: ClusterId, required: true, location_name: "ClusterId"))
@@ -1419,6 +1422,7 @@ module Aws::EMR
1419
1422
  RunJobFlowInput.add_member(:os_release_label, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "OSReleaseLabel"))
1420
1423
  RunJobFlowInput.add_member(:ebs_root_volume_iops, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeIops"))
1421
1424
  RunJobFlowInput.add_member(:ebs_root_volume_throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeThroughput"))
1425
+ RunJobFlowInput.add_member(:extended_support, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "ExtendedSupport"))
1422
1426
  RunJobFlowInput.struct_class = Types::RunJobFlowInput
1423
1427
 
1424
1428
  RunJobFlowOutput.add_member(:job_flow_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "JobFlowId"))
@@ -794,6 +794,10 @@ module Aws::EMR
794
794
  # in Amazon EMR releases 6.15.0 and later.
795
795
  # @return [Integer]
796
796
  #
797
+ # @!attribute [rw] extended_support
798
+ # Reserved.
799
+ # @return [Boolean]
800
+ #
797
801
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Cluster AWS API Documentation
798
802
  #
799
803
  class Cluster < Struct.new(
@@ -830,7 +834,8 @@ module Aws::EMR
830
834
  :placement_groups,
831
835
  :os_release_label,
832
836
  :ebs_root_volume_iops,
833
- :ebs_root_volume_throughput)
837
+ :ebs_root_volume_throughput,
838
+ :extended_support)
834
839
  SENSITIVE = []
835
840
  include Aws::Structure
836
841
  end
@@ -1090,7 +1095,6 @@ module Aws::EMR
1090
1095
  #
1091
1096
  # @!attribute [rw] profiler_type
1092
1097
  # The profiler type for the persistent application user interface.
1093
- # Valid values are SHS, TEZUI, or YTS.
1094
1098
  # @return [String]
1095
1099
  #
1096
1100
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CreatePersistentAppUIInput AWS API Documentation
@@ -4729,11 +4733,16 @@ module Aws::EMR
4729
4733
  # information see Step$ActionOnFailure.
4730
4734
  # @return [Integer]
4731
4735
  #
4736
+ # @!attribute [rw] extended_support
4737
+ # Reserved.
4738
+ # @return [Boolean]
4739
+ #
4732
4740
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ModifyClusterInput AWS API Documentation
4733
4741
  #
4734
4742
  class ModifyClusterInput < Struct.new(
4735
4743
  :cluster_id,
4736
- :step_concurrency_level)
4744
+ :step_concurrency_level,
4745
+ :extended_support)
4737
4746
  SENSITIVE = []
4738
4747
  include Aws::Structure
4739
4748
  end
@@ -4742,10 +4751,15 @@ module Aws::EMR
4742
4751
  # The number of steps that can be executed concurrently.
4743
4752
  # @return [Integer]
4744
4753
  #
4754
+ # @!attribute [rw] extended_support
4755
+ # Reserved.
4756
+ # @return [Boolean]
4757
+ #
4745
4758
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ModifyClusterOutput AWS API Documentation
4746
4759
  #
4747
4760
  class ModifyClusterOutput < Struct.new(
4748
- :step_concurrency_level)
4761
+ :step_concurrency_level,
4762
+ :extended_support)
4749
4763
  SENSITIVE = []
4750
4764
  include Aws::Structure
4751
4765
  end
@@ -5888,6 +5902,10 @@ module Aws::EMR
5888
5902
  # in Amazon EMR releases 6.15.0 and later.
5889
5903
  # @return [Integer]
5890
5904
  #
5905
+ # @!attribute [rw] extended_support
5906
+ # Reserved.
5907
+ # @return [Boolean]
5908
+ #
5891
5909
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RunJobFlowInput AWS API Documentation
5892
5910
  #
5893
5911
  class RunJobFlowInput < Struct.new(
@@ -5921,7 +5939,8 @@ module Aws::EMR
5921
5939
  :auto_termination_policy,
5922
5940
  :os_release_label,
5923
5941
  :ebs_root_volume_iops,
5924
- :ebs_root_volume_throughput)
5942
+ :ebs_root_volume_throughput,
5943
+ :extended_support)
5925
5944
  SENSITIVE = []
5926
5945
  include Aws::Structure
5927
5946
  end
data/lib/aws-sdk-emr.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::EMR
55
55
  autoload :EndpointProvider, 'aws-sdk-emr/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-emr/endpoints'
57
57
 
58
- GEM_VERSION = '1.112.0'
58
+ GEM_VERSION = '1.113.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -736,11 +736,13 @@ module Aws
736
736
  interface _ModifyClusterResponseSuccess
737
737
  include ::Seahorse::Client::_ResponseSuccess[Types::ModifyClusterOutput]
738
738
  def step_concurrency_level: () -> ::Integer
739
+ def extended_support: () -> bool
739
740
  end
740
741
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EMR/Client.html#modify_cluster-instance_method
741
742
  def modify_cluster: (
742
743
  cluster_id: ::String,
743
- ?step_concurrency_level: ::Integer
744
+ ?step_concurrency_level: ::Integer,
745
+ ?extended_support: bool
744
746
  ) -> _ModifyClusterResponseSuccess
745
747
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyClusterResponseSuccess
746
748
 
@@ -1238,7 +1240,8 @@ module Aws
1238
1240
  },
1239
1241
  ?os_release_label: ::String,
1240
1242
  ?ebs_root_volume_iops: ::Integer,
1241
- ?ebs_root_volume_throughput: ::Integer
1243
+ ?ebs_root_volume_throughput: ::Integer,
1244
+ ?extended_support: bool
1242
1245
  ) -> _RunJobFlowResponseSuccess
1243
1246
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RunJobFlowResponseSuccess
1244
1247
 
data/sig/types.rbs CHANGED
@@ -183,6 +183,7 @@ module Aws::EMR
183
183
  attr_accessor os_release_label: ::String
184
184
  attr_accessor ebs_root_volume_iops: ::Integer
185
185
  attr_accessor ebs_root_volume_throughput: ::Integer
186
+ attr_accessor extended_support: bool
186
187
  SENSITIVE: []
187
188
  end
188
189
 
@@ -1086,11 +1087,13 @@ module Aws::EMR
1086
1087
  class ModifyClusterInput
1087
1088
  attr_accessor cluster_id: ::String
1088
1089
  attr_accessor step_concurrency_level: ::Integer
1090
+ attr_accessor extended_support: bool
1089
1091
  SENSITIVE: []
1090
1092
  end
1091
1093
 
1092
1094
  class ModifyClusterOutput
1093
1095
  attr_accessor step_concurrency_level: ::Integer
1096
+ attr_accessor extended_support: bool
1094
1097
  SENSITIVE: []
1095
1098
  end
1096
1099
 
@@ -1331,6 +1334,7 @@ module Aws::EMR
1331
1334
  attr_accessor os_release_label: ::String
1332
1335
  attr_accessor ebs_root_volume_iops: ::Integer
1333
1336
  attr_accessor ebs_root_volume_throughput: ::Integer
1337
+ attr_accessor extended_support: bool
1334
1338
  SENSITIVE: []
1335
1339
  end
1336
1340
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-emr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.112.0
4
+ version: 1.113.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services