aws-sdk-ec2 1.249.0 → 1.250.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.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +182 -171
- data/lib/aws-sdk-ec2/client_api.rb +1 -0
- data/lib/aws-sdk-ec2/resource.rb +31 -22
- data/lib/aws-sdk-ec2/snapshot.rb +37 -34
- data/lib/aws-sdk-ec2/types.rb +124 -110
- data/lib/aws-sdk-ec2/volume.rb +12 -13
- metadata +2 -2
data/lib/aws-sdk-ec2/volume.rb
CHANGED
@@ -59,9 +59,8 @@ module Aws::EC2
|
|
59
59
|
data[:encrypted]
|
60
60
|
end
|
61
61
|
|
62
|
-
# The Amazon Resource Name (ARN) of the
|
63
|
-
#
|
64
|
-
# encryption key for the volume.
|
62
|
+
# The Amazon Resource Name (ARN) of the Key Management Service (KMS) KMS
|
63
|
+
# key that was used to protect the volume encryption key for the volume.
|
65
64
|
# @return [String]
|
66
65
|
def kms_key_id
|
67
66
|
data[:kms_key_id]
|
@@ -311,7 +310,7 @@ module Aws::EC2
|
|
311
310
|
# @option options [String] :description
|
312
311
|
# A description for the snapshot.
|
313
312
|
# @option options [String] :outpost_arn
|
314
|
-
# The Amazon Resource Name (ARN) of the
|
313
|
+
# The Amazon Resource Name (ARN) of the Outpost on which to create a
|
315
314
|
# local snapshot.
|
316
315
|
#
|
317
316
|
# * To create a snapshot of a volume in a Region, omit this parameter.
|
@@ -325,8 +324,8 @@ module Aws::EC2
|
|
325
324
|
# snapshot on an Outpost, specify the ARN of the destination Outpost.
|
326
325
|
# The snapshot must be created on the same Outpost as the volume.
|
327
326
|
#
|
328
|
-
# For more information, see [
|
329
|
-
#
|
327
|
+
# For more information, see [Create local snapshots from volumes on an
|
328
|
+
# Outpost][1] in the *Amazon Elastic Compute Cloud User Guide*.
|
330
329
|
#
|
331
330
|
#
|
332
331
|
#
|
@@ -647,12 +646,12 @@ module Aws::EC2
|
|
647
646
|
# `false`)
|
648
647
|
#
|
649
648
|
# * `owner-alias` - The owner alias, from an Amazon-maintained list
|
650
|
-
# (`amazon`). This is not the user-configured
|
651
|
-
#
|
652
|
-
#
|
649
|
+
# (`amazon`). This is not the user-configured account alias set using
|
650
|
+
# the IAM console. We recommend that you use the related parameter
|
651
|
+
# instead of this filter.
|
653
652
|
#
|
654
|
-
# * `owner-id` - The
|
655
|
-
#
|
653
|
+
# * `owner-id` - The account ID of the owner. We recommend that you use
|
654
|
+
# the related parameter instead of this filter.
|
656
655
|
#
|
657
656
|
# * `progress` - The progress of the snapshot, as a percentage (for
|
658
657
|
# example, 80%).
|
@@ -679,9 +678,9 @@ module Aws::EC2
|
|
679
678
|
# * `volume-size` - The size of the volume, in GiB.
|
680
679
|
# @option options [Array<String>] :owner_ids
|
681
680
|
# Scopes the results to snapshots with the specified owners. You can
|
682
|
-
# specify a combination of
|
681
|
+
# specify a combination of account IDs, `self`, and `amazon`.
|
683
682
|
# @option options [Array<String>] :restorable_by_user_ids
|
684
|
-
# The IDs of the
|
683
|
+
# The IDs of the accounts that can create volumes from the snapshot.
|
685
684
|
# @option options [Array<String>] :snapshot_ids
|
686
685
|
# The snapshot IDs.
|
687
686
|
#
|
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.
|
4
|
+
version: 1.250.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: 2021-07-
|
11
|
+
date: 2021-07-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|