aws-sdk-directconnect 1.47.0 → 1.51.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: f81990bd0d3da9432c91ebb48e56a226126112b77c62272dd7d07c8a032ebd57
4
- data.tar.gz: cd573fdb7fe39581f17dee6ebc5022eec75d25949939e3bb5cb963138905c063
3
+ metadata.gz: 55521077378343af3b29ffc28af462ba2976aa753e279737603f7bc391292707
4
+ data.tar.gz: 14bd77f41807f802a4e7bc17dc87cb725b133037a85bc0c4232ace4244d590d6
5
5
  SHA512:
6
- metadata.gz: 17a20b3eaa079348dff4f2f5ab8945bbf88df22d25513b8666b7d1c157e0f44d610cf79591dd370cb7f77f572652489760a209316da611175c824afa8897cbda
7
- data.tar.gz: fcebc4c24f019f701dbdb22353808602fa9288044192da94443ad70e2b62d18cd78e1b9f57e519d1bb8ec7de74276e520fb549c66875e2e862f26c3cd2006a3b
6
+ metadata.gz: '039496d9174b08225e5bdb3cc98d260640c5c6f9e8ce3199bf808b719546a56d18be6b10319cc0268d4e0410f28a4dd7d4c5862fc7d31bad20880ad5a5227e65'
7
+ data.tar.gz: 7f762a98251734ad6d111c09fab8f7159555133ea214aaaf8103c04937603fb5d1dd1ff0415930ab2529c71ccc2d819c07f159371cf5f5312241be3dfd6c1aef
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.51.0 (2021-12-01)
5
+ ------------------
6
+
7
+ * Feature - Adds SiteLink support to private and transit virtual interfaces. SiteLink is a new Direct Connect feature that allows routing between Direct Connect points of presence.
8
+
9
+ 1.50.0 (2021-11-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.49.0 (2021-11-04)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.48.0 (2021-10-20)
20
+ ------------------
21
+
22
+ * Feature - This release adds 4 new APIS, which needs to be public able
23
+
4
24
  1.47.0 (2021-10-18)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.51.0
@@ -119,7 +119,9 @@ module Aws::DirectConnect
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -285,6 +287,15 @@ module Aws::DirectConnect
285
287
  # ** Please note ** When response stubbing is enabled, no HTTP
286
288
  # requests are made, and retries are disabled.
287
289
  #
290
+ # @option options [Boolean] :use_dualstack_endpoint
291
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
292
+ # will be used if available.
293
+ #
294
+ # @option options [Boolean] :use_fips_endpoint
295
+ # When set to `true`, fips compatible endpoints will be used if available.
296
+ # When a `fips` region is used, the region is normalized and this config
297
+ # is set to `true`.
298
+ #
288
299
  # @option options [Boolean] :validate_params (true)
289
300
  # When `true`, request parameters are validated before
290
301
  # sending the request.
@@ -347,8 +358,8 @@ module Aws::DirectConnect
347
358
  # The ID of the request proposal.
348
359
  #
349
360
  # @option params [required, String] :associated_gateway_owner_account
350
- # The ID of the account that owns the virtual private gateway or transit
351
- # gateway.
361
+ # The ID of the Amazon Web Services account that owns the virtual
362
+ # private gateway or transit gateway.
352
363
  #
353
364
  # @option params [Array<Types::RouteFilterPrefix>] :override_allowed_prefixes_to_direct_connect_gateway
354
365
  # Overrides the Amazon VPC prefixes advertised to the Direct Connect
@@ -426,8 +437,8 @@ module Aws::DirectConnect
426
437
  # The name of the provisioned connection.
427
438
  #
428
439
  # @option params [required, String] :owner_account
429
- # The ID of the account of the customer for whom the connection will be
430
- # provisioned.
440
+ # The ID of the Amazon Web Services account of the customer for whom the
441
+ # connection will be provisioned.
431
442
  #
432
443
  # @option params [required, String] :interconnect_id
433
444
  # The ID of the interconnect on which the connection will be
@@ -528,7 +539,8 @@ module Aws::DirectConnect
528
539
  # The ID of the interconnect or LAG.
529
540
  #
530
541
  # @option params [required, String] :owner_account
531
- # The ID of the account ID of the customer for the connection.
542
+ # The ID of the Amazon Web Services account ID of the customer for the
543
+ # connection.
532
544
  #
533
545
  # @option params [required, String] :bandwidth
534
546
  # The bandwidth of the connection. The possible values are 50Mbps,
@@ -628,7 +640,7 @@ module Aws::DirectConnect
628
640
  end
629
641
 
630
642
  # Provisions a private virtual interface to be owned by the specified
631
- # account.
643
+ # Amazon Web Services account.
632
644
  #
633
645
  # Virtual interfaces created using this action must be confirmed by the
634
646
  # owner using ConfirmPrivateVirtualInterface. Until then, the virtual
@@ -640,7 +652,8 @@ module Aws::DirectConnect
640
652
  # provisioned.
641
653
  #
642
654
  # @option params [required, String] :owner_account
643
- # The ID of the account that owns the virtual private interface.
655
+ # The ID of the Amazon Web Services account that owns the virtual
656
+ # private interface.
644
657
  #
645
658
  # @option params [required, Types::NewPrivateVirtualInterfaceAllocation] :new_private_virtual_interface_allocation
646
659
  # Information about the private virtual interface.
@@ -672,6 +685,7 @@ module Aws::DirectConnect
672
685
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
673
686
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
674
687
  # * {Types::VirtualInterface#tags #tags} => Array&lt;Types::Tag&gt;
688
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
675
689
  #
676
690
  # @example Request syntax with placeholder values
677
691
  #
@@ -736,6 +750,7 @@ module Aws::DirectConnect
736
750
  # resp.tags #=> Array
737
751
  # resp.tags[0].key #=> String
738
752
  # resp.tags[0].value #=> String
753
+ # resp.site_link_enabled #=> Boolean
739
754
  #
740
755
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocatePrivateVirtualInterface AWS API Documentation
741
756
  #
@@ -747,10 +762,11 @@ module Aws::DirectConnect
747
762
  end
748
763
 
749
764
  # Provisions a public virtual interface to be owned by the specified
750
- # account.
765
+ # Amazon Web Services account.
751
766
  #
752
767
  # The owner of a connection calls this function to provision a public
753
- # virtual interface to be owned by the specified account.
768
+ # virtual interface to be owned by the specified Amazon Web Services
769
+ # account.
754
770
  #
755
771
  # Virtual interfaces created using this function must be confirmed by
756
772
  # the owner using ConfirmPublicVirtualInterface. Until this step has
@@ -767,7 +783,8 @@ module Aws::DirectConnect
767
783
  # provisioned.
768
784
  #
769
785
  # @option params [required, String] :owner_account
770
- # The ID of the account that owns the public virtual interface.
786
+ # The ID of the Amazon Web Services account that owns the public virtual
787
+ # interface.
771
788
  #
772
789
  # @option params [required, Types::NewPublicVirtualInterfaceAllocation] :new_public_virtual_interface_allocation
773
790
  # Information about the public virtual interface.
@@ -799,6 +816,7 @@ module Aws::DirectConnect
799
816
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
800
817
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
801
818
  # * {Types::VirtualInterface#tags #tags} => Array&lt;Types::Tag&gt;
819
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
802
820
  #
803
821
  # @example Request syntax with placeholder values
804
822
  #
@@ -867,6 +885,7 @@ module Aws::DirectConnect
867
885
  # resp.tags #=> Array
868
886
  # resp.tags[0].key #=> String
869
887
  # resp.tags[0].value #=> String
888
+ # resp.site_link_enabled #=> Boolean
870
889
  #
871
890
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocatePublicVirtualInterface AWS API Documentation
872
891
  #
@@ -878,11 +897,11 @@ module Aws::DirectConnect
878
897
  end
879
898
 
880
899
  # Provisions a transit virtual interface to be owned by the specified
881
- # account. Use this type of interface to connect a transit gateway to
882
- # your Direct Connect gateway.
900
+ # Amazon Web Services account. Use this type of interface to connect a
901
+ # transit gateway to your Direct Connect gateway.
883
902
  #
884
903
  # The owner of a connection provisions a transit virtual interface to be
885
- # owned by the specified account.
904
+ # owned by the specified Amazon Web Services account.
886
905
  #
887
906
  # After you create a transit virtual interface, it must be confirmed by
888
907
  # the owner using ConfirmTransitVirtualInterface. Until this step has
@@ -894,7 +913,8 @@ module Aws::DirectConnect
894
913
  # provisioned.
895
914
  #
896
915
  # @option params [required, String] :owner_account
897
- # The ID of the account that owns the transit virtual interface.
916
+ # The ID of the Amazon Web Services account that owns the transit
917
+ # virtual interface.
898
918
  #
899
919
  # @option params [required, Types::NewTransitVirtualInterfaceAllocation] :new_transit_virtual_interface_allocation
900
920
  # Information about the transit virtual interface.
@@ -966,6 +986,7 @@ module Aws::DirectConnect
966
986
  # resp.virtual_interface.tags #=> Array
967
987
  # resp.virtual_interface.tags[0].key #=> String
968
988
  # resp.virtual_interface.tags[0].value #=> String
989
+ # resp.virtual_interface.site_link_enabled #=> Boolean
969
990
  #
970
991
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocateTransitVirtualInterface AWS API Documentation
971
992
  #
@@ -1299,6 +1320,7 @@ module Aws::DirectConnect
1299
1320
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
1300
1321
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
1301
1322
  # * {Types::VirtualInterface#tags #tags} => Array&lt;Types::Tag&gt;
1323
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
1302
1324
  #
1303
1325
  # @example Request syntax with placeholder values
1304
1326
  #
@@ -1347,6 +1369,7 @@ module Aws::DirectConnect
1347
1369
  # resp.tags #=> Array
1348
1370
  # resp.tags[0].key #=> String
1349
1371
  # resp.tags[0].value #=> String
1372
+ # resp.site_link_enabled #=> Boolean
1350
1373
  #
1351
1374
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateVirtualInterface AWS API Documentation
1352
1375
  #
@@ -1390,8 +1413,37 @@ module Aws::DirectConnect
1390
1413
  req.send_request(options)
1391
1414
  end
1392
1415
 
1416
+ # The confirmation of the terms of agreement when creating the
1417
+ # connection/link aggregation group (LAG).
1418
+ #
1419
+ # @option params [String] :agreement_name
1420
+ # The name of the customer agreement.
1421
+ #
1422
+ # @return [Types::ConfirmCustomerAgreementResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1423
+ #
1424
+ # * {Types::ConfirmCustomerAgreementResponse#status #status} => String
1425
+ #
1426
+ # @example Request syntax with placeholder values
1427
+ #
1428
+ # resp = client.confirm_customer_agreement({
1429
+ # agreement_name: "AgreementName",
1430
+ # })
1431
+ #
1432
+ # @example Response structure
1433
+ #
1434
+ # resp.status #=> String
1435
+ #
1436
+ # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/ConfirmCustomerAgreement AWS API Documentation
1437
+ #
1438
+ # @overload confirm_customer_agreement(params = {})
1439
+ # @param [Hash] params ({})
1440
+ def confirm_customer_agreement(params = {}, options = {})
1441
+ req = build_request(:confirm_customer_agreement, params)
1442
+ req.send_request(options)
1443
+ end
1444
+
1393
1445
  # Accepts ownership of a private virtual interface created by another
1394
- # account.
1446
+ # Amazon Web Services account.
1395
1447
  #
1396
1448
  # After the virtual interface owner makes this call, the virtual
1397
1449
  # interface is created and attached to the specified virtual private
@@ -1433,7 +1485,7 @@ module Aws::DirectConnect
1433
1485
  end
1434
1486
 
1435
1487
  # Accepts ownership of a public virtual interface created by another
1436
- # account.
1488
+ # Amazon Web Services account.
1437
1489
  #
1438
1490
  # After the virtual interface owner makes this call, the specified
1439
1491
  # virtual interface is created and made available to handle traffic.
@@ -1465,7 +1517,7 @@ module Aws::DirectConnect
1465
1517
  end
1466
1518
 
1467
1519
  # Accepts ownership of a transit virtual interface created by another
1468
- # account.
1520
+ # Amazon Web Services account.
1469
1521
  #
1470
1522
  # After the owner of the transit virtual interface makes this call, the
1471
1523
  # specified transit virtual interface is created and made available to
@@ -1582,6 +1634,7 @@ module Aws::DirectConnect
1582
1634
  # resp.virtual_interface.tags #=> Array
1583
1635
  # resp.virtual_interface.tags[0].key #=> String
1584
1636
  # resp.virtual_interface.tags[0].value #=> String
1637
+ # resp.virtual_interface.site_link_enabled #=> Boolean
1585
1638
  #
1586
1639
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateBGPPeer AWS API Documentation
1587
1640
  #
@@ -1722,12 +1775,13 @@ module Aws::DirectConnect
1722
1775
 
1723
1776
  # Creates a Direct Connect gateway, which is an intermediate object that
1724
1777
  # enables you to connect a set of virtual interfaces and virtual private
1725
- # gateways. A Direct Connect gateway is global and visible in any Region
1726
- # after it is created. The virtual interfaces and virtual private
1727
- # gateways that are connected through a Direct Connect gateway can be in
1728
- # different Regions. This enables you to connect to a VPC in any Region,
1729
- # regardless of the Region in which the virtual interfaces are located,
1730
- # and pass traffic between them.
1778
+ # gateways. A Direct Connect gateway is global and visible in any Amazon
1779
+ # Web Services Region after it is created. The virtual interfaces and
1780
+ # virtual private gateways that are connected through a Direct Connect
1781
+ # gateway can be in different Amazon Web Services Regions. This enables
1782
+ # you to connect to a VPC in any Region, regardless of the Region in
1783
+ # which the virtual interfaces are located, and pass traffic between
1784
+ # them.
1731
1785
  #
1732
1786
  # @option params [required, String] :direct_connect_gateway_name
1733
1787
  # The name of the Direct Connect gateway.
@@ -1840,13 +1894,14 @@ module Aws::DirectConnect
1840
1894
  # or transit gateway with the specified Direct Connect gateway.
1841
1895
  #
1842
1896
  # You can associate a Direct Connect gateway and virtual private gateway
1843
- # or transit gateway that is owned by any account.
1897
+ # or transit gateway that is owned by any Amazon Web Services account.
1844
1898
  #
1845
1899
  # @option params [required, String] :direct_connect_gateway_id
1846
1900
  # The ID of the Direct Connect gateway.
1847
1901
  #
1848
1902
  # @option params [required, String] :direct_connect_gateway_owner_account
1849
- # The ID of the account that owns the Direct Connect gateway.
1903
+ # The ID of the Amazon Web Services account that owns the Direct Connect
1904
+ # gateway.
1850
1905
  #
1851
1906
  # @option params [required, String] :gateway_id
1852
1907
  # The ID of the virtual private gateway or transit gateway.
@@ -2034,10 +2089,10 @@ module Aws::DirectConnect
2034
2089
  # with the dedicated connection are automatically disassociated and
2035
2090
  # re-associated with the LAG. The connection ID does not change.
2036
2091
  #
2037
- # If the account used to create a LAG is a registered Direct Connect
2038
- # Partner, the LAG is automatically enabled to host sub-connections. For
2039
- # a LAG owned by a partner, any associated virtual interfaces cannot be
2040
- # directly configured.
2092
+ # If the Amazon Web Services account used to create a LAG is a
2093
+ # registered Direct Connect Partner, the LAG is automatically enabled to
2094
+ # host sub-connections. For a LAG owned by a partner, any associated
2095
+ # virtual interfaces cannot be directly configured.
2041
2096
  #
2042
2097
  # @option params [required, Integer] :number_of_connections
2043
2098
  # The number of physical dedicated connections initially provisioned and
@@ -2198,9 +2253,9 @@ module Aws::DirectConnect
2198
2253
  # can be connected to either a Direct Connect gateway or a Virtual
2199
2254
  # Private Gateway (VGW). Connecting the private virtual interface to a
2200
2255
  # Direct Connect gateway enables the possibility for connecting to
2201
- # multiple VPCs, including VPCs in different Regions. Connecting the
2202
- # private virtual interface to a VGW only provides access to a single
2203
- # VPC within the same Region.
2256
+ # multiple VPCs, including VPCs in different Amazon Web Services
2257
+ # Regions. Connecting the private virtual interface to a VGW only
2258
+ # provides access to a single VPC within the same Region.
2204
2259
  #
2205
2260
  # Setting the MTU of a virtual interface to 9001 (jumbo frames) can
2206
2261
  # cause an update to the underlying physical connection if it wasn't
@@ -2244,6 +2299,7 @@ module Aws::DirectConnect
2244
2299
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
2245
2300
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
2246
2301
  # * {Types::VirtualInterface#tags #tags} => Array&lt;Types::Tag&gt;
2302
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
2247
2303
  #
2248
2304
  # @example Request syntax with placeholder values
2249
2305
  #
@@ -2266,6 +2322,7 @@ module Aws::DirectConnect
2266
2322
  # value: "TagValue",
2267
2323
  # },
2268
2324
  # ],
2325
+ # enable_site_link: false,
2269
2326
  # },
2270
2327
  # })
2271
2328
  #
@@ -2309,6 +2366,7 @@ module Aws::DirectConnect
2309
2366
  # resp.tags #=> Array
2310
2367
  # resp.tags[0].key #=> String
2311
2368
  # resp.tags[0].value #=> String
2369
+ # resp.site_link_enabled #=> Boolean
2312
2370
  #
2313
2371
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreatePrivateVirtualInterface AWS API Documentation
2314
2372
  #
@@ -2361,6 +2419,7 @@ module Aws::DirectConnect
2361
2419
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
2362
2420
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
2363
2421
  # * {Types::VirtualInterface#tags #tags} => Array&lt;Types::Tag&gt;
2422
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
2364
2423
  #
2365
2424
  # @example Request syntax with placeholder values
2366
2425
  #
@@ -2428,6 +2487,7 @@ module Aws::DirectConnect
2428
2487
  # resp.tags #=> Array
2429
2488
  # resp.tags[0].key #=> String
2430
2489
  # resp.tags[0].value #=> String
2490
+ # resp.site_link_enabled #=> Boolean
2431
2491
  #
2432
2492
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreatePublicVirtualInterface AWS API Documentation
2433
2493
  #
@@ -2489,6 +2549,7 @@ module Aws::DirectConnect
2489
2549
  # value: "TagValue",
2490
2550
  # },
2491
2551
  # ],
2552
+ # enable_site_link: false,
2492
2553
  # },
2493
2554
  # })
2494
2555
  #
@@ -2532,6 +2593,7 @@ module Aws::DirectConnect
2532
2593
  # resp.virtual_interface.tags #=> Array
2533
2594
  # resp.virtual_interface.tags[0].key #=> String
2534
2595
  # resp.virtual_interface.tags[0].value #=> String
2596
+ # resp.virtual_interface.site_link_enabled #=> Boolean
2535
2597
  #
2536
2598
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateTransitVirtualInterface AWS API Documentation
2537
2599
  #
@@ -2613,6 +2675,7 @@ module Aws::DirectConnect
2613
2675
  # resp.virtual_interface.tags #=> Array
2614
2676
  # resp.virtual_interface.tags[0].key #=> String
2615
2677
  # resp.virtual_interface.tags[0].value #=> String
2678
+ # resp.virtual_interface.site_link_enabled #=> Boolean
2616
2679
  #
2617
2680
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteBGPPeer AWS API Documentation
2618
2681
  #
@@ -3171,6 +3234,31 @@ module Aws::DirectConnect
3171
3234
  req.send_request(options)
3172
3235
  end
3173
3236
 
3237
+ # Get and view a list of customer agreements, along with their signed
3238
+ # status and whether the customer is an NNIPartner, NNIPartnerV2, or a
3239
+ # nonPartner.
3240
+ #
3241
+ # @return [Types::DescribeCustomerMetadataResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3242
+ #
3243
+ # * {Types::DescribeCustomerMetadataResponse#agreements #agreements} => Array&lt;Types::CustomerAgreement&gt;
3244
+ # * {Types::DescribeCustomerMetadataResponse#nni_partner_type #nni_partner_type} => String
3245
+ #
3246
+ # @example Response structure
3247
+ #
3248
+ # resp.agreements #=> Array
3249
+ # resp.agreements[0].agreement_name #=> String
3250
+ # resp.agreements[0].status #=> String
3251
+ # resp.nni_partner_type #=> String, one of "v1", "v2", "nonPartner"
3252
+ #
3253
+ # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeCustomerMetadata AWS API Documentation
3254
+ #
3255
+ # @overload describe_customer_metadata(params = {})
3256
+ # @param [Hash] params ({})
3257
+ def describe_customer_metadata(params = {}, options = {})
3258
+ req = build_request(:describe_customer_metadata, params)
3259
+ req.send_request(options)
3260
+ end
3261
+
3174
3262
  # Describes one or more association proposals for connection between a
3175
3263
  # virtual private gateway or transit gateway and a Direct Connect
3176
3264
  # gateway.
@@ -3555,8 +3643,8 @@ module Aws::DirectConnect
3555
3643
  req.send_request(options)
3556
3644
  end
3557
3645
 
3558
- # Lists the interconnects owned by the account or only the specified
3559
- # interconnect.
3646
+ # Lists the interconnects owned by the Amazon Web Services account or
3647
+ # only the specified interconnect.
3560
3648
  #
3561
3649
  # @option params [String] :interconnect_id
3562
3650
  # The ID of the interconnect.
@@ -3737,9 +3825,9 @@ module Aws::DirectConnect
3737
3825
  req.send_request(options)
3738
3826
  end
3739
3827
 
3740
- # Lists the Direct Connect locations in the current Region. These are
3741
- # the locations that can be selected when calling CreateConnection or
3742
- # CreateInterconnect.
3828
+ # Lists the Direct Connect locations in the current Amazon Web Services
3829
+ # Region. These are the locations that can be selected when calling
3830
+ # CreateConnection or CreateInterconnect.
3743
3831
  #
3744
3832
  # @return [Types::Locations] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3745
3833
  #
@@ -3767,6 +3855,51 @@ module Aws::DirectConnect
3767
3855
  req.send_request(options)
3768
3856
  end
3769
3857
 
3858
+ # Details about the router.
3859
+ #
3860
+ # @option params [required, String] :virtual_interface_id
3861
+ # The ID of the virtual interface.
3862
+ #
3863
+ # @option params [String] :router_type_identifier
3864
+ # Identifies the router by a combination of vendor, platform, and
3865
+ # software version. For example,
3866
+ # `CiscoSystemsInc-2900SeriesRouters-IOS124`.
3867
+ #
3868
+ # @return [Types::DescribeRouterConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3869
+ #
3870
+ # * {Types::DescribeRouterConfigurationResponse#customer_router_config #customer_router_config} => String
3871
+ # * {Types::DescribeRouterConfigurationResponse#router #router} => Types::RouterType
3872
+ # * {Types::DescribeRouterConfigurationResponse#virtual_interface_id #virtual_interface_id} => String
3873
+ # * {Types::DescribeRouterConfigurationResponse#virtual_interface_name #virtual_interface_name} => String
3874
+ #
3875
+ # @example Request syntax with placeholder values
3876
+ #
3877
+ # resp = client.describe_router_configuration({
3878
+ # virtual_interface_id: "VirtualInterfaceId", # required
3879
+ # router_type_identifier: "RouterTypeIdentifier",
3880
+ # })
3881
+ #
3882
+ # @example Response structure
3883
+ #
3884
+ # resp.customer_router_config #=> String
3885
+ # resp.router.vendor #=> String
3886
+ # resp.router.platform #=> String
3887
+ # resp.router.software #=> String
3888
+ # resp.router.xslt_template_name #=> String
3889
+ # resp.router.xslt_template_name_for_mac_sec #=> String
3890
+ # resp.router.router_type_identifier #=> String
3891
+ # resp.virtual_interface_id #=> String
3892
+ # resp.virtual_interface_name #=> String
3893
+ #
3894
+ # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeRouterConfiguration AWS API Documentation
3895
+ #
3896
+ # @overload describe_router_configuration(params = {})
3897
+ # @param [Hash] params ({})
3898
+ def describe_router_configuration(params = {}, options = {})
3899
+ req = build_request(:describe_router_configuration, params)
3900
+ req.send_request(options)
3901
+ end
3902
+
3770
3903
  # Describes the tags associated with the specified Direct Connect
3771
3904
  # resources.
3772
3905
  #
@@ -3800,7 +3933,8 @@ module Aws::DirectConnect
3800
3933
  req.send_request(options)
3801
3934
  end
3802
3935
 
3803
- # Lists the virtual private gateways owned by the account.
3936
+ # Lists the virtual private gateways owned by the Amazon Web Services
3937
+ # account.
3804
3938
  #
3805
3939
  # You can create one or more Direct Connect private virtual interfaces
3806
3940
  # linked to a virtual private gateway.
@@ -3824,11 +3958,12 @@ module Aws::DirectConnect
3824
3958
  req.send_request(options)
3825
3959
  end
3826
3960
 
3827
- # Displays all virtual interfaces for an account. Virtual interfaces
3828
- # deleted fewer than 15 minutes before you make the request are also
3829
- # returned. If you specify a connection ID, only the virtual interfaces
3830
- # associated with the connection are returned. If you specify a virtual
3831
- # interface ID, then only a single virtual interface is returned.
3961
+ # Displays all virtual interfaces for an Amazon Web Services account.
3962
+ # Virtual interfaces deleted fewer than 15 minutes before you make the
3963
+ # request are also returned. If you specify a connection ID, only the
3964
+ # virtual interfaces associated with the connection are returned. If you
3965
+ # specify a virtual interface ID, then only a single virtual interface
3966
+ # is returned.
3832
3967
  #
3833
3968
  # A virtual interface (VLAN) transmits the traffic between the Direct
3834
3969
  # Connect location and the customer network.
@@ -3891,6 +4026,7 @@ module Aws::DirectConnect
3891
4026
  # resp.virtual_interfaces[0].tags #=> Array
3892
4027
  # resp.virtual_interfaces[0].tags[0].key #=> String
3893
4028
  # resp.virtual_interfaces[0].tags[0].value #=> String
4029
+ # resp.virtual_interfaces[0].site_link_enabled #=> Boolean
3894
4030
  #
3895
4031
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeVirtualInterfaces AWS API Documentation
3896
4032
  #
@@ -4364,6 +4500,43 @@ module Aws::DirectConnect
4364
4500
  req.send_request(options)
4365
4501
  end
4366
4502
 
4503
+ # Updates the name of a current Direct Connect gateway.
4504
+ #
4505
+ # @option params [required, String] :direct_connect_gateway_id
4506
+ # The ID of the Direct Connect gateway to update.
4507
+ #
4508
+ # @option params [required, String] :new_direct_connect_gateway_name
4509
+ # The new name for the Direct Connect gateway.
4510
+ #
4511
+ # @return [Types::UpdateDirectConnectGatewayResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4512
+ #
4513
+ # * {Types::UpdateDirectConnectGatewayResponse#direct_connect_gateway #direct_connect_gateway} => Types::DirectConnectGateway
4514
+ #
4515
+ # @example Request syntax with placeholder values
4516
+ #
4517
+ # resp = client.update_direct_connect_gateway({
4518
+ # direct_connect_gateway_id: "DirectConnectGatewayId", # required
4519
+ # new_direct_connect_gateway_name: "DirectConnectGatewayName", # required
4520
+ # })
4521
+ #
4522
+ # @example Response structure
4523
+ #
4524
+ # resp.direct_connect_gateway.direct_connect_gateway_id #=> String
4525
+ # resp.direct_connect_gateway.direct_connect_gateway_name #=> String
4526
+ # resp.direct_connect_gateway.amazon_side_asn #=> Integer
4527
+ # resp.direct_connect_gateway.owner_account #=> String
4528
+ # resp.direct_connect_gateway.direct_connect_gateway_state #=> String, one of "pending", "available", "deleting", "deleted"
4529
+ # resp.direct_connect_gateway.state_change_error #=> String
4530
+ #
4531
+ # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateDirectConnectGateway AWS API Documentation
4532
+ #
4533
+ # @overload update_direct_connect_gateway(params = {})
4534
+ # @param [Hash] params ({})
4535
+ def update_direct_connect_gateway(params = {}, options = {})
4536
+ req = build_request(:update_direct_connect_gateway, params)
4537
+ req.send_request(options)
4538
+ end
4539
+
4367
4540
  # Updates the specified attributes of the Direct Connect gateway
4368
4541
  # association.
4369
4542
  #
@@ -4582,6 +4755,12 @@ module Aws::DirectConnect
4582
4755
  # The maximum transmission unit (MTU), in bytes. The supported values
4583
4756
  # are 1500 and 9001. The default value is 1500.
4584
4757
  #
4758
+ # @option params [Boolean] :enable_site_link
4759
+ # Indicates whether to enable or disable SiteLink.
4760
+ #
4761
+ # @option params [String] :virtual_interface_name
4762
+ # The name of the virtual private interface.
4763
+ #
4585
4764
  # @return [Types::VirtualInterface] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4586
4765
  #
4587
4766
  # * {Types::VirtualInterface#owner_account #owner_account} => String
@@ -4609,12 +4788,15 @@ module Aws::DirectConnect
4609
4788
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
4610
4789
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
4611
4790
  # * {Types::VirtualInterface#tags #tags} => Array&lt;Types::Tag&gt;
4791
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
4612
4792
  #
4613
4793
  # @example Request syntax with placeholder values
4614
4794
  #
4615
4795
  # resp = client.update_virtual_interface_attributes({
4616
4796
  # virtual_interface_id: "VirtualInterfaceId", # required
4617
4797
  # mtu: 1,
4798
+ # enable_site_link: false,
4799
+ # virtual_interface_name: "VirtualInterfaceName",
4618
4800
  # })
4619
4801
  #
4620
4802
  # @example Response structure
@@ -4657,6 +4839,7 @@ module Aws::DirectConnect
4657
4839
  # resp.tags #=> Array
4658
4840
  # resp.tags[0].key #=> String
4659
4841
  # resp.tags[0].value #=> String
4842
+ # resp.site_link_enabled #=> Boolean
4660
4843
  #
4661
4844
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateVirtualInterfaceAttributes AWS API Documentation
4662
4845
  #
@@ -4680,7 +4863,7 @@ module Aws::DirectConnect
4680
4863
  params: params,
4681
4864
  config: config)
4682
4865
  context[:gem_name] = 'aws-sdk-directconnect'
4683
- context[:gem_version] = '1.47.0'
4866
+ context[:gem_version] = '1.51.0'
4684
4867
  Seahorse::Client::Request.new(handlers, context)
4685
4868
  end
4686
4869