aws-sdk-ec2 1.524.0 → 1.531.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 +35 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/classic_address.rb +6 -0
- data/lib/aws-sdk-ec2/client.rb +359 -113
- data/lib/aws-sdk-ec2/client_api.rb +92 -0
- data/lib/aws-sdk-ec2/image.rb +18 -5
- data/lib/aws-sdk-ec2/network_interface.rb +37 -1
- data/lib/aws-sdk-ec2/resource.rb +12 -11
- data/lib/aws-sdk-ec2/subnet.rb +22 -2
- data/lib/aws-sdk-ec2/types.rb +494 -28
- data/lib/aws-sdk-ec2/vpc.rb +1 -1
- data/lib/aws-sdk-ec2/vpc_address.rb +6 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/classic_address.rbs +3 -0
- data/sig/client.rbs +49 -16
- data/sig/image.rbs +1 -0
- data/sig/instance.rbs +1 -1
- data/sig/network_interface.rbs +10 -0
- data/sig/resource.rbs +1 -1
- data/sig/subnet.rbs +5 -2
- data/sig/types.rbs +97 -27
- data/sig/vpc_address.rbs +3 -0
- 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: 24c0ac9c6954cbafb2ca42be9b52d6948e5c6f77a9b7a72d65b41817ec039219
|
4
|
+
data.tar.gz: fad3f7813d642c521db6b259ed87c49cc8ef3ae97e471ef1e7d3dec776d40374
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af73089b7791b870cce82d888dc5e77ceaa0e83363d56b38ddf797c5f8726e436649043564a0d9ca88e7b02c5e0ac67e363b71d9447c5a09f974c844e2e31f9e
|
7
|
+
data.tar.gz: 6d27b06a463447b0c1a02a7b1efb4b9fd177abe82daf1b949b84b14446388e550d412afa76bc07543defcdb6ab1d2eecc1e5090f0d804a7d4c416b8c17169af5
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,41 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.531.0 (2025-06-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Release to support Elastic VMware Service (Amazon EVS) Subnet and Amazon EVS Network Interface Types.
|
8
|
+
|
9
|
+
1.530.0 (2025-06-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.529.0 (2025-05-28)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Enable the option to automatically delete underlying Amazon EBS snapshots when deregistering Amazon Machine Images (AMIs)
|
18
|
+
|
19
|
+
1.528.0 (2025-05-27)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release adds three features - option to store AWS Site-to-Site VPN pre-shared keys in AWS Secrets Manager, GetActiveVpnTunnelStatus API to check the in-use VPN algorithms, and SampleType option in GetVpnConnectionDeviceSampleConfiguration API to get recommended sample configs for VPN devices.
|
23
|
+
|
24
|
+
1.527.0 (2025-05-23)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - This release adds support for the C7i-flex, M7i-flex, I7i, I7ie, I8g, P6-b200, Trn2, C8gd, M8gd and R8gd instances
|
28
|
+
|
29
|
+
1.526.0 (2025-05-21)
|
30
|
+
------------------
|
31
|
+
|
32
|
+
* Feature - Release of Dualstack and Ipv6-only EC2 Public DNS hostnames
|
33
|
+
|
34
|
+
1.525.0 (2025-05-20)
|
35
|
+
------------------
|
36
|
+
|
37
|
+
* Feature - This release expands the ModifyInstanceMaintenanceOptions API to enable or disable instance migration during customer-initiated reboots for EC2 Scheduled Reboot Events.
|
38
|
+
|
4
39
|
1.524.0 (2025-05-19)
|
5
40
|
------------------
|
6
41
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.531.0
|
@@ -111,6 +111,12 @@ module Aws::EC2
|
|
111
111
|
data[:carrier_ip]
|
112
112
|
end
|
113
113
|
|
114
|
+
# The ID of the subnet where the IP address is allocated.
|
115
|
+
# @return [String]
|
116
|
+
def subnet_id
|
117
|
+
data[:subnet_id]
|
118
|
+
end
|
119
|
+
|
114
120
|
# The service that manages the elastic IP address.
|
115
121
|
#
|
116
122
|
# <note markdown="1"> The only option supported today is `alb`.
|