aws-sdk-ec2 1.563.0 → 1.564.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 +74 -38
- data/lib/aws-sdk-ec2/types.rb +2 -12
- 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: 647af46171fec8659d9e486bf7addf499883d03dc0d8ac43dec102fd355804e5
|
4
|
+
data.tar.gz: 4d3c97936e6097d63fba1147818f4df9bd52f6e4a1177ecc31874532d8281757
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec9c4ae4e6c28a43b56b830a2ed494cc99970fa3b77c649777f8d18bf995eb68d20eea4c5967760280cffa7ca396a6f9be1549e742151d2f05d10058db8dc9dc
|
7
|
+
data.tar.gz: 6eca1168d1aad4c65fe72a081727533bcd226eec4901a3fa9b67a3922625dc351140d655f2899b186371b9454d084e991ea467b0efef90863ecc3b424f38f480
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.564.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -4571,6 +4571,19 @@ module Aws::EC2
|
|
4571
4571
|
# and the instances continue to run until they are interrupted or you
|
4572
4572
|
# terminate them manually.
|
4573
4573
|
#
|
4574
|
+
# **Terminating an instance is permanent and irreversible.**
|
4575
|
+
#
|
4576
|
+
# After you terminate an instance, you can no longer connect to it, and
|
4577
|
+
# it can't be recovered. All attached Amazon EBS volumes that are
|
4578
|
+
# configured to be deleted on termination are also permanently deleted
|
4579
|
+
# and can't be recovered. All data stored on instance store volumes is
|
4580
|
+
# permanently lost. For more information, see [ How instance termination
|
4581
|
+
# works][1].
|
4582
|
+
#
|
4583
|
+
# Before you terminate an instance, ensure that you have backed up all
|
4584
|
+
# data that you need to retain after the termination to persistent
|
4585
|
+
# storage.
|
4586
|
+
#
|
4574
4587
|
# **Restrictions**
|
4575
4588
|
#
|
4576
4589
|
# * You can delete up to 100 fleets in a single request. If you exceed
|
@@ -4578,6 +4591,10 @@ module Aws::EC2
|
|
4578
4591
|
#
|
4579
4592
|
# ^
|
4580
4593
|
#
|
4594
|
+
#
|
4595
|
+
#
|
4596
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/how-ec2-instance-termination-works.html
|
4597
|
+
#
|
4581
4598
|
# @option params [Boolean] :dry_run
|
4582
4599
|
# Checks whether you have the required permissions for the action,
|
4583
4600
|
# without actually making the request, and provides an error response.
|
@@ -16854,31 +16871,31 @@ module Aws::EC2
|
|
16854
16871
|
req.send_request(options)
|
16855
16872
|
end
|
16856
16873
|
|
16857
|
-
# Creates a VPC with the specified CIDR blocks.
|
16858
|
-
# see [IP addressing for your VPCs and subnets][1] in the *Amazon VPC
|
16859
|
-
# User Guide*.
|
16874
|
+
# Creates a VPC with the specified CIDR blocks.
|
16860
16875
|
#
|
16861
|
-
#
|
16862
|
-
#
|
16863
|
-
#
|
16864
|
-
#
|
16876
|
+
# A VPC must have an associated IPv4 CIDR block. You can choose an IPv4
|
16877
|
+
# CIDR block or an IPAM-allocated IPv4 CIDR block. You can optionally
|
16878
|
+
# associate an IPv6 CIDR block with a VPC. You can choose an IPv6 CIDR
|
16879
|
+
# block, an Amazon-provided IPv6 CIDR block, an IPAM-allocated IPv6 CIDR
|
16880
|
+
# block, or an IPv6 CIDR block that you brought to Amazon Web Services.
|
16881
|
+
# For more information, see [IP addressing for your VPCs and subnets][1]
|
16882
|
+
# in the *Amazon VPC User Guide*.
|
16865
16883
|
#
|
16866
16884
|
# By default, each instance that you launch in the VPC has the default
|
16867
16885
|
# DHCP options, which include only a default DNS server that we provide
|
16868
|
-
# (AmazonProvidedDNS). For more information, see [DHCP option sets][
|
16886
|
+
# (AmazonProvidedDNS). For more information, see [DHCP option sets][2]
|
16869
16887
|
# in the *Amazon VPC User Guide*.
|
16870
16888
|
#
|
16871
|
-
# You can specify
|
16872
|
-
#
|
16873
|
-
#
|
16874
|
-
# Guide*.
|
16889
|
+
# You can specify DNS options and tenancy for a VPC when you create it.
|
16890
|
+
# You can't change the tenancy of a VPC after you create it. For more
|
16891
|
+
# information, see [VPC configuration options][3] in the *Amazon VPC
|
16892
|
+
# User Guide*.
|
16875
16893
|
#
|
16876
16894
|
#
|
16877
16895
|
#
|
16878
16896
|
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-ip-addressing.html
|
16879
|
-
# [2]: https://docs.aws.amazon.com/
|
16880
|
-
# [3]: https://docs.aws.amazon.com/vpc/latest/userguide/
|
16881
|
-
# [4]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/dedicated-instance.html
|
16897
|
+
# [2]: https://docs.aws.amazon.com/vpc/latest/userguide/VPC_DHCP_Options.html
|
16898
|
+
# [3]: https://docs.aws.amazon.com/vpc/latest/userguide/create-vpc-options.html
|
16882
16899
|
#
|
16883
16900
|
# @option params [String] :cidr_block
|
16884
16901
|
# The IPv4 network range for the VPC, in CIDR notation. For example,
|
@@ -18431,6 +18448,19 @@ module Aws::EC2
|
|
18431
18448
|
# leaving 1000 or fewer. Then delete the fleet, and the remaining
|
18432
18449
|
# instances will be terminated automatically.
|
18433
18450
|
#
|
18451
|
+
# **Terminating an instance is permanent and irreversible.**
|
18452
|
+
#
|
18453
|
+
# After you terminate an instance, you can no longer connect to it, and
|
18454
|
+
# it can't be recovered. All attached Amazon EBS volumes that are
|
18455
|
+
# configured to be deleted on termination are also permanently deleted
|
18456
|
+
# and can't be recovered. All data stored on instance store volumes is
|
18457
|
+
# permanently lost. For more information, see [ How instance termination
|
18458
|
+
# works][1].
|
18459
|
+
#
|
18460
|
+
# Before you terminate an instance, ensure that you have backed up all
|
18461
|
+
# data that you need to retain after the termination to persistent
|
18462
|
+
# storage.
|
18463
|
+
#
|
18434
18464
|
# **Restrictions**
|
18435
18465
|
#
|
18436
18466
|
# * You can delete up to 25 fleets of type `instant` in a single
|
@@ -18446,11 +18476,12 @@ module Aws::EC2
|
|
18446
18476
|
# are deleted.
|
18447
18477
|
#
|
18448
18478
|
# For more information, see [Delete an EC2 Fleet request and the
|
18449
|
-
# instances in the fleet][
|
18479
|
+
# instances in the fleet][2] in the *Amazon EC2 User Guide*.
|
18450
18480
|
#
|
18451
18481
|
#
|
18452
18482
|
#
|
18453
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/
|
18483
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/how-ec2-instance-termination-works.html
|
18484
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/delete-fleet.html
|
18454
18485
|
#
|
18455
18486
|
# @option params [Boolean] :dry_run
|
18456
18487
|
# Checks whether you have the required permissions for the action,
|
@@ -36967,21 +36998,11 @@ module Aws::EC2
|
|
36967
36998
|
#
|
36968
36999
|
# * `group-owner-id`: The group owner ID.
|
36969
37000
|
#
|
36970
|
-
# * `vpc-id`: The ID of the associated VPC.
|
36971
|
-
#
|
36972
|
-
# * `vpc-owner-id`: The account ID of the VPC owner.
|
36973
|
-
#
|
36974
37001
|
# * `state`: The state of the association.
|
36975
37002
|
#
|
36976
|
-
# * `
|
36977
|
-
# resource. Use the tag key in the filter name and the tag value as
|
36978
|
-
# the filter value. For example, to find all resources that have a tag
|
36979
|
-
# with the key `Owner` and the value `TeamA`, specify `tag:Owner` for
|
36980
|
-
# the filter name and `TeamA` for the filter value.
|
37003
|
+
# * `vpc-id`: The ID of the associated VPC.
|
36981
37004
|
#
|
36982
|
-
# * `
|
36983
|
-
# filter to find all resources assigned a tag with a specific key,
|
36984
|
-
# regardless of the tag value.
|
37005
|
+
# * `vpc-owner-id`: The account ID of the VPC owner.
|
36985
37006
|
#
|
36986
37007
|
# @option params [String] :next_token
|
36987
37008
|
# The token returned from a previous paginated request. Pagination
|
@@ -67159,8 +67180,22 @@ module Aws::EC2
|
|
67159
67180
|
req.send_request(options)
|
67160
67181
|
end
|
67161
67182
|
|
67162
|
-
#
|
67163
|
-
# if you terminate an instance more than once, each
|
67183
|
+
# Terminates (deletes) the specified instances. This operation is
|
67184
|
+
# [idempotent][1]; if you terminate an instance more than once, each
|
67185
|
+
# call succeeds.
|
67186
|
+
#
|
67187
|
+
# **Terminating an instance is permanent and irreversible.**
|
67188
|
+
#
|
67189
|
+
# After you terminate an instance, you can no longer connect to it, and
|
67190
|
+
# it can't be recovered. All attached Amazon EBS volumes that are
|
67191
|
+
# configured to be deleted on termination are also permanently deleted
|
67192
|
+
# and can't be recovered. All data stored on instance store volumes is
|
67193
|
+
# permanently lost. For more information, see [ How instance termination
|
67194
|
+
# works][2].
|
67195
|
+
#
|
67196
|
+
# Before you terminate an instance, ensure that you have backed up all
|
67197
|
+
# data that you need to retain after the termination to persistent
|
67198
|
+
# storage.
|
67164
67199
|
#
|
67165
67200
|
# If you specify multiple instances and the request fails (for example,
|
67166
67201
|
# because of a single incorrect instance ID), none of the instances are
|
@@ -67218,22 +67253,23 @@ module Aws::EC2
|
|
67218
67253
|
# volumes with the `DeleteOnTermination` block device mapping parameter
|
67219
67254
|
# set to `true` are automatically deleted. For more information about
|
67220
67255
|
# the differences between stopping and terminating instances, see
|
67221
|
-
# [Amazon EC2 instance state changes][
|
67256
|
+
# [Amazon EC2 instance state changes][3] in the *Amazon EC2 User Guide*.
|
67222
67257
|
#
|
67223
67258
|
# When you terminate an instance, we attempt to terminate it forcibly
|
67224
67259
|
# after a short while. If your instance appears stuck in the
|
67225
67260
|
# shutting-down state after a period of time, there might be an issue
|
67226
67261
|
# with the underlying host computer. For more information about
|
67227
67262
|
# terminating and troubleshooting terminating your instances, see
|
67228
|
-
# [Terminate Amazon EC2 instances][
|
67229
|
-
# your instance][
|
67263
|
+
# [Terminate Amazon EC2 instances][4] and [Troubleshooting terminating
|
67264
|
+
# your instance][5] in the *Amazon EC2 User Guide*.
|
67230
67265
|
#
|
67231
67266
|
#
|
67232
67267
|
#
|
67233
67268
|
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
67234
|
-
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-
|
67235
|
-
# [3]: https://docs.aws.amazon.com/
|
67236
|
-
# [4]: https://docs.aws.amazon.com/
|
67269
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/how-ec2-instance-termination-works.html
|
67270
|
+
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-lifecycle.html
|
67271
|
+
# [4]: https://docs.aws.amazon.com/
|
67272
|
+
# [5]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesShuttingDown.html
|
67237
67273
|
#
|
67238
67274
|
# @option params [required, Array<String>] :instance_ids
|
67239
67275
|
# The IDs of the instances.
|
@@ -67930,7 +67966,7 @@ module Aws::EC2
|
|
67930
67966
|
tracer: tracer
|
67931
67967
|
)
|
67932
67968
|
context[:gem_name] = 'aws-sdk-ec2'
|
67933
|
-
context[:gem_version] = '1.
|
67969
|
+
context[:gem_version] = '1.564.0'
|
67934
67970
|
Seahorse::Client::Request.new(handlers, context)
|
67935
67971
|
end
|
67936
67972
|
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -29098,21 +29098,11 @@ module Aws::EC2
|
|
29098
29098
|
#
|
29099
29099
|
# * `group-owner-id`: The group owner ID.
|
29100
29100
|
#
|
29101
|
-
# * `vpc-id`: The ID of the associated VPC.
|
29102
|
-
#
|
29103
|
-
# * `vpc-owner-id`: The account ID of the VPC owner.
|
29104
|
-
#
|
29105
29101
|
# * `state`: The state of the association.
|
29106
29102
|
#
|
29107
|
-
# * `
|
29108
|
-
# resource. Use the tag key in the filter name and the tag value as
|
29109
|
-
# the filter value. For example, to find all resources that have a
|
29110
|
-
# tag with the key `Owner` and the value `TeamA`, specify
|
29111
|
-
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
29103
|
+
# * `vpc-id`: The ID of the associated VPC.
|
29112
29104
|
#
|
29113
|
-
# * `
|
29114
|
-
# filter to find all resources assigned a tag with a specific key,
|
29115
|
-
# regardless of the tag value.
|
29105
|
+
# * `vpc-owner-id`: The account ID of the VPC owner.
|
29116
29106
|
# @return [Array<Types::Filter>]
|
29117
29107
|
#
|
29118
29108
|
# @!attribute [rw] next_token
|
data/lib/aws-sdk-ec2.rb
CHANGED