aws-sdk-ec2 1.410.0 → 1.412.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/classic_address.rb +0 -4
- data/lib/aws-sdk-ec2/client.rb +184 -97
- data/lib/aws-sdk-ec2/placement_group.rb +80 -21
- data/lib/aws-sdk-ec2/resource.rb +103 -46
- data/lib/aws-sdk-ec2/subnet.rb +103 -46
- data/lib/aws-sdk-ec2/types.rb +248 -65
- data/lib/aws-sdk-ec2/vpc.rb +102 -45
- data/lib/aws-sdk-ec2/vpc_address.rb +0 -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: 34f92b3035ec0b68f9f708e4c747288502e19e9bf43b9cdc050666fa9b847938
|
|
4
|
+
data.tar.gz: 550431dc2d3495786fbe3e8eb9358dcf8f26bdfe80c7d770cdacfe01a4e19198
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 60944aa5276d5b79b7d65c29ab6277a12d7d16c50d82161359c3c37a56e8ff6ec3549b65911869cd62105ca8a5c336b5f800b3e577b2cbe48425fec23d65a683
|
|
7
|
+
data.tar.gz: 0710a5671fe95100451e2ffb114ddbb4a12bddd2ab2dc2e2422ce78b2765ca36ee1596759074b29e2e1ddebf1f22980748297611898bf6017d3038934e54b216
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.412.0 (2023-10-06)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Documentation updates for Elastic Compute Cloud (EC2).
|
|
8
|
+
|
|
9
|
+
1.411.0 (2023-10-02)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Introducing Amazon EC2 R7iz instances with 3.9 GHz sustained all-core turbo frequency and deliver up to 20% better performance than previous generation z1d instances.
|
|
13
|
+
|
|
4
14
|
1.410.0 (2023-09-28)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.412.0
|
|
@@ -339,10 +339,6 @@ module Aws::EC2
|
|
|
339
339
|
#
|
|
340
340
|
# If you provide an incorrect network border group, you receive an
|
|
341
341
|
# `InvalidAddress.NotFound` error.
|
|
342
|
-
#
|
|
343
|
-
# You cannot use a network border group with EC2 Classic. If you attempt
|
|
344
|
-
# this operation on EC2 classic, you receive an
|
|
345
|
-
# `InvalidParameterCombination` error.
|
|
346
342
|
# @option options [Boolean] :dry_run
|
|
347
343
|
# Checks whether you have the required permissions for the action,
|
|
348
344
|
# without actually making the request, and provides an error response.
|