aws-sdk-ec2 1.281.0 → 1.285.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +587 -81
- data/lib/aws-sdk-ec2/client_api.rb +225 -1
- data/lib/aws-sdk-ec2/dhcp_options.rb +2 -0
- data/lib/aws-sdk-ec2/image.rb +2 -0
- data/lib/aws-sdk-ec2/instance.rb +18 -2
- data/lib/aws-sdk-ec2/internet_gateway.rb +2 -0
- data/lib/aws-sdk-ec2/nat_gateway.rb +2 -0
- data/lib/aws-sdk-ec2/network_acl.rb +2 -0
- data/lib/aws-sdk-ec2/network_interface.rb +15 -0
- data/lib/aws-sdk-ec2/resource.rb +36 -13
- data/lib/aws-sdk-ec2/route.rb +2 -0
- data/lib/aws-sdk-ec2/route_table.rb +3 -0
- data/lib/aws-sdk-ec2/security_group.rb +2 -0
- data/lib/aws-sdk-ec2/snapshot.rb +19 -0
- data/lib/aws-sdk-ec2/subnet.rb +41 -9
- data/lib/aws-sdk-ec2/tag.rb +2 -0
- data/lib/aws-sdk-ec2/types.rb +1045 -119
- data/lib/aws-sdk-ec2/volume.rb +5 -0
- data/lib/aws-sdk-ec2/vpc.rb +16 -4
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aceafc3aba9217ddda062d215af7a15f03f96b5a946e4c90e0051bc3d4a79161
|
|
4
|
+
data.tar.gz: d26dc2b58b456def255f0f802a534a428283b784b68b15a2e32abd092d65f6fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6836a4a3e64797e69a5cba0673d0fdcbfef17c2b5d0cb2aa43322378a0a1f6c78edf6d92d26dc471c8cc5fd505e0b73c00804985ee1049971022d763ccc2c4d5
|
|
7
|
+
data.tar.gz: 02a3c5e466792cbcbe9fc214bd6bda4b24436f7ba43d1629d8932683e949280dfd24f6448cd0fa7558f6f16c40871a43b4e6c33863bc737de1701a2fd3f5d249
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.285.0 (2021-11-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds support for Is4gen and Im4gn instances. This release also adds a new subnet attribute, enableLniAtDeviceIndex, to support local network interfaces, which are logical networking components that connect an EC2 instance to your on-premises network.
|
|
8
|
+
|
|
9
|
+
1.284.0 (2021-11-29)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds support for G5g and M6a instances. This release also adds support for Amazon EBS Snapshots Archive, a feature that enables you to archive your EBS snapshots; and Recycle Bin, a feature that enables you to protect your EBS snapshots against accidental deletion.
|
|
13
|
+
|
|
14
|
+
1.283.0 (2021-11-26)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Documentation updates for EC2.
|
|
18
|
+
|
|
19
|
+
1.282.0 (2021-11-23)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - This release adds a new parameter ipv6Native to the allow creation of IPv6-only subnets using the CreateSubnet operation, and the operation ModifySubnetAttribute includes new parameters to modify subnet attributes to use resource-based naming and enable DNS resolutions for Private DNS name.
|
|
23
|
+
|
|
4
24
|
1.281.0 (2021-11-15)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.285.0
|