aws-sdk-directconnect 1.111.0 → 1.112.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-directconnect/client.rb +1 -1
- data/lib/aws-sdk-directconnect/types.rb +14 -3
- data/lib/aws-sdk-directconnect.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bee1314195d1a6f2683339927aed9b4c256f0765cfc8261c2a40258a8eb5545d
|
|
4
|
+
data.tar.gz: 82452548312c5eb12ee42992c7268aedb0e9a176b683a22527f02f90b64b0fee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3bd1c1ecb9fb940148dcc995e98a36da4ac504ee7e536a1943d2b901a4527e54f3d19f78b24bd49158c6ca3680778a875b3c4dda7c88201c2be957b75f0816dd
|
|
7
|
+
data.tar.gz: f6644657c2487feb3045176cc33d06a670080080f28ee8c895103b782a7e4d3153886689c56a361bd7587541a07e9768479aee583d1f2b3ffd65a89ceec18a36
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.112.0 (2026-06-22)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added VIF rate limiting support for AWS Direct Connect, allowing customers to set bandwidth allocations on virtual interfaces to manage traffic on dedicated connections.
|
|
8
|
+
|
|
4
9
|
1.111.0 (2026-06-16)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.112.0
|
|
@@ -5401,7 +5401,7 @@ module Aws::DirectConnect
|
|
|
5401
5401
|
tracer: tracer
|
|
5402
5402
|
)
|
|
5403
5403
|
context[:gem_name] = 'aws-sdk-directconnect'
|
|
5404
|
-
context[:gem_version] = '1.
|
|
5404
|
+
context[:gem_version] = '1.112.0'
|
|
5405
5405
|
Seahorse::Client::Request.new(handlers, context)
|
|
5406
5406
|
end
|
|
5407
5407
|
|
|
@@ -4448,9 +4448,20 @@ module Aws::DirectConnect
|
|
|
4448
4448
|
#
|
|
4449
4449
|
# @!attribute [rw] rate_limit
|
|
4450
4450
|
# The rate limit (bandwidth allocation) applied to the virtual
|
|
4451
|
-
# interface. The
|
|
4452
|
-
#
|
|
4453
|
-
#
|
|
4451
|
+
# interface. The value must be one of the supported bandwidth values
|
|
4452
|
+
# and cannot exceed the bandwidth of the parent connection or LAG.
|
|
4453
|
+
# Supported values: `50Mbps`, `100Mbps`, `200Mbps`, `300Mbps`,
|
|
4454
|
+
# `400Mbps`, `500Mbps`, `600Mbps`, `700Mbps`, `800Mbps`, `900Mbps`,
|
|
4455
|
+
# `1Gbps`, `1.2Gbps`, `1.5Gbps`, `1.8Gbps`, `2Gbps`, `2.1Gbps`,
|
|
4456
|
+
# `2.4Gbps`, `2.7Gbps`, `3Gbps`, `3.2Gbps`, `3.6Gbps`, `4Gbps`,
|
|
4457
|
+
# `5Gbps`, `6Gbps`, `7Gbps`, `8Gbps`, `9Gbps`, `10Gbps`, `12Gbps`,
|
|
4458
|
+
# `15Gbps`, `18Gbps`, `20Gbps`, `21Gbps`, `24Gbps`, `27Gbps`,
|
|
4459
|
+
# `30Gbps`, `32Gbps`, `36Gbps`, `40Gbps`, `50Gbps`, `60Gbps`,
|
|
4460
|
+
# `70Gbps`, `80Gbps`, `100Gbps`, `120Gbps`, `150Gbps`, `180Gbps`,
|
|
4461
|
+
# `200Gbps`, `210Gbps`, `240Gbps`, `270Gbps`, `300Gbps`, `320Gbps`,
|
|
4462
|
+
# `360Gbps`, `400Gbps`, `450Gbps`, `480Gbps`, `500Gbps`, `540Gbps`,
|
|
4463
|
+
# `600Gbps`, `700Gbps`, `800Gbps`, `900Gbps`, `1Tbps`, `1.1Tbps`,
|
|
4464
|
+
# `1.2Tbps`, `1.3Tbps`, `1.4Tbps`, `1.5Tbps`, `1.6Tbps`.
|
|
4454
4465
|
# @return [String]
|
|
4455
4466
|
#
|
|
4456
4467
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/VirtualInterface AWS API Documentation
|