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.
@@ -409,8 +409,35 @@ module Aws::DirectConnect
409
409
  # @return [String]
410
410
  #
411
411
  # @!attribute [rw] asn
412
- # The autonomous system (AS) number for Border Gateway Protocol (BGP)
413
- # configuration.
412
+ # The autonomous system number (ASN). The valid range is from 1 to
413
+ # 2147483646 for Border Gateway Protocol (BGP) configuration. If you
414
+ # provide a number greater than the maximum, an error is returned. Use
415
+ # `asnLong` instead.
416
+ #
417
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
418
+ # `asnLong` as it supports a greater pool of numbers.
419
+ #
420
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
421
+ #
422
+ # * If you provide a value in the same API call for both `asn` and
423
+ # `asnLong`, the API will only accept the value for `asnLong`.
424
+ #
425
+ # </note>
426
+ # @return [Integer]
427
+ #
428
+ # @!attribute [rw] asn_long
429
+ # The long ASN for the BGP peer. The valid range is from 1 to
430
+ # 4294967294 for BGP configuration.
431
+ #
432
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
433
+ # `asnLong` as it supports a greater pool of numbers.
434
+ #
435
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
436
+ #
437
+ # * If you provide a value in the same API call for both `asn` and
438
+ # `asnLong`, the API will only accept the value for `asnLong`.
439
+ #
440
+ # </note>
414
441
  # @return [Integer]
415
442
  #
416
443
  # @!attribute [rw] auth_key
@@ -475,6 +502,7 @@ module Aws::DirectConnect
475
502
  class BGPPeer < Struct.new(
476
503
  :bgp_peer_id,
477
504
  :asn,
505
+ :asn_long,
478
506
  :auth_key,
479
507
  :address_family,
480
508
  :amazon_address,
@@ -924,10 +952,16 @@ module Aws::DirectConnect
924
952
  # The connections.
925
953
  # @return [Array<Types::Connection>]
926
954
  #
955
+ # @!attribute [rw] next_token
956
+ # The token to use to retrieve the next page of results. This value is
957
+ # `null` when there are no more results to return.
958
+ # @return [String]
959
+ #
927
960
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/Connections AWS API Documentation
928
961
  #
929
962
  class Connections < Struct.new(
930
- :connections)
963
+ :connections,
964
+ :next_token)
931
965
  SENSITIVE = []
932
966
  include Aws::Structure
933
967
  end
@@ -1344,8 +1378,36 @@ module Aws::DirectConnect
1344
1378
  # @return [String]
1345
1379
  #
1346
1380
  # @!attribute [rw] asn
1347
- # The autonomous system (AS) number for Border Gateway Protocol (BGP)
1381
+ # The autonomous system number (ASN). The valid range is from 1 to
1382
+ # 2147483646 for Border Gateway Protocol (BGP) configuration. If you
1383
+ # provide a number greater than the maximum, an error is returned. Use
1384
+ # `asnLong` instead.
1385
+ #
1386
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
1387
+ # `asnLong` as it supports a greater pool of numbers.
1388
+ #
1389
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
1390
+ #
1391
+ # * If you provide a value in the same API call for both `asn` and
1392
+ # `asnLong`, the API will only accept the value for `asnLong`.
1393
+ #
1394
+ # </note>
1395
+ # @return [Integer]
1396
+ #
1397
+ # @!attribute [rw] asn_long
1398
+ # The long ASN for the BGP peer to be deleted from a Direct Connect
1399
+ # virtual interface. The valid range is from 1 to 4294967294 for BGP
1348
1400
  # configuration.
1401
+ #
1402
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
1403
+ # `asnLong` as it supports a greater pool of numbers.
1404
+ #
1405
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
1406
+ #
1407
+ # * If you provide a value in the same API call for both `asn` and
1408
+ # `asnLong`, the API will only accept the value for `asnLong`.
1409
+ #
1410
+ # </note>
1349
1411
  # @return [Integer]
1350
1412
  #
1351
1413
  # @!attribute [rw] customer_address
@@ -1361,6 +1423,7 @@ module Aws::DirectConnect
1361
1423
  class DeleteBGPPeerRequest < Struct.new(
1362
1424
  :virtual_interface_id,
1363
1425
  :asn,
1426
+ :asn_long,
1364
1427
  :customer_address,
1365
1428
  :bgp_peer_id)
1366
1429
  SENSITIVE = []
@@ -1642,10 +1705,25 @@ module Aws::DirectConnect
1642
1705
  # The ID of the connection.
1643
1706
  # @return [String]
1644
1707
  #
1708
+ # @!attribute [rw] max_results
1709
+ # The maximum number of results to return with a single call. To
1710
+ # retrieve the remaining results, make another call with the returned
1711
+ # `nextToken` value.
1712
+ #
1713
+ # If `MaxResults` is given a value larger than 100, only 100 results
1714
+ # are returned.
1715
+ # @return [Integer]
1716
+ #
1717
+ # @!attribute [rw] next_token
1718
+ # The token for the next page of results.
1719
+ # @return [String]
1720
+ #
1645
1721
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeConnectionsRequest AWS API Documentation
1646
1722
  #
1647
1723
  class DescribeConnectionsRequest < Struct.new(
1648
- :connection_id)
1724
+ :connection_id,
1725
+ :max_results,
1726
+ :next_token)
1649
1727
  SENSITIVE = []
1650
1728
  include Aws::Structure
1651
1729
  end
@@ -1887,10 +1965,25 @@ module Aws::DirectConnect
1887
1965
  # The ID of the interconnect or LAG.
1888
1966
  # @return [String]
1889
1967
  #
1968
+ # @!attribute [rw] max_results
1969
+ # The maximum number of results to return with a single call. To
1970
+ # retrieve the remaining results, make another call with the returned
1971
+ # `nextToken` value.
1972
+ #
1973
+ # If `MaxResults` is given a value larger than 100, only 100 results
1974
+ # are returned.
1975
+ # @return [Integer]
1976
+ #
1977
+ # @!attribute [rw] next_token
1978
+ # The token for the next page of results.
1979
+ # @return [String]
1980
+ #
1890
1981
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeHostedConnectionsRequest AWS API Documentation
1891
1982
  #
1892
1983
  class DescribeHostedConnectionsRequest < Struct.new(
1893
- :connection_id)
1984
+ :connection_id,
1985
+ :max_results,
1986
+ :next_token)
1894
1987
  SENSITIVE = []
1895
1988
  include Aws::Structure
1896
1989
  end
@@ -1938,10 +2031,25 @@ module Aws::DirectConnect
1938
2031
  # The ID of the interconnect.
1939
2032
  # @return [String]
1940
2033
  #
2034
+ # @!attribute [rw] max_results
2035
+ # The maximum number of results to return with a single call. To
2036
+ # retrieve the remaining results, make another call with the returned
2037
+ # `nextToken` value.
2038
+ #
2039
+ # If `MaxResults` is given a value larger than 100, only 100 results
2040
+ # are returned.
2041
+ # @return [Integer]
2042
+ #
2043
+ # @!attribute [rw] next_token
2044
+ # The token for the next page of results.
2045
+ # @return [String]
2046
+ #
1941
2047
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeInterconnectsRequest AWS API Documentation
1942
2048
  #
1943
2049
  class DescribeInterconnectsRequest < Struct.new(
1944
- :interconnect_id)
2050
+ :interconnect_id,
2051
+ :max_results,
2052
+ :next_token)
1945
2053
  SENSITIVE = []
1946
2054
  include Aws::Structure
1947
2055
  end
@@ -1950,10 +2058,25 @@ module Aws::DirectConnect
1950
2058
  # The ID of the LAG.
1951
2059
  # @return [String]
1952
2060
  #
2061
+ # @!attribute [rw] max_results
2062
+ # The maximum number of results to return with a single call. To
2063
+ # retrieve the remaining results, make another call with the returned
2064
+ # `nextToken` value.
2065
+ #
2066
+ # If `MaxResults` is given a value larger than 100, only 100 results
2067
+ # are returned.
2068
+ # @return [Integer]
2069
+ #
2070
+ # @!attribute [rw] next_token
2071
+ # The token for the next page of results.
2072
+ # @return [String]
2073
+ #
1953
2074
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeLagsRequest AWS API Documentation
1954
2075
  #
1955
2076
  class DescribeLagsRequest < Struct.new(
1956
- :lag_id)
2077
+ :lag_id,
2078
+ :max_results,
2079
+ :next_token)
1957
2080
  SENSITIVE = []
1958
2081
  include Aws::Structure
1959
2082
  end
@@ -2064,11 +2187,26 @@ module Aws::DirectConnect
2064
2187
  # The ID of the virtual interface.
2065
2188
  # @return [String]
2066
2189
  #
2190
+ # @!attribute [rw] max_results
2191
+ # The maximum number of results to return with a single call. To
2192
+ # retrieve the remaining results, make another call with the returned
2193
+ # `nextToken` value.
2194
+ #
2195
+ # If `MaxResults` is given a value larger than 100, only 100 results
2196
+ # are returned.
2197
+ # @return [Integer]
2198
+ #
2199
+ # @!attribute [rw] next_token
2200
+ # The token for the next page of results.
2201
+ # @return [String]
2202
+ #
2067
2203
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeVirtualInterfacesRequest AWS API Documentation
2068
2204
  #
2069
2205
  class DescribeVirtualInterfacesRequest < Struct.new(
2070
2206
  :connection_id,
2071
- :virtual_interface_id)
2207
+ :virtual_interface_id,
2208
+ :max_results,
2209
+ :next_token)
2072
2210
  SENSITIVE = []
2073
2211
  include Aws::Structure
2074
2212
  end
@@ -2099,7 +2237,7 @@ module Aws::DirectConnect
2099
2237
  # @return [String]
2100
2238
  #
2101
2239
  # @!attribute [rw] amazon_side_asn
2102
- # The autonomous system number (ASN) for the Amazon side of the
2240
+ # The autonomous system number (AS) for the Amazon side of the
2103
2241
  # connection.
2104
2242
  # @return [Integer]
2105
2243
  #
@@ -2568,10 +2706,16 @@ module Aws::DirectConnect
2568
2706
  # The interconnects.
2569
2707
  # @return [Array<Types::Interconnect>]
2570
2708
  #
2709
+ # @!attribute [rw] next_token
2710
+ # The token to use to retrieve the next page of results. This value is
2711
+ # `null` when there are no more results to return.
2712
+ # @return [String]
2713
+ #
2571
2714
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/Interconnects AWS API Documentation
2572
2715
  #
2573
2716
  class Interconnects < Struct.new(
2574
- :interconnects)
2717
+ :interconnects,
2718
+ :next_token)
2575
2719
  SENSITIVE = []
2576
2720
  include Aws::Structure
2577
2721
  end
@@ -2722,10 +2866,16 @@ module Aws::DirectConnect
2722
2866
  # The LAGs.
2723
2867
  # @return [Array<Types::Lag>]
2724
2868
  #
2869
+ # @!attribute [rw] next_token
2870
+ # The token to use to retrieve the next page of results. This value is
2871
+ # `null` when there are no more results to return.
2872
+ # @return [String]
2873
+ #
2725
2874
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/Lags AWS API Documentation
2726
2875
  #
2727
2876
  class Lags < Struct.new(
2728
- :lags)
2877
+ :lags,
2878
+ :next_token)
2729
2879
  SENSITIVE = []
2730
2880
  include Aws::Structure
2731
2881
  end
@@ -2912,8 +3062,15 @@ module Aws::DirectConnect
2912
3062
  # Information about a new BGP peer.
2913
3063
  #
2914
3064
  # @!attribute [rw] asn
2915
- # The autonomous system (AS) number for Border Gateway Protocol (BGP)
2916
- # configuration.
3065
+ # The autonomous system number (ASN). The valid range is from 1 to
3066
+ # 2147483646 for Border Gateway Protocol (BGP) configuration. If you
3067
+ # provide a number greater than the maximum, an error is returned. Use
3068
+ # `asnLong` instead.
3069
+ # @return [Integer]
3070
+ #
3071
+ # @!attribute [rw] asn_long
3072
+ # The long ASN for a new BGP peer. The valid range is from 1 to
3073
+ # 4294967294.
2917
3074
  # @return [Integer]
2918
3075
  #
2919
3076
  # @!attribute [rw] auth_key
@@ -2938,6 +3095,7 @@ module Aws::DirectConnect
2938
3095
  #
2939
3096
  class NewBGPPeer < Struct.new(
2940
3097
  :asn,
3098
+ :asn_long,
2941
3099
  :auth_key,
2942
3100
  :address_family,
2943
3101
  :amazon_address,
@@ -2959,10 +3117,37 @@ module Aws::DirectConnect
2959
3117
  # @return [Integer]
2960
3118
  #
2961
3119
  # @!attribute [rw] asn
2962
- # The autonomous system (AS) number for Border Gateway Protocol (BGP)
2963
- # configuration.
3120
+ # The autonomous system number (ASN). The valid range is from 1 to
3121
+ # 2147483646 for Border Gateway Protocol (BGP) configuration. If you
3122
+ # provide a number greater than the maximum, an error is returned. Use
3123
+ # `asnLong` instead.
3124
+ #
3125
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
3126
+ # `asnLong` as it supports a greater pool of numbers.
3127
+ #
3128
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
2964
3129
  #
2965
- # The valid values are 1-2147483647.
3130
+ # * If you provide a value in the same API call for both `asn` and
3131
+ # `asnLong`, the API will only accept the value for `asnLong`.
3132
+ #
3133
+ # </note>
3134
+ #
3135
+ # The valid values are 1-2147483646.
3136
+ # @return [Integer]
3137
+ #
3138
+ # @!attribute [rw] asn_long
3139
+ # The long ASN for a new private virtual interface. The valid range is
3140
+ # from 1 to 4294967294 for BGP configuration.
3141
+ #
3142
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
3143
+ # `asnLong` as it supports a greater pool of numbers.
3144
+ #
3145
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
3146
+ #
3147
+ # * If you provide a value in the same API call for both `asn` and
3148
+ # `asnLong`, the API will only accept the value for `asnLong`.
3149
+ #
3150
+ # </note>
2966
3151
  # @return [Integer]
2967
3152
  #
2968
3153
  # @!attribute [rw] mtu
@@ -3010,6 +3195,7 @@ module Aws::DirectConnect
3010
3195
  :virtual_interface_name,
3011
3196
  :vlan,
3012
3197
  :asn,
3198
+ :asn_long,
3013
3199
  :mtu,
3014
3200
  :auth_key,
3015
3201
  :amazon_address,
@@ -3037,10 +3223,37 @@ module Aws::DirectConnect
3037
3223
  # @return [Integer]
3038
3224
  #
3039
3225
  # @!attribute [rw] asn
3040
- # The autonomous system (AS) number for Border Gateway Protocol (BGP)
3041
- # configuration.
3226
+ # The autonomous system number (ASN). The valid range is from 1 to
3227
+ # 2147483646 for Border Gateway Protocol (BGP) configuration. If you
3228
+ # provide a number greater than the maximum, an error is returned. Use
3229
+ # `asnLong` instead.
3230
+ #
3231
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
3232
+ # `asnLong` as it supports a greater pool of numbers.
3233
+ #
3234
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
3235
+ #
3236
+ # * If you provide a value in the same API call for both `asn` and
3237
+ # `asnLong`, the API will only accept the value for `asnLong`.
3238
+ #
3239
+ # </note>
3240
+ #
3241
+ # The valid values are 1-2147483646.
3242
+ # @return [Integer]
3243
+ #
3244
+ # @!attribute [rw] asn_long
3245
+ # The ASN when allocating a new private virtual interface. The valid
3246
+ # range is from 1 to 4294967294 for BGP configuration.
3247
+ #
3248
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
3249
+ # `asnLong` as it supports a greater pool of numbers.
3250
+ #
3251
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
3042
3252
  #
3043
- # The valid values are 1-2147483647.
3253
+ # * If you provide a value in the same API call for both `asn` and
3254
+ # `asnLong`, the API will only accept the value for `asnLong`.
3255
+ #
3256
+ # </note>
3044
3257
  # @return [Integer]
3045
3258
  #
3046
3259
  # @!attribute [rw] mtu
@@ -3076,6 +3289,7 @@ module Aws::DirectConnect
3076
3289
  :virtual_interface_name,
3077
3290
  :vlan,
3078
3291
  :asn,
3292
+ :asn_long,
3079
3293
  :mtu,
3080
3294
  :auth_key,
3081
3295
  :amazon_address,
@@ -3099,10 +3313,35 @@ module Aws::DirectConnect
3099
3313
  # @return [Integer]
3100
3314
  #
3101
3315
  # @!attribute [rw] asn
3102
- # The autonomous system (AS) number for Border Gateway Protocol (BGP)
3103
- # configuration.
3316
+ # The autonomous system number (ASN). The valid range is from 1 to
3317
+ # 2147483646 for Border Gateway Protocol (BGP) configuration. If you
3318
+ # provide a number greater than the maximum, an error is returned. Use
3319
+ # `asnLong` instead.
3320
+ #
3321
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
3322
+ # `asnLong` as it supports a greater pool of numbers.
3323
+ #
3324
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
3325
+ #
3326
+ # * If you provide a value in the same API call for both `asn` and
3327
+ # `asnLong`, the API will only accept the value for `asnLong`.
3328
+ #
3329
+ # </note>
3330
+ # @return [Integer]
3331
+ #
3332
+ # @!attribute [rw] asn_long
3333
+ # The long ASN for a new public virtual interface. The valid range is
3334
+ # from 1 to 4294967294 for BGP configuration.
3335
+ #
3336
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
3337
+ # `asnLong` as it supports a greater pool of numbers.
3104
3338
  #
3105
- # The valid values are 1-2147483647.
3339
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
3340
+ #
3341
+ # * If you provide a value in the same API call for both `asn` and
3342
+ # `asnLong`, the API will only accept the value for `asnLong`.
3343
+ #
3344
+ # </note>
3106
3345
  # @return [Integer]
3107
3346
  #
3108
3347
  # @!attribute [rw] auth_key
@@ -3138,6 +3377,7 @@ module Aws::DirectConnect
3138
3377
  :virtual_interface_name,
3139
3378
  :vlan,
3140
3379
  :asn,
3380
+ :asn_long,
3141
3381
  :auth_key,
3142
3382
  :amazon_address,
3143
3383
  :customer_address,
@@ -3162,10 +3402,37 @@ module Aws::DirectConnect
3162
3402
  # @return [Integer]
3163
3403
  #
3164
3404
  # @!attribute [rw] asn
3165
- # The autonomous system (AS) number for Border Gateway Protocol (BGP)
3166
- # configuration.
3405
+ # The autonomous system number (ASN). The valid range is from 1 to
3406
+ # 2147483646 for Border Gateway Protocol (BGP) configuration. If you
3407
+ # provide a number greater than the maximum, an error is returned. Use
3408
+ # `asnLong` instead.
3409
+ #
3410
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
3411
+ # `asnLong` as it supports a greater pool of numbers.
3412
+ #
3413
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
3414
+ #
3415
+ # * If you provide a value in the same API call for both `asn` and
3416
+ # `asnLong`, the API will only accept the value for `asnLong`.
3417
+ #
3418
+ # </note>
3419
+ #
3420
+ # The valid values are 1-2147483646.
3421
+ # @return [Integer]
3422
+ #
3423
+ # @!attribute [rw] asn_long
3424
+ # The ASN when allocating a new public virtual interface. The valid
3425
+ # range is from 1 to 4294967294 for BGP configuration.
3426
+ #
3427
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
3428
+ # `asnLong` as it supports a greater pool of numbers.
3429
+ #
3430
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
3167
3431
  #
3168
- # The valid values are 1-2147483647.
3432
+ # * If you provide a value in the same API call for both `asn` and
3433
+ # `asnLong`, the API will only accept the value for `asnLong`.
3434
+ #
3435
+ # </note>
3169
3436
  # @return [Integer]
3170
3437
  #
3171
3438
  # @!attribute [rw] auth_key
@@ -3201,6 +3468,7 @@ module Aws::DirectConnect
3201
3468
  :virtual_interface_name,
3202
3469
  :vlan,
3203
3470
  :asn,
3471
+ :asn_long,
3204
3472
  :auth_key,
3205
3473
  :amazon_address,
3206
3474
  :customer_address,
@@ -3224,10 +3492,35 @@ module Aws::DirectConnect
3224
3492
  # @return [Integer]
3225
3493
  #
3226
3494
  # @!attribute [rw] asn
3227
- # The autonomous system (AS) number for Border Gateway Protocol (BGP)
3228
- # configuration.
3495
+ # The autonomous system number (ASN). The valid range is from 1 to
3496
+ # 2147483646 for Border Gateway Protocol (BGP) configuration. If you
3497
+ # provide a number greater than the maximum, an error is returned. Use
3498
+ # `asnLong` instead.
3229
3499
  #
3230
- # The valid values are 1-2147483647.
3500
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
3501
+ # `asnLong` as it supports a greater pool of numbers.
3502
+ #
3503
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
3504
+ #
3505
+ # * If you provide a value in the same API call for both `asn` and
3506
+ # `asnLong`, the API will only accept the value for `asnLong`.
3507
+ #
3508
+ # </note>
3509
+ # @return [Integer]
3510
+ #
3511
+ # @!attribute [rw] asn_long
3512
+ # The long ASN for a new transit virtual interface.The valid range is
3513
+ # from 1 to 4294967294 for BGP configuration.
3514
+ #
3515
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
3516
+ # `asnLong` as it supports a greater pool of numbers.
3517
+ #
3518
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
3519
+ #
3520
+ # * If you provide a value in the same API call for both `asn` and
3521
+ # `asnLong`, the API will only accept the value for `asnLong`.
3522
+ #
3523
+ # </note>
3231
3524
  # @return [Integer]
3232
3525
  #
3233
3526
  # @!attribute [rw] mtu
@@ -3271,6 +3564,7 @@ module Aws::DirectConnect
3271
3564
  :virtual_interface_name,
3272
3565
  :vlan,
3273
3566
  :asn,
3567
+ :asn_long,
3274
3568
  :mtu,
3275
3569
  :auth_key,
3276
3570
  :amazon_address,
@@ -3297,10 +3591,37 @@ module Aws::DirectConnect
3297
3591
  # @return [Integer]
3298
3592
  #
3299
3593
  # @!attribute [rw] asn
3300
- # The autonomous system (AS) number for Border Gateway Protocol (BGP)
3301
- # configuration.
3594
+ # The autonomous system number (ASN). The valid range is from 1 to
3595
+ # 2147483646 for Border Gateway Protocol (BGP) configuration. If you
3596
+ # provide a number greater than the maximum, an error is returned. Use
3597
+ # `asnLong` instead.
3598
+ #
3599
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
3600
+ # `asnLong` as it supports a greater pool of numbers.
3601
+ #
3602
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
3302
3603
  #
3303
- # The valid values are 1-2147483647.
3604
+ # * If you provide a value in the same API call for both `asn` and
3605
+ # `asnLong`, the API will only accept the value for `asnLong`.
3606
+ #
3607
+ # </note>
3608
+ #
3609
+ # The valid values are 1-2147483646.
3610
+ # @return [Integer]
3611
+ #
3612
+ # @!attribute [rw] asn_long
3613
+ # The ASN when allocating a new transit virtual interface. The valid
3614
+ # range is from 1 to 4294967294 for BGP configuration.
3615
+ #
3616
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
3617
+ # `asnLong` as it supports a greater pool of numbers.
3618
+ #
3619
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
3620
+ #
3621
+ # * If you provide a value in the same API call for both `asn` and
3622
+ # `asnLong`, the API will only accept the value for `asnLong`.
3623
+ #
3624
+ # </note>
3304
3625
  # @return [Integer]
3305
3626
  #
3306
3627
  # @!attribute [rw] mtu
@@ -3336,6 +3657,7 @@ module Aws::DirectConnect
3336
3657
  :virtual_interface_name,
3337
3658
  :vlan,
3338
3659
  :asn,
3660
+ :asn_long,
3339
3661
  :mtu,
3340
3662
  :auth_key,
3341
3663
  :amazon_address,
@@ -3785,14 +4107,39 @@ module Aws::DirectConnect
3785
4107
  # @return [Integer]
3786
4108
  #
3787
4109
  # @!attribute [rw] asn
3788
- # The autonomous system (AS) number for Border Gateway Protocol (BGP)
3789
- # configuration.
4110
+ # The autonomous system number (ASN). The valid range is from 1 to
4111
+ # 2147483646 for Border Gateway Protocol (BGP) configuration. If you
4112
+ # provide a number greater than the maximum, an error is returned. Use
4113
+ # `asnLong` instead.
4114
+ #
4115
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
4116
+ # `asnLong` as it supports a greater pool of numbers.
4117
+ #
4118
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
4119
+ #
4120
+ # * If you provide a value in the same API call for both `asn` and
4121
+ # `asnLong`, the API will only accept the value for `asnLong`.
3790
4122
  #
3791
- # The valid values are 1-2147483647.
4123
+ # </note>
4124
+ # @return [Integer]
4125
+ #
4126
+ # @!attribute [rw] asn_long
4127
+ # The long ASN for the virtual interface. The valid range is from 1 to
4128
+ # 4294967294 for BGP configuration.
4129
+ #
4130
+ # <note markdown="1"> You can use `asnLong` or `asn`, but not both. We recommend using
4131
+ # `asnLong` as it supports a greater pool of numbers.
4132
+ #
4133
+ # * The `asnLong` attribute accepts both ASN and long ASN ranges.
4134
+ #
4135
+ # * If you provide a value in the same API call for both `asn` and
4136
+ # `asnLong`, the API will only accept the value for `asnLong`.
4137
+ #
4138
+ # </note>
3792
4139
  # @return [Integer]
3793
4140
  #
3794
4141
  # @!attribute [rw] amazon_side_asn
3795
- # The autonomous system number (ASN) for the Amazon side of the
4142
+ # The autonomous system number (AS) for the Amazon side of the
3796
4143
  # connection.
3797
4144
  # @return [Integer]
3798
4145
  #
@@ -3919,6 +4266,7 @@ module Aws::DirectConnect
3919
4266
  :virtual_interface_name,
3920
4267
  :vlan,
3921
4268
  :asn,
4269
+ :asn_long,
3922
4270
  :amazon_side_asn,
3923
4271
  :auth_key,
3924
4272
  :amazon_address,
@@ -3995,10 +4343,16 @@ module Aws::DirectConnect
3995
4343
  # The virtual interfaces
3996
4344
  # @return [Array<Types::VirtualInterface>]
3997
4345
  #
4346
+ # @!attribute [rw] next_token
4347
+ # The token to use to retrieve the next page of results. This value is
4348
+ # `null` when there are no more results to return.
4349
+ # @return [String]
4350
+ #
3998
4351
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/VirtualInterfaces AWS API Documentation
3999
4352
  #
4000
4353
  class VirtualInterfaces < Struct.new(
4001
- :virtual_interfaces)
4354
+ :virtual_interfaces,
4355
+ :next_token)
4002
4356
  SENSITIVE = []
4003
4357
  include Aws::Structure
4004
4358
  end
@@ -54,7 +54,7 @@ module Aws::DirectConnect
54
54
  autoload :EndpointProvider, 'aws-sdk-directconnect/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-directconnect/endpoints'
56
56
 
57
- GEM_VERSION = '1.96.0'
57
+ GEM_VERSION = '1.97.0'
58
58
 
59
59
  end
60
60