aws-sdk-ec2 1.90.0 → 1.91.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/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +172 -174
- data/lib/aws-sdk-ec2/client_api.rb +3 -0
- data/lib/aws-sdk-ec2/placement_group.rb +2 -1
- data/lib/aws-sdk-ec2/resource.rb +27 -33
- data/lib/aws-sdk-ec2/snapshot.rb +18 -26
- data/lib/aws-sdk-ec2/subnet.rb +2 -1
- data/lib/aws-sdk-ec2/types.rb +100 -110
- data/lib/aws-sdk-ec2/volume.rb +4 -4
- data/lib/aws-sdk-ec2/vpc.rb +2 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/volume.rb
CHANGED
@@ -49,15 +49,15 @@ module Aws::EC2
|
|
49
49
|
data[:create_time]
|
50
50
|
end
|
51
51
|
|
52
|
-
# Indicates whether the volume
|
52
|
+
# Indicates whether the volume is encrypted.
|
53
53
|
# @return [Boolean]
|
54
54
|
def encrypted
|
55
55
|
data[:encrypted]
|
56
56
|
end
|
57
57
|
|
58
|
-
# The
|
59
|
-
# master key (CMK) that was used to protect the volume
|
60
|
-
# for the volume.
|
58
|
+
# The Amazon Resource Name (ARN) of the AWS Key Management Service (AWS
|
59
|
+
# KMS) customer master key (CMK) that was used to protect the volume
|
60
|
+
# encryption key for the volume.
|
61
61
|
# @return [String]
|
62
62
|
def kms_key_id
|
63
63
|
data[:kms_key_id]
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -805,7 +805,8 @@ module Aws::EC2
|
|
805
805
|
# * `affinity` - The affinity setting for an instance running on a
|
806
806
|
# Dedicated Host (`default` \| `host`).
|
807
807
|
#
|
808
|
-
# * `architecture` - The instance architecture (`i386` \| `x86_64`
|
808
|
+
# * `architecture` - The instance architecture (`i386` \| `x86_64` \|
|
809
|
+
# `arm64`).
|
809
810
|
#
|
810
811
|
# * `availability-zone` - The Availability Zone of the instance.
|
811
812
|
#
|
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.91.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: 2019-06-
|
11
|
+
date: 2019-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|