aws-sdk-directconnect 1.39.0 → 1.43.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 +298 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-directconnect.rb +2 -2
- data/lib/aws-sdk-directconnect/client.rb +647 -143
- data/lib/aws-sdk-directconnect/client_api.rb +98 -1
- data/lib/aws-sdk-directconnect/customizations.rb +1 -1
- data/lib/aws-sdk-directconnect/errors.rb +1 -1
- data/lib/aws-sdk-directconnect/resource.rb +1 -1
- data/lib/aws-sdk-directconnect/types.rb +397 -59
- metadata +9 -7
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.43.0
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-directconnect/customizations'
|
|
48
48
|
# @!group service
|
49
49
|
module Aws::DirectConnect
|
50
50
|
|
51
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.43.0'
|
52
52
|
|
53
53
|
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -347,15 +347,15 @@ module Aws::DirectConnect
|
|
347
347
|
# The ID of the request proposal.
|
348
348
|
#
|
349
349
|
# @option params [required, String] :associated_gateway_owner_account
|
350
|
-
# The ID of the
|
351
|
-
#
|
350
|
+
# The ID of the account that owns the virtual private gateway or transit
|
351
|
+
# gateway.
|
352
352
|
#
|
353
353
|
# @option params [Array<Types::RouteFilterPrefix>] :override_allowed_prefixes_to_direct_connect_gateway
|
354
354
|
# Overrides the Amazon VPC prefixes advertised to the Direct Connect
|
355
355
|
# gateway.
|
356
356
|
#
|
357
357
|
# For information about how to set the prefixes, see [Allowed
|
358
|
-
# Prefixes][1] in the *
|
358
|
+
# Prefixes][1] in the *Direct Connect User Guide*.
|
359
359
|
#
|
360
360
|
#
|
361
361
|
#
|
@@ -411,14 +411,14 @@ module Aws::DirectConnect
|
|
411
411
|
# Allocates a VLAN number and a specified amount of bandwidth for use by
|
412
412
|
# a hosted connection on the specified interconnect.
|
413
413
|
#
|
414
|
-
# <note markdown="1"> Intended for use by
|
414
|
+
# <note markdown="1"> Intended for use by Direct Connect Partners only.
|
415
415
|
#
|
416
416
|
# </note>
|
417
417
|
#
|
418
418
|
# @option params [required, String] :bandwidth
|
419
419
|
# The bandwidth of the connection. The possible values are 50Mbps,
|
420
420
|
# 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, and
|
421
|
-
# 10Gbps. Note that only those
|
421
|
+
# 10Gbps. Note that only those Direct Connect Partners who have met
|
422
422
|
# specific requirements are allowed to create a 1Gbps, 2Gbps, 5Gbps or
|
423
423
|
# 10Gbps hosted connection.
|
424
424
|
#
|
@@ -426,8 +426,8 @@ module Aws::DirectConnect
|
|
426
426
|
# The name of the provisioned connection.
|
427
427
|
#
|
428
428
|
# @option params [required, String] :owner_account
|
429
|
-
# The ID of the
|
430
|
-
#
|
429
|
+
# The ID of the account of the customer for whom the connection will be
|
430
|
+
# provisioned.
|
431
431
|
#
|
432
432
|
# @option params [required, String] :interconnect_id
|
433
433
|
# The ID of the interconnect on which the connection will be
|
@@ -452,9 +452,14 @@ module Aws::DirectConnect
|
|
452
452
|
# * {Types::Connection#aws_device #aws_device} => String
|
453
453
|
# * {Types::Connection#jumbo_frame_capable #jumbo_frame_capable} => Boolean
|
454
454
|
# * {Types::Connection#aws_device_v2 #aws_device_v2} => String
|
455
|
+
# * {Types::Connection#aws_logical_device_id #aws_logical_device_id} => String
|
455
456
|
# * {Types::Connection#has_logical_redundancy #has_logical_redundancy} => String
|
456
457
|
# * {Types::Connection#tags #tags} => Array<Types::Tag>
|
457
458
|
# * {Types::Connection#provider_name #provider_name} => String
|
459
|
+
# * {Types::Connection#mac_sec_capable #mac_sec_capable} => Boolean
|
460
|
+
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
461
|
+
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
462
|
+
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
458
463
|
#
|
459
464
|
# @example Request syntax with placeholder values
|
460
465
|
#
|
@@ -482,11 +487,20 @@ module Aws::DirectConnect
|
|
482
487
|
# resp.aws_device #=> String
|
483
488
|
# resp.jumbo_frame_capable #=> Boolean
|
484
489
|
# resp.aws_device_v2 #=> String
|
490
|
+
# resp.aws_logical_device_id #=> String
|
485
491
|
# resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
486
492
|
# resp.tags #=> Array
|
487
493
|
# resp.tags[0].key #=> String
|
488
494
|
# resp.tags[0].value #=> String
|
489
495
|
# resp.provider_name #=> String
|
496
|
+
# resp.mac_sec_capable #=> Boolean
|
497
|
+
# resp.port_encryption_status #=> String
|
498
|
+
# resp.encryption_mode #=> String
|
499
|
+
# resp.mac_sec_keys #=> Array
|
500
|
+
# resp.mac_sec_keys[0].secret_arn #=> String
|
501
|
+
# resp.mac_sec_keys[0].ckn #=> String
|
502
|
+
# resp.mac_sec_keys[0].state #=> String
|
503
|
+
# resp.mac_sec_keys[0].start_on #=> String
|
490
504
|
#
|
491
505
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocateConnectionOnInterconnect AWS API Documentation
|
492
506
|
#
|
@@ -502,11 +516,11 @@ module Aws::DirectConnect
|
|
502
516
|
#
|
503
517
|
# Allocates a VLAN number and a specified amount of capacity (bandwidth)
|
504
518
|
# for use by a hosted connection on the specified interconnect or LAG of
|
505
|
-
# interconnects.
|
506
|
-
# capacity and the
|
507
|
-
# hosted connection for the specified capacity.
|
519
|
+
# interconnects. Amazon Web Services polices the hosted connection for
|
520
|
+
# the specified capacity and the Direct Connect Partner must also police
|
521
|
+
# the hosted connection for the specified capacity.
|
508
522
|
#
|
509
|
-
# <note markdown="1"> Intended for use by
|
523
|
+
# <note markdown="1"> Intended for use by Direct Connect Partners only.
|
510
524
|
#
|
511
525
|
# </note>
|
512
526
|
#
|
@@ -514,12 +528,12 @@ module Aws::DirectConnect
|
|
514
528
|
# The ID of the interconnect or LAG.
|
515
529
|
#
|
516
530
|
# @option params [required, String] :owner_account
|
517
|
-
# The ID of the
|
531
|
+
# The ID of the account ID of the customer for the connection.
|
518
532
|
#
|
519
533
|
# @option params [required, String] :bandwidth
|
520
534
|
# The bandwidth of the connection. The possible values are 50Mbps,
|
521
535
|
# 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, and
|
522
|
-
# 10Gbps. Note that only those
|
536
|
+
# 10Gbps. Note that only those Direct Connect Partners who have met
|
523
537
|
# specific requirements are allowed to create a 1Gbps, 2Gbps, 5Gbps or
|
524
538
|
# 10Gbps hosted connection.
|
525
539
|
#
|
@@ -548,9 +562,14 @@ module Aws::DirectConnect
|
|
548
562
|
# * {Types::Connection#aws_device #aws_device} => String
|
549
563
|
# * {Types::Connection#jumbo_frame_capable #jumbo_frame_capable} => Boolean
|
550
564
|
# * {Types::Connection#aws_device_v2 #aws_device_v2} => String
|
565
|
+
# * {Types::Connection#aws_logical_device_id #aws_logical_device_id} => String
|
551
566
|
# * {Types::Connection#has_logical_redundancy #has_logical_redundancy} => String
|
552
567
|
# * {Types::Connection#tags #tags} => Array<Types::Tag>
|
553
568
|
# * {Types::Connection#provider_name #provider_name} => String
|
569
|
+
# * {Types::Connection#mac_sec_capable #mac_sec_capable} => Boolean
|
570
|
+
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
571
|
+
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
572
|
+
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
554
573
|
#
|
555
574
|
# @example Request syntax with placeholder values
|
556
575
|
#
|
@@ -584,11 +603,20 @@ module Aws::DirectConnect
|
|
584
603
|
# resp.aws_device #=> String
|
585
604
|
# resp.jumbo_frame_capable #=> Boolean
|
586
605
|
# resp.aws_device_v2 #=> String
|
606
|
+
# resp.aws_logical_device_id #=> String
|
587
607
|
# resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
588
608
|
# resp.tags #=> Array
|
589
609
|
# resp.tags[0].key #=> String
|
590
610
|
# resp.tags[0].value #=> String
|
591
611
|
# resp.provider_name #=> String
|
612
|
+
# resp.mac_sec_capable #=> Boolean
|
613
|
+
# resp.port_encryption_status #=> String
|
614
|
+
# resp.encryption_mode #=> String
|
615
|
+
# resp.mac_sec_keys #=> Array
|
616
|
+
# resp.mac_sec_keys[0].secret_arn #=> String
|
617
|
+
# resp.mac_sec_keys[0].ckn #=> String
|
618
|
+
# resp.mac_sec_keys[0].state #=> String
|
619
|
+
# resp.mac_sec_keys[0].start_on #=> String
|
592
620
|
#
|
593
621
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocateHostedConnection AWS API Documentation
|
594
622
|
#
|
@@ -600,7 +628,7 @@ module Aws::DirectConnect
|
|
600
628
|
end
|
601
629
|
|
602
630
|
# Provisions a private virtual interface to be owned by the specified
|
603
|
-
#
|
631
|
+
# account.
|
604
632
|
#
|
605
633
|
# Virtual interfaces created using this action must be confirmed by the
|
606
634
|
# owner using ConfirmPrivateVirtualInterface. Until then, the virtual
|
@@ -612,7 +640,7 @@ module Aws::DirectConnect
|
|
612
640
|
# provisioned.
|
613
641
|
#
|
614
642
|
# @option params [required, String] :owner_account
|
615
|
-
# The ID of the
|
643
|
+
# The ID of the account that owns the virtual private interface.
|
616
644
|
#
|
617
645
|
# @option params [required, Types::NewPrivateVirtualInterfaceAllocation] :new_private_virtual_interface_allocation
|
618
646
|
# Information about the private virtual interface.
|
@@ -642,6 +670,7 @@ module Aws::DirectConnect
|
|
642
670
|
# * {Types::VirtualInterface#bgp_peers #bgp_peers} => Array<Types::BGPPeer>
|
643
671
|
# * {Types::VirtualInterface#region #region} => String
|
644
672
|
# * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
|
673
|
+
# * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
|
645
674
|
# * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
|
646
675
|
#
|
647
676
|
# @example Request syntax with placeholder values
|
@@ -700,8 +729,10 @@ module Aws::DirectConnect
|
|
700
729
|
# resp.bgp_peers[0].bgp_peer_state #=> String, one of "verifying", "pending", "available", "deleting", "deleted"
|
701
730
|
# resp.bgp_peers[0].bgp_status #=> String, one of "up", "down", "unknown"
|
702
731
|
# resp.bgp_peers[0].aws_device_v2 #=> String
|
732
|
+
# resp.bgp_peers[0].aws_logical_device_id #=> String
|
703
733
|
# resp.region #=> String
|
704
734
|
# resp.aws_device_v2 #=> String
|
735
|
+
# resp.aws_logical_device_id #=> String
|
705
736
|
# resp.tags #=> Array
|
706
737
|
# resp.tags[0].key #=> String
|
707
738
|
# resp.tags[0].value #=> String
|
@@ -715,11 +746,11 @@ module Aws::DirectConnect
|
|
715
746
|
req.send_request(options)
|
716
747
|
end
|
717
748
|
|
718
|
-
# Provisions a public virtual interface to be owned by the specified
|
749
|
+
# Provisions a public virtual interface to be owned by the specified
|
719
750
|
# account.
|
720
751
|
#
|
721
752
|
# The owner of a connection calls this function to provision a public
|
722
|
-
# virtual interface to be owned by the specified
|
753
|
+
# virtual interface to be owned by the specified account.
|
723
754
|
#
|
724
755
|
# Virtual interfaces created using this function must be confirmed by
|
725
756
|
# the owner using ConfirmPublicVirtualInterface. Until this step has
|
@@ -736,7 +767,7 @@ module Aws::DirectConnect
|
|
736
767
|
# provisioned.
|
737
768
|
#
|
738
769
|
# @option params [required, String] :owner_account
|
739
|
-
# The ID of the
|
770
|
+
# The ID of the account that owns the public virtual interface.
|
740
771
|
#
|
741
772
|
# @option params [required, Types::NewPublicVirtualInterfaceAllocation] :new_public_virtual_interface_allocation
|
742
773
|
# Information about the public virtual interface.
|
@@ -766,6 +797,7 @@ module Aws::DirectConnect
|
|
766
797
|
# * {Types::VirtualInterface#bgp_peers #bgp_peers} => Array<Types::BGPPeer>
|
767
798
|
# * {Types::VirtualInterface#region #region} => String
|
768
799
|
# * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
|
800
|
+
# * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
|
769
801
|
# * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
|
770
802
|
#
|
771
803
|
# @example Request syntax with placeholder values
|
@@ -828,8 +860,10 @@ module Aws::DirectConnect
|
|
828
860
|
# resp.bgp_peers[0].bgp_peer_state #=> String, one of "verifying", "pending", "available", "deleting", "deleted"
|
829
861
|
# resp.bgp_peers[0].bgp_status #=> String, one of "up", "down", "unknown"
|
830
862
|
# resp.bgp_peers[0].aws_device_v2 #=> String
|
863
|
+
# resp.bgp_peers[0].aws_logical_device_id #=> String
|
831
864
|
# resp.region #=> String
|
832
865
|
# resp.aws_device_v2 #=> String
|
866
|
+
# resp.aws_logical_device_id #=> String
|
833
867
|
# resp.tags #=> Array
|
834
868
|
# resp.tags[0].key #=> String
|
835
869
|
# resp.tags[0].value #=> String
|
@@ -844,11 +878,11 @@ module Aws::DirectConnect
|
|
844
878
|
end
|
845
879
|
|
846
880
|
# Provisions a transit virtual interface to be owned by the specified
|
847
|
-
#
|
848
|
-
#
|
881
|
+
# account. Use this type of interface to connect a transit gateway to
|
882
|
+
# your Direct Connect gateway.
|
849
883
|
#
|
850
884
|
# The owner of a connection provisions a transit virtual interface to be
|
851
|
-
# owned by the specified
|
885
|
+
# owned by the specified account.
|
852
886
|
#
|
853
887
|
# After you create a transit virtual interface, it must be confirmed by
|
854
888
|
# the owner using ConfirmTransitVirtualInterface. Until this step has
|
@@ -860,7 +894,7 @@ module Aws::DirectConnect
|
|
860
894
|
# provisioned.
|
861
895
|
#
|
862
896
|
# @option params [required, String] :owner_account
|
863
|
-
# The ID of the
|
897
|
+
# The ID of the account that owns the transit virtual interface.
|
864
898
|
#
|
865
899
|
# @option params [required, Types::NewTransitVirtualInterfaceAllocation] :new_transit_virtual_interface_allocation
|
866
900
|
# Information about the transit virtual interface.
|
@@ -925,8 +959,10 @@ module Aws::DirectConnect
|
|
925
959
|
# resp.virtual_interface.bgp_peers[0].bgp_peer_state #=> String, one of "verifying", "pending", "available", "deleting", "deleted"
|
926
960
|
# resp.virtual_interface.bgp_peers[0].bgp_status #=> String, one of "up", "down", "unknown"
|
927
961
|
# resp.virtual_interface.bgp_peers[0].aws_device_v2 #=> String
|
962
|
+
# resp.virtual_interface.bgp_peers[0].aws_logical_device_id #=> String
|
928
963
|
# resp.virtual_interface.region #=> String
|
929
964
|
# resp.virtual_interface.aws_device_v2 #=> String
|
965
|
+
# resp.virtual_interface.aws_logical_device_id #=> String
|
930
966
|
# resp.virtual_interface.tags #=> Array
|
931
967
|
# resp.virtual_interface.tags[0].key #=> String
|
932
968
|
# resp.virtual_interface.tags[0].value #=> String
|
@@ -942,13 +978,13 @@ module Aws::DirectConnect
|
|
942
978
|
|
943
979
|
# Associates an existing connection with a link aggregation group (LAG).
|
944
980
|
# The connection is interrupted and re-established as a member of the
|
945
|
-
# LAG (connectivity to
|
946
|
-
# hosted on the same
|
947
|
-
# bandwidth must match the bandwidth for the LAG. You can
|
948
|
-
# connection that's currently associated with a
|
949
|
-
# if removing the connection would cause the
|
950
|
-
# its setting for minimum number of
|
951
|
-
# fails.
|
981
|
+
# LAG (connectivity to Amazon Web Services is interrupted). The
|
982
|
+
# connection must be hosted on the same Direct Connect endpoint as the
|
983
|
+
# LAG, and its bandwidth must match the bandwidth for the LAG. You can
|
984
|
+
# re-associate a connection that's currently associated with a
|
985
|
+
# different LAG; however, if removing the connection would cause the
|
986
|
+
# original LAG to fall below its setting for minimum number of
|
987
|
+
# operational connections, the request fails.
|
952
988
|
#
|
953
989
|
# Any virtual interfaces that are directly associated with the
|
954
990
|
# connection are automatically re-associated with the LAG. If the
|
@@ -982,9 +1018,14 @@ module Aws::DirectConnect
|
|
982
1018
|
# * {Types::Connection#aws_device #aws_device} => String
|
983
1019
|
# * {Types::Connection#jumbo_frame_capable #jumbo_frame_capable} => Boolean
|
984
1020
|
# * {Types::Connection#aws_device_v2 #aws_device_v2} => String
|
1021
|
+
# * {Types::Connection#aws_logical_device_id #aws_logical_device_id} => String
|
985
1022
|
# * {Types::Connection#has_logical_redundancy #has_logical_redundancy} => String
|
986
1023
|
# * {Types::Connection#tags #tags} => Array<Types::Tag>
|
987
1024
|
# * {Types::Connection#provider_name #provider_name} => String
|
1025
|
+
# * {Types::Connection#mac_sec_capable #mac_sec_capable} => Boolean
|
1026
|
+
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
1027
|
+
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
1028
|
+
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
988
1029
|
#
|
989
1030
|
# @example Request syntax with placeholder values
|
990
1031
|
#
|
@@ -1009,11 +1050,20 @@ module Aws::DirectConnect
|
|
1009
1050
|
# resp.aws_device #=> String
|
1010
1051
|
# resp.jumbo_frame_capable #=> Boolean
|
1011
1052
|
# resp.aws_device_v2 #=> String
|
1053
|
+
# resp.aws_logical_device_id #=> String
|
1012
1054
|
# resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
1013
1055
|
# resp.tags #=> Array
|
1014
1056
|
# resp.tags[0].key #=> String
|
1015
1057
|
# resp.tags[0].value #=> String
|
1016
1058
|
# resp.provider_name #=> String
|
1059
|
+
# resp.mac_sec_capable #=> Boolean
|
1060
|
+
# resp.port_encryption_status #=> String
|
1061
|
+
# resp.encryption_mode #=> String
|
1062
|
+
# resp.mac_sec_keys #=> Array
|
1063
|
+
# resp.mac_sec_keys[0].secret_arn #=> String
|
1064
|
+
# resp.mac_sec_keys[0].ckn #=> String
|
1065
|
+
# resp.mac_sec_keys[0].state #=> String
|
1066
|
+
# resp.mac_sec_keys[0].start_on #=> String
|
1017
1067
|
#
|
1018
1068
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateConnectionWithLag AWS API Documentation
|
1019
1069
|
#
|
@@ -1028,9 +1078,10 @@ module Aws::DirectConnect
|
|
1028
1078
|
# aggregation group (LAG) or interconnect. If the target interconnect or
|
1029
1079
|
# LAG has an existing hosted connection with a conflicting VLAN number
|
1030
1080
|
# or IP address, the operation fails. This action temporarily interrupts
|
1031
|
-
# the hosted connection's connectivity to
|
1081
|
+
# the hosted connection's connectivity to Amazon Web Services as it is
|
1082
|
+
# being migrated.
|
1032
1083
|
#
|
1033
|
-
# <note markdown="1"> Intended for use by
|
1084
|
+
# <note markdown="1"> Intended for use by Direct Connect Partners only.
|
1034
1085
|
#
|
1035
1086
|
# </note>
|
1036
1087
|
#
|
@@ -1056,9 +1107,14 @@ module Aws::DirectConnect
|
|
1056
1107
|
# * {Types::Connection#aws_device #aws_device} => String
|
1057
1108
|
# * {Types::Connection#jumbo_frame_capable #jumbo_frame_capable} => Boolean
|
1058
1109
|
# * {Types::Connection#aws_device_v2 #aws_device_v2} => String
|
1110
|
+
# * {Types::Connection#aws_logical_device_id #aws_logical_device_id} => String
|
1059
1111
|
# * {Types::Connection#has_logical_redundancy #has_logical_redundancy} => String
|
1060
1112
|
# * {Types::Connection#tags #tags} => Array<Types::Tag>
|
1061
1113
|
# * {Types::Connection#provider_name #provider_name} => String
|
1114
|
+
# * {Types::Connection#mac_sec_capable #mac_sec_capable} => Boolean
|
1115
|
+
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
1116
|
+
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
1117
|
+
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
1062
1118
|
#
|
1063
1119
|
# @example Request syntax with placeholder values
|
1064
1120
|
#
|
@@ -1083,11 +1139,20 @@ module Aws::DirectConnect
|
|
1083
1139
|
# resp.aws_device #=> String
|
1084
1140
|
# resp.jumbo_frame_capable #=> Boolean
|
1085
1141
|
# resp.aws_device_v2 #=> String
|
1142
|
+
# resp.aws_logical_device_id #=> String
|
1086
1143
|
# resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
1087
1144
|
# resp.tags #=> Array
|
1088
1145
|
# resp.tags[0].key #=> String
|
1089
1146
|
# resp.tags[0].value #=> String
|
1090
1147
|
# resp.provider_name #=> String
|
1148
|
+
# resp.mac_sec_capable #=> Boolean
|
1149
|
+
# resp.port_encryption_status #=> String
|
1150
|
+
# resp.encryption_mode #=> String
|
1151
|
+
# resp.mac_sec_keys #=> Array
|
1152
|
+
# resp.mac_sec_keys[0].secret_arn #=> String
|
1153
|
+
# resp.mac_sec_keys[0].ckn #=> String
|
1154
|
+
# resp.mac_sec_keys[0].state #=> String
|
1155
|
+
# resp.mac_sec_keys[0].start_on #=> String
|
1091
1156
|
#
|
1092
1157
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateHostedConnection AWS API Documentation
|
1093
1158
|
#
|
@@ -1098,11 +1163,98 @@ module Aws::DirectConnect
|
|
1098
1163
|
req.send_request(options)
|
1099
1164
|
end
|
1100
1165
|
|
1166
|
+
# Associates a MAC Security (MACsec) Connection Key Name (CKN)/
|
1167
|
+
# Connectivity Association Key (CAK) pair with an Direct Connect
|
1168
|
+
# dedicated connection.
|
1169
|
+
#
|
1170
|
+
# You must supply either the `secretARN,` or the CKN/CAK (`ckn` and
|
1171
|
+
# `cak`) pair in the request.
|
1172
|
+
#
|
1173
|
+
# For information about MAC Security (MACsec) key considerations, see
|
1174
|
+
# [MACsec pre-shared CKN/CAK key considerations ][1] in the *Direct
|
1175
|
+
# Connect User Guide*.
|
1176
|
+
#
|
1177
|
+
#
|
1178
|
+
#
|
1179
|
+
# [1]: https://docs.aws.amazon.com/directconnect/latest/UserGuide/direct-connect-mac-sec-getting-started.html#mac-sec-key-consideration
|
1180
|
+
#
|
1181
|
+
# @option params [required, String] :connection_id
|
1182
|
+
# The ID of the dedicated connection (dxcon-xxxx), or the ID of the LAG
|
1183
|
+
# (dxlag-xxxx).
|
1184
|
+
#
|
1185
|
+
# You can use DescribeConnections or DescribeLags to retrieve connection
|
1186
|
+
# ID.
|
1187
|
+
#
|
1188
|
+
# @option params [String] :secret_arn
|
1189
|
+
# The Amazon Resource Name (ARN) of the MAC Security (MACsec) secret key
|
1190
|
+
# to associate with the dedicated connection.
|
1191
|
+
#
|
1192
|
+
# You can use DescribeConnections or DescribeLags to retrieve the MAC
|
1193
|
+
# Security (MACsec) secret key.
|
1194
|
+
#
|
1195
|
+
# If you use this request parameter, you do not use the `ckn` and `cak`
|
1196
|
+
# request parameters.
|
1197
|
+
#
|
1198
|
+
# @option params [String] :ckn
|
1199
|
+
# The MAC Security (MACsec) CKN to associate with the dedicated
|
1200
|
+
# connection.
|
1201
|
+
#
|
1202
|
+
# You can create the CKN/CAK pair using an industry standard tool.
|
1203
|
+
#
|
1204
|
+
# The valid values are 64 hexadecimal characters (0-9, A-E).
|
1205
|
+
#
|
1206
|
+
# If you use this request parameter, you must use the `cak` request
|
1207
|
+
# parameter and not use the `secretARN` request parameter.
|
1208
|
+
#
|
1209
|
+
# @option params [String] :cak
|
1210
|
+
# The MAC Security (MACsec) CAK to associate with the dedicated
|
1211
|
+
# connection.
|
1212
|
+
#
|
1213
|
+
# You can create the CKN/CAK pair using an industry standard tool.
|
1214
|
+
#
|
1215
|
+
# The valid values are 64 hexadecimal characters (0-9, A-E).
|
1216
|
+
#
|
1217
|
+
# If you use this request parameter, you must use the `ckn` request
|
1218
|
+
# parameter and not use the `secretARN` request parameter.
|
1219
|
+
#
|
1220
|
+
# @return [Types::AssociateMacSecKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1221
|
+
#
|
1222
|
+
# * {Types::AssociateMacSecKeyResponse#connection_id #connection_id} => String
|
1223
|
+
# * {Types::AssociateMacSecKeyResponse#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
1224
|
+
#
|
1225
|
+
# @example Request syntax with placeholder values
|
1226
|
+
#
|
1227
|
+
# resp = client.associate_mac_sec_key({
|
1228
|
+
# connection_id: "ConnectionId", # required
|
1229
|
+
# secret_arn: "SecretARN",
|
1230
|
+
# ckn: "Ckn",
|
1231
|
+
# cak: "Cak",
|
1232
|
+
# })
|
1233
|
+
#
|
1234
|
+
# @example Response structure
|
1235
|
+
#
|
1236
|
+
# resp.connection_id #=> String
|
1237
|
+
# resp.mac_sec_keys #=> Array
|
1238
|
+
# resp.mac_sec_keys[0].secret_arn #=> String
|
1239
|
+
# resp.mac_sec_keys[0].ckn #=> String
|
1240
|
+
# resp.mac_sec_keys[0].state #=> String
|
1241
|
+
# resp.mac_sec_keys[0].start_on #=> String
|
1242
|
+
#
|
1243
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateMacSecKey AWS API Documentation
|
1244
|
+
#
|
1245
|
+
# @overload associate_mac_sec_key(params = {})
|
1246
|
+
# @param [Hash] params ({})
|
1247
|
+
def associate_mac_sec_key(params = {}, options = {})
|
1248
|
+
req = build_request(:associate_mac_sec_key, params)
|
1249
|
+
req.send_request(options)
|
1250
|
+
end
|
1251
|
+
|
1101
1252
|
# Associates a virtual interface with a specified link aggregation group
|
1102
|
-
# (LAG) or connection. Connectivity to
|
1103
|
-
# the virtual interface is being migrated. If
|
1104
|
-
# LAG has an associated virtual interface with
|
1105
|
-
# or a conflicting IP address, the operation
|
1253
|
+
# (LAG) or connection. Connectivity to Amazon Web Services is
|
1254
|
+
# temporarily interrupted as the virtual interface is being migrated. If
|
1255
|
+
# the target connection or LAG has an associated virtual interface with
|
1256
|
+
# a conflicting VLAN number or a conflicting IP address, the operation
|
1257
|
+
# fails.
|
1106
1258
|
#
|
1107
1259
|
# Virtual interfaces associated with a hosted connection cannot be
|
1108
1260
|
# associated with a LAG; hosted connections must be migrated along with
|
@@ -1145,6 +1297,7 @@ module Aws::DirectConnect
|
|
1145
1297
|
# * {Types::VirtualInterface#bgp_peers #bgp_peers} => Array<Types::BGPPeer>
|
1146
1298
|
# * {Types::VirtualInterface#region #region} => String
|
1147
1299
|
# * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
|
1300
|
+
# * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
|
1148
1301
|
# * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
|
1149
1302
|
#
|
1150
1303
|
# @example Request syntax with placeholder values
|
@@ -1187,8 +1340,10 @@ module Aws::DirectConnect
|
|
1187
1340
|
# resp.bgp_peers[0].bgp_peer_state #=> String, one of "verifying", "pending", "available", "deleting", "deleted"
|
1188
1341
|
# resp.bgp_peers[0].bgp_status #=> String, one of "up", "down", "unknown"
|
1189
1342
|
# resp.bgp_peers[0].aws_device_v2 #=> String
|
1343
|
+
# resp.bgp_peers[0].aws_logical_device_id #=> String
|
1190
1344
|
# resp.region #=> String
|
1191
1345
|
# resp.aws_device_v2 #=> String
|
1346
|
+
# resp.aws_logical_device_id #=> String
|
1192
1347
|
# resp.tags #=> Array
|
1193
1348
|
# resp.tags[0].key #=> String
|
1194
1349
|
# resp.tags[0].value #=> String
|
@@ -1236,7 +1391,7 @@ module Aws::DirectConnect
|
|
1236
1391
|
end
|
1237
1392
|
|
1238
1393
|
# Accepts ownership of a private virtual interface created by another
|
1239
|
-
#
|
1394
|
+
# account.
|
1240
1395
|
#
|
1241
1396
|
# After the virtual interface owner makes this call, the virtual
|
1242
1397
|
# interface is created and attached to the specified virtual private
|
@@ -1277,7 +1432,7 @@ module Aws::DirectConnect
|
|
1277
1432
|
req.send_request(options)
|
1278
1433
|
end
|
1279
1434
|
|
1280
|
-
# Accepts ownership of a public virtual interface created by another
|
1435
|
+
# Accepts ownership of a public virtual interface created by another
|
1281
1436
|
# account.
|
1282
1437
|
#
|
1283
1438
|
# After the virtual interface owner makes this call, the specified
|
@@ -1310,7 +1465,7 @@ module Aws::DirectConnect
|
|
1310
1465
|
end
|
1311
1466
|
|
1312
1467
|
# Accepts ownership of a transit virtual interface created by another
|
1313
|
-
#
|
1468
|
+
# account.
|
1314
1469
|
#
|
1315
1470
|
# After the owner of the transit virtual interface makes this call, the
|
1316
1471
|
# specified transit virtual interface is created and made available to
|
@@ -1349,8 +1504,8 @@ module Aws::DirectConnect
|
|
1349
1504
|
# Creates a BGP peer on the specified virtual interface.
|
1350
1505
|
#
|
1351
1506
|
# You must create a BGP peer for the corresponding address family
|
1352
|
-
# (IPv4/IPv6) in order to access
|
1353
|
-
# address family.
|
1507
|
+
# (IPv4/IPv6) in order to access Amazon Web Services resources that also
|
1508
|
+
# use that address family.
|
1354
1509
|
#
|
1355
1510
|
# If logical redundancy is not supported by the connection,
|
1356
1511
|
# interconnect, or LAG, the BGP peer cannot be in the same address
|
@@ -1420,8 +1575,10 @@ module Aws::DirectConnect
|
|
1420
1575
|
# resp.virtual_interface.bgp_peers[0].bgp_peer_state #=> String, one of "verifying", "pending", "available", "deleting", "deleted"
|
1421
1576
|
# resp.virtual_interface.bgp_peers[0].bgp_status #=> String, one of "up", "down", "unknown"
|
1422
1577
|
# resp.virtual_interface.bgp_peers[0].aws_device_v2 #=> String
|
1578
|
+
# resp.virtual_interface.bgp_peers[0].aws_logical_device_id #=> String
|
1423
1579
|
# resp.virtual_interface.region #=> String
|
1424
1580
|
# resp.virtual_interface.aws_device_v2 #=> String
|
1581
|
+
# resp.virtual_interface.aws_logical_device_id #=> String
|
1425
1582
|
# resp.virtual_interface.tags #=> Array
|
1426
1583
|
# resp.virtual_interface.tags[0].key #=> String
|
1427
1584
|
# resp.virtual_interface.tags[0].value #=> String
|
@@ -1435,21 +1592,20 @@ module Aws::DirectConnect
|
|
1435
1592
|
req.send_request(options)
|
1436
1593
|
end
|
1437
1594
|
|
1438
|
-
# Creates a connection between a customer network and a specific
|
1439
|
-
#
|
1595
|
+
# Creates a connection between a customer network and a specific Direct
|
1596
|
+
# Connect location.
|
1440
1597
|
#
|
1441
|
-
# A connection links your internal network to an
|
1442
|
-
#
|
1443
|
-
#
|
1444
|
-
# router.
|
1598
|
+
# A connection links your internal network to an Direct Connect location
|
1599
|
+
# over a standard Ethernet fiber-optic cable. One end of the cable is
|
1600
|
+
# connected to your router, the other to an Direct Connect router.
|
1445
1601
|
#
|
1446
1602
|
# To find the locations for your Region, use DescribeLocations.
|
1447
1603
|
#
|
1448
1604
|
# You can automatically add the new connection to a link aggregation
|
1449
1605
|
# group (LAG) by specifying a LAG ID in the request. This ensures that
|
1450
|
-
# the new connection is allocated on the same
|
1451
|
-
#
|
1452
|
-
#
|
1606
|
+
# the new connection is allocated on the same Direct Connect endpoint
|
1607
|
+
# that hosts the specified LAG. If there are no available ports on the
|
1608
|
+
# endpoint, the request fails and no connection is created.
|
1453
1609
|
#
|
1454
1610
|
# @option params [required, String] :location
|
1455
1611
|
# The location of the connection.
|
@@ -1470,6 +1626,18 @@ module Aws::DirectConnect
|
|
1470
1626
|
# The name of the service provider associated with the requested
|
1471
1627
|
# connection.
|
1472
1628
|
#
|
1629
|
+
# @option params [Boolean] :request_mac_sec
|
1630
|
+
# Indicates whether you want the connection to support MAC Security
|
1631
|
+
# (MACsec).
|
1632
|
+
#
|
1633
|
+
# MAC Security (MACsec) is only available on dedicated connections. For
|
1634
|
+
# information about MAC Security (MACsec) prerequisties, see [MACsec
|
1635
|
+
# prerequisties][1] in the *Direct Connect User Guide*.
|
1636
|
+
#
|
1637
|
+
#
|
1638
|
+
#
|
1639
|
+
# [1]: https://docs.aws.amazon.com/directconnect/latest/UserGuide/direct-connect-mac-sec-getting-started.html#mac-sec-prerequisites
|
1640
|
+
#
|
1473
1641
|
# @return [Types::Connection] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1474
1642
|
#
|
1475
1643
|
# * {Types::Connection#owner_account #owner_account} => String
|
@@ -1486,9 +1654,14 @@ module Aws::DirectConnect
|
|
1486
1654
|
# * {Types::Connection#aws_device #aws_device} => String
|
1487
1655
|
# * {Types::Connection#jumbo_frame_capable #jumbo_frame_capable} => Boolean
|
1488
1656
|
# * {Types::Connection#aws_device_v2 #aws_device_v2} => String
|
1657
|
+
# * {Types::Connection#aws_logical_device_id #aws_logical_device_id} => String
|
1489
1658
|
# * {Types::Connection#has_logical_redundancy #has_logical_redundancy} => String
|
1490
1659
|
# * {Types::Connection#tags #tags} => Array<Types::Tag>
|
1491
1660
|
# * {Types::Connection#provider_name #provider_name} => String
|
1661
|
+
# * {Types::Connection#mac_sec_capable #mac_sec_capable} => Boolean
|
1662
|
+
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
1663
|
+
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
1664
|
+
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
1492
1665
|
#
|
1493
1666
|
# @example Request syntax with placeholder values
|
1494
1667
|
#
|
@@ -1504,6 +1677,7 @@ module Aws::DirectConnect
|
|
1504
1677
|
# },
|
1505
1678
|
# ],
|
1506
1679
|
# provider_name: "ProviderName",
|
1680
|
+
# request_mac_sec: false,
|
1507
1681
|
# })
|
1508
1682
|
#
|
1509
1683
|
# @example Response structure
|
@@ -1522,11 +1696,20 @@ module Aws::DirectConnect
|
|
1522
1696
|
# resp.aws_device #=> String
|
1523
1697
|
# resp.jumbo_frame_capable #=> Boolean
|
1524
1698
|
# resp.aws_device_v2 #=> String
|
1699
|
+
# resp.aws_logical_device_id #=> String
|
1525
1700
|
# resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
1526
1701
|
# resp.tags #=> Array
|
1527
1702
|
# resp.tags[0].key #=> String
|
1528
1703
|
# resp.tags[0].value #=> String
|
1529
1704
|
# resp.provider_name #=> String
|
1705
|
+
# resp.mac_sec_capable #=> Boolean
|
1706
|
+
# resp.port_encryption_status #=> String
|
1707
|
+
# resp.encryption_mode #=> String
|
1708
|
+
# resp.mac_sec_keys #=> Array
|
1709
|
+
# resp.mac_sec_keys[0].secret_arn #=> String
|
1710
|
+
# resp.mac_sec_keys[0].ckn #=> String
|
1711
|
+
# resp.mac_sec_keys[0].state #=> String
|
1712
|
+
# resp.mac_sec_keys[0].start_on #=> String
|
1530
1713
|
#
|
1531
1714
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateConnection AWS API Documentation
|
1532
1715
|
#
|
@@ -1539,12 +1722,12 @@ module Aws::DirectConnect
|
|
1539
1722
|
|
1540
1723
|
# Creates a Direct Connect gateway, which is an intermediate object that
|
1541
1724
|
# enables you to connect a set of virtual interfaces and virtual private
|
1542
|
-
# gateways. A Direct Connect gateway is global and visible in any
|
1543
|
-
#
|
1725
|
+
# gateways. A Direct Connect gateway is global and visible in any Region
|
1726
|
+
# after it is created. The virtual interfaces and virtual private
|
1544
1727
|
# gateways that are connected through a Direct Connect gateway can be in
|
1545
|
-
# different
|
1546
|
-
#
|
1547
|
-
#
|
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.
|
1548
1731
|
#
|
1549
1732
|
# @option params [required, String] :direct_connect_gateway_name
|
1550
1733
|
# The name of the Direct Connect gateway.
|
@@ -1601,7 +1784,7 @@ module Aws::DirectConnect
|
|
1601
1784
|
# gateway.
|
1602
1785
|
#
|
1603
1786
|
# For information about how to set the prefixes, see [Allowed
|
1604
|
-
# Prefixes][1] in the *
|
1787
|
+
# Prefixes][1] in the *Direct Connect User Guide*.
|
1605
1788
|
#
|
1606
1789
|
#
|
1607
1790
|
#
|
@@ -1657,13 +1840,13 @@ module Aws::DirectConnect
|
|
1657
1840
|
# or transit gateway with the specified Direct Connect gateway.
|
1658
1841
|
#
|
1659
1842
|
# You can associate a Direct Connect gateway and virtual private gateway
|
1660
|
-
# or transit gateway that is owned by any
|
1843
|
+
# or transit gateway that is owned by any account.
|
1661
1844
|
#
|
1662
1845
|
# @option params [required, String] :direct_connect_gateway_id
|
1663
1846
|
# The ID of the Direct Connect gateway.
|
1664
1847
|
#
|
1665
1848
|
# @option params [required, String] :direct_connect_gateway_owner_account
|
1666
|
-
# The ID of the
|
1849
|
+
# The ID of the account that owns the Direct Connect gateway.
|
1667
1850
|
#
|
1668
1851
|
# @option params [required, String] :gateway_id
|
1669
1852
|
# The ID of the virtual private gateway or transit gateway.
|
@@ -1721,31 +1904,30 @@ module Aws::DirectConnect
|
|
1721
1904
|
req.send_request(options)
|
1722
1905
|
end
|
1723
1906
|
|
1724
|
-
# Creates an interconnect between an
|
1725
|
-
#
|
1907
|
+
# Creates an interconnect between an Direct Connect Partner's network
|
1908
|
+
# and a specific Direct Connect location.
|
1726
1909
|
#
|
1727
1910
|
# An interconnect is a connection that is capable of hosting other
|
1728
|
-
# connections. The
|
1729
|
-
# provide
|
1730
|
-
#
|
1731
|
-
#
|
1732
|
-
#
|
1733
|
-
#
|
1734
|
-
# router.
|
1911
|
+
# connections. The Direct Connect Partner can use an interconnect to
|
1912
|
+
# provide Direct Connect hosted connections to customers through their
|
1913
|
+
# own network services. Like a standard connection, an interconnect
|
1914
|
+
# links the partner's network to an Direct Connect location over a
|
1915
|
+
# standard Ethernet fiber-optic cable. One end is connected to the
|
1916
|
+
# partner's router, the other to an Direct Connect router.
|
1735
1917
|
#
|
1736
1918
|
# You can automatically add the new interconnect to a link aggregation
|
1737
1919
|
# group (LAG) by specifying a LAG ID in the request. This ensures that
|
1738
|
-
# the new interconnect is allocated on the same
|
1739
|
-
#
|
1740
|
-
#
|
1920
|
+
# the new interconnect is allocated on the same Direct Connect endpoint
|
1921
|
+
# that hosts the specified LAG. If there are no available ports on the
|
1922
|
+
# endpoint, the request fails and no interconnect is created.
|
1741
1923
|
#
|
1742
|
-
# For each end customer, the
|
1924
|
+
# For each end customer, the Direct Connect Partner provisions a
|
1743
1925
|
# connection on their interconnect by calling AllocateHostedConnection.
|
1744
|
-
# The end customer can then connect to
|
1745
|
-
# virtual interface on their connection, using the VLAN
|
1746
|
-
# by the
|
1926
|
+
# The end customer can then connect to Amazon Web Services resources by
|
1927
|
+
# creating a virtual interface on their connection, using the VLAN
|
1928
|
+
# assigned to them by the Direct Connect Partner.
|
1747
1929
|
#
|
1748
|
-
# <note markdown="1"> Intended for use by
|
1930
|
+
# <note markdown="1"> Intended for use by Direct Connect Partners only.
|
1749
1931
|
#
|
1750
1932
|
# </note>
|
1751
1933
|
#
|
@@ -1780,6 +1962,7 @@ module Aws::DirectConnect
|
|
1780
1962
|
# * {Types::Interconnect#aws_device #aws_device} => String
|
1781
1963
|
# * {Types::Interconnect#jumbo_frame_capable #jumbo_frame_capable} => Boolean
|
1782
1964
|
# * {Types::Interconnect#aws_device_v2 #aws_device_v2} => String
|
1965
|
+
# * {Types::Interconnect#aws_logical_device_id #aws_logical_device_id} => String
|
1783
1966
|
# * {Types::Interconnect#has_logical_redundancy #has_logical_redundancy} => String
|
1784
1967
|
# * {Types::Interconnect#tags #tags} => Array<Types::Tag>
|
1785
1968
|
# * {Types::Interconnect#provider_name #provider_name} => String
|
@@ -1813,6 +1996,7 @@ module Aws::DirectConnect
|
|
1813
1996
|
# resp.aws_device #=> String
|
1814
1997
|
# resp.jumbo_frame_capable #=> Boolean
|
1815
1998
|
# resp.aws_device_v2 #=> String
|
1999
|
+
# resp.aws_logical_device_id #=> String
|
1816
2000
|
# resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
1817
2001
|
# resp.tags #=> Array
|
1818
2002
|
# resp.tags[0].key #=> String
|
@@ -1830,32 +2014,30 @@ module Aws::DirectConnect
|
|
1830
2014
|
|
1831
2015
|
# Creates a link aggregation group (LAG) with the specified number of
|
1832
2016
|
# bundled physical dedicated connections between the customer network
|
1833
|
-
# and a specific
|
1834
|
-
#
|
1835
|
-
#
|
1836
|
-
# interface.
|
2017
|
+
# and a specific Direct Connect location. A LAG is a logical interface
|
2018
|
+
# that uses the Link Aggregation Control Protocol (LACP) to aggregate
|
2019
|
+
# multiple interfaces, enabling you to treat them as a single interface.
|
1837
2020
|
#
|
1838
2021
|
# All connections in a LAG must use the same bandwidth (either 1Gbps or
|
1839
|
-
# 10Gbps) and must terminate at the same
|
2022
|
+
# 10Gbps) and must terminate at the same Direct Connect endpoint.
|
1840
2023
|
#
|
1841
2024
|
# You can have up to 10 dedicated connections per LAG. Regardless of
|
1842
|
-
# this limit, if you request more connections for the LAG than
|
1843
|
-
#
|
2025
|
+
# this limit, if you request more connections for the LAG than Direct
|
2026
|
+
# Connect can allocate on a single endpoint, no LAG is created.
|
1844
2027
|
#
|
1845
2028
|
# You can specify an existing physical dedicated connection or
|
1846
2029
|
# interconnect to include in the LAG (which counts towards the total
|
1847
2030
|
# number of connections). Doing so interrupts the current physical
|
1848
2031
|
# dedicated connection, and re-establishes them as a member of the LAG.
|
1849
|
-
# The LAG will be created on the same
|
1850
|
-
#
|
1851
|
-
#
|
1852
|
-
#
|
1853
|
-
# not change.
|
2032
|
+
# The LAG will be created on the same Direct Connect endpoint to which
|
2033
|
+
# the dedicated connection terminates. Any virtual interfaces associated
|
2034
|
+
# with the dedicated connection are automatically disassociated and
|
2035
|
+
# re-associated with the LAG. The connection ID does not change.
|
1854
2036
|
#
|
1855
|
-
# If the
|
1856
|
-
#
|
1857
|
-
#
|
1858
|
-
#
|
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.
|
1859
2041
|
#
|
1860
2042
|
# @option params [required, Integer] :number_of_connections
|
1861
2043
|
# The number of physical dedicated connections initially provisioned and
|
@@ -1883,6 +2065,19 @@ module Aws::DirectConnect
|
|
1883
2065
|
# @option params [String] :provider_name
|
1884
2066
|
# The name of the service provider associated with the LAG.
|
1885
2067
|
#
|
2068
|
+
# @option params [Boolean] :request_mac_sec
|
2069
|
+
# Indicates whether the connection will support MAC Security (MACsec).
|
2070
|
+
#
|
2071
|
+
# <note markdown="1"> All connections in the LAG must be capable of supporting MAC Security
|
2072
|
+
# (MACsec). For information about MAC Security (MACsec) prerequisties,
|
2073
|
+
# see [MACsec prerequisties][1] in the *Direct Connect User Guide*.
|
2074
|
+
#
|
2075
|
+
# </note>
|
2076
|
+
#
|
2077
|
+
#
|
2078
|
+
#
|
2079
|
+
# [1]: https://docs.aws.amazon.com/directconnect/latest/UserGuide/direct-connect-mac-sec-getting-started.html#mac-sec-prerequisites
|
2080
|
+
#
|
1886
2081
|
# @return [Types::Lag] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1887
2082
|
#
|
1888
2083
|
# * {Types::Lag#connections_bandwidth #connections_bandwidth} => String
|
@@ -1896,12 +2091,16 @@ module Aws::DirectConnect
|
|
1896
2091
|
# * {Types::Lag#minimum_links #minimum_links} => Integer
|
1897
2092
|
# * {Types::Lag#aws_device #aws_device} => String
|
1898
2093
|
# * {Types::Lag#aws_device_v2 #aws_device_v2} => String
|
2094
|
+
# * {Types::Lag#aws_logical_device_id #aws_logical_device_id} => String
|
1899
2095
|
# * {Types::Lag#connections #connections} => Array<Types::Connection>
|
1900
2096
|
# * {Types::Lag#allows_hosted_connections #allows_hosted_connections} => Boolean
|
1901
2097
|
# * {Types::Lag#jumbo_frame_capable #jumbo_frame_capable} => Boolean
|
1902
2098
|
# * {Types::Lag#has_logical_redundancy #has_logical_redundancy} => String
|
1903
2099
|
# * {Types::Lag#tags #tags} => Array<Types::Tag>
|
1904
2100
|
# * {Types::Lag#provider_name #provider_name} => String
|
2101
|
+
# * {Types::Lag#mac_sec_capable #mac_sec_capable} => Boolean
|
2102
|
+
# * {Types::Lag#encryption_mode #encryption_mode} => String
|
2103
|
+
# * {Types::Lag#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
1905
2104
|
#
|
1906
2105
|
# @example Request syntax with placeholder values
|
1907
2106
|
#
|
@@ -1924,6 +2123,7 @@ module Aws::DirectConnect
|
|
1924
2123
|
# },
|
1925
2124
|
# ],
|
1926
2125
|
# provider_name: "ProviderName",
|
2126
|
+
# request_mac_sec: false,
|
1927
2127
|
# })
|
1928
2128
|
#
|
1929
2129
|
# @example Response structure
|
@@ -1939,6 +2139,7 @@ module Aws::DirectConnect
|
|
1939
2139
|
# resp.minimum_links #=> Integer
|
1940
2140
|
# resp.aws_device #=> String
|
1941
2141
|
# resp.aws_device_v2 #=> String
|
2142
|
+
# resp.aws_logical_device_id #=> String
|
1942
2143
|
# resp.connections #=> Array
|
1943
2144
|
# resp.connections[0].owner_account #=> String
|
1944
2145
|
# resp.connections[0].connection_id #=> String
|
@@ -1954,11 +2155,20 @@ module Aws::DirectConnect
|
|
1954
2155
|
# resp.connections[0].aws_device #=> String
|
1955
2156
|
# resp.connections[0].jumbo_frame_capable #=> Boolean
|
1956
2157
|
# resp.connections[0].aws_device_v2 #=> String
|
2158
|
+
# resp.connections[0].aws_logical_device_id #=> String
|
1957
2159
|
# resp.connections[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
1958
2160
|
# resp.connections[0].tags #=> Array
|
1959
2161
|
# resp.connections[0].tags[0].key #=> String
|
1960
2162
|
# resp.connections[0].tags[0].value #=> String
|
1961
2163
|
# resp.connections[0].provider_name #=> String
|
2164
|
+
# resp.connections[0].mac_sec_capable #=> Boolean
|
2165
|
+
# resp.connections[0].port_encryption_status #=> String
|
2166
|
+
# resp.connections[0].encryption_mode #=> String
|
2167
|
+
# resp.connections[0].mac_sec_keys #=> Array
|
2168
|
+
# resp.connections[0].mac_sec_keys[0].secret_arn #=> String
|
2169
|
+
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
2170
|
+
# resp.connections[0].mac_sec_keys[0].state #=> String
|
2171
|
+
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
1962
2172
|
# resp.allows_hosted_connections #=> Boolean
|
1963
2173
|
# resp.jumbo_frame_capable #=> Boolean
|
1964
2174
|
# resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
@@ -1966,6 +2176,13 @@ module Aws::DirectConnect
|
|
1966
2176
|
# resp.tags[0].key #=> String
|
1967
2177
|
# resp.tags[0].value #=> String
|
1968
2178
|
# resp.provider_name #=> String
|
2179
|
+
# resp.mac_sec_capable #=> Boolean
|
2180
|
+
# resp.encryption_mode #=> String
|
2181
|
+
# resp.mac_sec_keys #=> Array
|
2182
|
+
# resp.mac_sec_keys[0].secret_arn #=> String
|
2183
|
+
# resp.mac_sec_keys[0].ckn #=> String
|
2184
|
+
# resp.mac_sec_keys[0].state #=> String
|
2185
|
+
# resp.mac_sec_keys[0].start_on #=> String
|
1969
2186
|
#
|
1970
2187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateLag AWS API Documentation
|
1971
2188
|
#
|
@@ -1977,13 +2194,13 @@ module Aws::DirectConnect
|
|
1977
2194
|
end
|
1978
2195
|
|
1979
2196
|
# Creates a private virtual interface. A virtual interface is the VLAN
|
1980
|
-
# that transports
|
1981
|
-
#
|
1982
|
-
#
|
1983
|
-
#
|
1984
|
-
#
|
1985
|
-
#
|
1986
|
-
#
|
2197
|
+
# that transports Direct Connect traffic. A private virtual interface
|
2198
|
+
# can be connected to either a Direct Connect gateway or a Virtual
|
2199
|
+
# Private Gateway (VGW). Connecting the private virtual interface to a
|
2200
|
+
# 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.
|
1987
2204
|
#
|
1988
2205
|
# Setting the MTU of a virtual interface to 9001 (jumbo frames) can
|
1989
2206
|
# cause an update to the underlying physical connection if it wasn't
|
@@ -2025,6 +2242,7 @@ module Aws::DirectConnect
|
|
2025
2242
|
# * {Types::VirtualInterface#bgp_peers #bgp_peers} => Array<Types::BGPPeer>
|
2026
2243
|
# * {Types::VirtualInterface#region #region} => String
|
2027
2244
|
# * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
|
2245
|
+
# * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
|
2028
2246
|
# * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
|
2029
2247
|
#
|
2030
2248
|
# @example Request syntax with placeholder values
|
@@ -2084,8 +2302,10 @@ module Aws::DirectConnect
|
|
2084
2302
|
# resp.bgp_peers[0].bgp_peer_state #=> String, one of "verifying", "pending", "available", "deleting", "deleted"
|
2085
2303
|
# resp.bgp_peers[0].bgp_status #=> String, one of "up", "down", "unknown"
|
2086
2304
|
# resp.bgp_peers[0].aws_device_v2 #=> String
|
2305
|
+
# resp.bgp_peers[0].aws_logical_device_id #=> String
|
2087
2306
|
# resp.region #=> String
|
2088
2307
|
# resp.aws_device_v2 #=> String
|
2308
|
+
# resp.aws_logical_device_id #=> String
|
2089
2309
|
# resp.tags #=> Array
|
2090
2310
|
# resp.tags[0].key #=> String
|
2091
2311
|
# resp.tags[0].value #=> String
|
@@ -2100,8 +2320,9 @@ module Aws::DirectConnect
|
|
2100
2320
|
end
|
2101
2321
|
|
2102
2322
|
# Creates a public virtual interface. A virtual interface is the VLAN
|
2103
|
-
# that transports
|
2104
|
-
# supports sending traffic to public services of
|
2323
|
+
# that transports Direct Connect traffic. A public virtual interface
|
2324
|
+
# supports sending traffic to public services of Amazon Web Services
|
2325
|
+
# such as Amazon S3.
|
2105
2326
|
#
|
2106
2327
|
# When creating an IPv6 public virtual interface (`addressFamily` is
|
2107
2328
|
# `ipv6`), leave the `customer` and `amazon` address fields blank to use
|
@@ -2138,6 +2359,7 @@ module Aws::DirectConnect
|
|
2138
2359
|
# * {Types::VirtualInterface#bgp_peers #bgp_peers} => Array<Types::BGPPeer>
|
2139
2360
|
# * {Types::VirtualInterface#region #region} => String
|
2140
2361
|
# * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
|
2362
|
+
# * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
|
2141
2363
|
# * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
|
2142
2364
|
#
|
2143
2365
|
# @example Request syntax with placeholder values
|
@@ -2199,8 +2421,10 @@ module Aws::DirectConnect
|
|
2199
2421
|
# resp.bgp_peers[0].bgp_peer_state #=> String, one of "verifying", "pending", "available", "deleting", "deleted"
|
2200
2422
|
# resp.bgp_peers[0].bgp_status #=> String, one of "up", "down", "unknown"
|
2201
2423
|
# resp.bgp_peers[0].aws_device_v2 #=> String
|
2424
|
+
# resp.bgp_peers[0].aws_logical_device_id #=> String
|
2202
2425
|
# resp.region #=> String
|
2203
2426
|
# resp.aws_device_v2 #=> String
|
2427
|
+
# resp.aws_logical_device_id #=> String
|
2204
2428
|
# resp.tags #=> Array
|
2205
2429
|
# resp.tags[0].key #=> String
|
2206
2430
|
# resp.tags[0].value #=> String
|
@@ -2301,8 +2525,10 @@ module Aws::DirectConnect
|
|
2301
2525
|
# resp.virtual_interface.bgp_peers[0].bgp_peer_state #=> String, one of "verifying", "pending", "available", "deleting", "deleted"
|
2302
2526
|
# resp.virtual_interface.bgp_peers[0].bgp_status #=> String, one of "up", "down", "unknown"
|
2303
2527
|
# resp.virtual_interface.bgp_peers[0].aws_device_v2 #=> String
|
2528
|
+
# resp.virtual_interface.bgp_peers[0].aws_logical_device_id #=> String
|
2304
2529
|
# resp.virtual_interface.region #=> String
|
2305
2530
|
# resp.virtual_interface.aws_device_v2 #=> String
|
2531
|
+
# resp.virtual_interface.aws_logical_device_id #=> String
|
2306
2532
|
# resp.virtual_interface.tags #=> Array
|
2307
2533
|
# resp.virtual_interface.tags[0].key #=> String
|
2308
2534
|
# resp.virtual_interface.tags[0].value #=> String
|
@@ -2380,8 +2606,10 @@ module Aws::DirectConnect
|
|
2380
2606
|
# resp.virtual_interface.bgp_peers[0].bgp_peer_state #=> String, one of "verifying", "pending", "available", "deleting", "deleted"
|
2381
2607
|
# resp.virtual_interface.bgp_peers[0].bgp_status #=> String, one of "up", "down", "unknown"
|
2382
2608
|
# resp.virtual_interface.bgp_peers[0].aws_device_v2 #=> String
|
2609
|
+
# resp.virtual_interface.bgp_peers[0].aws_logical_device_id #=> String
|
2383
2610
|
# resp.virtual_interface.region #=> String
|
2384
2611
|
# resp.virtual_interface.aws_device_v2 #=> String
|
2612
|
+
# resp.virtual_interface.aws_logical_device_id #=> String
|
2385
2613
|
# resp.virtual_interface.tags #=> Array
|
2386
2614
|
# resp.virtual_interface.tags[0].key #=> String
|
2387
2615
|
# resp.virtual_interface.tags[0].value #=> String
|
@@ -2397,10 +2625,10 @@ module Aws::DirectConnect
|
|
2397
2625
|
|
2398
2626
|
# Deletes the specified connection.
|
2399
2627
|
#
|
2400
|
-
# Deleting a connection only stops the
|
2401
|
-
#
|
2402
|
-
# connect with the
|
2403
|
-
#
|
2628
|
+
# Deleting a connection only stops the Direct Connect port hour and data
|
2629
|
+
# transfer charges. If you are partnering with any third parties to
|
2630
|
+
# connect with the Direct Connect location, you must cancel your service
|
2631
|
+
# with them separately.
|
2404
2632
|
#
|
2405
2633
|
# @option params [required, String] :connection_id
|
2406
2634
|
# The ID of the connection.
|
@@ -2421,9 +2649,14 @@ module Aws::DirectConnect
|
|
2421
2649
|
# * {Types::Connection#aws_device #aws_device} => String
|
2422
2650
|
# * {Types::Connection#jumbo_frame_capable #jumbo_frame_capable} => Boolean
|
2423
2651
|
# * {Types::Connection#aws_device_v2 #aws_device_v2} => String
|
2652
|
+
# * {Types::Connection#aws_logical_device_id #aws_logical_device_id} => String
|
2424
2653
|
# * {Types::Connection#has_logical_redundancy #has_logical_redundancy} => String
|
2425
2654
|
# * {Types::Connection#tags #tags} => Array<Types::Tag>
|
2426
2655
|
# * {Types::Connection#provider_name #provider_name} => String
|
2656
|
+
# * {Types::Connection#mac_sec_capable #mac_sec_capable} => Boolean
|
2657
|
+
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
2658
|
+
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
2659
|
+
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
2427
2660
|
#
|
2428
2661
|
# @example Request syntax with placeholder values
|
2429
2662
|
#
|
@@ -2447,11 +2680,20 @@ module Aws::DirectConnect
|
|
2447
2680
|
# resp.aws_device #=> String
|
2448
2681
|
# resp.jumbo_frame_capable #=> Boolean
|
2449
2682
|
# resp.aws_device_v2 #=> String
|
2683
|
+
# resp.aws_logical_device_id #=> String
|
2450
2684
|
# resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
2451
2685
|
# resp.tags #=> Array
|
2452
2686
|
# resp.tags[0].key #=> String
|
2453
2687
|
# resp.tags[0].value #=> String
|
2454
2688
|
# resp.provider_name #=> String
|
2689
|
+
# resp.mac_sec_capable #=> Boolean
|
2690
|
+
# resp.port_encryption_status #=> String
|
2691
|
+
# resp.encryption_mode #=> String
|
2692
|
+
# resp.mac_sec_keys #=> Array
|
2693
|
+
# resp.mac_sec_keys[0].secret_arn #=> String
|
2694
|
+
# resp.mac_sec_keys[0].ckn #=> String
|
2695
|
+
# resp.mac_sec_keys[0].state #=> String
|
2696
|
+
# resp.mac_sec_keys[0].start_on #=> String
|
2455
2697
|
#
|
2456
2698
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteConnection AWS API Documentation
|
2457
2699
|
#
|
@@ -2595,7 +2837,7 @@ module Aws::DirectConnect
|
|
2595
2837
|
|
2596
2838
|
# Deletes the specified interconnect.
|
2597
2839
|
#
|
2598
|
-
# <note markdown="1"> Intended for use by
|
2840
|
+
# <note markdown="1"> Intended for use by Direct Connect Partners only.
|
2599
2841
|
#
|
2600
2842
|
# </note>
|
2601
2843
|
#
|
@@ -2644,12 +2886,16 @@ module Aws::DirectConnect
|
|
2644
2886
|
# * {Types::Lag#minimum_links #minimum_links} => Integer
|
2645
2887
|
# * {Types::Lag#aws_device #aws_device} => String
|
2646
2888
|
# * {Types::Lag#aws_device_v2 #aws_device_v2} => String
|
2889
|
+
# * {Types::Lag#aws_logical_device_id #aws_logical_device_id} => String
|
2647
2890
|
# * {Types::Lag#connections #connections} => Array<Types::Connection>
|
2648
2891
|
# * {Types::Lag#allows_hosted_connections #allows_hosted_connections} => Boolean
|
2649
2892
|
# * {Types::Lag#jumbo_frame_capable #jumbo_frame_capable} => Boolean
|
2650
2893
|
# * {Types::Lag#has_logical_redundancy #has_logical_redundancy} => String
|
2651
2894
|
# * {Types::Lag#tags #tags} => Array<Types::Tag>
|
2652
2895
|
# * {Types::Lag#provider_name #provider_name} => String
|
2896
|
+
# * {Types::Lag#mac_sec_capable #mac_sec_capable} => Boolean
|
2897
|
+
# * {Types::Lag#encryption_mode #encryption_mode} => String
|
2898
|
+
# * {Types::Lag#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
2653
2899
|
#
|
2654
2900
|
# @example Request syntax with placeholder values
|
2655
2901
|
#
|
@@ -2670,6 +2916,7 @@ module Aws::DirectConnect
|
|
2670
2916
|
# resp.minimum_links #=> Integer
|
2671
2917
|
# resp.aws_device #=> String
|
2672
2918
|
# resp.aws_device_v2 #=> String
|
2919
|
+
# resp.aws_logical_device_id #=> String
|
2673
2920
|
# resp.connections #=> Array
|
2674
2921
|
# resp.connections[0].owner_account #=> String
|
2675
2922
|
# resp.connections[0].connection_id #=> String
|
@@ -2685,11 +2932,20 @@ module Aws::DirectConnect
|
|
2685
2932
|
# resp.connections[0].aws_device #=> String
|
2686
2933
|
# resp.connections[0].jumbo_frame_capable #=> Boolean
|
2687
2934
|
# resp.connections[0].aws_device_v2 #=> String
|
2935
|
+
# resp.connections[0].aws_logical_device_id #=> String
|
2688
2936
|
# resp.connections[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
2689
2937
|
# resp.connections[0].tags #=> Array
|
2690
2938
|
# resp.connections[0].tags[0].key #=> String
|
2691
2939
|
# resp.connections[0].tags[0].value #=> String
|
2692
2940
|
# resp.connections[0].provider_name #=> String
|
2941
|
+
# resp.connections[0].mac_sec_capable #=> Boolean
|
2942
|
+
# resp.connections[0].port_encryption_status #=> String
|
2943
|
+
# resp.connections[0].encryption_mode #=> String
|
2944
|
+
# resp.connections[0].mac_sec_keys #=> Array
|
2945
|
+
# resp.connections[0].mac_sec_keys[0].secret_arn #=> String
|
2946
|
+
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
2947
|
+
# resp.connections[0].mac_sec_keys[0].state #=> String
|
2948
|
+
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
2693
2949
|
# resp.allows_hosted_connections #=> Boolean
|
2694
2950
|
# resp.jumbo_frame_capable #=> Boolean
|
2695
2951
|
# resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
@@ -2697,6 +2953,13 @@ module Aws::DirectConnect
|
|
2697
2953
|
# resp.tags[0].key #=> String
|
2698
2954
|
# resp.tags[0].value #=> String
|
2699
2955
|
# resp.provider_name #=> String
|
2956
|
+
# resp.mac_sec_capable #=> Boolean
|
2957
|
+
# resp.encryption_mode #=> String
|
2958
|
+
# resp.mac_sec_keys #=> Array
|
2959
|
+
# resp.mac_sec_keys[0].secret_arn #=> String
|
2960
|
+
# resp.mac_sec_keys[0].ckn #=> String
|
2961
|
+
# resp.mac_sec_keys[0].state #=> String
|
2962
|
+
# resp.mac_sec_keys[0].start_on #=> String
|
2700
2963
|
#
|
2701
2964
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteLag AWS API Documentation
|
2702
2965
|
#
|
@@ -2741,9 +3004,10 @@ module Aws::DirectConnect
|
|
2741
3004
|
#
|
2742
3005
|
# The Letter of Authorization - Connecting Facility Assignment (LOA-CFA)
|
2743
3006
|
# is a document that your APN partner or service provider uses when
|
2744
|
-
# establishing your cross connect to
|
2745
|
-
# more information, see [Requesting Cross
|
2746
|
-
# Locations][1] in the *
|
3007
|
+
# establishing your cross connect to Amazon Web Services at the
|
3008
|
+
# colocation facility. For more information, see [Requesting Cross
|
3009
|
+
# Connects at Direct Connect Locations][1] in the *Direct Connect User
|
3010
|
+
# Guide*.
|
2747
3011
|
#
|
2748
3012
|
#
|
2749
3013
|
#
|
@@ -2820,11 +3084,20 @@ module Aws::DirectConnect
|
|
2820
3084
|
# resp.connections[0].aws_device #=> String
|
2821
3085
|
# resp.connections[0].jumbo_frame_capable #=> Boolean
|
2822
3086
|
# resp.connections[0].aws_device_v2 #=> String
|
3087
|
+
# resp.connections[0].aws_logical_device_id #=> String
|
2823
3088
|
# resp.connections[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
2824
3089
|
# resp.connections[0].tags #=> Array
|
2825
3090
|
# resp.connections[0].tags[0].key #=> String
|
2826
3091
|
# resp.connections[0].tags[0].value #=> String
|
2827
3092
|
# resp.connections[0].provider_name #=> String
|
3093
|
+
# resp.connections[0].mac_sec_capable #=> Boolean
|
3094
|
+
# resp.connections[0].port_encryption_status #=> String
|
3095
|
+
# resp.connections[0].encryption_mode #=> String
|
3096
|
+
# resp.connections[0].mac_sec_keys #=> Array
|
3097
|
+
# resp.connections[0].mac_sec_keys[0].secret_arn #=> String
|
3098
|
+
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
3099
|
+
# resp.connections[0].mac_sec_keys[0].state #=> String
|
3100
|
+
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
2828
3101
|
#
|
2829
3102
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeConnections AWS API Documentation
|
2830
3103
|
#
|
@@ -2840,7 +3113,7 @@ module Aws::DirectConnect
|
|
2840
3113
|
# Lists the connections that have been provisioned on the specified
|
2841
3114
|
# interconnect.
|
2842
3115
|
#
|
2843
|
-
# <note markdown="1"> Intended for use by
|
3116
|
+
# <note markdown="1"> Intended for use by Direct Connect Partners only.
|
2844
3117
|
#
|
2845
3118
|
# </note>
|
2846
3119
|
#
|
@@ -2874,11 +3147,20 @@ module Aws::DirectConnect
|
|
2874
3147
|
# resp.connections[0].aws_device #=> String
|
2875
3148
|
# resp.connections[0].jumbo_frame_capable #=> Boolean
|
2876
3149
|
# resp.connections[0].aws_device_v2 #=> String
|
3150
|
+
# resp.connections[0].aws_logical_device_id #=> String
|
2877
3151
|
# resp.connections[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
2878
3152
|
# resp.connections[0].tags #=> Array
|
2879
3153
|
# resp.connections[0].tags[0].key #=> String
|
2880
3154
|
# resp.connections[0].tags[0].value #=> String
|
2881
3155
|
# resp.connections[0].provider_name #=> String
|
3156
|
+
# resp.connections[0].mac_sec_capable #=> Boolean
|
3157
|
+
# resp.connections[0].port_encryption_status #=> String
|
3158
|
+
# resp.connections[0].encryption_mode #=> String
|
3159
|
+
# resp.connections[0].mac_sec_keys #=> Array
|
3160
|
+
# resp.connections[0].mac_sec_keys[0].secret_arn #=> String
|
3161
|
+
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
3162
|
+
# resp.connections[0].mac_sec_keys[0].state #=> String
|
3163
|
+
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
2882
3164
|
#
|
2883
3165
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeConnectionsOnInterconnect AWS API Documentation
|
2884
3166
|
#
|
@@ -3162,7 +3444,7 @@ module Aws::DirectConnect
|
|
3162
3444
|
# Lists the hosted connections that have been provisioned on the
|
3163
3445
|
# specified interconnect or link aggregation group (LAG).
|
3164
3446
|
#
|
3165
|
-
# <note markdown="1"> Intended for use by
|
3447
|
+
# <note markdown="1"> Intended for use by Direct Connect Partners only.
|
3166
3448
|
#
|
3167
3449
|
# </note>
|
3168
3450
|
#
|
@@ -3196,11 +3478,20 @@ module Aws::DirectConnect
|
|
3196
3478
|
# resp.connections[0].aws_device #=> String
|
3197
3479
|
# resp.connections[0].jumbo_frame_capable #=> Boolean
|
3198
3480
|
# resp.connections[0].aws_device_v2 #=> String
|
3481
|
+
# resp.connections[0].aws_logical_device_id #=> String
|
3199
3482
|
# resp.connections[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
3200
3483
|
# resp.connections[0].tags #=> Array
|
3201
3484
|
# resp.connections[0].tags[0].key #=> String
|
3202
3485
|
# resp.connections[0].tags[0].value #=> String
|
3203
3486
|
# resp.connections[0].provider_name #=> String
|
3487
|
+
# resp.connections[0].mac_sec_capable #=> Boolean
|
3488
|
+
# resp.connections[0].port_encryption_status #=> String
|
3489
|
+
# resp.connections[0].encryption_mode #=> String
|
3490
|
+
# resp.connections[0].mac_sec_keys #=> Array
|
3491
|
+
# resp.connections[0].mac_sec_keys[0].secret_arn #=> String
|
3492
|
+
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
3493
|
+
# resp.connections[0].mac_sec_keys[0].state #=> String
|
3494
|
+
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
3204
3495
|
#
|
3205
3496
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeHostedConnections AWS API Documentation
|
3206
3497
|
#
|
@@ -3216,10 +3507,10 @@ module Aws::DirectConnect
|
|
3216
3507
|
# Gets the LOA-CFA for the specified interconnect.
|
3217
3508
|
#
|
3218
3509
|
# The Letter of Authorization - Connecting Facility Assignment (LOA-CFA)
|
3219
|
-
# is a document that is used when establishing your cross connect to
|
3220
|
-
# at the colocation facility. For more information,
|
3221
|
-
# Cross Connects at
|
3222
|
-
# Connect User Guide*.
|
3510
|
+
# is a document that is used when establishing your cross connect to
|
3511
|
+
# Amazon Web Services at the colocation facility. For more information,
|
3512
|
+
# see [Requesting Cross Connects at Direct Connect Locations][1] in the
|
3513
|
+
# *Direct Connect User Guide*.
|
3223
3514
|
#
|
3224
3515
|
#
|
3225
3516
|
#
|
@@ -3264,7 +3555,7 @@ module Aws::DirectConnect
|
|
3264
3555
|
req.send_request(options)
|
3265
3556
|
end
|
3266
3557
|
|
3267
|
-
# Lists the interconnects owned by the
|
3558
|
+
# Lists the interconnects owned by the account or only the specified
|
3268
3559
|
# interconnect.
|
3269
3560
|
#
|
3270
3561
|
# @option params [String] :interconnect_id
|
@@ -3294,6 +3585,7 @@ module Aws::DirectConnect
|
|
3294
3585
|
# resp.interconnects[0].aws_device #=> String
|
3295
3586
|
# resp.interconnects[0].jumbo_frame_capable #=> Boolean
|
3296
3587
|
# resp.interconnects[0].aws_device_v2 #=> String
|
3588
|
+
# resp.interconnects[0].aws_logical_device_id #=> String
|
3297
3589
|
# resp.interconnects[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
3298
3590
|
# resp.interconnects[0].tags #=> Array
|
3299
3591
|
# resp.interconnects[0].tags[0].key #=> String
|
@@ -3338,6 +3630,7 @@ module Aws::DirectConnect
|
|
3338
3630
|
# resp.lags[0].minimum_links #=> Integer
|
3339
3631
|
# resp.lags[0].aws_device #=> String
|
3340
3632
|
# resp.lags[0].aws_device_v2 #=> String
|
3633
|
+
# resp.lags[0].aws_logical_device_id #=> String
|
3341
3634
|
# resp.lags[0].connections #=> Array
|
3342
3635
|
# resp.lags[0].connections[0].owner_account #=> String
|
3343
3636
|
# resp.lags[0].connections[0].connection_id #=> String
|
@@ -3353,11 +3646,20 @@ module Aws::DirectConnect
|
|
3353
3646
|
# resp.lags[0].connections[0].aws_device #=> String
|
3354
3647
|
# resp.lags[0].connections[0].jumbo_frame_capable #=> Boolean
|
3355
3648
|
# resp.lags[0].connections[0].aws_device_v2 #=> String
|
3649
|
+
# resp.lags[0].connections[0].aws_logical_device_id #=> String
|
3356
3650
|
# resp.lags[0].connections[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
3357
3651
|
# resp.lags[0].connections[0].tags #=> Array
|
3358
3652
|
# resp.lags[0].connections[0].tags[0].key #=> String
|
3359
3653
|
# resp.lags[0].connections[0].tags[0].value #=> String
|
3360
3654
|
# resp.lags[0].connections[0].provider_name #=> String
|
3655
|
+
# resp.lags[0].connections[0].mac_sec_capable #=> Boolean
|
3656
|
+
# resp.lags[0].connections[0].port_encryption_status #=> String
|
3657
|
+
# resp.lags[0].connections[0].encryption_mode #=> String
|
3658
|
+
# resp.lags[0].connections[0].mac_sec_keys #=> Array
|
3659
|
+
# resp.lags[0].connections[0].mac_sec_keys[0].secret_arn #=> String
|
3660
|
+
# resp.lags[0].connections[0].mac_sec_keys[0].ckn #=> String
|
3661
|
+
# resp.lags[0].connections[0].mac_sec_keys[0].state #=> String
|
3662
|
+
# resp.lags[0].connections[0].mac_sec_keys[0].start_on #=> String
|
3361
3663
|
# resp.lags[0].allows_hosted_connections #=> Boolean
|
3362
3664
|
# resp.lags[0].jumbo_frame_capable #=> Boolean
|
3363
3665
|
# resp.lags[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
@@ -3365,6 +3667,13 @@ module Aws::DirectConnect
|
|
3365
3667
|
# resp.lags[0].tags[0].key #=> String
|
3366
3668
|
# resp.lags[0].tags[0].value #=> String
|
3367
3669
|
# resp.lags[0].provider_name #=> String
|
3670
|
+
# resp.lags[0].mac_sec_capable #=> Boolean
|
3671
|
+
# resp.lags[0].encryption_mode #=> String
|
3672
|
+
# resp.lags[0].mac_sec_keys #=> Array
|
3673
|
+
# resp.lags[0].mac_sec_keys[0].secret_arn #=> String
|
3674
|
+
# resp.lags[0].mac_sec_keys[0].ckn #=> String
|
3675
|
+
# resp.lags[0].mac_sec_keys[0].state #=> String
|
3676
|
+
# resp.lags[0].mac_sec_keys[0].start_on #=> String
|
3368
3677
|
#
|
3369
3678
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeLags AWS API Documentation
|
3370
3679
|
#
|
@@ -3379,10 +3688,10 @@ module Aws::DirectConnect
|
|
3379
3688
|
# group (LAG).
|
3380
3689
|
#
|
3381
3690
|
# The Letter of Authorization - Connecting Facility Assignment (LOA-CFA)
|
3382
|
-
# is a document that is used when establishing your cross connect to
|
3383
|
-
# at the colocation facility. For more information,
|
3384
|
-
# Cross Connects at
|
3385
|
-
# Connect User Guide*.
|
3691
|
+
# is a document that is used when establishing your cross connect to
|
3692
|
+
# Amazon Web Services at the colocation facility. For more information,
|
3693
|
+
# see [Requesting Cross Connects at Direct Connect Locations][1] in the
|
3694
|
+
# *Direct Connect User Guide*.
|
3386
3695
|
#
|
3387
3696
|
#
|
3388
3697
|
#
|
@@ -3428,9 +3737,9 @@ module Aws::DirectConnect
|
|
3428
3737
|
req.send_request(options)
|
3429
3738
|
end
|
3430
3739
|
|
3431
|
-
# Lists the
|
3432
|
-
#
|
3433
|
-
#
|
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.
|
3434
3743
|
#
|
3435
3744
|
# @return [Types::Locations] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3436
3745
|
#
|
@@ -3446,6 +3755,8 @@ module Aws::DirectConnect
|
|
3446
3755
|
# resp.locations[0].available_port_speeds[0] #=> String
|
3447
3756
|
# resp.locations[0].available_providers #=> Array
|
3448
3757
|
# resp.locations[0].available_providers[0] #=> String
|
3758
|
+
# resp.locations[0].available_mac_sec_port_speeds #=> Array
|
3759
|
+
# resp.locations[0].available_mac_sec_port_speeds[0] #=> String
|
3449
3760
|
#
|
3450
3761
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeLocations AWS API Documentation
|
3451
3762
|
#
|
@@ -3456,7 +3767,7 @@ module Aws::DirectConnect
|
|
3456
3767
|
req.send_request(options)
|
3457
3768
|
end
|
3458
3769
|
|
3459
|
-
# Describes the tags associated with the specified
|
3770
|
+
# Describes the tags associated with the specified Direct Connect
|
3460
3771
|
# resources.
|
3461
3772
|
#
|
3462
3773
|
# @option params [required, Array<String>] :resource_arns
|
@@ -3489,10 +3800,10 @@ module Aws::DirectConnect
|
|
3489
3800
|
req.send_request(options)
|
3490
3801
|
end
|
3491
3802
|
|
3492
|
-
# Lists the virtual private gateways owned by the
|
3803
|
+
# Lists the virtual private gateways owned by the account.
|
3493
3804
|
#
|
3494
|
-
# You can create one or more
|
3495
|
-
#
|
3805
|
+
# You can create one or more Direct Connect private virtual interfaces
|
3806
|
+
# linked to a virtual private gateway.
|
3496
3807
|
#
|
3497
3808
|
# @return [Types::VirtualGateways] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3498
3809
|
#
|
@@ -3513,14 +3824,14 @@ module Aws::DirectConnect
|
|
3513
3824
|
req.send_request(options)
|
3514
3825
|
end
|
3515
3826
|
|
3516
|
-
# Displays all virtual interfaces for an
|
3827
|
+
# Displays all virtual interfaces for an account. Virtual interfaces
|
3517
3828
|
# deleted fewer than 15 minutes before you make the request are also
|
3518
3829
|
# returned. If you specify a connection ID, only the virtual interfaces
|
3519
3830
|
# associated with the connection are returned. If you specify a virtual
|
3520
3831
|
# interface ID, then only a single virtual interface is returned.
|
3521
3832
|
#
|
3522
|
-
# A virtual interface (VLAN) transmits the traffic between the
|
3523
|
-
#
|
3833
|
+
# A virtual interface (VLAN) transmits the traffic between the Direct
|
3834
|
+
# Connect location and the customer network.
|
3524
3835
|
#
|
3525
3836
|
# @option params [String] :connection_id
|
3526
3837
|
# The ID of the connection.
|
@@ -3573,8 +3884,10 @@ module Aws::DirectConnect
|
|
3573
3884
|
# resp.virtual_interfaces[0].bgp_peers[0].bgp_peer_state #=> String, one of "verifying", "pending", "available", "deleting", "deleted"
|
3574
3885
|
# resp.virtual_interfaces[0].bgp_peers[0].bgp_status #=> String, one of "up", "down", "unknown"
|
3575
3886
|
# resp.virtual_interfaces[0].bgp_peers[0].aws_device_v2 #=> String
|
3887
|
+
# resp.virtual_interfaces[0].bgp_peers[0].aws_logical_device_id #=> String
|
3576
3888
|
# resp.virtual_interfaces[0].region #=> String
|
3577
3889
|
# resp.virtual_interfaces[0].aws_device_v2 #=> String
|
3890
|
+
# resp.virtual_interfaces[0].aws_logical_device_id #=> String
|
3578
3891
|
# resp.virtual_interfaces[0].tags #=> Array
|
3579
3892
|
# resp.virtual_interfaces[0].tags[0].key #=> String
|
3580
3893
|
# resp.virtual_interfaces[0].tags[0].value #=> String
|
@@ -3593,7 +3906,7 @@ module Aws::DirectConnect
|
|
3593
3906
|
# connection (the connection is not deleted; to delete the connection,
|
3594
3907
|
# use the DeleteConnection request). If the LAG has associated virtual
|
3595
3908
|
# interfaces or hosted connections, they remain associated with the LAG.
|
3596
|
-
# A disassociated connection owned by an
|
3909
|
+
# A disassociated connection owned by an Direct Connect Partner is
|
3597
3910
|
# automatically converted to an interconnect.
|
3598
3911
|
#
|
3599
3912
|
# If disassociating the connection would cause the LAG to fall below its
|
@@ -3624,9 +3937,14 @@ module Aws::DirectConnect
|
|
3624
3937
|
# * {Types::Connection#aws_device #aws_device} => String
|
3625
3938
|
# * {Types::Connection#jumbo_frame_capable #jumbo_frame_capable} => Boolean
|
3626
3939
|
# * {Types::Connection#aws_device_v2 #aws_device_v2} => String
|
3940
|
+
# * {Types::Connection#aws_logical_device_id #aws_logical_device_id} => String
|
3627
3941
|
# * {Types::Connection#has_logical_redundancy #has_logical_redundancy} => String
|
3628
3942
|
# * {Types::Connection#tags #tags} => Array<Types::Tag>
|
3629
3943
|
# * {Types::Connection#provider_name #provider_name} => String
|
3944
|
+
# * {Types::Connection#mac_sec_capable #mac_sec_capable} => Boolean
|
3945
|
+
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
3946
|
+
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
3947
|
+
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
3630
3948
|
#
|
3631
3949
|
# @example Request syntax with placeholder values
|
3632
3950
|
#
|
@@ -3651,11 +3969,20 @@ module Aws::DirectConnect
|
|
3651
3969
|
# resp.aws_device #=> String
|
3652
3970
|
# resp.jumbo_frame_capable #=> Boolean
|
3653
3971
|
# resp.aws_device_v2 #=> String
|
3972
|
+
# resp.aws_logical_device_id #=> String
|
3654
3973
|
# resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
3655
3974
|
# resp.tags #=> Array
|
3656
3975
|
# resp.tags[0].key #=> String
|
3657
3976
|
# resp.tags[0].value #=> String
|
3658
3977
|
# resp.provider_name #=> String
|
3978
|
+
# resp.mac_sec_capable #=> Boolean
|
3979
|
+
# resp.port_encryption_status #=> String
|
3980
|
+
# resp.encryption_mode #=> String
|
3981
|
+
# resp.mac_sec_keys #=> Array
|
3982
|
+
# resp.mac_sec_keys[0].secret_arn #=> String
|
3983
|
+
# resp.mac_sec_keys[0].ckn #=> String
|
3984
|
+
# resp.mac_sec_keys[0].state #=> String
|
3985
|
+
# resp.mac_sec_keys[0].start_on #=> String
|
3659
3986
|
#
|
3660
3987
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DisassociateConnectionFromLag AWS API Documentation
|
3661
3988
|
#
|
@@ -3666,6 +3993,53 @@ module Aws::DirectConnect
|
|
3666
3993
|
req.send_request(options)
|
3667
3994
|
end
|
3668
3995
|
|
3996
|
+
# Removes the association between a MAC Security (MACsec) security key
|
3997
|
+
# and an Direct Connect dedicated connection.
|
3998
|
+
#
|
3999
|
+
# @option params [required, String] :connection_id
|
4000
|
+
# The ID of the dedicated connection (dxcon-xxxx), or the ID of the LAG
|
4001
|
+
# (dxlag-xxxx).
|
4002
|
+
#
|
4003
|
+
# You can use DescribeConnections or DescribeLags to retrieve connection
|
4004
|
+
# ID.
|
4005
|
+
#
|
4006
|
+
# @option params [required, String] :secret_arn
|
4007
|
+
# The Amazon Resource Name (ARN) of the MAC Security (MACsec) secret
|
4008
|
+
# key.
|
4009
|
+
#
|
4010
|
+
# You can use DescribeConnections to retrieve the ARN of the MAC
|
4011
|
+
# Security (MACsec) secret key.
|
4012
|
+
#
|
4013
|
+
# @return [Types::DisassociateMacSecKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4014
|
+
#
|
4015
|
+
# * {Types::DisassociateMacSecKeyResponse#connection_id #connection_id} => String
|
4016
|
+
# * {Types::DisassociateMacSecKeyResponse#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
4017
|
+
#
|
4018
|
+
# @example Request syntax with placeholder values
|
4019
|
+
#
|
4020
|
+
# resp = client.disassociate_mac_sec_key({
|
4021
|
+
# connection_id: "ConnectionId", # required
|
4022
|
+
# secret_arn: "SecretARN", # required
|
4023
|
+
# })
|
4024
|
+
#
|
4025
|
+
# @example Response structure
|
4026
|
+
#
|
4027
|
+
# resp.connection_id #=> String
|
4028
|
+
# resp.mac_sec_keys #=> Array
|
4029
|
+
# resp.mac_sec_keys[0].secret_arn #=> String
|
4030
|
+
# resp.mac_sec_keys[0].ckn #=> String
|
4031
|
+
# resp.mac_sec_keys[0].state #=> String
|
4032
|
+
# resp.mac_sec_keys[0].start_on #=> String
|
4033
|
+
#
|
4034
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DisassociateMacSecKey AWS API Documentation
|
4035
|
+
#
|
4036
|
+
# @overload disassociate_mac_sec_key(params = {})
|
4037
|
+
# @param [Hash] params ({})
|
4038
|
+
def disassociate_mac_sec_key(params = {}, options = {})
|
4039
|
+
req = build_request(:disassociate_mac_sec_key, params)
|
4040
|
+
req.send_request(options)
|
4041
|
+
end
|
4042
|
+
|
3669
4043
|
# Lists the virtual interface failover test history.
|
3670
4044
|
#
|
3671
4045
|
# @option params [String] :test_id
|
@@ -3833,8 +4207,8 @@ module Aws::DirectConnect
|
|
3833
4207
|
req.send_request(options)
|
3834
4208
|
end
|
3835
4209
|
|
3836
|
-
# Adds the specified tags to the specified
|
3837
|
-
#
|
4210
|
+
# Adds the specified tags to the specified Direct Connect resource. Each
|
4211
|
+
# resource can have a maximum of 50 tags.
|
3838
4212
|
#
|
3839
4213
|
# Each tag consists of a key and an optional value. If a tag with the
|
3840
4214
|
# same key is already associated with the resource, this action updates
|
@@ -3869,8 +4243,7 @@ module Aws::DirectConnect
|
|
3869
4243
|
req.send_request(options)
|
3870
4244
|
end
|
3871
4245
|
|
3872
|
-
# Removes one or more tags from the specified
|
3873
|
-
# resource.
|
4246
|
+
# Removes one or more tags from the specified Direct Connect resource.
|
3874
4247
|
#
|
3875
4248
|
# @option params [required, String] :resource_arn
|
3876
4249
|
# The Amazon Resource Name (ARN) of the resource.
|
@@ -3896,6 +4269,101 @@ module Aws::DirectConnect
|
|
3896
4269
|
req.send_request(options)
|
3897
4270
|
end
|
3898
4271
|
|
4272
|
+
# Updates the Direct Connect dedicated connection configuration.
|
4273
|
+
#
|
4274
|
+
# You can update the following parameters for a connection:
|
4275
|
+
#
|
4276
|
+
# * The connection name
|
4277
|
+
#
|
4278
|
+
# * The connection's MAC Security (MACsec) encryption mode.
|
4279
|
+
#
|
4280
|
+
# @option params [required, String] :connection_id
|
4281
|
+
# The ID of the dedicated connection.
|
4282
|
+
#
|
4283
|
+
# You can use DescribeConnections to retrieve the connection ID.
|
4284
|
+
#
|
4285
|
+
# @option params [String] :connection_name
|
4286
|
+
# The name of the connection.
|
4287
|
+
#
|
4288
|
+
# @option params [String] :encryption_mode
|
4289
|
+
# The connection MAC Security (MACsec) encryption mode.
|
4290
|
+
#
|
4291
|
+
# The valid values are `no_encrypt`, `should_encrypt`, and
|
4292
|
+
# `must_encrypt`.
|
4293
|
+
#
|
4294
|
+
# @return [Types::Connection] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4295
|
+
#
|
4296
|
+
# * {Types::Connection#owner_account #owner_account} => String
|
4297
|
+
# * {Types::Connection#connection_id #connection_id} => String
|
4298
|
+
# * {Types::Connection#connection_name #connection_name} => String
|
4299
|
+
# * {Types::Connection#connection_state #connection_state} => String
|
4300
|
+
# * {Types::Connection#region #region} => String
|
4301
|
+
# * {Types::Connection#location #location} => String
|
4302
|
+
# * {Types::Connection#bandwidth #bandwidth} => String
|
4303
|
+
# * {Types::Connection#vlan #vlan} => Integer
|
4304
|
+
# * {Types::Connection#partner_name #partner_name} => String
|
4305
|
+
# * {Types::Connection#loa_issue_time #loa_issue_time} => Time
|
4306
|
+
# * {Types::Connection#lag_id #lag_id} => String
|
4307
|
+
# * {Types::Connection#aws_device #aws_device} => String
|
4308
|
+
# * {Types::Connection#jumbo_frame_capable #jumbo_frame_capable} => Boolean
|
4309
|
+
# * {Types::Connection#aws_device_v2 #aws_device_v2} => String
|
4310
|
+
# * {Types::Connection#aws_logical_device_id #aws_logical_device_id} => String
|
4311
|
+
# * {Types::Connection#has_logical_redundancy #has_logical_redundancy} => String
|
4312
|
+
# * {Types::Connection#tags #tags} => Array<Types::Tag>
|
4313
|
+
# * {Types::Connection#provider_name #provider_name} => String
|
4314
|
+
# * {Types::Connection#mac_sec_capable #mac_sec_capable} => Boolean
|
4315
|
+
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
4316
|
+
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
4317
|
+
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
4318
|
+
#
|
4319
|
+
# @example Request syntax with placeholder values
|
4320
|
+
#
|
4321
|
+
# resp = client.update_connection({
|
4322
|
+
# connection_id: "ConnectionId", # required
|
4323
|
+
# connection_name: "ConnectionName",
|
4324
|
+
# encryption_mode: "EncryptionMode",
|
4325
|
+
# })
|
4326
|
+
#
|
4327
|
+
# @example Response structure
|
4328
|
+
#
|
4329
|
+
# resp.owner_account #=> String
|
4330
|
+
# resp.connection_id #=> String
|
4331
|
+
# resp.connection_name #=> String
|
4332
|
+
# resp.connection_state #=> String, one of "ordering", "requested", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
|
4333
|
+
# resp.region #=> String
|
4334
|
+
# resp.location #=> String
|
4335
|
+
# resp.bandwidth #=> String
|
4336
|
+
# resp.vlan #=> Integer
|
4337
|
+
# resp.partner_name #=> String
|
4338
|
+
# resp.loa_issue_time #=> Time
|
4339
|
+
# resp.lag_id #=> String
|
4340
|
+
# resp.aws_device #=> String
|
4341
|
+
# resp.jumbo_frame_capable #=> Boolean
|
4342
|
+
# resp.aws_device_v2 #=> String
|
4343
|
+
# resp.aws_logical_device_id #=> String
|
4344
|
+
# resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
4345
|
+
# resp.tags #=> Array
|
4346
|
+
# resp.tags[0].key #=> String
|
4347
|
+
# resp.tags[0].value #=> String
|
4348
|
+
# resp.provider_name #=> String
|
4349
|
+
# resp.mac_sec_capable #=> Boolean
|
4350
|
+
# resp.port_encryption_status #=> String
|
4351
|
+
# resp.encryption_mode #=> String
|
4352
|
+
# resp.mac_sec_keys #=> Array
|
4353
|
+
# resp.mac_sec_keys[0].secret_arn #=> String
|
4354
|
+
# resp.mac_sec_keys[0].ckn #=> String
|
4355
|
+
# resp.mac_sec_keys[0].state #=> String
|
4356
|
+
# resp.mac_sec_keys[0].start_on #=> String
|
4357
|
+
#
|
4358
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateConnection AWS API Documentation
|
4359
|
+
#
|
4360
|
+
# @overload update_connection(params = {})
|
4361
|
+
# @param [Hash] params ({})
|
4362
|
+
def update_connection(params = {}, options = {})
|
4363
|
+
req = build_request(:update_connection, params)
|
4364
|
+
req.send_request(options)
|
4365
|
+
end
|
4366
|
+
|
3899
4367
|
# Updates the specified attributes of the Direct Connect gateway
|
3900
4368
|
# association.
|
3901
4369
|
#
|
@@ -3959,20 +4427,25 @@ module Aws::DirectConnect
|
|
3959
4427
|
|
3960
4428
|
# Updates the attributes of the specified link aggregation group (LAG).
|
3961
4429
|
#
|
3962
|
-
# You can update the following attributes:
|
4430
|
+
# You can update the following LAG attributes:
|
3963
4431
|
#
|
3964
4432
|
# * The name of the LAG.
|
3965
4433
|
#
|
3966
4434
|
# * The value for the minimum number of connections that must be
|
3967
4435
|
# operational for the LAG itself to be operational.
|
3968
4436
|
#
|
3969
|
-
#
|
3970
|
-
#
|
3971
|
-
#
|
3972
|
-
#
|
3973
|
-
#
|
3974
|
-
#
|
3975
|
-
#
|
4437
|
+
# * The LAG's MACsec encryption mode.
|
4438
|
+
#
|
4439
|
+
# Amazon Web Services assigns this value to each connection which is
|
4440
|
+
# part of the LAG.
|
4441
|
+
#
|
4442
|
+
# * The tags
|
4443
|
+
#
|
4444
|
+
# <note markdown="1"> If you adjust the threshold value for the minimum number of
|
4445
|
+
# operational connections, ensure that the new value does not cause the
|
4446
|
+
# LAG to fall below the threshold and become non-operational.
|
4447
|
+
#
|
4448
|
+
# </note>
|
3976
4449
|
#
|
3977
4450
|
# @option params [required, String] :lag_id
|
3978
4451
|
# The ID of the LAG.
|
@@ -3984,6 +4457,12 @@ module Aws::DirectConnect
|
|
3984
4457
|
# The minimum number of physical connections that must be operational
|
3985
4458
|
# for the LAG itself to be operational.
|
3986
4459
|
#
|
4460
|
+
# @option params [String] :encryption_mode
|
4461
|
+
# The LAG MAC Security (MACsec) encryption mode.
|
4462
|
+
#
|
4463
|
+
# Amazon Web Services applies the value to all connections which are
|
4464
|
+
# part of the LAG.
|
4465
|
+
#
|
3987
4466
|
# @return [Types::Lag] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3988
4467
|
#
|
3989
4468
|
# * {Types::Lag#connections_bandwidth #connections_bandwidth} => String
|
@@ -3997,12 +4476,16 @@ module Aws::DirectConnect
|
|
3997
4476
|
# * {Types::Lag#minimum_links #minimum_links} => Integer
|
3998
4477
|
# * {Types::Lag#aws_device #aws_device} => String
|
3999
4478
|
# * {Types::Lag#aws_device_v2 #aws_device_v2} => String
|
4479
|
+
# * {Types::Lag#aws_logical_device_id #aws_logical_device_id} => String
|
4000
4480
|
# * {Types::Lag#connections #connections} => Array<Types::Connection>
|
4001
4481
|
# * {Types::Lag#allows_hosted_connections #allows_hosted_connections} => Boolean
|
4002
4482
|
# * {Types::Lag#jumbo_frame_capable #jumbo_frame_capable} => Boolean
|
4003
4483
|
# * {Types::Lag#has_logical_redundancy #has_logical_redundancy} => String
|
4004
4484
|
# * {Types::Lag#tags #tags} => Array<Types::Tag>
|
4005
4485
|
# * {Types::Lag#provider_name #provider_name} => String
|
4486
|
+
# * {Types::Lag#mac_sec_capable #mac_sec_capable} => Boolean
|
4487
|
+
# * {Types::Lag#encryption_mode #encryption_mode} => String
|
4488
|
+
# * {Types::Lag#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
4006
4489
|
#
|
4007
4490
|
# @example Request syntax with placeholder values
|
4008
4491
|
#
|
@@ -4010,6 +4493,7 @@ module Aws::DirectConnect
|
|
4010
4493
|
# lag_id: "LagId", # required
|
4011
4494
|
# lag_name: "LagName",
|
4012
4495
|
# minimum_links: 1,
|
4496
|
+
# encryption_mode: "EncryptionMode",
|
4013
4497
|
# })
|
4014
4498
|
#
|
4015
4499
|
# @example Response structure
|
@@ -4025,6 +4509,7 @@ module Aws::DirectConnect
|
|
4025
4509
|
# resp.minimum_links #=> Integer
|
4026
4510
|
# resp.aws_device #=> String
|
4027
4511
|
# resp.aws_device_v2 #=> String
|
4512
|
+
# resp.aws_logical_device_id #=> String
|
4028
4513
|
# resp.connections #=> Array
|
4029
4514
|
# resp.connections[0].owner_account #=> String
|
4030
4515
|
# resp.connections[0].connection_id #=> String
|
@@ -4040,11 +4525,20 @@ module Aws::DirectConnect
|
|
4040
4525
|
# resp.connections[0].aws_device #=> String
|
4041
4526
|
# resp.connections[0].jumbo_frame_capable #=> Boolean
|
4042
4527
|
# resp.connections[0].aws_device_v2 #=> String
|
4528
|
+
# resp.connections[0].aws_logical_device_id #=> String
|
4043
4529
|
# resp.connections[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
4044
4530
|
# resp.connections[0].tags #=> Array
|
4045
4531
|
# resp.connections[0].tags[0].key #=> String
|
4046
4532
|
# resp.connections[0].tags[0].value #=> String
|
4047
4533
|
# resp.connections[0].provider_name #=> String
|
4534
|
+
# resp.connections[0].mac_sec_capable #=> Boolean
|
4535
|
+
# resp.connections[0].port_encryption_status #=> String
|
4536
|
+
# resp.connections[0].encryption_mode #=> String
|
4537
|
+
# resp.connections[0].mac_sec_keys #=> Array
|
4538
|
+
# resp.connections[0].mac_sec_keys[0].secret_arn #=> String
|
4539
|
+
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
4540
|
+
# resp.connections[0].mac_sec_keys[0].state #=> String
|
4541
|
+
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
4048
4542
|
# resp.allows_hosted_connections #=> Boolean
|
4049
4543
|
# resp.jumbo_frame_capable #=> Boolean
|
4050
4544
|
# resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
@@ -4052,6 +4546,13 @@ module Aws::DirectConnect
|
|
4052
4546
|
# resp.tags[0].key #=> String
|
4053
4547
|
# resp.tags[0].value #=> String
|
4054
4548
|
# resp.provider_name #=> String
|
4549
|
+
# resp.mac_sec_capable #=> Boolean
|
4550
|
+
# resp.encryption_mode #=> String
|
4551
|
+
# resp.mac_sec_keys #=> Array
|
4552
|
+
# resp.mac_sec_keys[0].secret_arn #=> String
|
4553
|
+
# resp.mac_sec_keys[0].ckn #=> String
|
4554
|
+
# resp.mac_sec_keys[0].state #=> String
|
4555
|
+
# resp.mac_sec_keys[0].start_on #=> String
|
4055
4556
|
#
|
4056
4557
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateLag AWS API Documentation
|
4057
4558
|
#
|
@@ -4106,6 +4607,7 @@ module Aws::DirectConnect
|
|
4106
4607
|
# * {Types::VirtualInterface#bgp_peers #bgp_peers} => Array<Types::BGPPeer>
|
4107
4608
|
# * {Types::VirtualInterface#region #region} => String
|
4108
4609
|
# * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
|
4610
|
+
# * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
|
4109
4611
|
# * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
|
4110
4612
|
#
|
4111
4613
|
# @example Request syntax with placeholder values
|
@@ -4148,8 +4650,10 @@ module Aws::DirectConnect
|
|
4148
4650
|
# resp.bgp_peers[0].bgp_peer_state #=> String, one of "verifying", "pending", "available", "deleting", "deleted"
|
4149
4651
|
# resp.bgp_peers[0].bgp_status #=> String, one of "up", "down", "unknown"
|
4150
4652
|
# resp.bgp_peers[0].aws_device_v2 #=> String
|
4653
|
+
# resp.bgp_peers[0].aws_logical_device_id #=> String
|
4151
4654
|
# resp.region #=> String
|
4152
4655
|
# resp.aws_device_v2 #=> String
|
4656
|
+
# resp.aws_logical_device_id #=> String
|
4153
4657
|
# resp.tags #=> Array
|
4154
4658
|
# resp.tags[0].key #=> String
|
4155
4659
|
# resp.tags[0].value #=> String
|
@@ -4176,7 +4680,7 @@ module Aws::DirectConnect
|
|
4176
4680
|
params: params,
|
4177
4681
|
config: config)
|
4178
4682
|
context[:gem_name] = 'aws-sdk-directconnect'
|
4179
|
-
context[:gem_version] = '1.
|
4683
|
+
context[:gem_version] = '1.43.0'
|
4180
4684
|
Seahorse::Client::Request.new(handlers, context)
|
4181
4685
|
end
|
4182
4686
|
|