aws-sdk-emr 1.69.0 → 1.70.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 +4 -4
- data/lib/aws-sdk-emr/types.rb +15 -4
- data/lib/aws-sdk-emr.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a0b03fe8dd01f314d69c8ff64dbcf4af3298df92b5209594ec0137d51c0336b8
|
|
4
|
+
data.tar.gz: 418d73179b2902d263cd089edf0a03cde8621569a0b153525f10953fae829012
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 573bc40377ae03330aa698ed642ff227fa0c891720f9345ba185786473407fa98e0fdf8c653144fa57e8bf9d9f9c111fedc119cf18289eb57a9c68f5ef555421
|
|
7
|
+
data.tar.gz: 4093ecef13fa06dc2ca302ec669431018584e6fad79ff7332114c83a194bb215591c7d74c7bc5c8617c671c83fdd62a4e88dc635f928b08b3c3412fd39ec192c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.70.0 (2023-06-06)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release provides customers the ability to specify an allocation strategies amongst PRICE_CAPACITY_OPTIMIZED, CAPACITY_OPTIMIZED, LOWEST_PRICE, DIVERSIFIED for Spot instances in Instance Feet cluster. This enables customers to choose an allocation strategy best suited for their workload.
|
|
8
|
+
|
|
4
9
|
1.69.0 (2023-05-31)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.70.0
|
data/lib/aws-sdk-emr/client.rb
CHANGED
|
@@ -450,7 +450,7 @@ module Aws::EMR
|
|
|
450
450
|
# timeout_duration_minutes: 1, # required
|
|
451
451
|
# timeout_action: "SWITCH_TO_ON_DEMAND", # required, accepts SWITCH_TO_ON_DEMAND, TERMINATE_CLUSTER
|
|
452
452
|
# block_duration_minutes: 1,
|
|
453
|
-
# allocation_strategy: "capacity-optimized", # accepts capacity-optimized
|
|
453
|
+
# allocation_strategy: "capacity-optimized", # accepts capacity-optimized, price-capacity-optimized, lowest-price, diversified
|
|
454
454
|
# },
|
|
455
455
|
# on_demand_specification: {
|
|
456
456
|
# allocation_strategy: "lowest-price", # required, accepts lowest-price
|
|
@@ -1944,7 +1944,7 @@ module Aws::EMR
|
|
|
1944
1944
|
# resp.instance_fleets[0].launch_specifications.spot_specification.timeout_duration_minutes #=> Integer
|
|
1945
1945
|
# resp.instance_fleets[0].launch_specifications.spot_specification.timeout_action #=> String, one of "SWITCH_TO_ON_DEMAND", "TERMINATE_CLUSTER"
|
|
1946
1946
|
# resp.instance_fleets[0].launch_specifications.spot_specification.block_duration_minutes #=> Integer
|
|
1947
|
-
# resp.instance_fleets[0].launch_specifications.spot_specification.allocation_strategy #=> String, one of "capacity-optimized"
|
|
1947
|
+
# resp.instance_fleets[0].launch_specifications.spot_specification.allocation_strategy #=> String, one of "capacity-optimized", "price-capacity-optimized", "lowest-price", "diversified"
|
|
1948
1948
|
# resp.instance_fleets[0].launch_specifications.on_demand_specification.allocation_strategy #=> String, one of "lowest-price"
|
|
1949
1949
|
# resp.instance_fleets[0].launch_specifications.on_demand_specification.capacity_reservation_options.usage_strategy #=> String, one of "use-capacity-reservations-first"
|
|
1950
1950
|
# resp.instance_fleets[0].launch_specifications.on_demand_specification.capacity_reservation_options.capacity_reservation_preference #=> String, one of "open", "none"
|
|
@@ -3403,7 +3403,7 @@ module Aws::EMR
|
|
|
3403
3403
|
# timeout_duration_minutes: 1, # required
|
|
3404
3404
|
# timeout_action: "SWITCH_TO_ON_DEMAND", # required, accepts SWITCH_TO_ON_DEMAND, TERMINATE_CLUSTER
|
|
3405
3405
|
# block_duration_minutes: 1,
|
|
3406
|
-
# allocation_strategy: "capacity-optimized", # accepts capacity-optimized
|
|
3406
|
+
# allocation_strategy: "capacity-optimized", # accepts capacity-optimized, price-capacity-optimized, lowest-price, diversified
|
|
3407
3407
|
# },
|
|
3408
3408
|
# on_demand_specification: {
|
|
3409
3409
|
# allocation_strategy: "lowest-price", # required, accepts lowest-price
|
|
@@ -3931,7 +3931,7 @@ module Aws::EMR
|
|
|
3931
3931
|
params: params,
|
|
3932
3932
|
config: config)
|
|
3933
3933
|
context[:gem_name] = 'aws-sdk-emr'
|
|
3934
|
-
context[:gem_version] = '1.
|
|
3934
|
+
context[:gem_version] = '1.70.0'
|
|
3935
3935
|
Seahorse::Client::Request.new(handlers, context)
|
|
3936
3936
|
end
|
|
3937
3937
|
|
data/lib/aws-sdk-emr/types.rb
CHANGED
|
@@ -5939,10 +5939,21 @@ module Aws::EMR
|
|
|
5939
5939
|
# @return [Integer]
|
|
5940
5940
|
#
|
|
5941
5941
|
# @!attribute [rw] allocation_strategy
|
|
5942
|
-
# Specifies the
|
|
5943
|
-
#
|
|
5944
|
-
#
|
|
5945
|
-
#
|
|
5942
|
+
# Specifies one of the following strategies to launch Spot Instance
|
|
5943
|
+
# fleets: `price-capacity-optimized`, `capacity-optimized`,
|
|
5944
|
+
# `lowest-price`, or `diversified`. For more information on the
|
|
5945
|
+
# provisioning strategies, see [Allocation strategies for Spot
|
|
5946
|
+
# Instances][1] in the *Amazon EC2 User Guide for Linux Instances*.
|
|
5947
|
+
#
|
|
5948
|
+
# <note markdown="1"> When you launch a Spot Instance fleet with the old console, it
|
|
5949
|
+
# automatically launches with the `capacity-optimized` strategy. You
|
|
5950
|
+
# can't change the allocation strategy from the old console.
|
|
5951
|
+
#
|
|
5952
|
+
# </note>
|
|
5953
|
+
#
|
|
5954
|
+
#
|
|
5955
|
+
#
|
|
5956
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-allocation-strategy.html
|
|
5946
5957
|
# @return [String]
|
|
5947
5958
|
#
|
|
5948
5959
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/SpotProvisioningSpecification AWS API Documentation
|
data/lib/aws-sdk-emr.rb
CHANGED
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.70.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: 2023-
|
|
11
|
+
date: 2023-06-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|