aws-sdk-ec2 1.431.0 → 1.522.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 +465 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/classic_address.rb +26 -16
- data/lib/aws-sdk-ec2/client.rb +10867 -4155
- data/lib/aws-sdk-ec2/client_api.rb +2924 -510
- data/lib/aws-sdk-ec2/customizations/instance.rb +18 -1
- data/lib/aws-sdk-ec2/customizations/resource.rb +46 -3
- data/lib/aws-sdk-ec2/customizations/tag.rb +13 -0
- data/lib/aws-sdk-ec2/customizations.rb +0 -22
- data/lib/aws-sdk-ec2/dhcp_options.rb +12 -12
- data/lib/aws-sdk-ec2/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-ec2/endpoint_provider.rb +14 -18
- data/lib/aws-sdk-ec2/endpoints.rb +2 -8608
- data/lib/aws-sdk-ec2/image.rb +166 -95
- data/lib/aws-sdk-ec2/instance.rb +425 -356
- data/lib/aws-sdk-ec2/internet_gateway.rb +7 -7
- data/lib/aws-sdk-ec2/key_pair.rb +14 -14
- data/lib/aws-sdk-ec2/key_pair_info.rb +30 -30
- data/lib/aws-sdk-ec2/nat_gateway.rb +7 -8
- data/lib/aws-sdk-ec2/network_acl.rb +70 -70
- data/lib/aws-sdk-ec2/network_interface.rb +94 -78
- data/lib/aws-sdk-ec2/network_interface_association.rb +3 -3
- data/lib/aws-sdk-ec2/placement_group.rb +37 -19
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +20 -1242
- data/lib/aws-sdk-ec2/resource.rb +944 -811
- data/lib/aws-sdk-ec2/route.rb +34 -34
- data/lib/aws-sdk-ec2/route_table.rb +44 -44
- data/lib/aws-sdk-ec2/route_table_association.rb +3 -3
- data/lib/aws-sdk-ec2/security_group.rb +212 -201
- data/lib/aws-sdk-ec2/snapshot.rb +169 -105
- data/lib/aws-sdk-ec2/subnet.rb +391 -359
- data/lib/aws-sdk-ec2/tag.rb +7 -4
- data/lib/aws-sdk-ec2/types.rb +13807 -4774
- data/lib/aws-sdk-ec2/volume.rb +157 -119
- data/lib/aws-sdk-ec2/vpc.rb +278 -224
- data/lib/aws-sdk-ec2/vpc_address.rb +31 -21
- data/lib/aws-sdk-ec2/vpc_peering_connection.rb +6 -6
- data/lib/aws-sdk-ec2.rb +40 -36
- data/sig/classic_address.rbs +105 -0
- data/sig/client.rbs +14622 -0
- data/sig/dhcp_options.rbs +84 -0
- data/sig/errors.rbs +16 -0
- data/sig/image.rbs +228 -0
- data/sig/instance.rbs +564 -0
- data/sig/internet_gateway.rbs +91 -0
- data/sig/key_pair.rbs +54 -0
- data/sig/key_pair_info.rbs +63 -0
- data/sig/nat_gateway.rbs +107 -0
- data/sig/network_acl.rbs +144 -0
- data/sig/network_interface.rbs +239 -0
- data/sig/network_interface_association.rbs +62 -0
- data/sig/placement_group.rbs +78 -0
- data/sig/resource.rbs +1042 -0
- data/sig/route.rbs +113 -0
- data/sig/route_table.rbs +117 -0
- data/sig/route_table_association.rbs +69 -0
- data/sig/security_group.rbs +311 -0
- data/sig/snapshot.rbs +204 -0
- data/sig/subnet.rbs +436 -0
- data/sig/tag.rbs +63 -0
- data/sig/types.rbs +16812 -0
- data/sig/volume.rbs +210 -0
- data/sig/vpc.rbs +404 -0
- data/sig/vpc_address.rbs +101 -0
- data/sig/vpc_peering_connection.rbs +84 -0
- data/sig/waiters.rbs +664 -0
- metadata +44 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d6b786bafd114fbbdc09511e75c7e1c0d986b257185b8fdc907c9de7a6679b3
|
4
|
+
data.tar.gz: 2b855f90a10873d85ea4b94e3c25c9f1aecae3b3a8fe061246e516f90d1f1bf1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ffab481dfb543d5893f0acbbba65966d50b04fd63576819edca697cb0eec8b99025c432f658b6093739e928645432d0b75a6165147f53ee3b206bdd807eabf72
|
7
|
+
data.tar.gz: fc4f6d6b2ee4eebf4d4da735ea1c0e42b1c24fd5e448ccbd4ea9b9a81298fd0755d383e143c8838b0040b10977c1d72bf186aa750963135c84262cff30c73519
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,471 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.522.0 (2025-05-08)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Launching the feature to support ENA queues offering flexibility to support multiple queues per Enhanced Network Interface (ENI)
|
8
|
+
|
9
|
+
1.521.0 (2025-05-07)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds API support for Path Component Exclusion (Filter Out ARN) for Reachability Analyzer
|
13
|
+
|
14
|
+
1.520.0 (2025-05-06)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release adds support for Amazon EBS Provisioned Rate for Volume Initialization, which lets you specify a volume initialization rate to ensure that your EBS volumes are initialized in a predictable amount of time.
|
18
|
+
|
19
|
+
1.519.0 (2025-05-05)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This update introduces API operations to manage and create local gateway VIF and VIF groups. It also includes API operations to describe Outpost LAGs and service link VIFs.
|
23
|
+
|
24
|
+
1.518.0 (2025-05-01)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
28
|
+
|
29
|
+
1.517.0 (2025-04-30)
|
30
|
+
------------------
|
31
|
+
|
32
|
+
* Feature - Launch of cost distribution feature for IPAM owners to distribute costs to internal teams.
|
33
|
+
|
34
|
+
1.516.0 (2025-04-22)
|
35
|
+
------------------
|
36
|
+
|
37
|
+
* Feature - Added support for ClientRouteEnforcementOptions flag in CreateClientVpnEndpoint and ModifyClientVpnEndpoint requests and DescribeClientVpnEndpoints responses
|
38
|
+
|
39
|
+
1.515.0 (2025-04-04)
|
40
|
+
------------------
|
41
|
+
|
42
|
+
* Feature - Doc-only updates for Amazon EC2
|
43
|
+
|
44
|
+
1.514.0 (2025-03-31)
|
45
|
+
------------------
|
46
|
+
|
47
|
+
* Feature - Release VPC Route Server, a new feature allowing dynamic routing in VPCs.
|
48
|
+
|
49
|
+
1.513.0 (2025-03-19)
|
50
|
+
------------------
|
51
|
+
|
52
|
+
* Feature - Doc-only updates for EC2 for March 2025.
|
53
|
+
|
54
|
+
1.512.0 (2025-03-13)
|
55
|
+
------------------
|
56
|
+
|
57
|
+
* Feature - This release changes the CreateLaunchTemplate, CreateLaunchTemplateVersion, ModifyLaunchTemplate CLI and SDKs such that if you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.
|
58
|
+
|
59
|
+
1.511.0 (2025-03-11)
|
60
|
+
------------------
|
61
|
+
|
62
|
+
* Feature - This release adds the GroupLongName field to the response of the DescribeAvailabilityZones API.
|
63
|
+
|
64
|
+
1.510.0 (2025-03-07)
|
65
|
+
------------------
|
66
|
+
|
67
|
+
* Feature - Add serviceManaged field to DescribeAddresses API response.
|
68
|
+
|
69
|
+
1.509.0 (2025-03-03)
|
70
|
+
------------------
|
71
|
+
|
72
|
+
* Feature - Update the DescribeVpcs response
|
73
|
+
|
74
|
+
1.508.0 (2025-02-26)
|
75
|
+
------------------
|
76
|
+
|
77
|
+
* Feature - Amazon EC2 Fleet customers can now override the Block Device Mapping specified in the Launch Template when creating a new Fleet request, saving the effort of creating and associating new Launch Templates to customize the Block Device Mapping.
|
78
|
+
|
79
|
+
1.507.0 (2025-02-25)
|
80
|
+
------------------
|
81
|
+
|
82
|
+
* Feature - Adds support for time-based EBS-backed AMI copy operations. Time-based copy ensures that EBS-backed AMIs are copied within and across Regions in a specified timeframe.
|
83
|
+
|
84
|
+
1.506.0 (2025-02-18)
|
85
|
+
------------------
|
86
|
+
|
87
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
88
|
+
|
89
|
+
1.505.0 (2025-02-11)
|
90
|
+
------------------
|
91
|
+
|
92
|
+
* Feature - Adding support for the new fullSnapshotSizeInBytes field in the response of the EC2 EBS DescribeSnapshots API. This field represents the size of all the blocks that were written to the source volume at the time the snapshot was created.
|
93
|
+
|
94
|
+
1.504.0 (2025-02-06)
|
95
|
+
------------------
|
96
|
+
|
97
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
98
|
+
|
99
|
+
1.503.0 (2025-01-28)
|
100
|
+
------------------
|
101
|
+
|
102
|
+
* Feature - This release changes the CreateFleet CLI and SDK's such that if you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.
|
103
|
+
|
104
|
+
1.502.0 (2025-01-23)
|
105
|
+
------------------
|
106
|
+
|
107
|
+
* Feature - Added "future" allocation type for future dated capacity reservation
|
108
|
+
|
109
|
+
1.501.0 (2025-01-17)
|
110
|
+
------------------
|
111
|
+
|
112
|
+
* Feature - Release u7i-6tb.112xlarge, u7i-8tb.112xlarge, u7inh-32tb.480xlarge, p5e.48xlarge, p5en.48xlarge, f2.12xlarge, f2.48xlarge, trn2.48xlarge instance types.
|
113
|
+
|
114
|
+
1.500.0 (2025-01-15)
|
115
|
+
------------------
|
116
|
+
|
117
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
118
|
+
|
119
|
+
1.499.0 (2025-01-13)
|
120
|
+
------------------
|
121
|
+
|
122
|
+
* Feature - Add support for DisconnectOnSessionTimeout flag in CreateClientVpnEndpoint and ModifyClientVpnEndpoint requests and DescribeClientVpnEndpoints responses
|
123
|
+
|
124
|
+
1.498.0 (2024-12-16)
|
125
|
+
------------------
|
126
|
+
|
127
|
+
* Feature - This release adds support for EBS local snapshots in AWS Dedicated Local Zones, which allows you to store snapshots of EBS volumes locally in Dedicated Local Zones.
|
128
|
+
|
129
|
+
1.497.0 (2024-12-13)
|
130
|
+
------------------
|
131
|
+
|
132
|
+
* Feature - This release adds GroupId to the response for DeleteSecurityGroup.
|
133
|
+
|
134
|
+
1.496.0 (2024-12-09)
|
135
|
+
------------------
|
136
|
+
|
137
|
+
* Feature - This release includes a new API for modifying instance network-performance-options after launch.
|
138
|
+
|
139
|
+
1.495.0 (2024-12-02)
|
140
|
+
------------------
|
141
|
+
|
142
|
+
* Feature - Adds support for declarative policies that allow you to enforce desired configuration across an AWS organization through configuring account attributes. Adds support for Allowed AMIs that allows you to limit the use of AMIs in AWS accounts. Adds support for connectivity over non-HTTP protocols.
|
143
|
+
|
144
|
+
1.494.0 (2024-11-26)
|
145
|
+
------------------
|
146
|
+
|
147
|
+
* Feature - Adds support for Time-based Copy for EBS Snapshots and Cross Region PrivateLink. Time-based Copy ensures that EBS Snapshots are copied within and across AWS Regions in a specified timeframe. Cross Region PrivateLink enables customers to connect to VPC endpoint services hosted in other AWS Regions.
|
148
|
+
|
149
|
+
1.493.0 (2024-11-21)
|
150
|
+
------------------
|
151
|
+
|
152
|
+
* Feature - Adds support for requesting future-dated Capacity Reservations with a minimum commitment duration, enabling IPAM for organizational units within AWS Organizations, reserving EC2 Capacity Blocks that start in 30 minutes, and extending the end date of existing Capacity Blocks.
|
153
|
+
|
154
|
+
1.492.0 (2024-11-20)
|
155
|
+
------------------
|
156
|
+
|
157
|
+
* Feature - With this release, customers can express their desire to launch instances only in an ODCR or ODCR group rather than OnDemand capacity. Customers can express their baseline instances' CPU-performance in attribute-based Instance Requirements configuration by referencing an instance family.
|
158
|
+
|
159
|
+
1.491.0 (2024-11-19)
|
160
|
+
------------------
|
161
|
+
|
162
|
+
* Feature - This release adds VPC Block Public Access (VPC BPA), a new declarative control which blocks resources in VPCs and subnets that you own in a Region from reaching or being reached from the internet through internet gateways and egress-only internet gateways.
|
163
|
+
|
164
|
+
1.490.0 (2024-11-18)
|
165
|
+
------------------
|
166
|
+
|
167
|
+
* Feature - Adding request and response elements for managed resources.
|
168
|
+
|
169
|
+
1.489.0 (2024-11-15)
|
170
|
+
------------------
|
171
|
+
|
172
|
+
* Feature - Remove non-functional enum variants for FleetCapacityReservationUsageStrategy
|
173
|
+
|
174
|
+
1.488.0 (2024-11-13)
|
175
|
+
------------------
|
176
|
+
|
177
|
+
* Feature - This release adds the source AMI details in DescribeImages API
|
178
|
+
|
179
|
+
1.487.0 (2024-11-06)
|
180
|
+
------------------
|
181
|
+
|
182
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
183
|
+
|
184
|
+
1.486.0 (2024-10-30)
|
185
|
+
------------------
|
186
|
+
|
187
|
+
* Feature - This release adds two new capabilities to VPC Security Groups: Security Group VPC Associations and Shared Security Groups.
|
188
|
+
|
189
|
+
1.485.0 (2024-10-24)
|
190
|
+
------------------
|
191
|
+
|
192
|
+
* Feature - This release includes a new API to describe some details of the Amazon Machine Images (AMIs) that were used to launch EC2 instances, even if those AMIs are no longer available for use.
|
193
|
+
|
194
|
+
1.484.0 (2024-10-23)
|
195
|
+
------------------
|
196
|
+
|
197
|
+
* Feature - Amazon EC2 X8g, C8g and M8g instances are powered by AWS Graviton4 processors. X8g provide the lowest cost per GiB of memory among Graviton4 instances. C8g provide the best price performance for compute-intensive workloads. M8g provide the best price performance in for general purpose workloads.
|
198
|
+
|
199
|
+
1.483.0 (2024-10-21)
|
200
|
+
------------------
|
201
|
+
|
202
|
+
* Feature - Amazon EC2 now allows you to create network interfaces with just the EFA driver and no ENA driver by specifying the network interface type as efa-only.
|
203
|
+
|
204
|
+
1.482.0 (2024-10-18)
|
205
|
+
------------------
|
206
|
+
|
207
|
+
* Feature - RequestSpotInstances and RequestSpotFleet feature release.
|
208
|
+
|
209
|
+
1.481.0 (2024-10-10)
|
210
|
+
------------------
|
211
|
+
|
212
|
+
* Feature - This release adds support for assigning the billing of shared Amazon EC2 On-Demand Capacity Reservations.
|
213
|
+
|
214
|
+
1.480.0 (2024-10-04)
|
215
|
+
------------------
|
216
|
+
|
217
|
+
* Feature - Documentation updates for Amazon EC2.
|
218
|
+
|
219
|
+
1.479.0 (2024-10-03)
|
220
|
+
------------------
|
221
|
+
|
222
|
+
* Feature - This release includes a new API for modifying instance cpu-options after launch.
|
223
|
+
|
224
|
+
1.478.0 (2024-09-25)
|
225
|
+
------------------
|
226
|
+
|
227
|
+
* Feature - Updates to documentation for the transit gateway security group referencing feature.
|
228
|
+
|
229
|
+
1.477.0 (2024-09-24)
|
230
|
+
------------------
|
231
|
+
|
232
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
233
|
+
|
234
|
+
1.476.0 (2024-09-23)
|
235
|
+
------------------
|
236
|
+
|
237
|
+
* Feature - Amazon EC2 G6e instances powered by NVIDIA L40S Tensor Core GPUs are the most cost-efficient GPU instances for deploying generative AI models and the highest performance GPU instances for spatial computing workloads.
|
238
|
+
|
239
|
+
1.475.0 (2024-09-20)
|
240
|
+
------------------
|
241
|
+
|
242
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
243
|
+
|
244
|
+
1.474.0 (2024-09-11)
|
245
|
+
------------------
|
246
|
+
|
247
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
248
|
+
|
249
|
+
1.473.0 (2024-09-10)
|
250
|
+
------------------
|
251
|
+
|
252
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
253
|
+
|
254
|
+
1.472.0 (2024-09-03)
|
255
|
+
------------------
|
256
|
+
|
257
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
258
|
+
|
259
|
+
1.471.0 (2024-08-28)
|
260
|
+
------------------
|
261
|
+
|
262
|
+
* Feature - Amazon VPC IP Address Manager (IPAM) now allows customers to provision IPv4 CIDR blocks and allocate Elastic IP Addresses directly from IPAM pools with public IPv4 space
|
263
|
+
|
264
|
+
1.470.0 (2024-08-21)
|
265
|
+
------------------
|
266
|
+
|
267
|
+
* Feature - DescribeInstanceStatus now returns health information on EBS volumes attached to Nitro instances
|
268
|
+
|
269
|
+
1.469.0 (2024-08-12)
|
270
|
+
------------------
|
271
|
+
|
272
|
+
* Feature - This release adds new capabilities to manage On-Demand Capacity Reservations including the ability to split your reservation, move capacity between reservations, and modify the instance eligibility of your reservation.
|
273
|
+
|
274
|
+
1.468.0 (2024-08-08)
|
275
|
+
------------------
|
276
|
+
|
277
|
+
* Feature - Launch of private IPv6 addressing for VPCs and Subnets. VPC IPAM supports the planning and monitoring of private IPv6 usage.
|
278
|
+
|
279
|
+
1.467.0 (2024-07-25)
|
280
|
+
------------------
|
281
|
+
|
282
|
+
* Feature - EC2 Fleet now supports using custom identifiers to reference Amazon Machine Images (AMI) in launch requests that are configured to choose from a diversified list of instance types.
|
283
|
+
|
284
|
+
1.466.0 (2024-07-18)
|
285
|
+
------------------
|
286
|
+
|
287
|
+
* Feature - Amazon VPC IP Address Manager (IPAM) now supports Bring-Your-Own-IP (BYOIP) for IP addresses registered with any Internet Registry. This feature uses DNS TXT records to validate ownership of a public IP address range.
|
288
|
+
|
289
|
+
1.465.0 (2024-07-10)
|
290
|
+
------------------
|
291
|
+
|
292
|
+
* Feature - Add parameters to enable provisioning IPAM BYOIPv4 space at a Local Zone Network Border Group level
|
293
|
+
|
294
|
+
1.464.0 (2024-07-02)
|
295
|
+
------------------
|
296
|
+
|
297
|
+
* Feature - Documentation updates for Elastic Compute Cloud (EC2).
|
298
|
+
|
299
|
+
1.463.0 (2024-06-25)
|
300
|
+
------------------
|
301
|
+
|
302
|
+
* Feature - This release is for the launch of the new u7ib-12tb.224xlarge, R8g, c7gn.metal and mac2-m1ultra.metal instance types
|
303
|
+
|
304
|
+
1.462.0 (2024-06-24)
|
305
|
+
------------------
|
306
|
+
|
307
|
+
* Feature - Fix EC2 multi-protocol info in models.
|
308
|
+
|
309
|
+
1.461.0 (2024-06-14)
|
310
|
+
------------------
|
311
|
+
|
312
|
+
* Feature - Documentation updates for Amazon EC2.
|
313
|
+
|
314
|
+
1.460.0 (2024-06-05)
|
315
|
+
------------------
|
316
|
+
|
317
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
318
|
+
|
319
|
+
1.459.0 (2024-06-04)
|
320
|
+
------------------
|
321
|
+
|
322
|
+
* Feature - U7i instances with up to 32 TiB of DDR5 memory and 896 vCPUs are now available. C7i-flex instances are launched and are lower-priced variants of the Amazon EC2 C7i instances that offer a baseline level of CPU performance with the ability to scale up to the full compute performance 95% of the time.
|
323
|
+
|
324
|
+
1.458.0 (2024-05-28)
|
325
|
+
------------------
|
326
|
+
|
327
|
+
* Feature - Providing support to accept BgpAsnExtended attribute
|
328
|
+
|
329
|
+
1.457.1 (2024-05-21)
|
330
|
+
------------------
|
331
|
+
|
332
|
+
* Issue - Fix Aws::EC2::Resource not to set max_results automatically when the options contains the parameter that cannot be used with the parameter max_results.
|
333
|
+
|
334
|
+
1.457.0 (2024-05-13)
|
335
|
+
------------------
|
336
|
+
|
337
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
338
|
+
|
339
|
+
1.456.0 (2024-05-08)
|
340
|
+
------------------
|
341
|
+
|
342
|
+
* Feature - Adding Precision Hardware Clock (PHC) to public API DescribeInstanceTypes
|
343
|
+
|
344
|
+
1.455.0 (2024-05-02)
|
345
|
+
------------------
|
346
|
+
|
347
|
+
* Feature - This release includes a new API for retrieving the public endorsement key of the EC2 instance's Nitro Trusted Platform Module (NitroTPM).
|
348
|
+
|
349
|
+
1.454.0 (2024-05-01)
|
350
|
+
------------------
|
351
|
+
|
352
|
+
* Feature - Documentation updates for Amazon EC2.
|
353
|
+
|
354
|
+
1.453.0 (2024-04-25)
|
355
|
+
------------------
|
356
|
+
|
357
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
358
|
+
|
359
|
+
1.452.0 (2024-04-24)
|
360
|
+
------------------
|
361
|
+
|
362
|
+
* Feature - Launching capability for customers to enable or disable automatic assignment of public IPv4 addresses to their network interface
|
363
|
+
|
364
|
+
1.451.0 (2024-04-23)
|
365
|
+
------------------
|
366
|
+
|
367
|
+
* Feature - This release introduces EC2 AMI Deregistration Protection, a new AMI property that can be enabled by customers to protect an AMI against an unintended deregistration. This release also enables the AMI owners to view the AMI 'LastLaunchedTime' in DescribeImages API.
|
368
|
+
|
369
|
+
1.450.0 (2024-04-17)
|
370
|
+
------------------
|
371
|
+
|
372
|
+
* Feature - Documentation updates for Elastic Compute Cloud (EC2).
|
373
|
+
|
374
|
+
1.449.0 (2024-04-16)
|
375
|
+
------------------
|
376
|
+
|
377
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
378
|
+
|
379
|
+
1.448.1 (2024-04-12)
|
380
|
+
------------------
|
381
|
+
|
382
|
+
* Issue - Add default max_results value to Resource methods for legacy APIs that support un-paginated calls by default.
|
383
|
+
|
384
|
+
1.448.0 (2024-04-04)
|
385
|
+
------------------
|
386
|
+
|
387
|
+
* Feature - Amazon EC2 G6 instances powered by NVIDIA L4 Tensor Core GPUs can be used for a wide range of graphics-intensive and machine learning use cases. Gr6 instances also feature NVIDIA L4 GPUs and can be used for graphics workloads with higher memory requirements.
|
388
|
+
|
389
|
+
1.447.0 (2024-03-28)
|
390
|
+
------------------
|
391
|
+
|
392
|
+
* Feature - Amazon EC2 C7gd, M7gd and R7gd metal instances with up to 3.8 TB of local NVMe-based SSD block-level storage have up to 45% improved real-time NVMe storage performance than comparable Graviton2-based instances.
|
393
|
+
|
394
|
+
1.446.0 (2024-03-26)
|
395
|
+
------------------
|
396
|
+
|
397
|
+
* Feature - Documentation updates for Elastic Compute Cloud (EC2).
|
398
|
+
|
399
|
+
1.445.0 (2024-03-25)
|
400
|
+
------------------
|
401
|
+
|
402
|
+
* Feature - Added support for ModifyInstanceMetadataDefaults and GetInstanceMetadataDefaults to set Instance Metadata Service account defaults
|
403
|
+
|
404
|
+
1.444.0 (2024-03-19)
|
405
|
+
------------------
|
406
|
+
|
407
|
+
* Feature - This release adds the new DescribeMacHosts API operation for getting information about EC2 Mac Dedicated Hosts. Users can now see the latest macOS versions that their underlying Apple Mac can support without needing to be updated.
|
408
|
+
|
409
|
+
1.443.0 (2024-03-15)
|
410
|
+
------------------
|
411
|
+
|
412
|
+
* Feature - Add media accelerator and neuron device information on the describe instance types API.
|
413
|
+
|
414
|
+
1.442.0 (2024-03-12)
|
415
|
+
------------------
|
416
|
+
|
417
|
+
* Feature - Documentation updates for Amazon EC2.
|
418
|
+
|
419
|
+
1.441.0 (2024-03-07)
|
420
|
+
------------------
|
421
|
+
|
422
|
+
* Feature - This release adds an optional parameter to RegisterImage and CopyImage APIs to support tagging AMIs at the time of creation.
|
423
|
+
|
424
|
+
1.440.0 (2024-03-01)
|
425
|
+
------------------
|
426
|
+
|
427
|
+
* Feature - With this release, Amazon EC2 Auto Scaling groups, EC2 Fleet, and Spot Fleet improve the default price protection behavior of attribute-based instance type selection of Spot Instances, to consistently select from a wide range of instance types.
|
428
|
+
|
429
|
+
1.439.0 (2024-02-28)
|
430
|
+
------------------
|
431
|
+
|
432
|
+
* Feature - This release increases the range of MaxResults for GetNetworkInsightsAccessScopeAnalysisFindings to 1,000.
|
433
|
+
|
434
|
+
1.438.0 (2024-02-14)
|
435
|
+
------------------
|
436
|
+
|
437
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
438
|
+
|
439
|
+
1.437.0 (2024-01-29)
|
440
|
+
------------------
|
441
|
+
|
442
|
+
* Feature - EC2 Fleet customers who use attribute based instance-type selection can now intuitively define their Spot instances price protection limit as a percentage of the lowest priced On-Demand instance type.
|
443
|
+
|
444
|
+
1.436.0 (2024-01-26)
|
445
|
+
------------------
|
446
|
+
|
447
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
448
|
+
|
449
|
+
1.435.0 (2024-01-24)
|
450
|
+
------------------
|
451
|
+
|
452
|
+
* Feature - Introduced a new clientToken request parameter on CreateNetworkAcl and CreateRouteTable APIs. The clientToken parameter allows idempotent operations on the APIs.
|
453
|
+
|
454
|
+
1.434.0 (2024-01-22)
|
455
|
+
------------------
|
456
|
+
|
457
|
+
* Feature - Documentation updates for Amazon EC2.
|
458
|
+
|
459
|
+
1.433.0 (2024-01-11)
|
460
|
+
------------------
|
461
|
+
|
462
|
+
* Feature - This release adds support for adding an ElasticBlockStorage volume configurations in ECS RunTask/StartTask/CreateService/UpdateService APIs. The configuration allows for attaching EBS volumes to ECS Tasks.
|
463
|
+
|
464
|
+
1.432.0 (2024-01-08)
|
465
|
+
------------------
|
466
|
+
|
467
|
+
* Feature - Amazon EC2 R7iz bare metal instances are powered by custom 4th generation Intel Xeon Scalable processors.
|
468
|
+
|
4
469
|
1.431.0 (2023-12-19)
|
5
470
|
------------------
|
6
471
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.522.0
|
@@ -34,12 +34,6 @@ module Aws::EC2
|
|
34
34
|
@public_ip
|
35
35
|
end
|
36
36
|
|
37
|
-
# The ID of the instance that the address is associated with (if any).
|
38
|
-
# @return [String]
|
39
|
-
def instance_id
|
40
|
-
data[:instance_id]
|
41
|
-
end
|
42
|
-
|
43
37
|
# The ID representing the allocation of the address.
|
44
38
|
# @return [String]
|
45
39
|
def allocation_id
|
@@ -117,6 +111,22 @@ module Aws::EC2
|
|
117
111
|
data[:carrier_ip]
|
118
112
|
end
|
119
113
|
|
114
|
+
# The service that manages the elastic IP address.
|
115
|
+
#
|
116
|
+
# <note markdown="1"> The only option supported today is `alb`.
|
117
|
+
#
|
118
|
+
# </note>
|
119
|
+
# @return [String]
|
120
|
+
def service_managed
|
121
|
+
data[:service_managed]
|
122
|
+
end
|
123
|
+
|
124
|
+
# The ID of the instance that the address is associated with (if any).
|
125
|
+
# @return [String]
|
126
|
+
def instance_id
|
127
|
+
data[:instance_id]
|
128
|
+
end
|
129
|
+
|
120
130
|
# @!endgroup
|
121
131
|
|
122
132
|
# @return [Client]
|
@@ -131,7 +141,7 @@ module Aws::EC2
|
|
131
141
|
#
|
132
142
|
# @return [self]
|
133
143
|
def load
|
134
|
-
resp = Aws::Plugins::UserAgent.
|
144
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
135
145
|
@client.describe_addresses(public_ips: [@public_ip])
|
136
146
|
end
|
137
147
|
@data = resp.addresses[0]
|
@@ -248,7 +258,7 @@ module Aws::EC2
|
|
248
258
|
:retry
|
249
259
|
end
|
250
260
|
end
|
251
|
-
Aws::Plugins::UserAgent.
|
261
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
252
262
|
Aws::Waiters::Waiter.new(options).wait({})
|
253
263
|
end
|
254
264
|
end
|
@@ -260,10 +270,10 @@ module Aws::EC2
|
|
260
270
|
# classic_address.associate({
|
261
271
|
# allocation_id: "AllocationId",
|
262
272
|
# instance_id: "InstanceId",
|
263
|
-
# allow_reassociation: false,
|
264
273
|
# dry_run: false,
|
265
274
|
# network_interface_id: "NetworkInterfaceId",
|
266
275
|
# private_ip_address: "String",
|
276
|
+
# allow_reassociation: false,
|
267
277
|
# })
|
268
278
|
# @param [Hash] options ({})
|
269
279
|
# @option options [String] :allocation_id
|
@@ -272,10 +282,6 @@ module Aws::EC2
|
|
272
282
|
# The ID of the instance. The instance must have exactly one attached
|
273
283
|
# network interface. You can specify either the instance ID or the
|
274
284
|
# network interface ID, but not both.
|
275
|
-
# @option options [Boolean] :allow_reassociation
|
276
|
-
# Reassociation is automatic, but you can specify false to ensure the
|
277
|
-
# operation fails if the Elastic IP address is already associated with
|
278
|
-
# another resource.
|
279
285
|
# @option options [Boolean] :dry_run
|
280
286
|
# Checks whether you have the required permissions for the action,
|
281
287
|
# without actually making the request, and provides an error response.
|
@@ -291,10 +297,14 @@ module Aws::EC2
|
|
291
297
|
# The primary or secondary private IP address to associate with the
|
292
298
|
# Elastic IP address. If no private IP address is specified, the Elastic
|
293
299
|
# IP address is associated with the primary private IP address.
|
300
|
+
# @option options [Boolean] :allow_reassociation
|
301
|
+
# Reassociation is automatic, but you can specify false to ensure the
|
302
|
+
# operation fails if the Elastic IP address is already associated with
|
303
|
+
# another resource.
|
294
304
|
# @return [Types::AssociateAddressResult]
|
295
305
|
def associate(options = {})
|
296
306
|
options = options.merge(public_ip: @public_ip)
|
297
|
-
resp = Aws::Plugins::UserAgent.
|
307
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
298
308
|
@client.associate_address(options)
|
299
309
|
end
|
300
310
|
resp.data
|
@@ -317,7 +327,7 @@ module Aws::EC2
|
|
317
327
|
# @return [EmptyStructure]
|
318
328
|
def disassociate(options = {})
|
319
329
|
options = options.merge(public_ip: data[:public_ip])
|
320
|
-
resp = Aws::Plugins::UserAgent.
|
330
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
321
331
|
@client.disassociate_address(options)
|
322
332
|
end
|
323
333
|
resp.data
|
@@ -347,7 +357,7 @@ module Aws::EC2
|
|
347
357
|
# @return [EmptyStructure]
|
348
358
|
def release(options = {})
|
349
359
|
options = options.merge(public_ip: data[:public_ip])
|
350
|
-
resp = Aws::Plugins::UserAgent.
|
360
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
351
361
|
@client.release_address(options)
|
352
362
|
end
|
353
363
|
resp.data
|