aws-sdk-ec2 1.272.0 → 1.276.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 +1078 -47
- data/lib/aws-sdk-ec2/client_api.rb +279 -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/placement_group.rb +4 -1
- data/lib/aws-sdk-ec2/plugins/copy_encrypted_snapshot.rb +7 -1
- data/lib/aws-sdk-ec2/resource.rb +17 -2
- data/lib/aws-sdk-ec2/subnet.rb +5 -2
- data/lib/aws-sdk-ec2/types.rb +2691 -85
- data/lib/aws-sdk-ec2/vpc.rb +4 -1
- 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: 1a904d5bae6d51f4414091b09760d85ebc510835fe2a19a02647f5cf8427351f
|
|
4
|
+
data.tar.gz: a4400f1b6e422a5d72b48dff40f41b9b3c61d29cc26bc519c2a2d2317ec8c91e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a29e928cb1ea6a5c1c1a0433c8ad6e7726a5981a5bbb486595bb7f90788fb844a15aaea138f42733d9b90e6b39f804dc44abd2b74bb95a50fbdc11f547be517
|
|
7
|
+
data.tar.gz: 60b0e17d3166fe0b0220762d22d4e2c3de92056ecfe2045e71b1af046b9119120e05b5fb449a23db7cb35b3d181451e111a0ac289cce3c3db3caa899420f17f1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.276.0 (2021-11-04)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* 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
|
|
8
|
+
|
|
9
|
+
1.275.0 (2021-10-29)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Support added for AMI sharing with organizations and organizational units in ModifyImageAttribute API
|
|
13
|
+
|
|
14
|
+
1.274.0 (2021-10-28)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* 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
|
|
18
|
+
|
|
19
|
+
1.273.0 (2021-10-27)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - This release adds: attribute-based instance type selection for EC2 Fleet, Spot Fleet, a feature that lets customers express instance requirements as attributes like vCPU, memory, and storage; and Spot placement score, a feature that helps customers identify an optimal location to run Spot workloads.
|
|
23
|
+
|
|
4
24
|
1.272.0 (2021-10-25)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.276.0
|