aws-sdk-ec2 1.273.0 → 1.277.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 +95 -46
- data/lib/aws-sdk-ec2/client_api.rb +15 -0
- data/lib/aws-sdk-ec2/image.rb +16 -2
- data/lib/aws-sdk-ec2/network_interface.rb +11 -0
- data/lib/aws-sdk-ec2/network_interface_association.rb +6 -0
- data/lib/aws-sdk-ec2/plugins/copy_encrypted_snapshot.rb +7 -1
- data/lib/aws-sdk-ec2/resource.rb +13 -1
- data/lib/aws-sdk-ec2/subnet.rb +1 -1
- data/lib/aws-sdk-ec2/types.rb +184 -83
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2b29a19432848b5ec247ed1057bbfa241ffc66ac23530f306095961505cb632
|
|
4
|
+
data.tar.gz: 01d26b08dab3fc5a44c824bfff6074755e9ba8ef1ac284c81dd55779a67a1515
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 51ebce17b896d60cc90ba451294efe7cf9aaca656bcec42170e45d41665eabadf08c306e054997c623dc697fda01e08964cb06e195b996135dee2c3ea7e3a7eb
|
|
7
|
+
data.tar.gz: d349466d525c41fdf94d5e15c4346f013cf70b328934d8ea5dfb0d1aa22755dc90dc133e5e25089b61411e26a1b99e45d179df32a6dbf217f1e7e512e3361faa
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.277.0 (2021-11-05)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - DescribeInstances now returns customer-owned IP addresses for instances running on an AWS Outpost.
|
|
8
|
+
|
|
9
|
+
1.276.0 (2021-11-04)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds a new instance replacement strategy for EC2 Fleet, Spot Fleet. Now you can select an action to perform when your instance gets a rebalance notification. EC2 Fleet, Spot Fleet can launch a replacement then terminate the instance that received notification after a termination delay
|
|
13
|
+
|
|
14
|
+
1.275.0 (2021-10-29)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Support added for AMI sharing with organizations and organizational units in ModifyImageAttribute API
|
|
18
|
+
|
|
19
|
+
1.274.0 (2021-10-28)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Added new read-only DenyAllIGWTraffic network interface attribute. Added support for DL1 24xlarge instances powered by Habana Gaudi Accelerators for deep learning model training workloads
|
|
23
|
+
|
|
4
24
|
1.273.0 (2021-10-27)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.277.0
|