aws-sdk-ec2 1.209.0 → 1.210.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: 318b4d321f91bd3f532398bc6dd92b1a4b45c18d4a0a50249c88f367ba3d31e7
4
- data.tar.gz: '080a083032d9f453d98f58e902b00e0f9f21cc4c4cadffb3002280ffa057576b'
3
+ metadata.gz: 7d623dee4202bc83c97ea9b80cde993324d101686608c349d9ec17104afb74d0
4
+ data.tar.gz: 837b49f2bc998e8b13b881dbb5efb7c24b4391d7ac032bfceb28a16bf711dd33
5
5
  SHA512:
6
- metadata.gz: 1276ce812462aff602baf1286ee272cfe70abfd77674a883f507c4057e59ad8f1a65cfa4f3ba37086d4bd0c91616c2500e2b04e19dc4f3df1f558b050ba4f794
7
- data.tar.gz: f2a462d08b9571ad0a8259f5b8bfca672ef23bf198a8e04ddf0fbfd99e7833809ec2a067942c3981c9540699d33db906323ddaaa875aff04962dd1820816e43b
6
+ metadata.gz: bd9b751953313cde98218fd837caace8a948dacf6c4a78a4416cc2a112bd504beef50b09f8f8792b8f941b83ef903ec939861c772aea96767708a2be4dcc68f7
7
+ data.tar.gz: 511b8b64f90c0283f20f8c20d8ca3eeb8641c0f48e31618ac9b442832731830f5e9e5d6f4623ce0fbbac53b8b2dab673b1bda7a27eccef2007eaa6a2d6120a78
@@ -72,6 +72,6 @@ require_relative 'aws-sdk-ec2/customizations'
72
72
  # @!group service
73
73
  module Aws::EC2
74
74
 
75
- GEM_VERSION = '1.209.0'
75
+ GEM_VERSION = '1.210.0'
76
76
 
77
77
  end
@@ -10543,12 +10543,34 @@ module Aws::EC2
10543
10543
 
10544
10544
  # Deletes the specified EC2 Fleet.
10545
10545
  #
10546
- # After you delete an EC2 Fleet, it launches no new instances. You must
10547
- # specify whether an EC2 Fleet should also terminate its instances. If
10548
- # you terminate the instances, the EC2 Fleet enters the
10549
- # `deleted_terminating` state. Otherwise, the EC2 Fleet enters the
10550
- # `deleted_running` state, and the instances continue to run until they
10551
- # are interrupted or you terminate them manually.
10546
+ # After you delete an EC2 Fleet, it launches no new instances.
10547
+ #
10548
+ # You must specify whether a deleted EC2 Fleet should also terminate its
10549
+ # instances. If you choose to terminate the instances, the EC2 Fleet
10550
+ # enters the `deleted_terminating` state. Otherwise, the EC2 Fleet
10551
+ # enters the `deleted_running` state, and the instances continue to run
10552
+ # until they are interrupted or you terminate them manually.
10553
+ #
10554
+ # For `instant` fleets, EC2 Fleet must terminate the instances when the
10555
+ # fleet is deleted. A deleted `instant` fleet with running instances is
10556
+ # not supported.
10557
+ #
10558
+ # **Restrictions**
10559
+ #
10560
+ # * You can delete up to 25 `instant` fleets in a single request. If you
10561
+ # exceed this number, no `instant` fleets are deleted and an error is
10562
+ # returned. There is no restriction on the number of fleets of type
10563
+ # `maintain` or `request` that can be deleted in a single request.
10564
+ #
10565
+ # * Up to 1000 instances can be terminated in a single request to delete
10566
+ # `instant` fleets.
10567
+ #
10568
+ # For more information, see [Deleting an EC2 Fleet][1] in the *Amazon
10569
+ # Elastic Compute Cloud User Guide*.
10570
+ #
10571
+ #
10572
+ #
10573
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/manage-ec2-fleet.html#delete-fleet
10552
10574
  #
10553
10575
  # @option params [Boolean] :dry_run
10554
10576
  # Checks whether you have the required permissions for the action,
@@ -10560,8 +10582,15 @@ module Aws::EC2
10560
10582
  # The IDs of the EC2 Fleets.
10561
10583
  #
10562
10584
  # @option params [required, Boolean] :terminate_instances
10563
- # Indicates whether to terminate instances for an EC2 Fleet if it is
10564
- # deleted successfully.
10585
+ # Indicates whether to terminate the instances when the EC2 Fleet is
10586
+ # deleted. The default is to terminate the instances.
10587
+ #
10588
+ # To let the instances continue to run after the EC2 Fleet is deleted,
10589
+ # specify `NoTerminateInstances`. Supported only for fleets of type
10590
+ # `maintain` and `request`.
10591
+ #
10592
+ # For `instant` fleets, you cannot specify `NoTerminateInstances`. A
10593
+ # deleted `instant` fleet with running instances is not supported.
10565
10594
  #
10566
10595
  # @return [Types::DeleteFleetsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10567
10596
  #
@@ -39255,7 +39284,7 @@ module Aws::EC2
39255
39284
  params: params,
39256
39285
  config: config)
39257
39286
  context[:gem_name] = 'aws-sdk-ec2'
39258
- context[:gem_version] = '1.209.0'
39287
+ context[:gem_version] = '1.210.0'
39259
39288
  Seahorse::Client::Request.new(handlers, context)
39260
39289
  end
39261
39290
 
@@ -10827,8 +10827,15 @@ module Aws::EC2
10827
10827
  # @return [Array<String>]
10828
10828
  #
10829
10829
  # @!attribute [rw] terminate_instances
10830
- # Indicates whether to terminate instances for an EC2 Fleet if it is
10831
- # deleted successfully.
10830
+ # Indicates whether to terminate the instances when the EC2 Fleet is
10831
+ # deleted. The default is to terminate the instances.
10832
+ #
10833
+ # To let the instances continue to run after the EC2 Fleet is deleted,
10834
+ # specify `NoTerminateInstances`. Supported only for fleets of type
10835
+ # `maintain` and `request`.
10836
+ #
10837
+ # For `instant` fleets, you cannot specify `NoTerminateInstances`. A
10838
+ # deleted `instant` fleet with running instances is not supported.
10832
10839
  # @return [Boolean]
10833
10840
  #
10834
10841
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteFleetsRequest AWS API Documentation
@@ -26881,8 +26888,8 @@ module Aws::EC2
26881
26888
  #
26882
26889
  # <note markdown="1"> When a replacement instance is launched, the instance marked for
26883
26890
  # rebalance is not automatically terminated. You can terminate it, or
26884
- # you can wait until Amazon EC2 interrupts it. You are charged for
26885
- # both instances while they are running.
26891
+ # you can leave it running. You are charged for both instances while
26892
+ # they are running.
26886
26893
  #
26887
26894
  # </note>
26888
26895
  # @return [String]
@@ -26922,8 +26929,8 @@ module Aws::EC2
26922
26929
  #
26923
26930
  # <note markdown="1"> When a replacement instance is launched, the instance marked for
26924
26931
  # rebalance is not automatically terminated. You can terminate it, or
26925
- # you can wait until Amazon EC2 interrupts it. You are charged for all
26926
- # instances while they are running.
26932
+ # you can leave it running. You are charged for all instances while
26933
+ # they are running.
26927
26934
  #
26928
26935
  # </note>
26929
26936
  # @return [String]
@@ -47273,8 +47280,8 @@ module Aws::EC2
47273
47280
  #
47274
47281
  # <note markdown="1"> When a replacement instance is launched, the instance marked for
47275
47282
  # rebalance is not automatically terminated. You can terminate it, or
47276
- # you can wait until Amazon EC2 interrupts it. You are charged for all
47277
- # instances while they are running.
47283
+ # you can leave it running. You are charged for all instances while
47284
+ # they are running.
47278
47285
  #
47279
47286
  # </note>
47280
47287
  # @return [String]
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.209.0
4
+ version: 1.210.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: 2020-11-10 00:00:00.000000000 Z
11
+ date: 2020-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4