aws-sdk-directconnect 1.27.0 → 1.32.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 +5 -5
- data/lib/aws-sdk-directconnect.rb +3 -1
- data/lib/aws-sdk-directconnect/client.rb +214 -22
- data/lib/aws-sdk-directconnect/client_api.rb +86 -0
- data/lib/aws-sdk-directconnect/customizations.rb +1 -0
- data/lib/aws-sdk-directconnect/errors.rb +2 -0
- data/lib/aws-sdk-directconnect/resource.rb +3 -7
- data/lib/aws-sdk-directconnect/types.rb +325 -0
- metadata +5 -5
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::DirectConnect
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::DirectConnect::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::DirectConnect::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::DirectConnect::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -54,6 +56,7 @@ module Aws::DirectConnect
|
|
54
56
|
:proposal_id,
|
55
57
|
:associated_gateway_owner_account,
|
56
58
|
:override_allowed_prefixes_to_direct_connect_gateway)
|
59
|
+
SENSITIVE = []
|
57
60
|
include Aws::Structure
|
58
61
|
end
|
59
62
|
|
@@ -66,6 +69,7 @@ module Aws::DirectConnect
|
|
66
69
|
#
|
67
70
|
class AcceptDirectConnectGatewayAssociationProposalResult < Struct.new(
|
68
71
|
:direct_connect_gateway_association)
|
72
|
+
SENSITIVE = []
|
69
73
|
include Aws::Structure
|
70
74
|
end
|
71
75
|
|
@@ -114,6 +118,7 @@ module Aws::DirectConnect
|
|
114
118
|
:owner_account,
|
115
119
|
:interconnect_id,
|
116
120
|
:vlan)
|
121
|
+
SENSITIVE = []
|
117
122
|
include Aws::Structure
|
118
123
|
end
|
119
124
|
|
@@ -171,6 +176,7 @@ module Aws::DirectConnect
|
|
171
176
|
:connection_name,
|
172
177
|
:vlan,
|
173
178
|
:tags)
|
179
|
+
SENSITIVE = []
|
174
180
|
include Aws::Structure
|
175
181
|
end
|
176
182
|
|
@@ -217,6 +223,7 @@ module Aws::DirectConnect
|
|
217
223
|
:connection_id,
|
218
224
|
:owner_account,
|
219
225
|
:new_private_virtual_interface_allocation)
|
226
|
+
SENSITIVE = []
|
220
227
|
include Aws::Structure
|
221
228
|
end
|
222
229
|
|
@@ -267,6 +274,7 @@ module Aws::DirectConnect
|
|
267
274
|
:connection_id,
|
268
275
|
:owner_account,
|
269
276
|
:new_public_virtual_interface_allocation)
|
277
|
+
SENSITIVE = []
|
270
278
|
include Aws::Structure
|
271
279
|
end
|
272
280
|
|
@@ -313,6 +321,7 @@ module Aws::DirectConnect
|
|
313
321
|
:connection_id,
|
314
322
|
:owner_account,
|
315
323
|
:new_transit_virtual_interface_allocation)
|
324
|
+
SENSITIVE = []
|
316
325
|
include Aws::Structure
|
317
326
|
end
|
318
327
|
|
@@ -324,6 +333,7 @@ module Aws::DirectConnect
|
|
324
333
|
#
|
325
334
|
class AllocateTransitVirtualInterfaceResult < Struct.new(
|
326
335
|
:virtual_interface)
|
336
|
+
SENSITIVE = []
|
327
337
|
include Aws::Structure
|
328
338
|
end
|
329
339
|
|
@@ -348,6 +358,7 @@ module Aws::DirectConnect
|
|
348
358
|
class AssociateConnectionWithLagRequest < Struct.new(
|
349
359
|
:connection_id,
|
350
360
|
:lag_id)
|
361
|
+
SENSITIVE = []
|
351
362
|
include Aws::Structure
|
352
363
|
end
|
353
364
|
|
@@ -372,6 +383,7 @@ module Aws::DirectConnect
|
|
372
383
|
class AssociateHostedConnectionRequest < Struct.new(
|
373
384
|
:connection_id,
|
374
385
|
:parent_connection_id)
|
386
|
+
SENSITIVE = []
|
375
387
|
include Aws::Structure
|
376
388
|
end
|
377
389
|
|
@@ -396,6 +408,7 @@ module Aws::DirectConnect
|
|
396
408
|
class AssociateVirtualInterfaceRequest < Struct.new(
|
397
409
|
:virtual_interface_id,
|
398
410
|
:connection_id)
|
411
|
+
SENSITIVE = []
|
399
412
|
include Aws::Structure
|
400
413
|
end
|
401
414
|
|
@@ -425,6 +438,7 @@ module Aws::DirectConnect
|
|
425
438
|
:type,
|
426
439
|
:owner_account,
|
427
440
|
:region)
|
441
|
+
SENSITIVE = []
|
428
442
|
include Aws::Structure
|
429
443
|
end
|
430
444
|
|
@@ -502,6 +516,7 @@ module Aws::DirectConnect
|
|
502
516
|
:bgp_peer_state,
|
503
517
|
:bgp_status,
|
504
518
|
:aws_device_v2)
|
519
|
+
SENSITIVE = []
|
505
520
|
include Aws::Structure
|
506
521
|
end
|
507
522
|
|
@@ -520,6 +535,7 @@ module Aws::DirectConnect
|
|
520
535
|
#
|
521
536
|
class ConfirmConnectionRequest < Struct.new(
|
522
537
|
:connection_id)
|
538
|
+
SENSITIVE = []
|
523
539
|
include Aws::Structure
|
524
540
|
end
|
525
541
|
|
@@ -557,6 +573,7 @@ module Aws::DirectConnect
|
|
557
573
|
#
|
558
574
|
class ConfirmConnectionResponse < Struct.new(
|
559
575
|
:connection_state)
|
576
|
+
SENSITIVE = []
|
560
577
|
include Aws::Structure
|
561
578
|
end
|
562
579
|
|
@@ -587,6 +604,7 @@ module Aws::DirectConnect
|
|
587
604
|
:virtual_interface_id,
|
588
605
|
:virtual_gateway_id,
|
589
606
|
:direct_connect_gateway_id)
|
607
|
+
SENSITIVE = []
|
590
608
|
include Aws::Structure
|
591
609
|
end
|
592
610
|
|
@@ -630,6 +648,7 @@ module Aws::DirectConnect
|
|
630
648
|
#
|
631
649
|
class ConfirmPrivateVirtualInterfaceResponse < Struct.new(
|
632
650
|
:virtual_interface_state)
|
651
|
+
SENSITIVE = []
|
633
652
|
include Aws::Structure
|
634
653
|
end
|
635
654
|
|
@@ -648,6 +667,7 @@ module Aws::DirectConnect
|
|
648
667
|
#
|
649
668
|
class ConfirmPublicVirtualInterfaceRequest < Struct.new(
|
650
669
|
:virtual_interface_id)
|
670
|
+
SENSITIVE = []
|
651
671
|
include Aws::Structure
|
652
672
|
end
|
653
673
|
|
@@ -691,6 +711,7 @@ module Aws::DirectConnect
|
|
691
711
|
#
|
692
712
|
class ConfirmPublicVirtualInterfaceResponse < Struct.new(
|
693
713
|
:virtual_interface_state)
|
714
|
+
SENSITIVE = []
|
694
715
|
include Aws::Structure
|
695
716
|
end
|
696
717
|
|
@@ -715,6 +736,7 @@ module Aws::DirectConnect
|
|
715
736
|
class ConfirmTransitVirtualInterfaceRequest < Struct.new(
|
716
737
|
:virtual_interface_id,
|
717
738
|
:direct_connect_gateway_id)
|
739
|
+
SENSITIVE = []
|
718
740
|
include Aws::Structure
|
719
741
|
end
|
720
742
|
|
@@ -758,6 +780,7 @@ module Aws::DirectConnect
|
|
758
780
|
#
|
759
781
|
class ConfirmTransitVirtualInterfaceResponse < Struct.new(
|
760
782
|
:virtual_interface_state)
|
783
|
+
SENSITIVE = []
|
761
784
|
include Aws::Structure
|
762
785
|
end
|
763
786
|
|
@@ -881,6 +904,7 @@ module Aws::DirectConnect
|
|
881
904
|
:has_logical_redundancy,
|
882
905
|
:tags,
|
883
906
|
:provider_name)
|
907
|
+
SENSITIVE = []
|
884
908
|
include Aws::Structure
|
885
909
|
end
|
886
910
|
|
@@ -892,6 +916,7 @@ module Aws::DirectConnect
|
|
892
916
|
#
|
893
917
|
class Connections < Struct.new(
|
894
918
|
:connections)
|
919
|
+
SENSITIVE = []
|
895
920
|
include Aws::Structure
|
896
921
|
end
|
897
922
|
|
@@ -922,6 +947,7 @@ module Aws::DirectConnect
|
|
922
947
|
class CreateBGPPeerRequest < Struct.new(
|
923
948
|
:virtual_interface_id,
|
924
949
|
:new_bgp_peer)
|
950
|
+
SENSITIVE = []
|
925
951
|
include Aws::Structure
|
926
952
|
end
|
927
953
|
|
@@ -933,6 +959,7 @@ module Aws::DirectConnect
|
|
933
959
|
#
|
934
960
|
class CreateBGPPeerResponse < Struct.new(
|
935
961
|
:virtual_interface)
|
962
|
+
SENSITIVE = []
|
936
963
|
include Aws::Structure
|
937
964
|
end
|
938
965
|
|
@@ -987,6 +1014,7 @@ module Aws::DirectConnect
|
|
987
1014
|
:lag_id,
|
988
1015
|
:tags,
|
989
1016
|
:provider_name)
|
1017
|
+
SENSITIVE = []
|
990
1018
|
include Aws::Structure
|
991
1019
|
end
|
992
1020
|
|
@@ -1038,6 +1066,7 @@ module Aws::DirectConnect
|
|
1038
1066
|
:gateway_id,
|
1039
1067
|
:add_allowed_prefixes_to_direct_connect_gateway,
|
1040
1068
|
:remove_allowed_prefixes_to_direct_connect_gateway)
|
1069
|
+
SENSITIVE = []
|
1041
1070
|
include Aws::Structure
|
1042
1071
|
end
|
1043
1072
|
|
@@ -1049,6 +1078,7 @@ module Aws::DirectConnect
|
|
1049
1078
|
#
|
1050
1079
|
class CreateDirectConnectGatewayAssociationProposalResult < Struct.new(
|
1051
1080
|
:direct_connect_gateway_association_proposal)
|
1081
|
+
SENSITIVE = []
|
1052
1082
|
include Aws::Structure
|
1053
1083
|
end
|
1054
1084
|
|
@@ -1099,6 +1129,7 @@ module Aws::DirectConnect
|
|
1099
1129
|
:gateway_id,
|
1100
1130
|
:add_allowed_prefixes_to_direct_connect_gateway,
|
1101
1131
|
:virtual_gateway_id)
|
1132
|
+
SENSITIVE = []
|
1102
1133
|
include Aws::Structure
|
1103
1134
|
end
|
1104
1135
|
|
@@ -1110,6 +1141,7 @@ module Aws::DirectConnect
|
|
1110
1141
|
#
|
1111
1142
|
class CreateDirectConnectGatewayAssociationResult < Struct.new(
|
1112
1143
|
:direct_connect_gateway_association)
|
1144
|
+
SENSITIVE = []
|
1113
1145
|
include Aws::Structure
|
1114
1146
|
end
|
1115
1147
|
|
@@ -1137,6 +1169,7 @@ module Aws::DirectConnect
|
|
1137
1169
|
class CreateDirectConnectGatewayRequest < Struct.new(
|
1138
1170
|
:direct_connect_gateway_name,
|
1139
1171
|
:amazon_side_asn)
|
1172
|
+
SENSITIVE = []
|
1140
1173
|
include Aws::Structure
|
1141
1174
|
end
|
1142
1175
|
|
@@ -1148,6 +1181,7 @@ module Aws::DirectConnect
|
|
1148
1181
|
#
|
1149
1182
|
class CreateDirectConnectGatewayResult < Struct.new(
|
1150
1183
|
:direct_connect_gateway)
|
1184
|
+
SENSITIVE = []
|
1151
1185
|
include Aws::Structure
|
1152
1186
|
end
|
1153
1187
|
|
@@ -1201,6 +1235,7 @@ module Aws::DirectConnect
|
|
1201
1235
|
:lag_id,
|
1202
1236
|
:tags,
|
1203
1237
|
:provider_name)
|
1238
|
+
SENSITIVE = []
|
1204
1239
|
include Aws::Structure
|
1205
1240
|
end
|
1206
1241
|
|
@@ -1274,6 +1309,7 @@ module Aws::DirectConnect
|
|
1274
1309
|
:tags,
|
1275
1310
|
:child_connection_tags,
|
1276
1311
|
:provider_name)
|
1312
|
+
SENSITIVE = []
|
1277
1313
|
include Aws::Structure
|
1278
1314
|
end
|
1279
1315
|
|
@@ -1315,6 +1351,7 @@ module Aws::DirectConnect
|
|
1315
1351
|
class CreatePrivateVirtualInterfaceRequest < Struct.new(
|
1316
1352
|
:connection_id,
|
1317
1353
|
:new_private_virtual_interface)
|
1354
|
+
SENSITIVE = []
|
1318
1355
|
include Aws::Structure
|
1319
1356
|
end
|
1320
1357
|
|
@@ -1358,6 +1395,7 @@ module Aws::DirectConnect
|
|
1358
1395
|
class CreatePublicVirtualInterfaceRequest < Struct.new(
|
1359
1396
|
:connection_id,
|
1360
1397
|
:new_public_virtual_interface)
|
1398
|
+
SENSITIVE = []
|
1361
1399
|
include Aws::Structure
|
1362
1400
|
end
|
1363
1401
|
|
@@ -1398,6 +1436,7 @@ module Aws::DirectConnect
|
|
1398
1436
|
class CreateTransitVirtualInterfaceRequest < Struct.new(
|
1399
1437
|
:connection_id,
|
1400
1438
|
:new_transit_virtual_interface)
|
1439
|
+
SENSITIVE = []
|
1401
1440
|
include Aws::Structure
|
1402
1441
|
end
|
1403
1442
|
|
@@ -1409,6 +1448,7 @@ module Aws::DirectConnect
|
|
1409
1448
|
#
|
1410
1449
|
class CreateTransitVirtualInterfaceResult < Struct.new(
|
1411
1450
|
:virtual_interface)
|
1451
|
+
SENSITIVE = []
|
1412
1452
|
include Aws::Structure
|
1413
1453
|
end
|
1414
1454
|
|
@@ -1446,6 +1486,7 @@ module Aws::DirectConnect
|
|
1446
1486
|
:asn,
|
1447
1487
|
:customer_address,
|
1448
1488
|
:bgp_peer_id)
|
1489
|
+
SENSITIVE = []
|
1449
1490
|
include Aws::Structure
|
1450
1491
|
end
|
1451
1492
|
|
@@ -1457,6 +1498,7 @@ module Aws::DirectConnect
|
|
1457
1498
|
#
|
1458
1499
|
class DeleteBGPPeerResponse < Struct.new(
|
1459
1500
|
:virtual_interface)
|
1501
|
+
SENSITIVE = []
|
1460
1502
|
include Aws::Structure
|
1461
1503
|
end
|
1462
1504
|
|
@@ -1475,6 +1517,7 @@ module Aws::DirectConnect
|
|
1475
1517
|
#
|
1476
1518
|
class DeleteConnectionRequest < Struct.new(
|
1477
1519
|
:connection_id)
|
1520
|
+
SENSITIVE = []
|
1478
1521
|
include Aws::Structure
|
1479
1522
|
end
|
1480
1523
|
|
@@ -1493,6 +1536,7 @@ module Aws::DirectConnect
|
|
1493
1536
|
#
|
1494
1537
|
class DeleteDirectConnectGatewayAssociationProposalRequest < Struct.new(
|
1495
1538
|
:proposal_id)
|
1539
|
+
SENSITIVE = []
|
1496
1540
|
include Aws::Structure
|
1497
1541
|
end
|
1498
1542
|
|
@@ -1504,6 +1548,7 @@ module Aws::DirectConnect
|
|
1504
1548
|
#
|
1505
1549
|
class DeleteDirectConnectGatewayAssociationProposalResult < Struct.new(
|
1506
1550
|
:direct_connect_gateway_association_proposal)
|
1551
|
+
SENSITIVE = []
|
1507
1552
|
include Aws::Structure
|
1508
1553
|
end
|
1509
1554
|
|
@@ -1534,6 +1579,7 @@ module Aws::DirectConnect
|
|
1534
1579
|
:association_id,
|
1535
1580
|
:direct_connect_gateway_id,
|
1536
1581
|
:virtual_gateway_id)
|
1582
|
+
SENSITIVE = []
|
1537
1583
|
include Aws::Structure
|
1538
1584
|
end
|
1539
1585
|
|
@@ -1545,6 +1591,7 @@ module Aws::DirectConnect
|
|
1545
1591
|
#
|
1546
1592
|
class DeleteDirectConnectGatewayAssociationResult < Struct.new(
|
1547
1593
|
:direct_connect_gateway_association)
|
1594
|
+
SENSITIVE = []
|
1548
1595
|
include Aws::Structure
|
1549
1596
|
end
|
1550
1597
|
|
@@ -1563,6 +1610,7 @@ module Aws::DirectConnect
|
|
1563
1610
|
#
|
1564
1611
|
class DeleteDirectConnectGatewayRequest < Struct.new(
|
1565
1612
|
:direct_connect_gateway_id)
|
1613
|
+
SENSITIVE = []
|
1566
1614
|
include Aws::Structure
|
1567
1615
|
end
|
1568
1616
|
|
@@ -1574,6 +1622,7 @@ module Aws::DirectConnect
|
|
1574
1622
|
#
|
1575
1623
|
class DeleteDirectConnectGatewayResult < Struct.new(
|
1576
1624
|
:direct_connect_gateway)
|
1625
|
+
SENSITIVE = []
|
1577
1626
|
include Aws::Structure
|
1578
1627
|
end
|
1579
1628
|
|
@@ -1592,6 +1641,7 @@ module Aws::DirectConnect
|
|
1592
1641
|
#
|
1593
1642
|
class DeleteInterconnectRequest < Struct.new(
|
1594
1643
|
:interconnect_id)
|
1644
|
+
SENSITIVE = []
|
1595
1645
|
include Aws::Structure
|
1596
1646
|
end
|
1597
1647
|
|
@@ -1622,6 +1672,7 @@ module Aws::DirectConnect
|
|
1622
1672
|
#
|
1623
1673
|
class DeleteInterconnectResponse < Struct.new(
|
1624
1674
|
:interconnect_state)
|
1675
|
+
SENSITIVE = []
|
1625
1676
|
include Aws::Structure
|
1626
1677
|
end
|
1627
1678
|
|
@@ -1640,6 +1691,7 @@ module Aws::DirectConnect
|
|
1640
1691
|
#
|
1641
1692
|
class DeleteLagRequest < Struct.new(
|
1642
1693
|
:lag_id)
|
1694
|
+
SENSITIVE = []
|
1643
1695
|
include Aws::Structure
|
1644
1696
|
end
|
1645
1697
|
|
@@ -1658,6 +1710,7 @@ module Aws::DirectConnect
|
|
1658
1710
|
#
|
1659
1711
|
class DeleteVirtualInterfaceRequest < Struct.new(
|
1660
1712
|
:virtual_interface_id)
|
1713
|
+
SENSITIVE = []
|
1661
1714
|
include Aws::Structure
|
1662
1715
|
end
|
1663
1716
|
|
@@ -1701,6 +1754,7 @@ module Aws::DirectConnect
|
|
1701
1754
|
#
|
1702
1755
|
class DeleteVirtualInterfaceResponse < Struct.new(
|
1703
1756
|
:virtual_interface_state)
|
1757
|
+
SENSITIVE = []
|
1704
1758
|
include Aws::Structure
|
1705
1759
|
end
|
1706
1760
|
|
@@ -1735,6 +1789,7 @@ module Aws::DirectConnect
|
|
1735
1789
|
:connection_id,
|
1736
1790
|
:provider_name,
|
1737
1791
|
:loa_content_type)
|
1792
|
+
SENSITIVE = []
|
1738
1793
|
include Aws::Structure
|
1739
1794
|
end
|
1740
1795
|
|
@@ -1747,6 +1802,7 @@ module Aws::DirectConnect
|
|
1747
1802
|
#
|
1748
1803
|
class DescribeConnectionLoaResponse < Struct.new(
|
1749
1804
|
:loa)
|
1805
|
+
SENSITIVE = []
|
1750
1806
|
include Aws::Structure
|
1751
1807
|
end
|
1752
1808
|
|
@@ -1765,6 +1821,7 @@ module Aws::DirectConnect
|
|
1765
1821
|
#
|
1766
1822
|
class DescribeConnectionsOnInterconnectRequest < Struct.new(
|
1767
1823
|
:interconnect_id)
|
1824
|
+
SENSITIVE = []
|
1768
1825
|
include Aws::Structure
|
1769
1826
|
end
|
1770
1827
|
|
@@ -1783,6 +1840,7 @@ module Aws::DirectConnect
|
|
1783
1840
|
#
|
1784
1841
|
class DescribeConnectionsRequest < Struct.new(
|
1785
1842
|
:connection_id)
|
1843
|
+
SENSITIVE = []
|
1786
1844
|
include Aws::Structure
|
1787
1845
|
end
|
1788
1846
|
|
@@ -1830,6 +1888,7 @@ module Aws::DirectConnect
|
|
1830
1888
|
:associated_gateway_id,
|
1831
1889
|
:max_results,
|
1832
1890
|
:next_token)
|
1891
|
+
SENSITIVE = []
|
1833
1892
|
include Aws::Structure
|
1834
1893
|
end
|
1835
1894
|
|
@@ -1847,6 +1906,7 @@ module Aws::DirectConnect
|
|
1847
1906
|
class DescribeDirectConnectGatewayAssociationProposalsResult < Struct.new(
|
1848
1907
|
:direct_connect_gateway_association_proposals,
|
1849
1908
|
:next_token)
|
1909
|
+
SENSITIVE = []
|
1850
1910
|
include Aws::Structure
|
1851
1911
|
end
|
1852
1912
|
|
@@ -1900,6 +1960,7 @@ module Aws::DirectConnect
|
|
1900
1960
|
:max_results,
|
1901
1961
|
:next_token,
|
1902
1962
|
:virtual_gateway_id)
|
1963
|
+
SENSITIVE = []
|
1903
1964
|
include Aws::Structure
|
1904
1965
|
end
|
1905
1966
|
|
@@ -1916,6 +1977,7 @@ module Aws::DirectConnect
|
|
1916
1977
|
class DescribeDirectConnectGatewayAssociationsResult < Struct.new(
|
1917
1978
|
:direct_connect_gateway_associations,
|
1918
1979
|
:next_token)
|
1980
|
+
SENSITIVE = []
|
1919
1981
|
include Aws::Structure
|
1920
1982
|
end
|
1921
1983
|
|
@@ -1957,6 +2019,7 @@ module Aws::DirectConnect
|
|
1957
2019
|
:virtual_interface_id,
|
1958
2020
|
:max_results,
|
1959
2021
|
:next_token)
|
2022
|
+
SENSITIVE = []
|
1960
2023
|
include Aws::Structure
|
1961
2024
|
end
|
1962
2025
|
|
@@ -1973,6 +2036,7 @@ module Aws::DirectConnect
|
|
1973
2036
|
class DescribeDirectConnectGatewayAttachmentsResult < Struct.new(
|
1974
2037
|
:direct_connect_gateway_attachments,
|
1975
2038
|
:next_token)
|
2039
|
+
SENSITIVE = []
|
1976
2040
|
include Aws::Structure
|
1977
2041
|
end
|
1978
2042
|
|
@@ -2008,6 +2072,7 @@ module Aws::DirectConnect
|
|
2008
2072
|
:direct_connect_gateway_id,
|
2009
2073
|
:max_results,
|
2010
2074
|
:next_token)
|
2075
|
+
SENSITIVE = []
|
2011
2076
|
include Aws::Structure
|
2012
2077
|
end
|
2013
2078
|
|
@@ -2024,6 +2089,7 @@ module Aws::DirectConnect
|
|
2024
2089
|
class DescribeDirectConnectGatewaysResult < Struct.new(
|
2025
2090
|
:direct_connect_gateways,
|
2026
2091
|
:next_token)
|
2092
|
+
SENSITIVE = []
|
2027
2093
|
include Aws::Structure
|
2028
2094
|
end
|
2029
2095
|
|
@@ -2042,6 +2108,7 @@ module Aws::DirectConnect
|
|
2042
2108
|
#
|
2043
2109
|
class DescribeHostedConnectionsRequest < Struct.new(
|
2044
2110
|
:connection_id)
|
2111
|
+
SENSITIVE = []
|
2045
2112
|
include Aws::Structure
|
2046
2113
|
end
|
2047
2114
|
|
@@ -2076,6 +2143,7 @@ module Aws::DirectConnect
|
|
2076
2143
|
:interconnect_id,
|
2077
2144
|
:provider_name,
|
2078
2145
|
:loa_content_type)
|
2146
|
+
SENSITIVE = []
|
2079
2147
|
include Aws::Structure
|
2080
2148
|
end
|
2081
2149
|
|
@@ -2088,6 +2156,7 @@ module Aws::DirectConnect
|
|
2088
2156
|
#
|
2089
2157
|
class DescribeInterconnectLoaResponse < Struct.new(
|
2090
2158
|
:loa)
|
2159
|
+
SENSITIVE = []
|
2091
2160
|
include Aws::Structure
|
2092
2161
|
end
|
2093
2162
|
|
@@ -2106,6 +2175,7 @@ module Aws::DirectConnect
|
|
2106
2175
|
#
|
2107
2176
|
class DescribeInterconnectsRequest < Struct.new(
|
2108
2177
|
:interconnect_id)
|
2178
|
+
SENSITIVE = []
|
2109
2179
|
include Aws::Structure
|
2110
2180
|
end
|
2111
2181
|
|
@@ -2124,6 +2194,7 @@ module Aws::DirectConnect
|
|
2124
2194
|
#
|
2125
2195
|
class DescribeLagsRequest < Struct.new(
|
2126
2196
|
:lag_id)
|
2197
|
+
SENSITIVE = []
|
2127
2198
|
include Aws::Structure
|
2128
2199
|
end
|
2129
2200
|
|
@@ -2158,6 +2229,7 @@ module Aws::DirectConnect
|
|
2158
2229
|
:connection_id,
|
2159
2230
|
:provider_name,
|
2160
2231
|
:loa_content_type)
|
2232
|
+
SENSITIVE = []
|
2161
2233
|
include Aws::Structure
|
2162
2234
|
end
|
2163
2235
|
|
@@ -2176,6 +2248,7 @@ module Aws::DirectConnect
|
|
2176
2248
|
#
|
2177
2249
|
class DescribeTagsRequest < Struct.new(
|
2178
2250
|
:resource_arns)
|
2251
|
+
SENSITIVE = []
|
2179
2252
|
include Aws::Structure
|
2180
2253
|
end
|
2181
2254
|
|
@@ -2187,6 +2260,7 @@ module Aws::DirectConnect
|
|
2187
2260
|
#
|
2188
2261
|
class DescribeTagsResponse < Struct.new(
|
2189
2262
|
:resource_tags)
|
2263
|
+
SENSITIVE = []
|
2190
2264
|
include Aws::Structure
|
2191
2265
|
end
|
2192
2266
|
|
@@ -2211,6 +2285,7 @@ module Aws::DirectConnect
|
|
2211
2285
|
class DescribeVirtualInterfacesRequest < Struct.new(
|
2212
2286
|
:connection_id,
|
2213
2287
|
:virtual_interface_id)
|
2288
|
+
SENSITIVE = []
|
2214
2289
|
include Aws::Structure
|
2215
2290
|
end
|
2216
2291
|
|
@@ -2223,6 +2298,7 @@ module Aws::DirectConnect
|
|
2223
2298
|
#
|
2224
2299
|
class DirectConnectClientException < Struct.new(
|
2225
2300
|
:message)
|
2301
|
+
SENSITIVE = []
|
2226
2302
|
include Aws::Structure
|
2227
2303
|
end
|
2228
2304
|
|
@@ -2276,6 +2352,7 @@ module Aws::DirectConnect
|
|
2276
2352
|
:owner_account,
|
2277
2353
|
:direct_connect_gateway_state,
|
2278
2354
|
:state_change_error)
|
2355
|
+
SENSITIVE = []
|
2279
2356
|
include Aws::Structure
|
2280
2357
|
end
|
2281
2358
|
|
@@ -2351,6 +2428,7 @@ module Aws::DirectConnect
|
|
2351
2428
|
:virtual_gateway_id,
|
2352
2429
|
:virtual_gateway_region,
|
2353
2430
|
:virtual_gateway_owner_account)
|
2431
|
+
SENSITIVE = []
|
2354
2432
|
include Aws::Structure
|
2355
2433
|
end
|
2356
2434
|
|
@@ -2406,6 +2484,7 @@ module Aws::DirectConnect
|
|
2406
2484
|
:associated_gateway,
|
2407
2485
|
:existing_allowed_prefixes_to_direct_connect_gateway,
|
2408
2486
|
:requested_allowed_prefixes_to_direct_connect_gateway)
|
2487
|
+
SENSITIVE = []
|
2409
2488
|
include Aws::Structure
|
2410
2489
|
end
|
2411
2490
|
|
@@ -2463,6 +2542,7 @@ module Aws::DirectConnect
|
|
2463
2542
|
:attachment_state,
|
2464
2543
|
:attachment_type,
|
2465
2544
|
:state_change_error)
|
2545
|
+
SENSITIVE = []
|
2466
2546
|
include Aws::Structure
|
2467
2547
|
end
|
2468
2548
|
|
@@ -2475,6 +2555,7 @@ module Aws::DirectConnect
|
|
2475
2555
|
#
|
2476
2556
|
class DirectConnectServerException < Struct.new(
|
2477
2557
|
:message)
|
2558
|
+
SENSITIVE = []
|
2478
2559
|
include Aws::Structure
|
2479
2560
|
end
|
2480
2561
|
|
@@ -2499,6 +2580,7 @@ module Aws::DirectConnect
|
|
2499
2580
|
class DisassociateConnectionFromLagRequest < Struct.new(
|
2500
2581
|
:connection_id,
|
2501
2582
|
:lag_id)
|
2583
|
+
SENSITIVE = []
|
2502
2584
|
include Aws::Structure
|
2503
2585
|
end
|
2504
2586
|
|
@@ -2605,6 +2687,7 @@ module Aws::DirectConnect
|
|
2605
2687
|
:has_logical_redundancy,
|
2606
2688
|
:tags,
|
2607
2689
|
:provider_name)
|
2690
|
+
SENSITIVE = []
|
2608
2691
|
include Aws::Structure
|
2609
2692
|
end
|
2610
2693
|
|
@@ -2616,6 +2699,7 @@ module Aws::DirectConnect
|
|
2616
2699
|
#
|
2617
2700
|
class Interconnects < Struct.new(
|
2618
2701
|
:interconnects)
|
2702
|
+
SENSITIVE = []
|
2619
2703
|
include Aws::Structure
|
2620
2704
|
end
|
2621
2705
|
|
@@ -2730,6 +2814,7 @@ module Aws::DirectConnect
|
|
2730
2814
|
:has_logical_redundancy,
|
2731
2815
|
:tags,
|
2732
2816
|
:provider_name)
|
2817
|
+
SENSITIVE = []
|
2733
2818
|
include Aws::Structure
|
2734
2819
|
end
|
2735
2820
|
|
@@ -2741,6 +2826,80 @@ module Aws::DirectConnect
|
|
2741
2826
|
#
|
2742
2827
|
class Lags < Struct.new(
|
2743
2828
|
:lags)
|
2829
|
+
SENSITIVE = []
|
2830
|
+
include Aws::Structure
|
2831
|
+
end
|
2832
|
+
|
2833
|
+
# @note When making an API call, you may pass ListVirtualInterfaceTestHistoryRequest
|
2834
|
+
# data as a hash:
|
2835
|
+
#
|
2836
|
+
# {
|
2837
|
+
# test_id: "TestId",
|
2838
|
+
# virtual_interface_id: "VirtualInterfaceId",
|
2839
|
+
# bgp_peers: ["BGPPeerId"],
|
2840
|
+
# status: "FailureTestHistoryStatus",
|
2841
|
+
# max_results: 1,
|
2842
|
+
# next_token: "PaginationToken",
|
2843
|
+
# }
|
2844
|
+
#
|
2845
|
+
# @!attribute [rw] test_id
|
2846
|
+
# The ID of the virtual interface failover test.
|
2847
|
+
# @return [String]
|
2848
|
+
#
|
2849
|
+
# @!attribute [rw] virtual_interface_id
|
2850
|
+
# The ID of the virtual interface that was tested.
|
2851
|
+
# @return [String]
|
2852
|
+
#
|
2853
|
+
# @!attribute [rw] bgp_peers
|
2854
|
+
# The BGP peers that were placed in the DOWN state during the virtual
|
2855
|
+
# interface failover test.
|
2856
|
+
# @return [Array<String>]
|
2857
|
+
#
|
2858
|
+
# @!attribute [rw] status
|
2859
|
+
# The status of the virtual interface failover test.
|
2860
|
+
# @return [String]
|
2861
|
+
#
|
2862
|
+
# @!attribute [rw] max_results
|
2863
|
+
# The maximum number of results to return with a single call. To
|
2864
|
+
# retrieve the remaining results, make another call with the returned
|
2865
|
+
# `nextToken` value.
|
2866
|
+
#
|
2867
|
+
# If `MaxResults` is given a value larger than 100, only 100 results
|
2868
|
+
# are returned.
|
2869
|
+
# @return [Integer]
|
2870
|
+
#
|
2871
|
+
# @!attribute [rw] next_token
|
2872
|
+
# The token for the next page of results.
|
2873
|
+
# @return [String]
|
2874
|
+
#
|
2875
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/ListVirtualInterfaceTestHistoryRequest AWS API Documentation
|
2876
|
+
#
|
2877
|
+
class ListVirtualInterfaceTestHistoryRequest < Struct.new(
|
2878
|
+
:test_id,
|
2879
|
+
:virtual_interface_id,
|
2880
|
+
:bgp_peers,
|
2881
|
+
:status,
|
2882
|
+
:max_results,
|
2883
|
+
:next_token)
|
2884
|
+
SENSITIVE = []
|
2885
|
+
include Aws::Structure
|
2886
|
+
end
|
2887
|
+
|
2888
|
+
# @!attribute [rw] virtual_interface_test_history
|
2889
|
+
# The ID of the tested virtual interface.
|
2890
|
+
# @return [Array<Types::VirtualInterfaceTestHistory>]
|
2891
|
+
#
|
2892
|
+
# @!attribute [rw] next_token
|
2893
|
+
# The token to use to retrieve the next page of results. This value is
|
2894
|
+
# `null` when there are no more results to return.
|
2895
|
+
# @return [String]
|
2896
|
+
#
|
2897
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/ListVirtualInterfaceTestHistoryResponse AWS API Documentation
|
2898
|
+
#
|
2899
|
+
class ListVirtualInterfaceTestHistoryResponse < Struct.new(
|
2900
|
+
:virtual_interface_test_history,
|
2901
|
+
:next_token)
|
2902
|
+
SENSITIVE = []
|
2744
2903
|
include Aws::Structure
|
2745
2904
|
end
|
2746
2905
|
|
@@ -2761,6 +2920,7 @@ module Aws::DirectConnect
|
|
2761
2920
|
class Loa < Struct.new(
|
2762
2921
|
:loa_content,
|
2763
2922
|
:loa_content_type)
|
2923
|
+
SENSITIVE = []
|
2764
2924
|
include Aws::Structure
|
2765
2925
|
end
|
2766
2926
|
|
@@ -2795,6 +2955,7 @@ module Aws::DirectConnect
|
|
2795
2955
|
:region,
|
2796
2956
|
:available_port_speeds,
|
2797
2957
|
:available_providers)
|
2958
|
+
SENSITIVE = []
|
2798
2959
|
include Aws::Structure
|
2799
2960
|
end
|
2800
2961
|
|
@@ -2806,6 +2967,7 @@ module Aws::DirectConnect
|
|
2806
2967
|
#
|
2807
2968
|
class Locations < Struct.new(
|
2808
2969
|
:locations)
|
2970
|
+
SENSITIVE = []
|
2809
2971
|
include Aws::Structure
|
2810
2972
|
end
|
2811
2973
|
|
@@ -2853,6 +3015,7 @@ module Aws::DirectConnect
|
|
2853
3015
|
:address_family,
|
2854
3016
|
:amazon_address,
|
2855
3017
|
:customer_address)
|
3018
|
+
SENSITIVE = []
|
2856
3019
|
include Aws::Structure
|
2857
3020
|
end
|
2858
3021
|
|
@@ -2882,6 +3045,8 @@ module Aws::DirectConnect
|
|
2882
3045
|
#
|
2883
3046
|
# @!attribute [rw] virtual_interface_name
|
2884
3047
|
# The name of the virtual interface assigned by the customer network.
|
3048
|
+
# The name has a maximum of 100 characters. The following are valid
|
3049
|
+
# characters: a-z, 0-9 and a hyphen (-).
|
2885
3050
|
# @return [String]
|
2886
3051
|
#
|
2887
3052
|
# @!attribute [rw] vlan
|
@@ -2944,6 +3109,7 @@ module Aws::DirectConnect
|
|
2944
3109
|
:virtual_gateway_id,
|
2945
3110
|
:direct_connect_gateway_id,
|
2946
3111
|
:tags)
|
3112
|
+
SENSITIVE = []
|
2947
3113
|
include Aws::Structure
|
2948
3114
|
end
|
2949
3115
|
|
@@ -2972,6 +3138,8 @@ module Aws::DirectConnect
|
|
2972
3138
|
#
|
2973
3139
|
# @!attribute [rw] virtual_interface_name
|
2974
3140
|
# The name of the virtual interface assigned by the customer network.
|
3141
|
+
# The name has a maximum of 100 characters. The following are valid
|
3142
|
+
# characters: a-z, 0-9 and a hyphen (-).
|
2975
3143
|
# @return [String]
|
2976
3144
|
#
|
2977
3145
|
# @!attribute [rw] vlan
|
@@ -3024,6 +3192,7 @@ module Aws::DirectConnect
|
|
3024
3192
|
:address_family,
|
3025
3193
|
:customer_address,
|
3026
3194
|
:tags)
|
3195
|
+
SENSITIVE = []
|
3027
3196
|
include Aws::Structure
|
3028
3197
|
end
|
3029
3198
|
|
@@ -3055,6 +3224,8 @@ module Aws::DirectConnect
|
|
3055
3224
|
#
|
3056
3225
|
# @!attribute [rw] virtual_interface_name
|
3057
3226
|
# The name of the virtual interface assigned by the customer network.
|
3227
|
+
# The name has a maximum of 100 characters. The following are valid
|
3228
|
+
# characters: a-z, 0-9 and a hyphen (-).
|
3058
3229
|
# @return [String]
|
3059
3230
|
#
|
3060
3231
|
# @!attribute [rw] vlan
|
@@ -3107,6 +3278,7 @@ module Aws::DirectConnect
|
|
3107
3278
|
:address_family,
|
3108
3279
|
:route_filter_prefixes,
|
3109
3280
|
:tags)
|
3281
|
+
SENSITIVE = []
|
3110
3282
|
include Aws::Structure
|
3111
3283
|
end
|
3112
3284
|
|
@@ -3139,6 +3311,8 @@ module Aws::DirectConnect
|
|
3139
3311
|
#
|
3140
3312
|
# @!attribute [rw] virtual_interface_name
|
3141
3313
|
# The name of the virtual interface assigned by the customer network.
|
3314
|
+
# The name has a maximum of 100 characters. The following are valid
|
3315
|
+
# characters: a-z, 0-9 and a hyphen (-).
|
3142
3316
|
# @return [String]
|
3143
3317
|
#
|
3144
3318
|
# @!attribute [rw] vlan
|
@@ -3191,6 +3365,7 @@ module Aws::DirectConnect
|
|
3191
3365
|
:address_family,
|
3192
3366
|
:route_filter_prefixes,
|
3193
3367
|
:tags)
|
3368
|
+
SENSITIVE = []
|
3194
3369
|
include Aws::Structure
|
3195
3370
|
end
|
3196
3371
|
|
@@ -3219,6 +3394,8 @@ module Aws::DirectConnect
|
|
3219
3394
|
#
|
3220
3395
|
# @!attribute [rw] virtual_interface_name
|
3221
3396
|
# The name of the virtual interface assigned by the customer network.
|
3397
|
+
# The name has a maximum of 100 characters. The following are valid
|
3398
|
+
# characters: a-z, 0-9 and a hyphen (-).
|
3222
3399
|
# @return [String]
|
3223
3400
|
#
|
3224
3401
|
# @!attribute [rw] vlan
|
@@ -3276,6 +3453,7 @@ module Aws::DirectConnect
|
|
3276
3453
|
:address_family,
|
3277
3454
|
:direct_connect_gateway_id,
|
3278
3455
|
:tags)
|
3456
|
+
SENSITIVE = []
|
3279
3457
|
include Aws::Structure
|
3280
3458
|
end
|
3281
3459
|
|
@@ -3304,6 +3482,8 @@ module Aws::DirectConnect
|
|
3304
3482
|
#
|
3305
3483
|
# @!attribute [rw] virtual_interface_name
|
3306
3484
|
# The name of the virtual interface assigned by the customer network.
|
3485
|
+
# The name has a maximum of 100 characters. The following are valid
|
3486
|
+
# characters: a-z, 0-9 and a hyphen (-).
|
3307
3487
|
# @return [String]
|
3308
3488
|
#
|
3309
3489
|
# @!attribute [rw] vlan
|
@@ -3356,6 +3536,7 @@ module Aws::DirectConnect
|
|
3356
3536
|
:customer_address,
|
3357
3537
|
:address_family,
|
3358
3538
|
:tags)
|
3539
|
+
SENSITIVE = []
|
3359
3540
|
include Aws::Structure
|
3360
3541
|
end
|
3361
3542
|
|
@@ -3375,6 +3556,7 @@ module Aws::DirectConnect
|
|
3375
3556
|
class ResourceTag < Struct.new(
|
3376
3557
|
:resource_arn,
|
3377
3558
|
:tags)
|
3559
|
+
SENSITIVE = []
|
3378
3560
|
include Aws::Structure
|
3379
3561
|
end
|
3380
3562
|
|
@@ -3397,6 +3579,86 @@ module Aws::DirectConnect
|
|
3397
3579
|
#
|
3398
3580
|
class RouteFilterPrefix < Struct.new(
|
3399
3581
|
:cidr)
|
3582
|
+
SENSITIVE = []
|
3583
|
+
include Aws::Structure
|
3584
|
+
end
|
3585
|
+
|
3586
|
+
# @note When making an API call, you may pass StartBgpFailoverTestRequest
|
3587
|
+
# data as a hash:
|
3588
|
+
#
|
3589
|
+
# {
|
3590
|
+
# virtual_interface_id: "VirtualInterfaceId", # required
|
3591
|
+
# bgp_peers: ["BGPPeerId"],
|
3592
|
+
# test_duration_in_minutes: 1,
|
3593
|
+
# }
|
3594
|
+
#
|
3595
|
+
# @!attribute [rw] virtual_interface_id
|
3596
|
+
# The ID of the virtual interface you want to test.
|
3597
|
+
# @return [String]
|
3598
|
+
#
|
3599
|
+
# @!attribute [rw] bgp_peers
|
3600
|
+
# The BGP peers to place in the DOWN state.
|
3601
|
+
# @return [Array<String>]
|
3602
|
+
#
|
3603
|
+
# @!attribute [rw] test_duration_in_minutes
|
3604
|
+
# The time in minutes that the virtual interface failover test will
|
3605
|
+
# last.
|
3606
|
+
#
|
3607
|
+
# Maximum value: 180 minutes (3 hours).
|
3608
|
+
#
|
3609
|
+
# Default: 180 minutes (3 hours).
|
3610
|
+
# @return [Integer]
|
3611
|
+
#
|
3612
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/StartBgpFailoverTestRequest AWS API Documentation
|
3613
|
+
#
|
3614
|
+
class StartBgpFailoverTestRequest < Struct.new(
|
3615
|
+
:virtual_interface_id,
|
3616
|
+
:bgp_peers,
|
3617
|
+
:test_duration_in_minutes)
|
3618
|
+
SENSITIVE = []
|
3619
|
+
include Aws::Structure
|
3620
|
+
end
|
3621
|
+
|
3622
|
+
# @!attribute [rw] virtual_interface_test
|
3623
|
+
# Information about the virtual interface failover test.
|
3624
|
+
# @return [Types::VirtualInterfaceTestHistory]
|
3625
|
+
#
|
3626
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/StartBgpFailoverTestResponse AWS API Documentation
|
3627
|
+
#
|
3628
|
+
class StartBgpFailoverTestResponse < Struct.new(
|
3629
|
+
:virtual_interface_test)
|
3630
|
+
SENSITIVE = []
|
3631
|
+
include Aws::Structure
|
3632
|
+
end
|
3633
|
+
|
3634
|
+
# @note When making an API call, you may pass StopBgpFailoverTestRequest
|
3635
|
+
# data as a hash:
|
3636
|
+
#
|
3637
|
+
# {
|
3638
|
+
# virtual_interface_id: "VirtualInterfaceId", # required
|
3639
|
+
# }
|
3640
|
+
#
|
3641
|
+
# @!attribute [rw] virtual_interface_id
|
3642
|
+
# The ID of the virtual interface you no longer want to test.
|
3643
|
+
# @return [String]
|
3644
|
+
#
|
3645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/StopBgpFailoverTestRequest AWS API Documentation
|
3646
|
+
#
|
3647
|
+
class StopBgpFailoverTestRequest < Struct.new(
|
3648
|
+
:virtual_interface_id)
|
3649
|
+
SENSITIVE = []
|
3650
|
+
include Aws::Structure
|
3651
|
+
end
|
3652
|
+
|
3653
|
+
# @!attribute [rw] virtual_interface_test
|
3654
|
+
# Information about the virtual interface failover test.
|
3655
|
+
# @return [Types::VirtualInterfaceTestHistory]
|
3656
|
+
#
|
3657
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/StopBgpFailoverTestResponse AWS API Documentation
|
3658
|
+
#
|
3659
|
+
class StopBgpFailoverTestResponse < Struct.new(
|
3660
|
+
:virtual_interface_test)
|
3661
|
+
SENSITIVE = []
|
3400
3662
|
include Aws::Structure
|
3401
3663
|
end
|
3402
3664
|
|
@@ -3423,6 +3685,7 @@ module Aws::DirectConnect
|
|
3423
3685
|
class Tag < Struct.new(
|
3424
3686
|
:key,
|
3425
3687
|
:value)
|
3688
|
+
SENSITIVE = []
|
3426
3689
|
include Aws::Structure
|
3427
3690
|
end
|
3428
3691
|
|
@@ -3452,6 +3715,7 @@ module Aws::DirectConnect
|
|
3452
3715
|
class TagResourceRequest < Struct.new(
|
3453
3716
|
:resource_arn,
|
3454
3717
|
:tags)
|
3718
|
+
SENSITIVE = []
|
3455
3719
|
include Aws::Structure
|
3456
3720
|
end
|
3457
3721
|
|
@@ -3486,6 +3750,7 @@ module Aws::DirectConnect
|
|
3486
3750
|
class UntagResourceRequest < Struct.new(
|
3487
3751
|
:resource_arn,
|
3488
3752
|
:tag_keys)
|
3753
|
+
SENSITIVE = []
|
3489
3754
|
include Aws::Structure
|
3490
3755
|
end
|
3491
3756
|
|
@@ -3529,6 +3794,7 @@ module Aws::DirectConnect
|
|
3529
3794
|
:association_id,
|
3530
3795
|
:add_allowed_prefixes_to_direct_connect_gateway,
|
3531
3796
|
:remove_allowed_prefixes_to_direct_connect_gateway)
|
3797
|
+
SENSITIVE = []
|
3532
3798
|
include Aws::Structure
|
3533
3799
|
end
|
3534
3800
|
|
@@ -3541,6 +3807,7 @@ module Aws::DirectConnect
|
|
3541
3807
|
#
|
3542
3808
|
class UpdateDirectConnectGatewayAssociationResult < Struct.new(
|
3543
3809
|
:direct_connect_gateway_association)
|
3810
|
+
SENSITIVE = []
|
3544
3811
|
include Aws::Structure
|
3545
3812
|
end
|
3546
3813
|
|
@@ -3572,6 +3839,7 @@ module Aws::DirectConnect
|
|
3572
3839
|
:lag_id,
|
3573
3840
|
:lag_name,
|
3574
3841
|
:minimum_links)
|
3842
|
+
SENSITIVE = []
|
3575
3843
|
include Aws::Structure
|
3576
3844
|
end
|
3577
3845
|
|
@@ -3597,6 +3865,7 @@ module Aws::DirectConnect
|
|
3597
3865
|
class UpdateVirtualInterfaceAttributesRequest < Struct.new(
|
3598
3866
|
:virtual_interface_id,
|
3599
3867
|
:mtu)
|
3868
|
+
SENSITIVE = []
|
3600
3869
|
include Aws::Structure
|
3601
3870
|
end
|
3602
3871
|
|
@@ -3628,6 +3897,7 @@ module Aws::DirectConnect
|
|
3628
3897
|
class VirtualGateway < Struct.new(
|
3629
3898
|
:virtual_gateway_id,
|
3630
3899
|
:virtual_gateway_state)
|
3900
|
+
SENSITIVE = []
|
3631
3901
|
include Aws::Structure
|
3632
3902
|
end
|
3633
3903
|
|
@@ -3639,6 +3909,7 @@ module Aws::DirectConnect
|
|
3639
3909
|
#
|
3640
3910
|
class VirtualGateways < Struct.new(
|
3641
3911
|
:virtual_gateways)
|
3912
|
+
SENSITIVE = []
|
3642
3913
|
include Aws::Structure
|
3643
3914
|
end
|
3644
3915
|
|
@@ -3667,6 +3938,8 @@ module Aws::DirectConnect
|
|
3667
3938
|
#
|
3668
3939
|
# @!attribute [rw] virtual_interface_name
|
3669
3940
|
# The name of the virtual interface assigned by the customer network.
|
3941
|
+
# The name has a maximum of 100 characters. The following are valid
|
3942
|
+
# characters: a-z, 0-9 and a hyphen (-).
|
3670
3943
|
# @return [String]
|
3671
3944
|
#
|
3672
3945
|
# @!attribute [rw] vlan
|
@@ -3810,6 +4083,57 @@ module Aws::DirectConnect
|
|
3810
4083
|
:region,
|
3811
4084
|
:aws_device_v2,
|
3812
4085
|
:tags)
|
4086
|
+
SENSITIVE = []
|
4087
|
+
include Aws::Structure
|
4088
|
+
end
|
4089
|
+
|
4090
|
+
# Information about the virtual interface failover test.
|
4091
|
+
#
|
4092
|
+
# @!attribute [rw] test_id
|
4093
|
+
# The ID of the virtual interface failover test.
|
4094
|
+
# @return [String]
|
4095
|
+
#
|
4096
|
+
# @!attribute [rw] virtual_interface_id
|
4097
|
+
# The ID of the tested virtual interface.
|
4098
|
+
# @return [String]
|
4099
|
+
#
|
4100
|
+
# @!attribute [rw] bgp_peers
|
4101
|
+
# The BGP peers that were put in the DOWN state as part of the virtual
|
4102
|
+
# interface failover test.
|
4103
|
+
# @return [Array<String>]
|
4104
|
+
#
|
4105
|
+
# @!attribute [rw] status
|
4106
|
+
# The status of the virtual interface failover test.
|
4107
|
+
# @return [String]
|
4108
|
+
#
|
4109
|
+
# @!attribute [rw] owner_account
|
4110
|
+
# The owner ID of the tested virtual interface.
|
4111
|
+
# @return [String]
|
4112
|
+
#
|
4113
|
+
# @!attribute [rw] test_duration_in_minutes
|
4114
|
+
# The time that the virtual interface failover test ran in minutes.
|
4115
|
+
# @return [Integer]
|
4116
|
+
#
|
4117
|
+
# @!attribute [rw] start_time
|
4118
|
+
# The time that the virtual interface moves to the DOWN state.
|
4119
|
+
# @return [Time]
|
4120
|
+
#
|
4121
|
+
# @!attribute [rw] end_time
|
4122
|
+
# The time that the virtual interface moves out of the DOWN state.
|
4123
|
+
# @return [Time]
|
4124
|
+
#
|
4125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/VirtualInterfaceTestHistory AWS API Documentation
|
4126
|
+
#
|
4127
|
+
class VirtualInterfaceTestHistory < Struct.new(
|
4128
|
+
:test_id,
|
4129
|
+
:virtual_interface_id,
|
4130
|
+
:bgp_peers,
|
4131
|
+
:status,
|
4132
|
+
:owner_account,
|
4133
|
+
:test_duration_in_minutes,
|
4134
|
+
:start_time,
|
4135
|
+
:end_time)
|
4136
|
+
SENSITIVE = []
|
3813
4137
|
include Aws::Structure
|
3814
4138
|
end
|
3815
4139
|
|
@@ -3821,6 +4145,7 @@ module Aws::DirectConnect
|
|
3821
4145
|
#
|
3822
4146
|
class VirtualInterfaces < Struct.new(
|
3823
4147
|
:virtual_interfaces)
|
4148
|
+
SENSITIVE = []
|
3824
4149
|
include Aws::Structure
|
3825
4150
|
end
|
3826
4151
|
|