aws-sdk-ec2 1.623.0 → 1.624.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-ec2/client.rb +14 -11
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 155bd892ae13a7841d99b7fe728eb05c5ab6e315da611a5d969745d8a9977b96
|
|
4
|
+
data.tar.gz: 85a947a839322269c7f040a6ee51b0bb37d977989ced2c8ed8eaaa6729805d23
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce28421481e33d3a5c05ec7e4631f79b9a8e2ef1dd7a65998d397fc8ff565e7a210a62c5bd84b0f23ca9eb0ae2a029fd6e47edba5e275c099cec2b0d6d84d72e
|
|
7
|
+
data.tar.gz: 3857ad5e9a1ed243abb204b04b518b622b44155e96e16ed5300ab87dc903f899582cc30f10b712b4d21fc99e689f8bd0225e4a062e6e7c07be53330d2ecd2813
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.624.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -4378,26 +4378,29 @@ module Aws::EC2
|
|
|
4378
4378
|
#
|
|
4379
4379
|
# * `assessing`
|
|
4380
4380
|
#
|
|
4381
|
-
# * `scheduled`
|
|
4381
|
+
# * `scheduled` — requires a cancellation quote. Use
|
|
4382
|
+
# `CreateCapacityReservationCancellationQuote` to generate a quote,
|
|
4383
|
+
# then pass the quote ID with `ApplyCancellationCharges` set to
|
|
4384
|
+
# `commitment-wind-down`. The cancellation charge depends on how close
|
|
4385
|
+
# the reservation is to its start date.
|
|
4382
4386
|
#
|
|
4383
4387
|
# * `active` and there is no commitment duration or the commitment
|
|
4384
4388
|
# duration has elapsed.
|
|
4385
4389
|
#
|
|
4386
|
-
# * `active` during the commitment duration
|
|
4387
|
-
#
|
|
4388
|
-
#
|
|
4389
|
-
# The Capacity Reservation transitions to
|
|
4390
|
-
# are applied.
|
|
4390
|
+
# * `active` during the commitment duration — requires a cancellation
|
|
4391
|
+
# quote. Use `CreateCapacityReservationCancellationQuote` to generate
|
|
4392
|
+
# a quote, then pass the quote ID with `ApplyCancellationCharges` set
|
|
4393
|
+
# to `commitment-wind-down`. The Capacity Reservation transitions to
|
|
4394
|
+
# `cancelling` while charges are applied.
|
|
4395
|
+
#
|
|
4396
|
+
# * `delayed` — the commitment duration is waived, so no cancellation
|
|
4397
|
+
# charge applies.
|
|
4391
4398
|
#
|
|
4392
4399
|
# <note markdown="1"> You can't modify or cancel a Capacity Block. For more information,
|
|
4393
4400
|
# see [Capacity Blocks for ML][1].
|
|
4394
4401
|
#
|
|
4395
4402
|
# </note>
|
|
4396
4403
|
#
|
|
4397
|
-
# If a future-dated Capacity Reservation enters the `delayed` state, the
|
|
4398
|
-
# commitment duration is waived, and you can cancel it as soon as it
|
|
4399
|
-
# enters the `active` state.
|
|
4400
|
-
#
|
|
4401
4404
|
# Instances running in the reserved capacity continue running until you
|
|
4402
4405
|
# stop them. Stopped instances that target the Capacity Reservation can
|
|
4403
4406
|
# no longer launch. Modify these instances to either target a different
|
|
@@ -74084,7 +74087,7 @@ module Aws::EC2
|
|
|
74084
74087
|
tracer: tracer
|
|
74085
74088
|
)
|
|
74086
74089
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
74087
|
-
context[:gem_version] = '1.
|
|
74090
|
+
context[:gem_version] = '1.624.0'
|
|
74088
74091
|
Seahorse::Client::Request.new(handlers, context)
|
|
74089
74092
|
end
|
|
74090
74093
|
|
data/lib/aws-sdk-ec2.rb
CHANGED