aws-sdk-directconnect 1.110.0 → 1.111.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 +139 -13
- data/lib/aws-sdk-directconnect/client_api.rb +28 -0
- data/lib/aws-sdk-directconnect/errors.rb +11 -0
- data/lib/aws-sdk-directconnect/types.rb +298 -99
- data/lib/aws-sdk-directconnect.rb +1 -1
- data/sig/client.rbs +31 -7
- data/sig/errors.rbs +2 -0
- data/sig/types.rbs +21 -0
- 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: c7ca5d82f02a71266f9cdd76786a4691eca2a2ecb55f2a9f23e6cb219c895dfd
|
|
4
|
+
data.tar.gz: c1c5af1c2d0563d1c3427aec91397a797c3c12c7994c8dd64c9f05d0450bcbb6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71cb11e8c6b95cba41e87290221e57ddef12bd3f15c1f462bbb932a81c3ef7c7bae7ecbaceb312a4bb40120b830a98297e00090550bac5dcc57e2e4b03175bd6
|
|
7
|
+
data.tar.gz: 4a3a8bc5bb77f041ee0394bbf7a1440640979459e1dbfa4089b161b3d3fdbf6b3e66b16dc8747a2c99a60ade336c833f79a5a70ab4b5be1865df2c8756af6ac2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.111.0 (2026-06-16)
|
|
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.110.0 (2026-06-03)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.111.0
|
|
@@ -609,6 +609,7 @@ module Aws::DirectConnect
|
|
|
609
609
|
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
|
610
610
|
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
|
611
611
|
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
|
612
|
+
# * {Types::Connection#rate_limiter_status #rate_limiter_status} => Types::RateLimiterStatus
|
|
612
613
|
# * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
|
|
613
614
|
#
|
|
614
615
|
# @example Request syntax with placeholder values
|
|
@@ -651,6 +652,10 @@ module Aws::DirectConnect
|
|
|
651
652
|
# resp.mac_sec_keys[0].ckn #=> String
|
|
652
653
|
# resp.mac_sec_keys[0].state #=> String
|
|
653
654
|
# resp.mac_sec_keys[0].start_on #=> String
|
|
655
|
+
# resp.rate_limiter_status.max_allowed #=> Integer
|
|
656
|
+
# resp.rate_limiter_status.in_use #=> Integer
|
|
657
|
+
# resp.rate_limiter_status.remaining #=> Integer
|
|
658
|
+
# resp.rate_limiter_status.total_bandwidth #=> String
|
|
654
659
|
# resp.partner_interconnect_mac_sec_capable #=> Boolean
|
|
655
660
|
#
|
|
656
661
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocateConnectionOnInterconnect AWS API Documentation
|
|
@@ -722,6 +727,7 @@ module Aws::DirectConnect
|
|
|
722
727
|
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
|
723
728
|
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
|
724
729
|
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
|
730
|
+
# * {Types::Connection#rate_limiter_status #rate_limiter_status} => Types::RateLimiterStatus
|
|
725
731
|
# * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
|
|
726
732
|
#
|
|
727
733
|
# @example Request syntax with placeholder values
|
|
@@ -770,6 +776,10 @@ module Aws::DirectConnect
|
|
|
770
776
|
# resp.mac_sec_keys[0].ckn #=> String
|
|
771
777
|
# resp.mac_sec_keys[0].state #=> String
|
|
772
778
|
# resp.mac_sec_keys[0].start_on #=> String
|
|
779
|
+
# resp.rate_limiter_status.max_allowed #=> Integer
|
|
780
|
+
# resp.rate_limiter_status.in_use #=> Integer
|
|
781
|
+
# resp.rate_limiter_status.remaining #=> Integer
|
|
782
|
+
# resp.rate_limiter_status.total_bandwidth #=> String
|
|
773
783
|
# resp.partner_interconnect_mac_sec_capable #=> Boolean
|
|
774
784
|
#
|
|
775
785
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocateHostedConnection AWS API Documentation
|
|
@@ -829,6 +839,7 @@ module Aws::DirectConnect
|
|
|
829
839
|
# * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
|
|
830
840
|
# * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
|
|
831
841
|
# * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
|
|
842
|
+
# * {Types::VirtualInterface#rate_limit #rate_limit} => String
|
|
832
843
|
#
|
|
833
844
|
# @example Request syntax with placeholder values
|
|
834
845
|
#
|
|
@@ -851,6 +862,7 @@ module Aws::DirectConnect
|
|
|
851
862
|
# value: "TagValue",
|
|
852
863
|
# },
|
|
853
864
|
# ],
|
|
865
|
+
# rate_limit: "RateLimit",
|
|
854
866
|
# },
|
|
855
867
|
# })
|
|
856
868
|
#
|
|
@@ -897,6 +909,7 @@ module Aws::DirectConnect
|
|
|
897
909
|
# resp.tags[0].key #=> String
|
|
898
910
|
# resp.tags[0].value #=> String
|
|
899
911
|
# resp.site_link_enabled #=> Boolean
|
|
912
|
+
# resp.rate_limit #=> String
|
|
900
913
|
#
|
|
901
914
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocatePrivateVirtualInterface AWS API Documentation
|
|
902
915
|
#
|
|
@@ -964,6 +977,7 @@ module Aws::DirectConnect
|
|
|
964
977
|
# * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
|
|
965
978
|
# * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
|
|
966
979
|
# * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
|
|
980
|
+
# * {Types::VirtualInterface#rate_limit #rate_limit} => String
|
|
967
981
|
#
|
|
968
982
|
# @example Request syntax with placeholder values
|
|
969
983
|
#
|
|
@@ -990,6 +1004,7 @@ module Aws::DirectConnect
|
|
|
990
1004
|
# value: "TagValue",
|
|
991
1005
|
# },
|
|
992
1006
|
# ],
|
|
1007
|
+
# rate_limit: "RateLimit",
|
|
993
1008
|
# },
|
|
994
1009
|
# })
|
|
995
1010
|
#
|
|
@@ -1036,6 +1051,7 @@ module Aws::DirectConnect
|
|
|
1036
1051
|
# resp.tags[0].key #=> String
|
|
1037
1052
|
# resp.tags[0].value #=> String
|
|
1038
1053
|
# resp.site_link_enabled #=> Boolean
|
|
1054
|
+
# resp.rate_limit #=> String
|
|
1039
1055
|
#
|
|
1040
1056
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocatePublicVirtualInterface AWS API Documentation
|
|
1041
1057
|
#
|
|
@@ -1094,6 +1110,7 @@ module Aws::DirectConnect
|
|
|
1094
1110
|
# value: "TagValue",
|
|
1095
1111
|
# },
|
|
1096
1112
|
# ],
|
|
1113
|
+
# rate_limit: "RateLimit",
|
|
1097
1114
|
# },
|
|
1098
1115
|
# })
|
|
1099
1116
|
#
|
|
@@ -1140,6 +1157,7 @@ module Aws::DirectConnect
|
|
|
1140
1157
|
# resp.virtual_interface.tags[0].key #=> String
|
|
1141
1158
|
# resp.virtual_interface.tags[0].value #=> String
|
|
1142
1159
|
# resp.virtual_interface.site_link_enabled #=> Boolean
|
|
1160
|
+
# resp.virtual_interface.rate_limit #=> String
|
|
1143
1161
|
#
|
|
1144
1162
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocateTransitVirtualInterface AWS API Documentation
|
|
1145
1163
|
#
|
|
@@ -1200,6 +1218,7 @@ module Aws::DirectConnect
|
|
|
1200
1218
|
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
|
1201
1219
|
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
|
1202
1220
|
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
|
1221
|
+
# * {Types::Connection#rate_limiter_status #rate_limiter_status} => Types::RateLimiterStatus
|
|
1203
1222
|
# * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
|
|
1204
1223
|
#
|
|
1205
1224
|
# @example Request syntax with placeholder values
|
|
@@ -1239,6 +1258,10 @@ module Aws::DirectConnect
|
|
|
1239
1258
|
# resp.mac_sec_keys[0].ckn #=> String
|
|
1240
1259
|
# resp.mac_sec_keys[0].state #=> String
|
|
1241
1260
|
# resp.mac_sec_keys[0].start_on #=> String
|
|
1261
|
+
# resp.rate_limiter_status.max_allowed #=> Integer
|
|
1262
|
+
# resp.rate_limiter_status.in_use #=> Integer
|
|
1263
|
+
# resp.rate_limiter_status.remaining #=> Integer
|
|
1264
|
+
# resp.rate_limiter_status.total_bandwidth #=> String
|
|
1242
1265
|
# resp.partner_interconnect_mac_sec_capable #=> Boolean
|
|
1243
1266
|
#
|
|
1244
1267
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateConnectionWithLag AWS API Documentation
|
|
@@ -1291,6 +1314,7 @@ module Aws::DirectConnect
|
|
|
1291
1314
|
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
|
1292
1315
|
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
|
1293
1316
|
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
|
1317
|
+
# * {Types::Connection#rate_limiter_status #rate_limiter_status} => Types::RateLimiterStatus
|
|
1294
1318
|
# * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
|
|
1295
1319
|
#
|
|
1296
1320
|
# @example Request syntax with placeholder values
|
|
@@ -1330,6 +1354,10 @@ module Aws::DirectConnect
|
|
|
1330
1354
|
# resp.mac_sec_keys[0].ckn #=> String
|
|
1331
1355
|
# resp.mac_sec_keys[0].state #=> String
|
|
1332
1356
|
# resp.mac_sec_keys[0].start_on #=> String
|
|
1357
|
+
# resp.rate_limiter_status.max_allowed #=> Integer
|
|
1358
|
+
# resp.rate_limiter_status.in_use #=> Integer
|
|
1359
|
+
# resp.rate_limiter_status.remaining #=> Integer
|
|
1360
|
+
# resp.rate_limiter_status.total_bandwidth #=> String
|
|
1333
1361
|
# resp.partner_interconnect_mac_sec_capable #=> Boolean
|
|
1334
1362
|
#
|
|
1335
1363
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateHostedConnection AWS API Documentation
|
|
@@ -1477,6 +1505,7 @@ module Aws::DirectConnect
|
|
|
1477
1505
|
# * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
|
|
1478
1506
|
# * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
|
|
1479
1507
|
# * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
|
|
1508
|
+
# * {Types::VirtualInterface#rate_limit #rate_limit} => String
|
|
1480
1509
|
#
|
|
1481
1510
|
# @example Request syntax with placeholder values
|
|
1482
1511
|
#
|
|
@@ -1528,6 +1557,7 @@ module Aws::DirectConnect
|
|
|
1528
1557
|
# resp.tags[0].key #=> String
|
|
1529
1558
|
# resp.tags[0].value #=> String
|
|
1530
1559
|
# resp.site_link_enabled #=> Boolean
|
|
1560
|
+
# resp.rate_limit #=> String
|
|
1531
1561
|
#
|
|
1532
1562
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateVirtualInterface AWS API Documentation
|
|
1533
1563
|
#
|
|
@@ -1808,6 +1838,7 @@ module Aws::DirectConnect
|
|
|
1808
1838
|
# resp.virtual_interface.tags[0].key #=> String
|
|
1809
1839
|
# resp.virtual_interface.tags[0].value #=> String
|
|
1810
1840
|
# resp.virtual_interface.site_link_enabled #=> Boolean
|
|
1841
|
+
# resp.virtual_interface.rate_limit #=> String
|
|
1811
1842
|
#
|
|
1812
1843
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateBGPPeer AWS API Documentation
|
|
1813
1844
|
#
|
|
@@ -1888,6 +1919,7 @@ module Aws::DirectConnect
|
|
|
1888
1919
|
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
|
1889
1920
|
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
|
1890
1921
|
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
|
1922
|
+
# * {Types::Connection#rate_limiter_status #rate_limiter_status} => Types::RateLimiterStatus
|
|
1891
1923
|
# * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
|
|
1892
1924
|
#
|
|
1893
1925
|
# @example Request syntax with placeholder values
|
|
@@ -1937,6 +1969,10 @@ module Aws::DirectConnect
|
|
|
1937
1969
|
# resp.mac_sec_keys[0].ckn #=> String
|
|
1938
1970
|
# resp.mac_sec_keys[0].state #=> String
|
|
1939
1971
|
# resp.mac_sec_keys[0].start_on #=> String
|
|
1972
|
+
# resp.rate_limiter_status.max_allowed #=> Integer
|
|
1973
|
+
# resp.rate_limiter_status.in_use #=> Integer
|
|
1974
|
+
# resp.rate_limiter_status.remaining #=> Integer
|
|
1975
|
+
# resp.rate_limiter_status.total_bandwidth #=> String
|
|
1940
1976
|
# resp.partner_interconnect_mac_sec_capable #=> Boolean
|
|
1941
1977
|
#
|
|
1942
1978
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateConnection AWS API Documentation
|
|
@@ -2367,6 +2403,7 @@ module Aws::DirectConnect
|
|
|
2367
2403
|
# * {Types::Lag#mac_sec_capable #mac_sec_capable} => Boolean
|
|
2368
2404
|
# * {Types::Lag#encryption_mode #encryption_mode} => String
|
|
2369
2405
|
# * {Types::Lag#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
|
2406
|
+
# * {Types::Lag#rate_limiter_status #rate_limiter_status} => Types::RateLimiterStatus
|
|
2370
2407
|
#
|
|
2371
2408
|
# @example Request syntax with placeholder values
|
|
2372
2409
|
#
|
|
@@ -2435,6 +2472,10 @@ module Aws::DirectConnect
|
|
|
2435
2472
|
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
|
2436
2473
|
# resp.connections[0].mac_sec_keys[0].state #=> String
|
|
2437
2474
|
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
|
2475
|
+
# resp.connections[0].rate_limiter_status.max_allowed #=> Integer
|
|
2476
|
+
# resp.connections[0].rate_limiter_status.in_use #=> Integer
|
|
2477
|
+
# resp.connections[0].rate_limiter_status.remaining #=> Integer
|
|
2478
|
+
# resp.connections[0].rate_limiter_status.total_bandwidth #=> String
|
|
2438
2479
|
# resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
|
|
2439
2480
|
# resp.allows_hosted_connections #=> Boolean
|
|
2440
2481
|
# resp.jumbo_frame_capable #=> Boolean
|
|
@@ -2450,6 +2491,10 @@ module Aws::DirectConnect
|
|
|
2450
2491
|
# resp.mac_sec_keys[0].ckn #=> String
|
|
2451
2492
|
# resp.mac_sec_keys[0].state #=> String
|
|
2452
2493
|
# resp.mac_sec_keys[0].start_on #=> String
|
|
2494
|
+
# resp.rate_limiter_status.max_allowed #=> Integer
|
|
2495
|
+
# resp.rate_limiter_status.in_use #=> Integer
|
|
2496
|
+
# resp.rate_limiter_status.remaining #=> Integer
|
|
2497
|
+
# resp.rate_limiter_status.total_bandwidth #=> String
|
|
2453
2498
|
#
|
|
2454
2499
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateLag AWS API Documentation
|
|
2455
2500
|
#
|
|
@@ -2513,6 +2558,7 @@ module Aws::DirectConnect
|
|
|
2513
2558
|
# * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
|
|
2514
2559
|
# * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
|
|
2515
2560
|
# * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
|
|
2561
|
+
# * {Types::VirtualInterface#rate_limit #rate_limit} => String
|
|
2516
2562
|
#
|
|
2517
2563
|
# @example Request syntax with placeholder values
|
|
2518
2564
|
#
|
|
@@ -2537,6 +2583,7 @@ module Aws::DirectConnect
|
|
|
2537
2583
|
# },
|
|
2538
2584
|
# ],
|
|
2539
2585
|
# enable_site_link: false,
|
|
2586
|
+
# rate_limit: "RateLimit",
|
|
2540
2587
|
# },
|
|
2541
2588
|
# })
|
|
2542
2589
|
#
|
|
@@ -2583,6 +2630,7 @@ module Aws::DirectConnect
|
|
|
2583
2630
|
# resp.tags[0].key #=> String
|
|
2584
2631
|
# resp.tags[0].value #=> String
|
|
2585
2632
|
# resp.site_link_enabled #=> Boolean
|
|
2633
|
+
# resp.rate_limit #=> String
|
|
2586
2634
|
#
|
|
2587
2635
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreatePrivateVirtualInterface AWS API Documentation
|
|
2588
2636
|
#
|
|
@@ -2637,6 +2685,7 @@ module Aws::DirectConnect
|
|
|
2637
2685
|
# * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
|
|
2638
2686
|
# * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
|
|
2639
2687
|
# * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
|
|
2688
|
+
# * {Types::VirtualInterface#rate_limit #rate_limit} => String
|
|
2640
2689
|
#
|
|
2641
2690
|
# @example Request syntax with placeholder values
|
|
2642
2691
|
#
|
|
@@ -2662,6 +2711,7 @@ module Aws::DirectConnect
|
|
|
2662
2711
|
# value: "TagValue",
|
|
2663
2712
|
# },
|
|
2664
2713
|
# ],
|
|
2714
|
+
# rate_limit: "RateLimit",
|
|
2665
2715
|
# },
|
|
2666
2716
|
# })
|
|
2667
2717
|
#
|
|
@@ -2708,6 +2758,7 @@ module Aws::DirectConnect
|
|
|
2708
2758
|
# resp.tags[0].key #=> String
|
|
2709
2759
|
# resp.tags[0].value #=> String
|
|
2710
2760
|
# resp.site_link_enabled #=> Boolean
|
|
2761
|
+
# resp.rate_limit #=> String
|
|
2711
2762
|
#
|
|
2712
2763
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreatePublicVirtualInterface AWS API Documentation
|
|
2713
2764
|
#
|
|
@@ -2772,6 +2823,7 @@ module Aws::DirectConnect
|
|
|
2772
2823
|
# },
|
|
2773
2824
|
# ],
|
|
2774
2825
|
# enable_site_link: false,
|
|
2826
|
+
# rate_limit: "RateLimit",
|
|
2775
2827
|
# },
|
|
2776
2828
|
# })
|
|
2777
2829
|
#
|
|
@@ -2818,6 +2870,7 @@ module Aws::DirectConnect
|
|
|
2818
2870
|
# resp.virtual_interface.tags[0].key #=> String
|
|
2819
2871
|
# resp.virtual_interface.tags[0].value #=> String
|
|
2820
2872
|
# resp.virtual_interface.site_link_enabled #=> Boolean
|
|
2873
|
+
# resp.virtual_interface.rate_limit #=> String
|
|
2821
2874
|
#
|
|
2822
2875
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateTransitVirtualInterface AWS API Documentation
|
|
2823
2876
|
#
|
|
@@ -2842,31 +2895,41 @@ module Aws::DirectConnect
|
|
|
2842
2895
|
# provide a number greater than the maximum, an error is returned. Use
|
|
2843
2896
|
# `asnLong` instead.
|
|
2844
2897
|
#
|
|
2845
|
-
#
|
|
2846
|
-
#
|
|
2847
|
-
#
|
|
2848
|
-
# * The `asnLong` attribute accepts both ASN and long ASN ranges.
|
|
2898
|
+
# * You can use `asnLong` or `asn`, but not both. We recommend using
|
|
2899
|
+
# `asnLong` as it supports a greater pool of numbers.
|
|
2849
2900
|
#
|
|
2850
2901
|
# * If you provide a value in the same API call for both `asn` and
|
|
2851
2902
|
# `asnLong`, the API will only accept the value for `asnLong`.
|
|
2852
2903
|
#
|
|
2853
|
-
#
|
|
2904
|
+
# * If you enter a 4-byte ASN for the `asn` parameter, the API returns
|
|
2905
|
+
# an error.
|
|
2906
|
+
#
|
|
2907
|
+
# * If you are using a 2-byte ASN, the API response will include the
|
|
2908
|
+
# 2-byte value for both the `asn` and `asnLong` fields.
|
|
2854
2909
|
#
|
|
2855
2910
|
# @option params [Integer] :asn_long
|
|
2856
2911
|
# The long ASN for the BGP peer to be deleted from a Direct Connect
|
|
2857
2912
|
# virtual interface. The valid range is from 1 to 4294967294 for BGP
|
|
2858
2913
|
# configuration.
|
|
2859
2914
|
#
|
|
2860
|
-
#
|
|
2861
|
-
#
|
|
2915
|
+
# Note the following limitations when using `asnLong`:
|
|
2916
|
+
#
|
|
2917
|
+
# * You can use `asnLong` or `asn`, but not both. We recommend using
|
|
2918
|
+
# `asnLong` as it supports a greater pool of numbers.
|
|
2919
|
+
#
|
|
2920
|
+
# * `asnLong` accepts any valid ASN value, regardless if it's 2-byte or
|
|
2921
|
+
# 4-byte.
|
|
2862
2922
|
#
|
|
2863
|
-
#
|
|
2923
|
+
# * When using a 4-byte `asnLong`, the API response returns `0` for the
|
|
2924
|
+
# legacy `asn` attribute since 4-byte ASN values exceed the maximum
|
|
2925
|
+
# supported value of 2,147,483,647.
|
|
2926
|
+
#
|
|
2927
|
+
# * If you are using a 2-byte ASN, the API response will include the
|
|
2928
|
+
# 2-byte value for both the `asn` and `asnLong` fields.
|
|
2864
2929
|
#
|
|
2865
2930
|
# * If you provide a value in the same API call for both `asn` and
|
|
2866
2931
|
# `asnLong`, the API will only accept the value for `asnLong`.
|
|
2867
2932
|
#
|
|
2868
|
-
# </note>
|
|
2869
|
-
#
|
|
2870
2933
|
# @option params [String] :customer_address
|
|
2871
2934
|
# The IP address assigned to the customer interface.
|
|
2872
2935
|
#
|
|
@@ -2930,6 +2993,7 @@ module Aws::DirectConnect
|
|
|
2930
2993
|
# resp.virtual_interface.tags[0].key #=> String
|
|
2931
2994
|
# resp.virtual_interface.tags[0].value #=> String
|
|
2932
2995
|
# resp.virtual_interface.site_link_enabled #=> Boolean
|
|
2996
|
+
# resp.virtual_interface.rate_limit #=> String
|
|
2933
2997
|
#
|
|
2934
2998
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteBGPPeer AWS API Documentation
|
|
2935
2999
|
#
|
|
@@ -2974,6 +3038,7 @@ module Aws::DirectConnect
|
|
|
2974
3038
|
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
|
2975
3039
|
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
|
2976
3040
|
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
|
3041
|
+
# * {Types::Connection#rate_limiter_status #rate_limiter_status} => Types::RateLimiterStatus
|
|
2977
3042
|
# * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
|
|
2978
3043
|
#
|
|
2979
3044
|
# @example Request syntax with placeholder values
|
|
@@ -3012,6 +3077,10 @@ module Aws::DirectConnect
|
|
|
3012
3077
|
# resp.mac_sec_keys[0].ckn #=> String
|
|
3013
3078
|
# resp.mac_sec_keys[0].state #=> String
|
|
3014
3079
|
# resp.mac_sec_keys[0].start_on #=> String
|
|
3080
|
+
# resp.rate_limiter_status.max_allowed #=> Integer
|
|
3081
|
+
# resp.rate_limiter_status.in_use #=> Integer
|
|
3082
|
+
# resp.rate_limiter_status.remaining #=> Integer
|
|
3083
|
+
# resp.rate_limiter_status.total_bandwidth #=> String
|
|
3015
3084
|
# resp.partner_interconnect_mac_sec_capable #=> Boolean
|
|
3016
3085
|
#
|
|
3017
3086
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteConnection AWS API Documentation
|
|
@@ -3221,6 +3290,7 @@ module Aws::DirectConnect
|
|
|
3221
3290
|
# * {Types::Lag#mac_sec_capable #mac_sec_capable} => Boolean
|
|
3222
3291
|
# * {Types::Lag#encryption_mode #encryption_mode} => String
|
|
3223
3292
|
# * {Types::Lag#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
|
3293
|
+
# * {Types::Lag#rate_limiter_status #rate_limiter_status} => Types::RateLimiterStatus
|
|
3224
3294
|
#
|
|
3225
3295
|
# @example Request syntax with placeholder values
|
|
3226
3296
|
#
|
|
@@ -3271,6 +3341,10 @@ module Aws::DirectConnect
|
|
|
3271
3341
|
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
|
3272
3342
|
# resp.connections[0].mac_sec_keys[0].state #=> String
|
|
3273
3343
|
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
|
3344
|
+
# resp.connections[0].rate_limiter_status.max_allowed #=> Integer
|
|
3345
|
+
# resp.connections[0].rate_limiter_status.in_use #=> Integer
|
|
3346
|
+
# resp.connections[0].rate_limiter_status.remaining #=> Integer
|
|
3347
|
+
# resp.connections[0].rate_limiter_status.total_bandwidth #=> String
|
|
3274
3348
|
# resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
|
|
3275
3349
|
# resp.allows_hosted_connections #=> Boolean
|
|
3276
3350
|
# resp.jumbo_frame_capable #=> Boolean
|
|
@@ -3286,6 +3360,10 @@ module Aws::DirectConnect
|
|
|
3286
3360
|
# resp.mac_sec_keys[0].ckn #=> String
|
|
3287
3361
|
# resp.mac_sec_keys[0].state #=> String
|
|
3288
3362
|
# resp.mac_sec_keys[0].start_on #=> String
|
|
3363
|
+
# resp.rate_limiter_status.max_allowed #=> Integer
|
|
3364
|
+
# resp.rate_limiter_status.in_use #=> Integer
|
|
3365
|
+
# resp.rate_limiter_status.remaining #=> Integer
|
|
3366
|
+
# resp.rate_limiter_status.total_bandwidth #=> String
|
|
3289
3367
|
#
|
|
3290
3368
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteLag AWS API Documentation
|
|
3291
3369
|
#
|
|
@@ -3440,6 +3518,10 @@ module Aws::DirectConnect
|
|
|
3440
3518
|
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
|
3441
3519
|
# resp.connections[0].mac_sec_keys[0].state #=> String
|
|
3442
3520
|
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
|
3521
|
+
# resp.connections[0].rate_limiter_status.max_allowed #=> Integer
|
|
3522
|
+
# resp.connections[0].rate_limiter_status.in_use #=> Integer
|
|
3523
|
+
# resp.connections[0].rate_limiter_status.remaining #=> Integer
|
|
3524
|
+
# resp.connections[0].rate_limiter_status.total_bandwidth #=> String
|
|
3443
3525
|
# resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
|
|
3444
3526
|
# resp.next_token #=> String
|
|
3445
3527
|
#
|
|
@@ -3508,6 +3590,10 @@ module Aws::DirectConnect
|
|
|
3508
3590
|
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
|
3509
3591
|
# resp.connections[0].mac_sec_keys[0].state #=> String
|
|
3510
3592
|
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
|
3593
|
+
# resp.connections[0].rate_limiter_status.max_allowed #=> Integer
|
|
3594
|
+
# resp.connections[0].rate_limiter_status.in_use #=> Integer
|
|
3595
|
+
# resp.connections[0].rate_limiter_status.remaining #=> Integer
|
|
3596
|
+
# resp.connections[0].rate_limiter_status.total_bandwidth #=> String
|
|
3511
3597
|
# resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
|
|
3512
3598
|
# resp.next_token #=> String
|
|
3513
3599
|
#
|
|
@@ -3896,6 +3982,10 @@ module Aws::DirectConnect
|
|
|
3896
3982
|
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
|
3897
3983
|
# resp.connections[0].mac_sec_keys[0].state #=> String
|
|
3898
3984
|
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
|
3985
|
+
# resp.connections[0].rate_limiter_status.max_allowed #=> Integer
|
|
3986
|
+
# resp.connections[0].rate_limiter_status.in_use #=> Integer
|
|
3987
|
+
# resp.connections[0].rate_limiter_status.remaining #=> Integer
|
|
3988
|
+
# resp.connections[0].rate_limiter_status.total_bandwidth #=> String
|
|
3899
3989
|
# resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
|
|
3900
3990
|
# resp.next_token #=> String
|
|
3901
3991
|
#
|
|
@@ -4105,6 +4195,10 @@ module Aws::DirectConnect
|
|
|
4105
4195
|
# resp.lags[0].connections[0].mac_sec_keys[0].ckn #=> String
|
|
4106
4196
|
# resp.lags[0].connections[0].mac_sec_keys[0].state #=> String
|
|
4107
4197
|
# resp.lags[0].connections[0].mac_sec_keys[0].start_on #=> String
|
|
4198
|
+
# resp.lags[0].connections[0].rate_limiter_status.max_allowed #=> Integer
|
|
4199
|
+
# resp.lags[0].connections[0].rate_limiter_status.in_use #=> Integer
|
|
4200
|
+
# resp.lags[0].connections[0].rate_limiter_status.remaining #=> Integer
|
|
4201
|
+
# resp.lags[0].connections[0].rate_limiter_status.total_bandwidth #=> String
|
|
4108
4202
|
# resp.lags[0].connections[0].partner_interconnect_mac_sec_capable #=> Boolean
|
|
4109
4203
|
# resp.lags[0].allows_hosted_connections #=> Boolean
|
|
4110
4204
|
# resp.lags[0].jumbo_frame_capable #=> Boolean
|
|
@@ -4120,6 +4214,10 @@ module Aws::DirectConnect
|
|
|
4120
4214
|
# resp.lags[0].mac_sec_keys[0].ckn #=> String
|
|
4121
4215
|
# resp.lags[0].mac_sec_keys[0].state #=> String
|
|
4122
4216
|
# resp.lags[0].mac_sec_keys[0].start_on #=> String
|
|
4217
|
+
# resp.lags[0].rate_limiter_status.max_allowed #=> Integer
|
|
4218
|
+
# resp.lags[0].rate_limiter_status.in_use #=> Integer
|
|
4219
|
+
# resp.lags[0].rate_limiter_status.remaining #=> Integer
|
|
4220
|
+
# resp.lags[0].rate_limiter_status.total_bandwidth #=> String
|
|
4123
4221
|
# resp.next_token #=> String
|
|
4124
4222
|
#
|
|
4125
4223
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeLags AWS API Documentation
|
|
@@ -4337,8 +4435,8 @@ module Aws::DirectConnect
|
|
|
4337
4435
|
# A virtual interface (VLAN) transmits the traffic between the Direct
|
|
4338
4436
|
# Connect location and the customer network.
|
|
4339
4437
|
#
|
|
4340
|
-
# * If you're using an `asn`, the response includes ASN value in
|
|
4341
|
-
# the `asn` and `asnLong` fields.
|
|
4438
|
+
# * If you're using an `asn`, the response includes the ASN value in
|
|
4439
|
+
# both the `asn` and `asnLong` fields.
|
|
4342
4440
|
#
|
|
4343
4441
|
# * If you're using `asnLong`, the response returns a value of `0`
|
|
4344
4442
|
# (zero) for the `asn` attribute because it exceeds the highest ASN
|
|
@@ -4419,6 +4517,7 @@ module Aws::DirectConnect
|
|
|
4419
4517
|
# resp.virtual_interfaces[0].tags[0].key #=> String
|
|
4420
4518
|
# resp.virtual_interfaces[0].tags[0].value #=> String
|
|
4421
4519
|
# resp.virtual_interfaces[0].site_link_enabled #=> Boolean
|
|
4520
|
+
# resp.virtual_interfaces[0].rate_limit #=> String
|
|
4422
4521
|
# resp.next_token #=> String
|
|
4423
4522
|
#
|
|
4424
4523
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeVirtualInterfaces AWS API Documentation
|
|
@@ -4474,6 +4573,7 @@ module Aws::DirectConnect
|
|
|
4474
4573
|
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
|
4475
4574
|
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
|
4476
4575
|
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
|
4576
|
+
# * {Types::Connection#rate_limiter_status #rate_limiter_status} => Types::RateLimiterStatus
|
|
4477
4577
|
# * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
|
|
4478
4578
|
#
|
|
4479
4579
|
# @example Request syntax with placeholder values
|
|
@@ -4513,6 +4613,10 @@ module Aws::DirectConnect
|
|
|
4513
4613
|
# resp.mac_sec_keys[0].ckn #=> String
|
|
4514
4614
|
# resp.mac_sec_keys[0].state #=> String
|
|
4515
4615
|
# resp.mac_sec_keys[0].start_on #=> String
|
|
4616
|
+
# resp.rate_limiter_status.max_allowed #=> Integer
|
|
4617
|
+
# resp.rate_limiter_status.in_use #=> Integer
|
|
4618
|
+
# resp.rate_limiter_status.remaining #=> Integer
|
|
4619
|
+
# resp.rate_limiter_status.total_bandwidth #=> String
|
|
4516
4620
|
# resp.partner_interconnect_mac_sec_capable #=> Boolean
|
|
4517
4621
|
#
|
|
4518
4622
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DisassociateConnectionFromLag AWS API Documentation
|
|
@@ -4846,6 +4950,7 @@ module Aws::DirectConnect
|
|
|
4846
4950
|
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
|
4847
4951
|
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
|
4848
4952
|
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
|
4953
|
+
# * {Types::Connection#rate_limiter_status #rate_limiter_status} => Types::RateLimiterStatus
|
|
4849
4954
|
# * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
|
|
4850
4955
|
#
|
|
4851
4956
|
# @example Request syntax with placeholder values
|
|
@@ -4886,6 +4991,10 @@ module Aws::DirectConnect
|
|
|
4886
4991
|
# resp.mac_sec_keys[0].ckn #=> String
|
|
4887
4992
|
# resp.mac_sec_keys[0].state #=> String
|
|
4888
4993
|
# resp.mac_sec_keys[0].start_on #=> String
|
|
4994
|
+
# resp.rate_limiter_status.max_allowed #=> Integer
|
|
4995
|
+
# resp.rate_limiter_status.in_use #=> Integer
|
|
4996
|
+
# resp.rate_limiter_status.remaining #=> Integer
|
|
4997
|
+
# resp.rate_limiter_status.total_bandwidth #=> String
|
|
4889
4998
|
# resp.partner_interconnect_mac_sec_capable #=> Boolean
|
|
4890
4999
|
#
|
|
4891
5000
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateConnection AWS API Documentation
|
|
@@ -5062,6 +5171,7 @@ module Aws::DirectConnect
|
|
|
5062
5171
|
# * {Types::Lag#mac_sec_capable #mac_sec_capable} => Boolean
|
|
5063
5172
|
# * {Types::Lag#encryption_mode #encryption_mode} => String
|
|
5064
5173
|
# * {Types::Lag#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
|
5174
|
+
# * {Types::Lag#rate_limiter_status #rate_limiter_status} => Types::RateLimiterStatus
|
|
5065
5175
|
#
|
|
5066
5176
|
# @example Request syntax with placeholder values
|
|
5067
5177
|
#
|
|
@@ -5115,6 +5225,10 @@ module Aws::DirectConnect
|
|
|
5115
5225
|
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
|
5116
5226
|
# resp.connections[0].mac_sec_keys[0].state #=> String
|
|
5117
5227
|
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
|
5228
|
+
# resp.connections[0].rate_limiter_status.max_allowed #=> Integer
|
|
5229
|
+
# resp.connections[0].rate_limiter_status.in_use #=> Integer
|
|
5230
|
+
# resp.connections[0].rate_limiter_status.remaining #=> Integer
|
|
5231
|
+
# resp.connections[0].rate_limiter_status.total_bandwidth #=> String
|
|
5118
5232
|
# resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
|
|
5119
5233
|
# resp.allows_hosted_connections #=> Boolean
|
|
5120
5234
|
# resp.jumbo_frame_capable #=> Boolean
|
|
@@ -5130,6 +5244,10 @@ module Aws::DirectConnect
|
|
|
5130
5244
|
# resp.mac_sec_keys[0].ckn #=> String
|
|
5131
5245
|
# resp.mac_sec_keys[0].state #=> String
|
|
5132
5246
|
# resp.mac_sec_keys[0].start_on #=> String
|
|
5247
|
+
# resp.rate_limiter_status.max_allowed #=> Integer
|
|
5248
|
+
# resp.rate_limiter_status.in_use #=> Integer
|
|
5249
|
+
# resp.rate_limiter_status.remaining #=> Integer
|
|
5250
|
+
# resp.rate_limiter_status.total_bandwidth #=> String
|
|
5133
5251
|
#
|
|
5134
5252
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateLag AWS API Documentation
|
|
5135
5253
|
#
|
|
@@ -5165,6 +5283,11 @@ module Aws::DirectConnect
|
|
|
5165
5283
|
# @option params [String] :virtual_interface_name
|
|
5166
5284
|
# The name of the virtual private interface.
|
|
5167
5285
|
#
|
|
5286
|
+
# @option params [String] :rate_limit
|
|
5287
|
+
# The rate limit (bandwidth allocation) to apply to the virtual
|
|
5288
|
+
# interface. Use this to update the bandwidth allocation on an existing
|
|
5289
|
+
# virtual interface.
|
|
5290
|
+
#
|
|
5168
5291
|
# @return [Types::VirtualInterface] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5169
5292
|
#
|
|
5170
5293
|
# * {Types::VirtualInterface#owner_account #owner_account} => String
|
|
@@ -5194,6 +5317,7 @@ module Aws::DirectConnect
|
|
|
5194
5317
|
# * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
|
|
5195
5318
|
# * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
|
|
5196
5319
|
# * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
|
|
5320
|
+
# * {Types::VirtualInterface#rate_limit #rate_limit} => String
|
|
5197
5321
|
#
|
|
5198
5322
|
# @example Request syntax with placeholder values
|
|
5199
5323
|
#
|
|
@@ -5202,6 +5326,7 @@ module Aws::DirectConnect
|
|
|
5202
5326
|
# mtu: 1,
|
|
5203
5327
|
# enable_site_link: false,
|
|
5204
5328
|
# virtual_interface_name: "VirtualInterfaceName",
|
|
5329
|
+
# rate_limit: "RateLimit",
|
|
5205
5330
|
# })
|
|
5206
5331
|
#
|
|
5207
5332
|
# @example Response structure
|
|
@@ -5247,6 +5372,7 @@ module Aws::DirectConnect
|
|
|
5247
5372
|
# resp.tags[0].key #=> String
|
|
5248
5373
|
# resp.tags[0].value #=> String
|
|
5249
5374
|
# resp.site_link_enabled #=> Boolean
|
|
5375
|
+
# resp.rate_limit #=> String
|
|
5250
5376
|
#
|
|
5251
5377
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateVirtualInterfaceAttributes AWS API Documentation
|
|
5252
5378
|
#
|
|
@@ -5275,7 +5401,7 @@ module Aws::DirectConnect
|
|
|
5275
5401
|
tracer: tracer
|
|
5276
5402
|
)
|
|
5277
5403
|
context[:gem_name] = 'aws-sdk-directconnect'
|
|
5278
|
-
context[:gem_version] = '1.
|
|
5404
|
+
context[:gem_version] = '1.111.0'
|
|
5279
5405
|
Seahorse::Client::Request.new(handlers, context)
|
|
5280
5406
|
end
|
|
5281
5407
|
|