aws-sdk-emr 1.68.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d3badaf5d74900831fac0b19ab6dd3a586435741975998b58c0d21f064fcd4a7
4
- data.tar.gz: 45c0d7241e12c62ebc59b4b206bba0f5f1ce95909b0de6537295855e667217b4
3
+ metadata.gz: a0b03fe8dd01f314d69c8ff64dbcf4af3298df92b5209594ec0137d51c0336b8
4
+ data.tar.gz: 418d73179b2902d263cd089edf0a03cde8621569a0b153525f10953fae829012
5
5
  SHA512:
6
- metadata.gz: e425f0e422cf31f74e397128d31c42b5f44dc743f5652f18b5e356e5217ab3698186e89ba7340c461adc1809b38cdfd82714fc07465ca1bbf671759ef273ffaf
7
- data.tar.gz: af9edf3503786ebdf8796926cae3fda4fb7d33aa84eee5387327ff2a0b7040db09ec978d414cb9c4012e9e27b8ea38ea640417f48b7aa9daa1aa9ee765be2d67
6
+ metadata.gz: 573bc40377ae03330aa698ed642ff227fa0c891720f9345ba185786473407fa98e0fdf8c653144fa57e8bf9d9f9c111fedc119cf18289eb57a9c68f5ef555421
7
+ data.tar.gz: 4093ecef13fa06dc2ca302ec669431018584e6fad79ff7332114c83a194bb215591c7d74c7bc5c8617c671c83fdd62a4e88dc635f928b08b3c3412fd39ec192c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.69.0 (2023-05-31)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.68.0 (2023-05-10)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.70.0
@@ -275,6 +275,11 @@ module Aws::EMR
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -445,7 +450,7 @@ module Aws::EMR
445
450
  # timeout_duration_minutes: 1, # required
446
451
  # timeout_action: "SWITCH_TO_ON_DEMAND", # required, accepts SWITCH_TO_ON_DEMAND, TERMINATE_CLUSTER
447
452
  # block_duration_minutes: 1,
448
- # allocation_strategy: "capacity-optimized", # accepts capacity-optimized
453
+ # allocation_strategy: "capacity-optimized", # accepts capacity-optimized, price-capacity-optimized, lowest-price, diversified
449
454
  # },
450
455
  # on_demand_specification: {
451
456
  # allocation_strategy: "lowest-price", # required, accepts lowest-price
@@ -1939,7 +1944,7 @@ module Aws::EMR
1939
1944
  # resp.instance_fleets[0].launch_specifications.spot_specification.timeout_duration_minutes #=> Integer
1940
1945
  # resp.instance_fleets[0].launch_specifications.spot_specification.timeout_action #=> String, one of "SWITCH_TO_ON_DEMAND", "TERMINATE_CLUSTER"
1941
1946
  # resp.instance_fleets[0].launch_specifications.spot_specification.block_duration_minutes #=> Integer
1942
- # 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"
1943
1948
  # resp.instance_fleets[0].launch_specifications.on_demand_specification.allocation_strategy #=> String, one of "lowest-price"
1944
1949
  # resp.instance_fleets[0].launch_specifications.on_demand_specification.capacity_reservation_options.usage_strategy #=> String, one of "use-capacity-reservations-first"
1945
1950
  # resp.instance_fleets[0].launch_specifications.on_demand_specification.capacity_reservation_options.capacity_reservation_preference #=> String, one of "open", "none"
@@ -3398,7 +3403,7 @@ module Aws::EMR
3398
3403
  # timeout_duration_minutes: 1, # required
3399
3404
  # timeout_action: "SWITCH_TO_ON_DEMAND", # required, accepts SWITCH_TO_ON_DEMAND, TERMINATE_CLUSTER
3400
3405
  # block_duration_minutes: 1,
3401
- # allocation_strategy: "capacity-optimized", # accepts capacity-optimized
3406
+ # allocation_strategy: "capacity-optimized", # accepts capacity-optimized, price-capacity-optimized, lowest-price, diversified
3402
3407
  # },
3403
3408
  # on_demand_specification: {
3404
3409
  # allocation_strategy: "lowest-price", # required, accepts lowest-price
@@ -3926,7 +3931,7 @@ module Aws::EMR
3926
3931
  params: params,
3927
3932
  config: config)
3928
3933
  context[:gem_name] = 'aws-sdk-emr'
3929
- context[:gem_version] = '1.68.0'
3934
+ context[:gem_version] = '1.70.0'
3930
3935
  Seahorse::Client::Request.new(handlers, context)
3931
3936
  end
3932
3937
 
@@ -5939,10 +5939,21 @@ module Aws::EMR
5939
5939
  # @return [Integer]
5940
5940
  #
5941
5941
  # @!attribute [rw] allocation_strategy
5942
- # Specifies the strategy to use in launching Spot Instance fleets.
5943
- # Currently, the only option is capacity-optimized (the default),
5944
- # which launches instances from Spot Instance pools with optimal
5945
- # capacity for the number of instances that are launching.
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
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-emr/customizations'
53
53
  # @!group service
54
54
  module Aws::EMR
55
55
 
56
- GEM_VERSION = '1.68.0'
56
+ GEM_VERSION = '1.70.0'
57
57
 
58
58
  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.68.0
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-05-10 00:00:00.000000000 Z
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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement