aws-sdk-emr 1.102.0 → 1.104.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-emr/client.rb +30 -1
- data/lib/aws-sdk-emr/client_api.rb +4 -0
- data/lib/aws-sdk-emr/types.rb +16 -1
- data/lib/aws-sdk-emr.rb +1 -1
- data/sig/client.rbs +8 -2
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 51dd6234459f335e1c6ce61dbd18b7c568ec0dd3b1165b97cf001ac25ae013b8
|
4
|
+
data.tar.gz: 4dff5bf9e7030533e5218678277dfc124f82cefcbdee0791501401b58584bc49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39b14baf87ec8dee7bfbb4dc527ac3eaa5f4003455c769db187fe45bd4e6667499968158f729eea2b088b92a08a158a2cf1b8190dff243219cedd5e13c9944ed
|
7
|
+
data.tar.gz: 7b240ff9ac72dec74f8459d755b2609cd52b90bad093ade040f469e52502015f44c2e71bc9cc802cfd8ffa02b7a9212bc13b26d5444b7144c2df1bb2dfba0923
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.104.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.103.0 (2024-11-22)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Advanced Scaling in Amazon EMR Managed Scaling
|
13
|
+
|
4
14
|
1.102.0 (2024-11-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.104.0
|
data/lib/aws-sdk-emr/client.rb
CHANGED
@@ -257,11 +257,34 @@ module Aws::EMR
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -1803,6 +1826,8 @@ module Aws::EMR
|
|
1803
1826
|
# resp.managed_scaling_policy.compute_limits.maximum_capacity_units #=> Integer
|
1804
1827
|
# resp.managed_scaling_policy.compute_limits.maximum_on_demand_capacity_units #=> Integer
|
1805
1828
|
# resp.managed_scaling_policy.compute_limits.maximum_core_capacity_units #=> Integer
|
1829
|
+
# resp.managed_scaling_policy.utilization_performance_index #=> Integer
|
1830
|
+
# resp.managed_scaling_policy.scaling_strategy #=> String, one of "DEFAULT", "ADVANCED"
|
1806
1831
|
#
|
1807
1832
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/GetManagedScalingPolicy AWS API Documentation
|
1808
1833
|
#
|
@@ -3083,6 +3108,8 @@ module Aws::EMR
|
|
3083
3108
|
# maximum_on_demand_capacity_units: 1,
|
3084
3109
|
# maximum_core_capacity_units: 1,
|
3085
3110
|
# },
|
3111
|
+
# utilization_performance_index: 1,
|
3112
|
+
# scaling_strategy: "DEFAULT", # accepts DEFAULT, ADVANCED
|
3086
3113
|
# },
|
3087
3114
|
# })
|
3088
3115
|
#
|
@@ -3763,6 +3790,8 @@ module Aws::EMR
|
|
3763
3790
|
# maximum_on_demand_capacity_units: 1,
|
3764
3791
|
# maximum_core_capacity_units: 1,
|
3765
3792
|
# },
|
3793
|
+
# utilization_performance_index: 1,
|
3794
|
+
# scaling_strategy: "DEFAULT", # accepts DEFAULT, ADVANCED
|
3766
3795
|
# },
|
3767
3796
|
# placement_group_configs: [
|
3768
3797
|
# {
|
@@ -4276,7 +4305,7 @@ module Aws::EMR
|
|
4276
4305
|
tracer: tracer
|
4277
4306
|
)
|
4278
4307
|
context[:gem_name] = 'aws-sdk-emr'
|
4279
|
-
context[:gem_version] = '1.
|
4308
|
+
context[:gem_version] = '1.104.0'
|
4280
4309
|
Seahorse::Client::Request.new(handlers, context)
|
4281
4310
|
end
|
4282
4311
|
|
@@ -277,6 +277,7 @@ module Aws::EMR
|
|
277
277
|
ScalingConstraints = Shapes::StructureShape.new(name: 'ScalingConstraints')
|
278
278
|
ScalingRule = Shapes::StructureShape.new(name: 'ScalingRule')
|
279
279
|
ScalingRuleList = Shapes::ListShape.new(name: 'ScalingRuleList')
|
280
|
+
ScalingStrategy = Shapes::StringShape.new(name: 'ScalingStrategy')
|
280
281
|
ScalingTrigger = Shapes::StructureShape.new(name: 'ScalingTrigger')
|
281
282
|
ScriptBootstrapActionConfig = Shapes::StructureShape.new(name: 'ScriptBootstrapActionConfig')
|
282
283
|
SecurityConfigurationList = Shapes::ListShape.new(name: 'SecurityConfigurationList')
|
@@ -339,6 +340,7 @@ module Aws::EMR
|
|
339
340
|
UpdateStudioSessionMappingInput = Shapes::StructureShape.new(name: 'UpdateStudioSessionMappingInput')
|
340
341
|
UriString = Shapes::StringShape.new(name: 'UriString')
|
341
342
|
UsernamePassword = Shapes::StructureShape.new(name: 'UsernamePassword')
|
343
|
+
UtilizationPerformanceIndexInteger = Shapes::IntegerShape.new(name: 'UtilizationPerformanceIndexInteger')
|
342
344
|
VolumeSpecification = Shapes::StructureShape.new(name: 'VolumeSpecification')
|
343
345
|
WholeNumber = Shapes::IntegerShape.new(name: 'WholeNumber')
|
344
346
|
XmlString = Shapes::StringShape.new(name: 'XmlString')
|
@@ -1155,6 +1157,8 @@ module Aws::EMR
|
|
1155
1157
|
ListSupportedInstanceTypesOutput.struct_class = Types::ListSupportedInstanceTypesOutput
|
1156
1158
|
|
1157
1159
|
ManagedScalingPolicy.add_member(:compute_limits, Shapes::ShapeRef.new(shape: ComputeLimits, location_name: "ComputeLimits"))
|
1160
|
+
ManagedScalingPolicy.add_member(:utilization_performance_index, Shapes::ShapeRef.new(shape: UtilizationPerformanceIndexInteger, location_name: "UtilizationPerformanceIndex"))
|
1161
|
+
ManagedScalingPolicy.add_member(:scaling_strategy, Shapes::ShapeRef.new(shape: ScalingStrategy, location_name: "ScalingStrategy"))
|
1158
1162
|
ManagedScalingPolicy.struct_class = Types::ManagedScalingPolicy
|
1159
1163
|
|
1160
1164
|
MetricDimension.add_member(:key, Shapes::ShapeRef.new(shape: String, location_name: "Key"))
|
data/lib/aws-sdk-emr/types.rb
CHANGED
@@ -4474,10 +4474,25 @@ module Aws::EMR
|
|
4474
4474
|
# master node cannot be scaled after initial configuration.
|
4475
4475
|
# @return [Types::ComputeLimits]
|
4476
4476
|
#
|
4477
|
+
# @!attribute [rw] utilization_performance_index
|
4478
|
+
# An integer value that represents an advanced scaling strategy.
|
4479
|
+
# Setting a higher value optimizes for performance. Setting a lower
|
4480
|
+
# value optimizes for resource conservation. Setting the value to 50
|
4481
|
+
# balances performance and resource conservation. Possible values are
|
4482
|
+
# 1, 25, 50, 75, and 100.
|
4483
|
+
# @return [Integer]
|
4484
|
+
#
|
4485
|
+
# @!attribute [rw] scaling_strategy
|
4486
|
+
# Determines whether a custom scaling utilization performance index
|
4487
|
+
# can be set. Possible values include *ADVANCED* or *DEFAULT*.
|
4488
|
+
# @return [String]
|
4489
|
+
#
|
4477
4490
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ManagedScalingPolicy AWS API Documentation
|
4478
4491
|
#
|
4479
4492
|
class ManagedScalingPolicy < Struct.new(
|
4480
|
-
:compute_limits
|
4493
|
+
:compute_limits,
|
4494
|
+
:utilization_performance_index,
|
4495
|
+
:scaling_strategy)
|
4481
4496
|
SENSITIVE = []
|
4482
4497
|
include Aws::Structure
|
4483
4498
|
end
|
data/lib/aws-sdk-emr.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -860,7 +862,9 @@ module Aws
|
|
860
862
|
maximum_capacity_units: ::Integer,
|
861
863
|
maximum_on_demand_capacity_units: ::Integer?,
|
862
864
|
maximum_core_capacity_units: ::Integer?
|
863
|
-
}
|
865
|
+
}?,
|
866
|
+
utilization_performance_index: ::Integer?,
|
867
|
+
scaling_strategy: ("DEFAULT" | "ADVANCED")?
|
864
868
|
}
|
865
869
|
) -> _PutManagedScalingPolicyResponseSuccess
|
866
870
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutManagedScalingPolicyResponseSuccess
|
@@ -1156,7 +1160,9 @@ module Aws
|
|
1156
1160
|
maximum_capacity_units: ::Integer,
|
1157
1161
|
maximum_on_demand_capacity_units: ::Integer?,
|
1158
1162
|
maximum_core_capacity_units: ::Integer?
|
1159
|
-
}
|
1163
|
+
}?,
|
1164
|
+
utilization_performance_index: ::Integer?,
|
1165
|
+
scaling_strategy: ("DEFAULT" | "ADVANCED")?
|
1160
1166
|
},
|
1161
1167
|
?placement_group_configs: Array[
|
1162
1168
|
{
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -1012,6 +1012,8 @@ module Aws::EMR
|
|
1012
1012
|
|
1013
1013
|
class ManagedScalingPolicy
|
1014
1014
|
attr_accessor compute_limits: Types::ComputeLimits
|
1015
|
+
attr_accessor utilization_performance_index: ::Integer
|
1016
|
+
attr_accessor scaling_strategy: ("DEFAULT" | "ADVANCED")
|
1015
1017
|
SENSITIVE: []
|
1016
1018
|
end
|
1017
1019
|
|
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.
|
4
|
+
version: 1.104.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:
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|