aws-sdk-ec2 1.414.0 → 1.415.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: 0b2127e900063b811a39bda789f97fda24a99562ea1c90ac23e5ade03cd83a79
4
- data.tar.gz: 2692e6bea095fcda8894606a5c310f9349cb489b19624cd5f18909a30bf83025
3
+ metadata.gz: 4579119ace8927db16d1523c9fc1b17878d975fe8ccbae16bdd6642d326af31c
4
+ data.tar.gz: 7e5b310e58b2bf1b2e70e3502ff9365389451b06dd94bebb2f929846a5527ac2
5
5
  SHA512:
6
- metadata.gz: 8224b401d6612e007f15c3826e353cae699da3b2ec127565a52f0321694b5004d5d26b1f1fbe3545cf19f99bf2c36868380314a10c8b3af70efeb19961619ebc
7
- data.tar.gz: 1d88d4a6e3e0203d9cec0c6213673072ff718230a5f2be81d92de7896cd1e007c292d148057b693dc93cbc83669e661e53cc4ae33e66415074406e39908d6d52
6
+ metadata.gz: 68654626b76465c5458bfffa0cb1c0e8b9ab19e3ec1ce7b819e68c87a814750b4cf3a00b11b5a6daee6d83017943150acf1eb4c4460cb584e68f8d68559ebe32
7
+ data.tar.gz: 0d56ea563876462ee6e654ecea86109fc45223fe78d45d37eb1ba93afad96ceb3a3386d96b9b019c3ee98e85d7a49aae32076aa93143388c2395e78cd79f309b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.415.0 (2023-10-24)
5
+ ------------------
6
+
7
+ * Feature - This release updates the documentation for InstanceInterruptionBehavior and HibernationOptionsRequest to more accurately describe the behavior of these two parameters when using Spot hibernation.
8
+
4
9
  1.414.0 (2023-10-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.414.0
1
+ 1.415.0
@@ -32498,9 +32498,9 @@ module Aws::EC2
32498
32498
  # wildcards; greater than or less than comparison is not supported).
32499
32499
  #
32500
32500
  # * `timestamp` - The time stamp of the Spot price history, in UTC
32501
- # format (for example, *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z). You can use
32502
- # wildcards (* and ?). Greater than or less than comparison is not
32503
- # supported.
32501
+ # format (for example, *ddd MMM dd HH*:*mm*:*ss* UTC *YYYY*). You can
32502
+ # use wildcards (`*` and `?`). Greater than or less than comparison is
32503
+ # not supported.
32504
32504
  #
32505
32505
  # @option params [String] :availability_zone
32506
32506
  # Filters the results by the specified Availability Zone.
@@ -57184,7 +57184,7 @@ module Aws::EC2
57184
57184
  params: params,
57185
57185
  config: config)
57186
57186
  context[:gem_name] = 'aws-sdk-ec2'
57187
- context[:gem_version] = '1.414.0'
57187
+ context[:gem_version] = '1.415.0'
57188
57188
  Seahorse::Client::Request.new(handlers, context)
57189
57189
  end
57190
57190
 
@@ -24137,9 +24137,9 @@ module Aws::EC2
24137
24137
  # supported).
24138
24138
  #
24139
24139
  # * `timestamp` - The time stamp of the Spot price history, in UTC
24140
- # format (for example, *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z). You can
24141
- # use wildcards (* and ?). Greater than or less than comparison is
24142
- # not supported.
24140
+ # format (for example, *ddd MMM dd HH*:*mm*:*ss* UTC *YYYY*). You
24141
+ # can use wildcards (`*` and `?`). Greater than or less than
24142
+ # comparison is not supported.
24143
24143
  # @return [Array<Types::Filter>]
24144
24144
  #
24145
24145
  # @!attribute [rw] availability_zone
@@ -35170,7 +35170,22 @@ module Aws::EC2
35170
35170
  # @!attribute [rw] configured
35171
35171
  # Set to `true` to enable your instance for hibernation.
35172
35172
  #
35173
+ # For Spot Instances, if you set `Configured` to `true`, either omit
35174
+ # the `InstanceInterruptionBehavior` parameter (for [
35175
+ # `SpotMarketOptions` ][1]), or set it to `hibernate`. When
35176
+ # `Configured` is true:
35177
+ #
35178
+ # * If you omit `InstanceInterruptionBehavior`, it defaults to
35179
+ # `hibernate`.
35180
+ #
35181
+ # * If you set `InstanceInterruptionBehavior` to a value other than
35182
+ # `hibernate`, you'll get an error.
35183
+ #
35173
35184
  # Default: `false`
35185
+ #
35186
+ #
35187
+ #
35188
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_SpotMarketOptions.html
35174
35189
  # @return [Boolean]
35175
35190
  #
35176
35191
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/HibernationOptionsRequest AWS API Documentation
@@ -59331,8 +59346,25 @@ module Aws::EC2
59331
59346
  # @return [Time]
59332
59347
  #
59333
59348
  # @!attribute [rw] instance_interruption_behavior
59334
- # The behavior when a Spot Instance is interrupted. The default is
59335
- # `terminate`.
59349
+ # The behavior when a Spot Instance is interrupted.
59350
+ #
59351
+ # If `Configured` (for [ `HibernationOptions` ][1]) is set to `true`,
59352
+ # the `InstanceInterruptionBehavior` parameter is automatically set to
59353
+ # `hibernate`. If you set it to `stop` or `terminate`, you'll get an
59354
+ # error.
59355
+ #
59356
+ # If `Configured` (for [ `HibernationOptions` ][1]) is set to `false`
59357
+ # or `null`, the `InstanceInterruptionBehavior` parameter is
59358
+ # automatically set to `terminate`. You can also set it to `stop` or
59359
+ # `hibernate`.
59360
+ #
59361
+ # For more information, see [Interruption behavior][2] in the *Amazon
59362
+ # EC2 User Guide*.
59363
+ #
59364
+ #
59365
+ #
59366
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_HibernationOptionsRequest.html
59367
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/interruption-behavior.html
59336
59368
  # @return [String]
59337
59369
  #
59338
59370
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SpotMarketOptions AWS API Documentation
data/lib/aws-sdk-ec2.rb CHANGED
@@ -76,6 +76,6 @@ require_relative 'aws-sdk-ec2/customizations'
76
76
  # @!group service
77
77
  module Aws::EC2
78
78
 
79
- GEM_VERSION = '1.414.0'
79
+ GEM_VERSION = '1.415.0'
80
80
 
81
81
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.414.0
4
+ version: 1.415.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-10-19 00:00:00.000000000 Z
11
+ date: 2023-10-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4