aws-sdk-ec2 1.636.0 → 1.637.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 +22 -8
- data/lib/aws-sdk-ec2/instance.rb +15 -7
- data/lib/aws-sdk-ec2/types.rb +15 -6
- 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: 45397bb19db7f140ad6c9f5556b286ba035a9be1724cb0260c47ebbb412f487f
|
|
4
|
+
data.tar.gz: efa32c75b77da66379f4715282a13594856e300321ae1cc914aa44e38970c110
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 113123d2cf2146ed761a7ec0fba53645fb94d9ac6f7b9ebb5ca5992f090d5084a21098c8eeda5c5be92b8c02146cde2d2ced03bad017d985b3d9906b6124f63d
|
|
7
|
+
data.tar.gz: f1f7de52d1852e9ff5c29d5473e7751663f83dec368b88afb623eab8d7ecc56e3c51d1f7af9ccdadd158cdc7268030fe3f837a3bade0b3fffa55852add03ef99
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.637.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -9012,6 +9012,12 @@ module Aws::EC2
|
|
|
9012
9012
|
# * If the source instance is in a Local Zone, you can create the
|
|
9013
9013
|
# snapshots in the same Local Zone or in its parent Region.
|
|
9014
9014
|
#
|
|
9015
|
+
# * If the source instance is on an Outpost that supports local
|
|
9016
|
+
# snapshots, you can create the snapshots on the same Outpost or in
|
|
9017
|
+
# the parent Region of that Outpost. In this case, you must use the
|
|
9018
|
+
# `SnapshotLocation` parameter to specify where to create the
|
|
9019
|
+
# snapshots.
|
|
9020
|
+
#
|
|
9015
9021
|
# For more information, see [Create an Amazon EBS-backed AMI][1] in the
|
|
9016
9022
|
# *Amazon Elastic Compute Cloud User Guide*.
|
|
9017
9023
|
#
|
|
@@ -9040,20 +9046,28 @@ module Aws::EC2
|
|
|
9040
9046
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html
|
|
9041
9047
|
#
|
|
9042
9048
|
# @option params [String] :snapshot_location
|
|
9043
|
-
# <note markdown="1"> Only supported for instances in Local Zones
|
|
9044
|
-
#
|
|
9049
|
+
# <note markdown="1"> Only supported for instances in Local Zones and for instances on
|
|
9050
|
+
# Outposts that support local snapshots. If the source instance is not
|
|
9051
|
+
# in one of these locations, omit this parameter.
|
|
9045
9052
|
#
|
|
9046
9053
|
# </note>
|
|
9047
9054
|
#
|
|
9048
9055
|
# The Amazon S3 location where the snapshots will be stored.
|
|
9049
9056
|
#
|
|
9050
|
-
# * To create local snapshots in the same Local Zone
|
|
9051
|
-
# instance, specify `local`.
|
|
9057
|
+
# * To create local snapshots in the same Local Zone or on the same
|
|
9058
|
+
# Outpost as the source instance, specify `local`.
|
|
9052
9059
|
#
|
|
9053
|
-
# * To create regional snapshots in the parent Region of the Local Zone
|
|
9054
|
-
# specify `regional
|
|
9060
|
+
# * To create regional snapshots in the parent Region of the Local Zone
|
|
9061
|
+
# or Outpost, specify `regional`.
|
|
9062
|
+
#
|
|
9063
|
+
# If the source instance is in a Local Zone and you omit this parameter,
|
|
9064
|
+
# regional snapshots are created in the parent Region of the Local Zone.
|
|
9065
|
+
#
|
|
9066
|
+
# If the source instance is on an Outpost that supports local snapshots,
|
|
9067
|
+
# this parameter is required. If you omit it, the request fails with an
|
|
9068
|
+
# `InvalidParameterValue` error.
|
|
9055
9069
|
#
|
|
9056
|
-
# Default: `regional`
|
|
9070
|
+
# Default: `regional` (for instances in Local Zones only)
|
|
9057
9071
|
#
|
|
9058
9072
|
# @option params [Boolean] :dry_run
|
|
9059
9073
|
# Checks whether you have the required permissions for the action,
|
|
@@ -77163,7 +77177,7 @@ module Aws::EC2
|
|
|
77163
77177
|
tracer: tracer
|
|
77164
77178
|
)
|
|
77165
77179
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
77166
|
-
context[:gem_version] = '1.
|
|
77180
|
+
context[:gem_version] = '1.637.0'
|
|
77167
77181
|
Seahorse::Client::Request.new(handlers, context)
|
|
77168
77182
|
end
|
|
77169
77183
|
|
data/lib/aws-sdk-ec2/instance.rb
CHANGED
|
@@ -853,20 +853,28 @@ module Aws::EC2
|
|
|
853
853
|
#
|
|
854
854
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html
|
|
855
855
|
# @option options [String] :snapshot_location
|
|
856
|
-
# <note markdown="1"> Only supported for instances in Local Zones
|
|
857
|
-
#
|
|
856
|
+
# <note markdown="1"> Only supported for instances in Local Zones and for instances on
|
|
857
|
+
# Outposts that support local snapshots. If the source instance is not
|
|
858
|
+
# in one of these locations, omit this parameter.
|
|
858
859
|
#
|
|
859
860
|
# </note>
|
|
860
861
|
#
|
|
861
862
|
# The Amazon S3 location where the snapshots will be stored.
|
|
862
863
|
#
|
|
863
|
-
# * To create local snapshots in the same Local Zone
|
|
864
|
-
# instance, specify `local`.
|
|
864
|
+
# * To create local snapshots in the same Local Zone or on the same
|
|
865
|
+
# Outpost as the source instance, specify `local`.
|
|
865
866
|
#
|
|
866
|
-
# * To create regional snapshots in the parent Region of the Local Zone
|
|
867
|
-
# specify `regional
|
|
867
|
+
# * To create regional snapshots in the parent Region of the Local Zone
|
|
868
|
+
# or Outpost, specify `regional`.
|
|
868
869
|
#
|
|
869
|
-
#
|
|
870
|
+
# If the source instance is in a Local Zone and you omit this parameter,
|
|
871
|
+
# regional snapshots are created in the parent Region of the Local Zone.
|
|
872
|
+
#
|
|
873
|
+
# If the source instance is on an Outpost that supports local snapshots,
|
|
874
|
+
# this parameter is required. If you omit it, the request fails with an
|
|
875
|
+
# `InvalidParameterValue` error.
|
|
876
|
+
#
|
|
877
|
+
# Default: `regional` (for instances in Local Zones only)
|
|
870
878
|
# @option options [Boolean] :dry_run
|
|
871
879
|
# Checks whether you have the required permissions for the action,
|
|
872
880
|
# without actually making the request, and provides an error response.
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -11674,20 +11674,29 @@ module Aws::EC2
|
|
|
11674
11674
|
# @return [Array<Types::TagSpecification>]
|
|
11675
11675
|
#
|
|
11676
11676
|
# @!attribute [rw] snapshot_location
|
|
11677
|
-
# <note markdown="1"> Only supported for instances in Local Zones
|
|
11678
|
-
#
|
|
11677
|
+
# <note markdown="1"> Only supported for instances in Local Zones and for instances on
|
|
11678
|
+
# Outposts that support local snapshots. If the source instance is not
|
|
11679
|
+
# in one of these locations, omit this parameter.
|
|
11679
11680
|
#
|
|
11680
11681
|
# </note>
|
|
11681
11682
|
#
|
|
11682
11683
|
# The Amazon S3 location where the snapshots will be stored.
|
|
11683
11684
|
#
|
|
11684
|
-
# * To create local snapshots in the same Local Zone
|
|
11685
|
-
# instance, specify `local`.
|
|
11685
|
+
# * To create local snapshots in the same Local Zone or on the same
|
|
11686
|
+
# Outpost as the source instance, specify `local`.
|
|
11686
11687
|
#
|
|
11687
11688
|
# * To create regional snapshots in the parent Region of the Local
|
|
11688
|
-
# Zone, specify `regional
|
|
11689
|
+
# Zone or Outpost, specify `regional`.
|
|
11690
|
+
#
|
|
11691
|
+
# If the source instance is in a Local Zone and you omit this
|
|
11692
|
+
# parameter, regional snapshots are created in the parent Region of
|
|
11693
|
+
# the Local Zone.
|
|
11694
|
+
#
|
|
11695
|
+
# If the source instance is on an Outpost that supports local
|
|
11696
|
+
# snapshots, this parameter is required. If you omit it, the request
|
|
11697
|
+
# fails with an `InvalidParameterValue` error.
|
|
11689
11698
|
#
|
|
11690
|
-
# Default: `regional`
|
|
11699
|
+
# Default: `regional` (for instances in Local Zones only)
|
|
11691
11700
|
# @return [String]
|
|
11692
11701
|
#
|
|
11693
11702
|
# @!attribute [rw] dry_run
|
data/lib/aws-sdk-ec2.rb
CHANGED