aws-sdk-directconnect 1.96.0 → 1.97.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 93738cb615372a0633c090f2630d167f1a594800929c76161ae794c2076ded19
4
- data.tar.gz: e0e3069b86956b9ce5dd09131dd9915e68b7ac2b629b83341e71670b3b69bff3
3
+ metadata.gz: ebda36a7281469c83ba7a43e74fd2a606b9dae79c278e1b9722f8ce6ddd130df
4
+ data.tar.gz: b6a87933553b0d421a4176838e41ff1582e9f67d340ef0bf8725fd951f395918
5
5
  SHA512:
6
- metadata.gz: 8eb9ef7e5a919303220d7b7f1069f7a77aaebc097269135db7921f61f2c0671b94860adc5e9ba21adb41afa8f309dce89cf512a6c95230e5d1e650e7ab510ec8
7
- data.tar.gz: 4213f443a6aa8107e497b4b955aac623743b5fc5d5573008b0b07d068959a053138659ff2e61e193e3c5e52052fc326a549ab1911c08587caaff1501fccebb0e
6
+ metadata.gz: 6e915e6a043d25970e89dcd28cc0d3b0b0202204c5d75ab18219dff5c39b49473a3c8c6ea6775398a5091c5e7b522f3cc5579ce64d8996727a27f9ae87eaceff
7
+ data.tar.gz: 9874accdee62aacb13f263454b890f408edea83c0f19cdb24c7f5631a9d16322f9418bcb4c224dbc97235d7dfc36a6621f6824870e99240bfab87c592e9f506d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.97.0 (2025-08-14)
5
+ ------------------
6
+
7
+ * Feature - Added pagination support for DescribeHostedConnections, DescribeVirtualInterfaces, DescribeConnections, DescribeInterconnects, DescribeLags. Added asnLong support for BGP peer operations which supports a large range.
8
+
4
9
  1.96.0 (2025-08-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.96.0
1
+ 1.97.0
@@ -812,6 +812,7 @@ module Aws::DirectConnect
812
812
  # * {Types::VirtualInterface#virtual_interface_name #virtual_interface_name} => String
813
813
  # * {Types::VirtualInterface#vlan #vlan} => Integer
814
814
  # * {Types::VirtualInterface#asn #asn} => Integer
815
+ # * {Types::VirtualInterface#asn_long #asn_long} => Integer
815
816
  # * {Types::VirtualInterface#amazon_side_asn #amazon_side_asn} => Integer
816
817
  # * {Types::VirtualInterface#auth_key #auth_key} => String
817
818
  # * {Types::VirtualInterface#amazon_address #amazon_address} => String
@@ -839,7 +840,8 @@ module Aws::DirectConnect
839
840
  # new_private_virtual_interface_allocation: { # required
840
841
  # virtual_interface_name: "VirtualInterfaceName", # required
841
842
  # vlan: 1, # required
842
- # asn: 1, # required
843
+ # asn: 1,
844
+ # asn_long: 1,
843
845
  # mtu: 1,
844
846
  # auth_key: "BGPAuthKey",
845
847
  # amazon_address: "AmazonAddress",
@@ -864,6 +866,7 @@ module Aws::DirectConnect
864
866
  # resp.virtual_interface_name #=> String
865
867
  # resp.vlan #=> Integer
866
868
  # resp.asn #=> Integer
869
+ # resp.asn_long #=> Integer
867
870
  # resp.amazon_side_asn #=> Integer
868
871
  # resp.auth_key #=> String
869
872
  # resp.amazon_address #=> String
@@ -880,6 +883,7 @@ module Aws::DirectConnect
880
883
  # resp.bgp_peers #=> Array
881
884
  # resp.bgp_peers[0].bgp_peer_id #=> String
882
885
  # resp.bgp_peers[0].asn #=> Integer
886
+ # resp.bgp_peers[0].asn_long #=> Integer
883
887
  # resp.bgp_peers[0].auth_key #=> String
884
888
  # resp.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
885
889
  # resp.bgp_peers[0].amazon_address #=> String
@@ -943,6 +947,7 @@ module Aws::DirectConnect
943
947
  # * {Types::VirtualInterface#virtual_interface_name #virtual_interface_name} => String
944
948
  # * {Types::VirtualInterface#vlan #vlan} => Integer
945
949
  # * {Types::VirtualInterface#asn #asn} => Integer
950
+ # * {Types::VirtualInterface#asn_long #asn_long} => Integer
946
951
  # * {Types::VirtualInterface#amazon_side_asn #amazon_side_asn} => Integer
947
952
  # * {Types::VirtualInterface#auth_key #auth_key} => String
948
953
  # * {Types::VirtualInterface#amazon_address #amazon_address} => String
@@ -970,7 +975,8 @@ module Aws::DirectConnect
970
975
  # new_public_virtual_interface_allocation: { # required
971
976
  # virtual_interface_name: "VirtualInterfaceName", # required
972
977
  # vlan: 1, # required
973
- # asn: 1, # required
978
+ # asn: 1,
979
+ # asn_long: 1,
974
980
  # auth_key: "BGPAuthKey",
975
981
  # amazon_address: "AmazonAddress",
976
982
  # customer_address: "CustomerAddress",
@@ -999,6 +1005,7 @@ module Aws::DirectConnect
999
1005
  # resp.virtual_interface_name #=> String
1000
1006
  # resp.vlan #=> Integer
1001
1007
  # resp.asn #=> Integer
1008
+ # resp.asn_long #=> Integer
1002
1009
  # resp.amazon_side_asn #=> Integer
1003
1010
  # resp.auth_key #=> String
1004
1011
  # resp.amazon_address #=> String
@@ -1015,6 +1022,7 @@ module Aws::DirectConnect
1015
1022
  # resp.bgp_peers #=> Array
1016
1023
  # resp.bgp_peers[0].bgp_peer_id #=> String
1017
1024
  # resp.bgp_peers[0].asn #=> Integer
1025
+ # resp.bgp_peers[0].asn_long #=> Integer
1018
1026
  # resp.bgp_peers[0].auth_key #=> String
1019
1027
  # resp.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
1020
1028
  # resp.bgp_peers[0].amazon_address #=> String
@@ -1076,6 +1084,7 @@ module Aws::DirectConnect
1076
1084
  # virtual_interface_name: "VirtualInterfaceName",
1077
1085
  # vlan: 1,
1078
1086
  # asn: 1,
1087
+ # asn_long: 1,
1079
1088
  # mtu: 1,
1080
1089
  # auth_key: "BGPAuthKey",
1081
1090
  # amazon_address: "AmazonAddress",
@@ -1100,6 +1109,7 @@ module Aws::DirectConnect
1100
1109
  # resp.virtual_interface.virtual_interface_name #=> String
1101
1110
  # resp.virtual_interface.vlan #=> Integer
1102
1111
  # resp.virtual_interface.asn #=> Integer
1112
+ # resp.virtual_interface.asn_long #=> Integer
1103
1113
  # resp.virtual_interface.amazon_side_asn #=> Integer
1104
1114
  # resp.virtual_interface.auth_key #=> String
1105
1115
  # resp.virtual_interface.amazon_address #=> String
@@ -1116,6 +1126,7 @@ module Aws::DirectConnect
1116
1126
  # resp.virtual_interface.bgp_peers #=> Array
1117
1127
  # resp.virtual_interface.bgp_peers[0].bgp_peer_id #=> String
1118
1128
  # resp.virtual_interface.bgp_peers[0].asn #=> Integer
1129
+ # resp.virtual_interface.bgp_peers[0].asn_long #=> Integer
1119
1130
  # resp.virtual_interface.bgp_peers[0].auth_key #=> String
1120
1131
  # resp.virtual_interface.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
1121
1132
  # resp.virtual_interface.bgp_peers[0].amazon_address #=> String
@@ -1449,6 +1460,7 @@ module Aws::DirectConnect
1449
1460
  # * {Types::VirtualInterface#virtual_interface_name #virtual_interface_name} => String
1450
1461
  # * {Types::VirtualInterface#vlan #vlan} => Integer
1451
1462
  # * {Types::VirtualInterface#asn #asn} => Integer
1463
+ # * {Types::VirtualInterface#asn_long #asn_long} => Integer
1452
1464
  # * {Types::VirtualInterface#amazon_side_asn #amazon_side_asn} => Integer
1453
1465
  # * {Types::VirtualInterface#auth_key #auth_key} => String
1454
1466
  # * {Types::VirtualInterface#amazon_address #amazon_address} => String
@@ -1485,6 +1497,7 @@ module Aws::DirectConnect
1485
1497
  # resp.virtual_interface_name #=> String
1486
1498
  # resp.vlan #=> Integer
1487
1499
  # resp.asn #=> Integer
1500
+ # resp.asn_long #=> Integer
1488
1501
  # resp.amazon_side_asn #=> Integer
1489
1502
  # resp.auth_key #=> String
1490
1503
  # resp.amazon_address #=> String
@@ -1501,6 +1514,7 @@ module Aws::DirectConnect
1501
1514
  # resp.bgp_peers #=> Array
1502
1515
  # resp.bgp_peers[0].bgp_peer_id #=> String
1503
1516
  # resp.bgp_peers[0].asn #=> Integer
1517
+ # resp.bgp_peers[0].asn_long #=> Integer
1504
1518
  # resp.bgp_peers[0].auth_key #=> String
1505
1519
  # resp.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
1506
1520
  # resp.bgp_peers[0].amazon_address #=> String
@@ -1745,6 +1759,7 @@ module Aws::DirectConnect
1745
1759
  # virtual_interface_id: "VirtualInterfaceId",
1746
1760
  # new_bgp_peer: {
1747
1761
  # asn: 1,
1762
+ # asn_long: 1,
1748
1763
  # auth_key: "BGPAuthKey",
1749
1764
  # address_family: "ipv4", # accepts ipv4, ipv6
1750
1765
  # amazon_address: "AmazonAddress",
@@ -1762,6 +1777,7 @@ module Aws::DirectConnect
1762
1777
  # resp.virtual_interface.virtual_interface_name #=> String
1763
1778
  # resp.virtual_interface.vlan #=> Integer
1764
1779
  # resp.virtual_interface.asn #=> Integer
1780
+ # resp.virtual_interface.asn_long #=> Integer
1765
1781
  # resp.virtual_interface.amazon_side_asn #=> Integer
1766
1782
  # resp.virtual_interface.auth_key #=> String
1767
1783
  # resp.virtual_interface.amazon_address #=> String
@@ -1778,6 +1794,7 @@ module Aws::DirectConnect
1778
1794
  # resp.virtual_interface.bgp_peers #=> Array
1779
1795
  # resp.virtual_interface.bgp_peers[0].bgp_peer_id #=> String
1780
1796
  # resp.virtual_interface.bgp_peers[0].asn #=> Integer
1797
+ # resp.virtual_interface.bgp_peers[0].asn_long #=> Integer
1781
1798
  # resp.virtual_interface.bgp_peers[0].auth_key #=> String
1782
1799
  # resp.virtual_interface.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
1783
1800
  # resp.virtual_interface.bgp_peers[0].amazon_address #=> String
@@ -2479,6 +2496,7 @@ module Aws::DirectConnect
2479
2496
  # * {Types::VirtualInterface#virtual_interface_name #virtual_interface_name} => String
2480
2497
  # * {Types::VirtualInterface#vlan #vlan} => Integer
2481
2498
  # * {Types::VirtualInterface#asn #asn} => Integer
2499
+ # * {Types::VirtualInterface#asn_long #asn_long} => Integer
2482
2500
  # * {Types::VirtualInterface#amazon_side_asn #amazon_side_asn} => Integer
2483
2501
  # * {Types::VirtualInterface#auth_key #auth_key} => String
2484
2502
  # * {Types::VirtualInterface#amazon_address #amazon_address} => String
@@ -2505,7 +2523,8 @@ module Aws::DirectConnect
2505
2523
  # new_private_virtual_interface: { # required
2506
2524
  # virtual_interface_name: "VirtualInterfaceName", # required
2507
2525
  # vlan: 1, # required
2508
- # asn: 1, # required
2526
+ # asn: 1,
2527
+ # asn_long: 1,
2509
2528
  # mtu: 1,
2510
2529
  # auth_key: "BGPAuthKey",
2511
2530
  # amazon_address: "AmazonAddress",
@@ -2533,6 +2552,7 @@ module Aws::DirectConnect
2533
2552
  # resp.virtual_interface_name #=> String
2534
2553
  # resp.vlan #=> Integer
2535
2554
  # resp.asn #=> Integer
2555
+ # resp.asn_long #=> Integer
2536
2556
  # resp.amazon_side_asn #=> Integer
2537
2557
  # resp.auth_key #=> String
2538
2558
  # resp.amazon_address #=> String
@@ -2549,6 +2569,7 @@ module Aws::DirectConnect
2549
2569
  # resp.bgp_peers #=> Array
2550
2570
  # resp.bgp_peers[0].bgp_peer_id #=> String
2551
2571
  # resp.bgp_peers[0].asn #=> Integer
2572
+ # resp.bgp_peers[0].asn_long #=> Integer
2552
2573
  # resp.bgp_peers[0].auth_key #=> String
2553
2574
  # resp.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
2554
2575
  # resp.bgp_peers[0].amazon_address #=> String
@@ -2599,6 +2620,7 @@ module Aws::DirectConnect
2599
2620
  # * {Types::VirtualInterface#virtual_interface_name #virtual_interface_name} => String
2600
2621
  # * {Types::VirtualInterface#vlan #vlan} => Integer
2601
2622
  # * {Types::VirtualInterface#asn #asn} => Integer
2623
+ # * {Types::VirtualInterface#asn_long #asn_long} => Integer
2602
2624
  # * {Types::VirtualInterface#amazon_side_asn #amazon_side_asn} => Integer
2603
2625
  # * {Types::VirtualInterface#auth_key #auth_key} => String
2604
2626
  # * {Types::VirtualInterface#amazon_address #amazon_address} => String
@@ -2625,7 +2647,8 @@ module Aws::DirectConnect
2625
2647
  # new_public_virtual_interface: { # required
2626
2648
  # virtual_interface_name: "VirtualInterfaceName", # required
2627
2649
  # vlan: 1, # required
2628
- # asn: 1, # required
2650
+ # asn: 1,
2651
+ # asn_long: 1,
2629
2652
  # auth_key: "BGPAuthKey",
2630
2653
  # amazon_address: "AmazonAddress",
2631
2654
  # customer_address: "CustomerAddress",
@@ -2654,6 +2677,7 @@ module Aws::DirectConnect
2654
2677
  # resp.virtual_interface_name #=> String
2655
2678
  # resp.vlan #=> Integer
2656
2679
  # resp.asn #=> Integer
2680
+ # resp.asn_long #=> Integer
2657
2681
  # resp.amazon_side_asn #=> Integer
2658
2682
  # resp.auth_key #=> String
2659
2683
  # resp.amazon_address #=> String
@@ -2670,6 +2694,7 @@ module Aws::DirectConnect
2670
2694
  # resp.bgp_peers #=> Array
2671
2695
  # resp.bgp_peers[0].bgp_peer_id #=> String
2672
2696
  # resp.bgp_peers[0].asn #=> Integer
2697
+ # resp.bgp_peers[0].asn_long #=> Integer
2673
2698
  # resp.bgp_peers[0].auth_key #=> String
2674
2699
  # resp.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
2675
2700
  # resp.bgp_peers[0].amazon_address #=> String
@@ -2735,6 +2760,7 @@ module Aws::DirectConnect
2735
2760
  # virtual_interface_name: "VirtualInterfaceName",
2736
2761
  # vlan: 1,
2737
2762
  # asn: 1,
2763
+ # asn_long: 1,
2738
2764
  # mtu: 1,
2739
2765
  # auth_key: "BGPAuthKey",
2740
2766
  # amazon_address: "AmazonAddress",
@@ -2761,6 +2787,7 @@ module Aws::DirectConnect
2761
2787
  # resp.virtual_interface.virtual_interface_name #=> String
2762
2788
  # resp.virtual_interface.vlan #=> Integer
2763
2789
  # resp.virtual_interface.asn #=> Integer
2790
+ # resp.virtual_interface.asn_long #=> Integer
2764
2791
  # resp.virtual_interface.amazon_side_asn #=> Integer
2765
2792
  # resp.virtual_interface.auth_key #=> String
2766
2793
  # resp.virtual_interface.amazon_address #=> String
@@ -2777,6 +2804,7 @@ module Aws::DirectConnect
2777
2804
  # resp.virtual_interface.bgp_peers #=> Array
2778
2805
  # resp.virtual_interface.bgp_peers[0].bgp_peer_id #=> String
2779
2806
  # resp.virtual_interface.bgp_peers[0].asn #=> Integer
2807
+ # resp.virtual_interface.bgp_peers[0].asn_long #=> Integer
2780
2808
  # resp.virtual_interface.bgp_peers[0].auth_key #=> String
2781
2809
  # resp.virtual_interface.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
2782
2810
  # resp.virtual_interface.bgp_peers[0].amazon_address #=> String
@@ -2811,9 +2839,36 @@ module Aws::DirectConnect
2811
2839
  # The ID of the virtual interface.
2812
2840
  #
2813
2841
  # @option params [Integer] :asn
2814
- # The autonomous system (AS) number for Border Gateway Protocol (BGP)
2842
+ # The autonomous system number (ASN). The valid range is from 1 to
2843
+ # 2147483646 for Border Gateway Protocol (BGP) configuration. If you
2844
+ # provide a number greater than the maximum, an error is returned. Use
2845
+ # `asnLong` instead.
2846
+ #
2847
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
2848
+ # `asnLong` as it supports a greater pool of numbers.
2849
+ #
2850
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
2851
+ #
2852
+ # * If you provide a value in the same API call for both `asn` and
2853
+ # `asnLong`, the API will only accept the value for `asnLong`.
2854
+ #
2855
+ # </note>
2856
+ #
2857
+ # @option params [Integer] :asn_long
2858
+ # The long ASN for the BGP peer to be deleted from a Direct Connect
2859
+ # virtual interface. The valid range is from 1 to 4294967294 for BGP
2815
2860
  # configuration.
2816
2861
  #
2862
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
2863
+ # `asnLong` as it supports a greater pool of numbers.
2864
+ #
2865
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
2866
+ #
2867
+ # * If you provide a value in the same API call for both `asn` and
2868
+ # `asnLong`, the API will only accept the value for `asnLong`.
2869
+ #
2870
+ # </note>
2871
+ #
2817
2872
  # @option params [String] :customer_address
2818
2873
  # The IP address assigned to the customer interface.
2819
2874
  #
@@ -2829,6 +2884,7 @@ module Aws::DirectConnect
2829
2884
  # resp = client.delete_bgp_peer({
2830
2885
  # virtual_interface_id: "VirtualInterfaceId",
2831
2886
  # asn: 1,
2887
+ # asn_long: 1,
2832
2888
  # customer_address: "CustomerAddress",
2833
2889
  # bgp_peer_id: "BGPPeerId",
2834
2890
  # })
@@ -2843,6 +2899,7 @@ module Aws::DirectConnect
2843
2899
  # resp.virtual_interface.virtual_interface_name #=> String
2844
2900
  # resp.virtual_interface.vlan #=> Integer
2845
2901
  # resp.virtual_interface.asn #=> Integer
2902
+ # resp.virtual_interface.asn_long #=> Integer
2846
2903
  # resp.virtual_interface.amazon_side_asn #=> Integer
2847
2904
  # resp.virtual_interface.auth_key #=> String
2848
2905
  # resp.virtual_interface.amazon_address #=> String
@@ -2859,6 +2916,7 @@ module Aws::DirectConnect
2859
2916
  # resp.virtual_interface.bgp_peers #=> Array
2860
2917
  # resp.virtual_interface.bgp_peers[0].bgp_peer_id #=> String
2861
2918
  # resp.virtual_interface.bgp_peers[0].asn #=> Integer
2919
+ # resp.virtual_interface.bgp_peers[0].asn_long #=> Integer
2862
2920
  # resp.virtual_interface.bgp_peers[0].auth_key #=> String
2863
2921
  # resp.virtual_interface.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
2864
2922
  # resp.virtual_interface.bgp_peers[0].amazon_address #=> String
@@ -3329,14 +3387,28 @@ module Aws::DirectConnect
3329
3387
  # @option params [String] :connection_id
3330
3388
  # The ID of the connection.
3331
3389
  #
3390
+ # @option params [Integer] :max_results
3391
+ # The maximum number of results to return with a single call. To
3392
+ # retrieve the remaining results, make another call with the returned
3393
+ # `nextToken` value.
3394
+ #
3395
+ # If `MaxResults` is given a value larger than 100, only 100 results are
3396
+ # returned.
3397
+ #
3398
+ # @option params [String] :next_token
3399
+ # The token for the next page of results.
3400
+ #
3332
3401
  # @return [Types::Connections] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3333
3402
  #
3334
3403
  # * {Types::Connections#connections #connections} => Array&lt;Types::Connection&gt;
3404
+ # * {Types::Connections#next_token #next_token} => String
3335
3405
  #
3336
3406
  # @example Request syntax with placeholder values
3337
3407
  #
3338
3408
  # resp = client.describe_connections({
3339
3409
  # connection_id: "ConnectionId",
3410
+ # max_results: 1,
3411
+ # next_token: "PaginationToken",
3340
3412
  # })
3341
3413
  #
3342
3414
  # @example Response structure
@@ -3371,6 +3443,7 @@ module Aws::DirectConnect
3371
3443
  # resp.connections[0].mac_sec_keys[0].state #=> String
3372
3444
  # resp.connections[0].mac_sec_keys[0].start_on #=> String
3373
3445
  # resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
3446
+ # resp.next_token #=> String
3374
3447
  #
3375
3448
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeConnections AWS API Documentation
3376
3449
  #
@@ -3398,6 +3471,7 @@ module Aws::DirectConnect
3398
3471
  # @return [Types::Connections] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3399
3472
  #
3400
3473
  # * {Types::Connections#connections #connections} => Array&lt;Types::Connection&gt;
3474
+ # * {Types::Connections#next_token #next_token} => String
3401
3475
  #
3402
3476
  # @example Request syntax with placeholder values
3403
3477
  #
@@ -3437,6 +3511,7 @@ module Aws::DirectConnect
3437
3511
  # resp.connections[0].mac_sec_keys[0].state #=> String
3438
3512
  # resp.connections[0].mac_sec_keys[0].start_on #=> String
3439
3513
  # resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
3514
+ # resp.next_token #=> String
3440
3515
  #
3441
3516
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeConnectionsOnInterconnect AWS API Documentation
3442
3517
  #
@@ -3768,14 +3843,28 @@ module Aws::DirectConnect
3768
3843
  # @option params [required, String] :connection_id
3769
3844
  # The ID of the interconnect or LAG.
3770
3845
  #
3846
+ # @option params [Integer] :max_results
3847
+ # The maximum number of results to return with a single call. To
3848
+ # retrieve the remaining results, make another call with the returned
3849
+ # `nextToken` value.
3850
+ #
3851
+ # If `MaxResults` is given a value larger than 100, only 100 results are
3852
+ # returned.
3853
+ #
3854
+ # @option params [String] :next_token
3855
+ # The token for the next page of results.
3856
+ #
3771
3857
  # @return [Types::Connections] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3772
3858
  #
3773
3859
  # * {Types::Connections#connections #connections} => Array&lt;Types::Connection&gt;
3860
+ # * {Types::Connections#next_token #next_token} => String
3774
3861
  #
3775
3862
  # @example Request syntax with placeholder values
3776
3863
  #
3777
3864
  # resp = client.describe_hosted_connections({
3778
3865
  # connection_id: "ConnectionId", # required
3866
+ # max_results: 1,
3867
+ # next_token: "PaginationToken",
3779
3868
  # })
3780
3869
  #
3781
3870
  # @example Response structure
@@ -3810,6 +3899,7 @@ module Aws::DirectConnect
3810
3899
  # resp.connections[0].mac_sec_keys[0].state #=> String
3811
3900
  # resp.connections[0].mac_sec_keys[0].start_on #=> String
3812
3901
  # resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
3902
+ # resp.next_token #=> String
3813
3903
  #
3814
3904
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeHostedConnections AWS API Documentation
3815
3905
  #
@@ -3881,14 +3971,28 @@ module Aws::DirectConnect
3881
3971
  # @option params [String] :interconnect_id
3882
3972
  # The ID of the interconnect.
3883
3973
  #
3974
+ # @option params [Integer] :max_results
3975
+ # The maximum number of results to return with a single call. To
3976
+ # retrieve the remaining results, make another call with the returned
3977
+ # `nextToken` value.
3978
+ #
3979
+ # If `MaxResults` is given a value larger than 100, only 100 results are
3980
+ # returned.
3981
+ #
3982
+ # @option params [String] :next_token
3983
+ # The token for the next page of results.
3984
+ #
3884
3985
  # @return [Types::Interconnects] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3885
3986
  #
3886
3987
  # * {Types::Interconnects#interconnects #interconnects} => Array&lt;Types::Interconnect&gt;
3988
+ # * {Types::Interconnects#next_token #next_token} => String
3887
3989
  #
3888
3990
  # @example Request syntax with placeholder values
3889
3991
  #
3890
3992
  # resp = client.describe_interconnects({
3891
3993
  # interconnect_id: "InterconnectId",
3994
+ # max_results: 1,
3995
+ # next_token: "PaginationToken",
3892
3996
  # })
3893
3997
  #
3894
3998
  # @example Response structure
@@ -3919,6 +4023,7 @@ module Aws::DirectConnect
3919
4023
  # resp.interconnects[0].mac_sec_keys[0].ckn #=> String
3920
4024
  # resp.interconnects[0].mac_sec_keys[0].state #=> String
3921
4025
  # resp.interconnects[0].mac_sec_keys[0].start_on #=> String
4026
+ # resp.next_token #=> String
3922
4027
  #
3923
4028
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeInterconnects AWS API Documentation
3924
4029
  #
@@ -3934,14 +4039,28 @@ module Aws::DirectConnect
3934
4039
  # @option params [String] :lag_id
3935
4040
  # The ID of the LAG.
3936
4041
  #
4042
+ # @option params [Integer] :max_results
4043
+ # The maximum number of results to return with a single call. To
4044
+ # retrieve the remaining results, make another call with the returned
4045
+ # `nextToken` value.
4046
+ #
4047
+ # If `MaxResults` is given a value larger than 100, only 100 results are
4048
+ # returned.
4049
+ #
4050
+ # @option params [String] :next_token
4051
+ # The token for the next page of results.
4052
+ #
3937
4053
  # @return [Types::Lags] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3938
4054
  #
3939
4055
  # * {Types::Lags#lags #lags} => Array&lt;Types::Lag&gt;
4056
+ # * {Types::Lags#next_token #next_token} => String
3940
4057
  #
3941
4058
  # @example Request syntax with placeholder values
3942
4059
  #
3943
4060
  # resp = client.describe_lags({
3944
4061
  # lag_id: "LagId",
4062
+ # max_results: 1,
4063
+ # next_token: "PaginationToken",
3945
4064
  # })
3946
4065
  #
3947
4066
  # @example Response structure
@@ -4003,6 +4122,7 @@ module Aws::DirectConnect
4003
4122
  # resp.lags[0].mac_sec_keys[0].ckn #=> String
4004
4123
  # resp.lags[0].mac_sec_keys[0].state #=> String
4005
4124
  # resp.lags[0].mac_sec_keys[0].start_on #=> String
4125
+ # resp.next_token #=> String
4006
4126
  #
4007
4127
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeLags AWS API Documentation
4008
4128
  #
@@ -4219,21 +4339,42 @@ module Aws::DirectConnect
4219
4339
  # A virtual interface (VLAN) transmits the traffic between the Direct
4220
4340
  # Connect location and the customer network.
4221
4341
  #
4342
+ # * If you're using an `asn`, the response includes ASN value in both
4343
+ # the `asn` and `asnLong` fields.
4344
+ #
4345
+ # * If you're using `asnLong`, the response returns a value of `0`
4346
+ # (zero) for the `asn` attribute because it exceeds the highest ASN
4347
+ # value of 2,147,483,647 that it can support
4348
+ #
4222
4349
  # @option params [String] :connection_id
4223
4350
  # The ID of the connection.
4224
4351
  #
4225
4352
  # @option params [String] :virtual_interface_id
4226
4353
  # The ID of the virtual interface.
4227
4354
  #
4355
+ # @option params [Integer] :max_results
4356
+ # The maximum number of results to return with a single call. To
4357
+ # retrieve the remaining results, make another call with the returned
4358
+ # `nextToken` value.
4359
+ #
4360
+ # If `MaxResults` is given a value larger than 100, only 100 results are
4361
+ # returned.
4362
+ #
4363
+ # @option params [String] :next_token
4364
+ # The token for the next page of results.
4365
+ #
4228
4366
  # @return [Types::VirtualInterfaces] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4229
4367
  #
4230
4368
  # * {Types::VirtualInterfaces#virtual_interfaces #virtual_interfaces} => Array&lt;Types::VirtualInterface&gt;
4369
+ # * {Types::VirtualInterfaces#next_token #next_token} => String
4231
4370
  #
4232
4371
  # @example Request syntax with placeholder values
4233
4372
  #
4234
4373
  # resp = client.describe_virtual_interfaces({
4235
4374
  # connection_id: "ConnectionId",
4236
4375
  # virtual_interface_id: "VirtualInterfaceId",
4376
+ # max_results: 1,
4377
+ # next_token: "PaginationToken",
4237
4378
  # })
4238
4379
  #
4239
4380
  # @example Response structure
@@ -4247,6 +4388,7 @@ module Aws::DirectConnect
4247
4388
  # resp.virtual_interfaces[0].virtual_interface_name #=> String
4248
4389
  # resp.virtual_interfaces[0].vlan #=> Integer
4249
4390
  # resp.virtual_interfaces[0].asn #=> Integer
4391
+ # resp.virtual_interfaces[0].asn_long #=> Integer
4250
4392
  # resp.virtual_interfaces[0].amazon_side_asn #=> Integer
4251
4393
  # resp.virtual_interfaces[0].auth_key #=> String
4252
4394
  # resp.virtual_interfaces[0].amazon_address #=> String
@@ -4263,6 +4405,7 @@ module Aws::DirectConnect
4263
4405
  # resp.virtual_interfaces[0].bgp_peers #=> Array
4264
4406
  # resp.virtual_interfaces[0].bgp_peers[0].bgp_peer_id #=> String
4265
4407
  # resp.virtual_interfaces[0].bgp_peers[0].asn #=> Integer
4408
+ # resp.virtual_interfaces[0].bgp_peers[0].asn_long #=> Integer
4266
4409
  # resp.virtual_interfaces[0].bgp_peers[0].auth_key #=> String
4267
4410
  # resp.virtual_interfaces[0].bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
4268
4411
  # resp.virtual_interfaces[0].bgp_peers[0].amazon_address #=> String
@@ -4278,6 +4421,7 @@ module Aws::DirectConnect
4278
4421
  # resp.virtual_interfaces[0].tags[0].key #=> String
4279
4422
  # resp.virtual_interfaces[0].tags[0].value #=> String
4280
4423
  # resp.virtual_interfaces[0].site_link_enabled #=> Boolean
4424
+ # resp.next_token #=> String
4281
4425
  #
4282
4426
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeVirtualInterfaces AWS API Documentation
4283
4427
  #
@@ -5033,6 +5177,7 @@ module Aws::DirectConnect
5033
5177
  # * {Types::VirtualInterface#virtual_interface_name #virtual_interface_name} => String
5034
5178
  # * {Types::VirtualInterface#vlan #vlan} => Integer
5035
5179
  # * {Types::VirtualInterface#asn #asn} => Integer
5180
+ # * {Types::VirtualInterface#asn_long #asn_long} => Integer
5036
5181
  # * {Types::VirtualInterface#amazon_side_asn #amazon_side_asn} => Integer
5037
5182
  # * {Types::VirtualInterface#auth_key #auth_key} => String
5038
5183
  # * {Types::VirtualInterface#amazon_address #amazon_address} => String
@@ -5071,6 +5216,7 @@ module Aws::DirectConnect
5071
5216
  # resp.virtual_interface_name #=> String
5072
5217
  # resp.vlan #=> Integer
5073
5218
  # resp.asn #=> Integer
5219
+ # resp.asn_long #=> Integer
5074
5220
  # resp.amazon_side_asn #=> Integer
5075
5221
  # resp.auth_key #=> String
5076
5222
  # resp.amazon_address #=> String
@@ -5087,6 +5233,7 @@ module Aws::DirectConnect
5087
5233
  # resp.bgp_peers #=> Array
5088
5234
  # resp.bgp_peers[0].bgp_peer_id #=> String
5089
5235
  # resp.bgp_peers[0].asn #=> Integer
5236
+ # resp.bgp_peers[0].asn_long #=> Integer
5090
5237
  # resp.bgp_peers[0].auth_key #=> String
5091
5238
  # resp.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
5092
5239
  # resp.bgp_peers[0].amazon_address #=> String
@@ -5130,7 +5277,7 @@ module Aws::DirectConnect
5130
5277
  tracer: tracer
5131
5278
  )
5132
5279
  context[:gem_name] = 'aws-sdk-directconnect'
5133
- context[:gem_version] = '1.96.0'
5280
+ context[:gem_version] = '1.97.0'
5134
5281
  Seahorse::Client::Request.new(handlers, context)
5135
5282
  end
5136
5283