aws-sdk-directconnect 1.93.0 → 1.94.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-directconnect/client.rb +84 -38
- data/lib/aws-sdk-directconnect/client_api.rb +7 -0
- data/lib/aws-sdk-directconnect/types.rb +63 -27
- data/lib/aws-sdk-directconnect.rb +1 -1
- data/sig/client.rbs +24 -11
- data/sig/types.rbs +11 -5
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 253fb5000260235f2916685b785ebb8b0638439abb52450cd34212287f65555d
|
4
|
+
data.tar.gz: 12cb0c7c4dcc307cdeb39e7869650b1cb03a8064ce021e9ba7dec6ca06dabfd9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0eee1572ce773c577c2b9658fc4e9a49ee3cc79679a4e93860a9598fcc1810a711c901d77e089c0cc321e20ffc5ad747ac514d8e57d54821150b0d7c7d84fd0f
|
7
|
+
data.tar.gz: 48432c23beb126e96b8ffb9345c2f0e74c6be8d2530321747ff46a2bf5931088a95e0e6014919c5ac0efc1a7518e9814ed903c57d53eaa324df84a06f9eef0e6
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.94.0
|
@@ -614,6 +614,7 @@ module Aws::DirectConnect
|
|
614
614
|
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
615
615
|
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
616
616
|
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
617
|
+
# * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
|
617
618
|
#
|
618
619
|
# @example Request syntax with placeholder values
|
619
620
|
#
|
@@ -655,6 +656,7 @@ module Aws::DirectConnect
|
|
655
656
|
# resp.mac_sec_keys[0].ckn #=> String
|
656
657
|
# resp.mac_sec_keys[0].state #=> String
|
657
658
|
# resp.mac_sec_keys[0].start_on #=> String
|
659
|
+
# resp.partner_interconnect_mac_sec_capable #=> Boolean
|
658
660
|
#
|
659
661
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocateConnectionOnInterconnect AWS API Documentation
|
660
662
|
#
|
@@ -725,6 +727,7 @@ module Aws::DirectConnect
|
|
725
727
|
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
726
728
|
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
727
729
|
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
730
|
+
# * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
|
728
731
|
#
|
729
732
|
# @example Request syntax with placeholder values
|
730
733
|
#
|
@@ -772,6 +775,7 @@ module Aws::DirectConnect
|
|
772
775
|
# resp.mac_sec_keys[0].ckn #=> String
|
773
776
|
# resp.mac_sec_keys[0].state #=> String
|
774
777
|
# resp.mac_sec_keys[0].start_on #=> String
|
778
|
+
# resp.partner_interconnect_mac_sec_capable #=> Boolean
|
775
779
|
#
|
776
780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocateHostedConnection AWS API Documentation
|
777
781
|
#
|
@@ -868,7 +872,7 @@ module Aws::DirectConnect
|
|
868
872
|
# resp.amazon_address #=> String
|
869
873
|
# resp.customer_address #=> String
|
870
874
|
# resp.address_family #=> String, one of "ipv4", "ipv6"
|
871
|
-
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
|
875
|
+
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
|
872
876
|
# resp.customer_router_config #=> String
|
873
877
|
# resp.mtu #=> Integer
|
874
878
|
# resp.jumbo_frame_capable #=> Boolean
|
@@ -1003,7 +1007,7 @@ module Aws::DirectConnect
|
|
1003
1007
|
# resp.amazon_address #=> String
|
1004
1008
|
# resp.customer_address #=> String
|
1005
1009
|
# resp.address_family #=> String, one of "ipv4", "ipv6"
|
1006
|
-
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
|
1010
|
+
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
|
1007
1011
|
# resp.customer_router_config #=> String
|
1008
1012
|
# resp.mtu #=> Integer
|
1009
1013
|
# resp.jumbo_frame_capable #=> Boolean
|
@@ -1104,7 +1108,7 @@ module Aws::DirectConnect
|
|
1104
1108
|
# resp.virtual_interface.amazon_address #=> String
|
1105
1109
|
# resp.virtual_interface.customer_address #=> String
|
1106
1110
|
# resp.virtual_interface.address_family #=> String, one of "ipv4", "ipv6"
|
1107
|
-
# resp.virtual_interface.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
|
1111
|
+
# resp.virtual_interface.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
|
1108
1112
|
# resp.virtual_interface.customer_router_config #=> String
|
1109
1113
|
# resp.virtual_interface.mtu #=> Integer
|
1110
1114
|
# resp.virtual_interface.jumbo_frame_capable #=> Boolean
|
@@ -1190,6 +1194,7 @@ module Aws::DirectConnect
|
|
1190
1194
|
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
1191
1195
|
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
1192
1196
|
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
1197
|
+
# * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
|
1193
1198
|
#
|
1194
1199
|
# @example Request syntax with placeholder values
|
1195
1200
|
#
|
@@ -1228,6 +1233,7 @@ module Aws::DirectConnect
|
|
1228
1233
|
# resp.mac_sec_keys[0].ckn #=> String
|
1229
1234
|
# resp.mac_sec_keys[0].state #=> String
|
1230
1235
|
# resp.mac_sec_keys[0].start_on #=> String
|
1236
|
+
# resp.partner_interconnect_mac_sec_capable #=> Boolean
|
1231
1237
|
#
|
1232
1238
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateConnectionWithLag AWS API Documentation
|
1233
1239
|
#
|
@@ -1279,6 +1285,7 @@ module Aws::DirectConnect
|
|
1279
1285
|
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
1280
1286
|
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
1281
1287
|
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
1288
|
+
# * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
|
1282
1289
|
#
|
1283
1290
|
# @example Request syntax with placeholder values
|
1284
1291
|
#
|
@@ -1317,6 +1324,7 @@ module Aws::DirectConnect
|
|
1317
1324
|
# resp.mac_sec_keys[0].ckn #=> String
|
1318
1325
|
# resp.mac_sec_keys[0].state #=> String
|
1319
1326
|
# resp.mac_sec_keys[0].start_on #=> String
|
1327
|
+
# resp.partner_interconnect_mac_sec_capable #=> Boolean
|
1320
1328
|
#
|
1321
1329
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateHostedConnection AWS API Documentation
|
1322
1330
|
#
|
@@ -1328,8 +1336,8 @@ module Aws::DirectConnect
|
|
1328
1336
|
end
|
1329
1337
|
|
1330
1338
|
# Associates a MAC Security (MACsec) Connection Key Name (CKN)/
|
1331
|
-
# Connectivity Association Key (CAK) pair with
|
1332
|
-
#
|
1339
|
+
# Connectivity Association Key (CAK) pair with a Direct Connect
|
1340
|
+
# connection.
|
1333
1341
|
#
|
1334
1342
|
# You must supply either the `secretARN,` or the CKN/CAK (`ckn` and
|
1335
1343
|
# `cak`) pair in the request.
|
@@ -1343,15 +1351,15 @@ module Aws::DirectConnect
|
|
1343
1351
|
# [1]: https://docs.aws.amazon.com/directconnect/latest/UserGuide/direct-connect-mac-sec-getting-started.html#mac-sec-key-consideration
|
1344
1352
|
#
|
1345
1353
|
# @option params [required, String] :connection_id
|
1346
|
-
# The ID of the dedicated connection (dxcon-xxxx),
|
1347
|
-
# (dxlag-xxxx).
|
1354
|
+
# The ID of the dedicated connection (dxcon-xxxx), interconnect
|
1355
|
+
# (dxcon-xxxx), or LAG (dxlag-xxxx).
|
1348
1356
|
#
|
1349
|
-
# You can use DescribeConnections or
|
1350
|
-
# ID.
|
1357
|
+
# You can use DescribeConnections, DescribeInterconnects, or
|
1358
|
+
# DescribeLags to retrieve connection ID.
|
1351
1359
|
#
|
1352
1360
|
# @option params [String] :secret_arn
|
1353
1361
|
# The Amazon Resource Name (ARN) of the MAC Security (MACsec) secret key
|
1354
|
-
# to associate with the
|
1362
|
+
# to associate with the connection.
|
1355
1363
|
#
|
1356
1364
|
# You can use DescribeConnections or DescribeLags to retrieve the MAC
|
1357
1365
|
# Security (MACsec) secret key.
|
@@ -1360,8 +1368,7 @@ module Aws::DirectConnect
|
|
1360
1368
|
# request parameters.
|
1361
1369
|
#
|
1362
1370
|
# @option params [String] :ckn
|
1363
|
-
# The MAC Security (MACsec) CKN to associate with the
|
1364
|
-
# connection.
|
1371
|
+
# The MAC Security (MACsec) CKN to associate with the connection.
|
1365
1372
|
#
|
1366
1373
|
# You can create the CKN/CAK pair using an industry standard tool.
|
1367
1374
|
#
|
@@ -1371,8 +1378,7 @@ module Aws::DirectConnect
|
|
1371
1378
|
# parameter and not use the `secretARN` request parameter.
|
1372
1379
|
#
|
1373
1380
|
# @option params [String] :cak
|
1374
|
-
# The MAC Security (MACsec) CAK to associate with the
|
1375
|
-
# connection.
|
1381
|
+
# The MAC Security (MACsec) CAK to associate with the connection.
|
1376
1382
|
#
|
1377
1383
|
# You can create the CKN/CAK pair using an industry standard tool.
|
1378
1384
|
#
|
@@ -1487,7 +1493,7 @@ module Aws::DirectConnect
|
|
1487
1493
|
# resp.amazon_address #=> String
|
1488
1494
|
# resp.customer_address #=> String
|
1489
1495
|
# resp.address_family #=> String, one of "ipv4", "ipv6"
|
1490
|
-
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
|
1496
|
+
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
|
1491
1497
|
# resp.customer_router_config #=> String
|
1492
1498
|
# resp.mtu #=> Integer
|
1493
1499
|
# resp.jumbo_frame_capable #=> Boolean
|
@@ -1616,7 +1622,7 @@ module Aws::DirectConnect
|
|
1616
1622
|
#
|
1617
1623
|
# @example Response structure
|
1618
1624
|
#
|
1619
|
-
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
|
1625
|
+
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
|
1620
1626
|
#
|
1621
1627
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/ConfirmPrivateVirtualInterface AWS API Documentation
|
1622
1628
|
#
|
@@ -1648,7 +1654,7 @@ module Aws::DirectConnect
|
|
1648
1654
|
#
|
1649
1655
|
# @example Response structure
|
1650
1656
|
#
|
1651
|
-
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
|
1657
|
+
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
|
1652
1658
|
#
|
1653
1659
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/ConfirmPublicVirtualInterface AWS API Documentation
|
1654
1660
|
#
|
@@ -1685,7 +1691,7 @@ module Aws::DirectConnect
|
|
1685
1691
|
#
|
1686
1692
|
# @example Response structure
|
1687
1693
|
#
|
1688
|
-
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
|
1694
|
+
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
|
1689
1695
|
#
|
1690
1696
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/ConfirmTransitVirtualInterface AWS API Documentation
|
1691
1697
|
#
|
@@ -1764,7 +1770,7 @@ module Aws::DirectConnect
|
|
1764
1770
|
# resp.virtual_interface.amazon_address #=> String
|
1765
1771
|
# resp.virtual_interface.customer_address #=> String
|
1766
1772
|
# resp.virtual_interface.address_family #=> String, one of "ipv4", "ipv6"
|
1767
|
-
# resp.virtual_interface.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
|
1773
|
+
# resp.virtual_interface.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
|
1768
1774
|
# resp.virtual_interface.customer_router_config #=> String
|
1769
1775
|
# resp.virtual_interface.mtu #=> Integer
|
1770
1776
|
# resp.virtual_interface.jumbo_frame_capable #=> Boolean
|
@@ -1838,13 +1844,13 @@ module Aws::DirectConnect
|
|
1838
1844
|
# Indicates whether you want the connection to support MAC Security
|
1839
1845
|
# (MACsec).
|
1840
1846
|
#
|
1841
|
-
# MAC Security (MACsec) is
|
1842
|
-
# information about MAC Security (MACsec)
|
1843
|
-
#
|
1847
|
+
# MAC Security (MACsec) is unavailable on hosted connections. For
|
1848
|
+
# information about MAC Security (MACsec) prerequisites, see [MAC
|
1849
|
+
# Security in Direct Connect][1] in the *Direct Connect User Guide*.
|
1844
1850
|
#
|
1845
1851
|
#
|
1846
1852
|
#
|
1847
|
-
# [1]: https://docs.aws.amazon.com/directconnect/latest/UserGuide/
|
1853
|
+
# [1]: https://docs.aws.amazon.com/directconnect/latest/UserGuide/MACSec.html
|
1848
1854
|
#
|
1849
1855
|
# @return [Types::Connection] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1850
1856
|
#
|
@@ -1870,6 +1876,7 @@ module Aws::DirectConnect
|
|
1870
1876
|
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
1871
1877
|
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
1872
1878
|
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
1879
|
+
# * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
|
1873
1880
|
#
|
1874
1881
|
# @example Request syntax with placeholder values
|
1875
1882
|
#
|
@@ -1918,6 +1925,7 @@ module Aws::DirectConnect
|
|
1918
1925
|
# resp.mac_sec_keys[0].ckn #=> String
|
1919
1926
|
# resp.mac_sec_keys[0].state #=> String
|
1920
1927
|
# resp.mac_sec_keys[0].start_on #=> String
|
1928
|
+
# resp.partner_interconnect_mac_sec_capable #=> Boolean
|
1921
1929
|
#
|
1922
1930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateConnection AWS API Documentation
|
1923
1931
|
#
|
@@ -2174,6 +2182,10 @@ module Aws::DirectConnect
|
|
2174
2182
|
# @option params [String] :provider_name
|
2175
2183
|
# The name of the service provider associated with the interconnect.
|
2176
2184
|
#
|
2185
|
+
# @option params [Boolean] :request_mac_sec
|
2186
|
+
# Indicates whether you want the interconnect to support MAC Security
|
2187
|
+
# (MACsec).
|
2188
|
+
#
|
2177
2189
|
# @return [Types::Interconnect] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2178
2190
|
#
|
2179
2191
|
# * {Types::Interconnect#interconnect_id #interconnect_id} => String
|
@@ -2191,6 +2203,10 @@ module Aws::DirectConnect
|
|
2191
2203
|
# * {Types::Interconnect#has_logical_redundancy #has_logical_redundancy} => String
|
2192
2204
|
# * {Types::Interconnect#tags #tags} => Array<Types::Tag>
|
2193
2205
|
# * {Types::Interconnect#provider_name #provider_name} => String
|
2206
|
+
# * {Types::Interconnect#mac_sec_capable #mac_sec_capable} => Boolean
|
2207
|
+
# * {Types::Interconnect#port_encryption_status #port_encryption_status} => String
|
2208
|
+
# * {Types::Interconnect#encryption_mode #encryption_mode} => String
|
2209
|
+
# * {Types::Interconnect#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
2194
2210
|
#
|
2195
2211
|
# @example Request syntax with placeholder values
|
2196
2212
|
#
|
@@ -2206,6 +2222,7 @@ module Aws::DirectConnect
|
|
2206
2222
|
# },
|
2207
2223
|
# ],
|
2208
2224
|
# provider_name: "ProviderName",
|
2225
|
+
# request_mac_sec: false,
|
2209
2226
|
# })
|
2210
2227
|
#
|
2211
2228
|
# @example Response structure
|
@@ -2227,6 +2244,14 @@ module Aws::DirectConnect
|
|
2227
2244
|
# resp.tags[0].key #=> String
|
2228
2245
|
# resp.tags[0].value #=> String
|
2229
2246
|
# resp.provider_name #=> String
|
2247
|
+
# resp.mac_sec_capable #=> Boolean
|
2248
|
+
# resp.port_encryption_status #=> String
|
2249
|
+
# resp.encryption_mode #=> String
|
2250
|
+
# resp.mac_sec_keys #=> Array
|
2251
|
+
# resp.mac_sec_keys[0].secret_arn #=> String
|
2252
|
+
# resp.mac_sec_keys[0].ckn #=> String
|
2253
|
+
# resp.mac_sec_keys[0].state #=> String
|
2254
|
+
# resp.mac_sec_keys[0].start_on #=> String
|
2230
2255
|
#
|
2231
2256
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateInterconnect AWS API Documentation
|
2232
2257
|
#
|
@@ -2398,6 +2423,7 @@ module Aws::DirectConnect
|
|
2398
2423
|
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
2399
2424
|
# resp.connections[0].mac_sec_keys[0].state #=> String
|
2400
2425
|
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
2426
|
+
# resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
|
2401
2427
|
# resp.allows_hosted_connections #=> Boolean
|
2402
2428
|
# resp.jumbo_frame_capable #=> Boolean
|
2403
2429
|
# resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
@@ -2515,7 +2541,7 @@ module Aws::DirectConnect
|
|
2515
2541
|
# resp.amazon_address #=> String
|
2516
2542
|
# resp.customer_address #=> String
|
2517
2543
|
# resp.address_family #=> String, one of "ipv4", "ipv6"
|
2518
|
-
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
|
2544
|
+
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
|
2519
2545
|
# resp.customer_router_config #=> String
|
2520
2546
|
# resp.mtu #=> Integer
|
2521
2547
|
# resp.jumbo_frame_capable #=> Boolean
|
@@ -2636,7 +2662,7 @@ module Aws::DirectConnect
|
|
2636
2662
|
# resp.amazon_address #=> String
|
2637
2663
|
# resp.customer_address #=> String
|
2638
2664
|
# resp.address_family #=> String, one of "ipv4", "ipv6"
|
2639
|
-
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
|
2665
|
+
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
|
2640
2666
|
# resp.customer_router_config #=> String
|
2641
2667
|
# resp.mtu #=> Integer
|
2642
2668
|
# resp.jumbo_frame_capable #=> Boolean
|
@@ -2743,7 +2769,7 @@ module Aws::DirectConnect
|
|
2743
2769
|
# resp.virtual_interface.amazon_address #=> String
|
2744
2770
|
# resp.virtual_interface.customer_address #=> String
|
2745
2771
|
# resp.virtual_interface.address_family #=> String, one of "ipv4", "ipv6"
|
2746
|
-
# resp.virtual_interface.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
|
2772
|
+
# resp.virtual_interface.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
|
2747
2773
|
# resp.virtual_interface.customer_router_config #=> String
|
2748
2774
|
# resp.virtual_interface.mtu #=> Integer
|
2749
2775
|
# resp.virtual_interface.jumbo_frame_capable #=> Boolean
|
@@ -2825,7 +2851,7 @@ module Aws::DirectConnect
|
|
2825
2851
|
# resp.virtual_interface.amazon_address #=> String
|
2826
2852
|
# resp.virtual_interface.customer_address #=> String
|
2827
2853
|
# resp.virtual_interface.address_family #=> String, one of "ipv4", "ipv6"
|
2828
|
-
# resp.virtual_interface.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
|
2854
|
+
# resp.virtual_interface.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
|
2829
2855
|
# resp.virtual_interface.customer_router_config #=> String
|
2830
2856
|
# resp.virtual_interface.mtu #=> Integer
|
2831
2857
|
# resp.virtual_interface.jumbo_frame_capable #=> Boolean
|
@@ -2895,6 +2921,7 @@ module Aws::DirectConnect
|
|
2895
2921
|
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
2896
2922
|
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
2897
2923
|
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
2924
|
+
# * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
|
2898
2925
|
#
|
2899
2926
|
# @example Request syntax with placeholder values
|
2900
2927
|
#
|
@@ -2932,6 +2959,7 @@ module Aws::DirectConnect
|
|
2932
2959
|
# resp.mac_sec_keys[0].ckn #=> String
|
2933
2960
|
# resp.mac_sec_keys[0].state #=> String
|
2934
2961
|
# resp.mac_sec_keys[0].start_on #=> String
|
2962
|
+
# resp.partner_interconnect_mac_sec_capable #=> Boolean
|
2935
2963
|
#
|
2936
2964
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteConnection AWS API Documentation
|
2937
2965
|
#
|
@@ -3190,6 +3218,7 @@ module Aws::DirectConnect
|
|
3190
3218
|
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
3191
3219
|
# resp.connections[0].mac_sec_keys[0].state #=> String
|
3192
3220
|
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
3221
|
+
# resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
|
3193
3222
|
# resp.allows_hosted_connections #=> Boolean
|
3194
3223
|
# resp.jumbo_frame_capable #=> Boolean
|
3195
3224
|
# resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
@@ -3231,7 +3260,7 @@ module Aws::DirectConnect
|
|
3231
3260
|
#
|
3232
3261
|
# @example Response structure
|
3233
3262
|
#
|
3234
|
-
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
|
3263
|
+
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
|
3235
3264
|
#
|
3236
3265
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteVirtualInterface AWS API Documentation
|
3237
3266
|
#
|
@@ -3344,6 +3373,7 @@ module Aws::DirectConnect
|
|
3344
3373
|
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
3345
3374
|
# resp.connections[0].mac_sec_keys[0].state #=> String
|
3346
3375
|
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
3376
|
+
# resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
|
3347
3377
|
#
|
3348
3378
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeConnections AWS API Documentation
|
3349
3379
|
#
|
@@ -3409,6 +3439,7 @@ module Aws::DirectConnect
|
|
3409
3439
|
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
3410
3440
|
# resp.connections[0].mac_sec_keys[0].state #=> String
|
3411
3441
|
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
3442
|
+
# resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
|
3412
3443
|
#
|
3413
3444
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeConnectionsOnInterconnect AWS API Documentation
|
3414
3445
|
#
|
@@ -3781,6 +3812,7 @@ module Aws::DirectConnect
|
|
3781
3812
|
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
3782
3813
|
# resp.connections[0].mac_sec_keys[0].state #=> String
|
3783
3814
|
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
3815
|
+
# resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
|
3784
3816
|
#
|
3785
3817
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeHostedConnections AWS API Documentation
|
3786
3818
|
#
|
@@ -3882,6 +3914,14 @@ module Aws::DirectConnect
|
|
3882
3914
|
# resp.interconnects[0].tags[0].key #=> String
|
3883
3915
|
# resp.interconnects[0].tags[0].value #=> String
|
3884
3916
|
# resp.interconnects[0].provider_name #=> String
|
3917
|
+
# resp.interconnects[0].mac_sec_capable #=> Boolean
|
3918
|
+
# resp.interconnects[0].port_encryption_status #=> String
|
3919
|
+
# resp.interconnects[0].encryption_mode #=> String
|
3920
|
+
# resp.interconnects[0].mac_sec_keys #=> Array
|
3921
|
+
# resp.interconnects[0].mac_sec_keys[0].secret_arn #=> String
|
3922
|
+
# resp.interconnects[0].mac_sec_keys[0].ckn #=> String
|
3923
|
+
# resp.interconnects[0].mac_sec_keys[0].state #=> String
|
3924
|
+
# resp.interconnects[0].mac_sec_keys[0].start_on #=> String
|
3885
3925
|
#
|
3886
3926
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeInterconnects AWS API Documentation
|
3887
3927
|
#
|
@@ -3951,6 +3991,7 @@ module Aws::DirectConnect
|
|
3951
3991
|
# resp.lags[0].connections[0].mac_sec_keys[0].ckn #=> String
|
3952
3992
|
# resp.lags[0].connections[0].mac_sec_keys[0].state #=> String
|
3953
3993
|
# resp.lags[0].connections[0].mac_sec_keys[0].start_on #=> String
|
3994
|
+
# resp.lags[0].connections[0].partner_interconnect_mac_sec_capable #=> Boolean
|
3954
3995
|
# resp.lags[0].allows_hosted_connections #=> Boolean
|
3955
3996
|
# resp.lags[0].jumbo_frame_capable #=> Boolean
|
3956
3997
|
# resp.lags[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
@@ -4214,7 +4255,7 @@ module Aws::DirectConnect
|
|
4214
4255
|
# resp.virtual_interfaces[0].amazon_address #=> String
|
4215
4256
|
# resp.virtual_interfaces[0].customer_address #=> String
|
4216
4257
|
# resp.virtual_interfaces[0].address_family #=> String, one of "ipv4", "ipv6"
|
4217
|
-
# resp.virtual_interfaces[0].virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
|
4258
|
+
# resp.virtual_interfaces[0].virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
|
4218
4259
|
# resp.virtual_interfaces[0].customer_router_config #=> String
|
4219
4260
|
# resp.virtual_interfaces[0].mtu #=> Integer
|
4220
4261
|
# resp.virtual_interfaces[0].jumbo_frame_capable #=> Boolean
|
@@ -4294,6 +4335,7 @@ module Aws::DirectConnect
|
|
4294
4335
|
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
4295
4336
|
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
4296
4337
|
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
4338
|
+
# * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
|
4297
4339
|
#
|
4298
4340
|
# @example Request syntax with placeholder values
|
4299
4341
|
#
|
@@ -4332,6 +4374,7 @@ module Aws::DirectConnect
|
|
4332
4374
|
# resp.mac_sec_keys[0].ckn #=> String
|
4333
4375
|
# resp.mac_sec_keys[0].state #=> String
|
4334
4376
|
# resp.mac_sec_keys[0].start_on #=> String
|
4377
|
+
# resp.partner_interconnect_mac_sec_capable #=> Boolean
|
4335
4378
|
#
|
4336
4379
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DisassociateConnectionFromLag AWS API Documentation
|
4337
4380
|
#
|
@@ -4343,14 +4386,14 @@ module Aws::DirectConnect
|
|
4343
4386
|
end
|
4344
4387
|
|
4345
4388
|
# Removes the association between a MAC Security (MACsec) security key
|
4346
|
-
# and
|
4389
|
+
# and a Direct Connect connection.
|
4347
4390
|
#
|
4348
4391
|
# @option params [required, String] :connection_id
|
4349
|
-
# The ID of the dedicated connection (dxcon-xxxx),
|
4350
|
-
# (dxlag-xxxx).
|
4392
|
+
# The ID of the dedicated connection (dxcon-xxxx), interconnect
|
4393
|
+
# (dxcon-xxxx), or LAG (dxlag-xxxx).
|
4351
4394
|
#
|
4352
|
-
# You can use DescribeConnections or
|
4353
|
-
# ID.
|
4395
|
+
# You can use DescribeConnections, DescribeInterconnects, or
|
4396
|
+
# DescribeLags to retrieve connection ID.
|
4354
4397
|
#
|
4355
4398
|
# @option params [required, String] :secret_arn
|
4356
4399
|
# The Amazon Resource Name (ARN) of the MAC Security (MACsec) secret
|
@@ -4618,7 +4661,7 @@ module Aws::DirectConnect
|
|
4618
4661
|
req.send_request(options)
|
4619
4662
|
end
|
4620
4663
|
|
4621
|
-
# Updates the Direct Connect
|
4664
|
+
# Updates the Direct Connect connection configuration.
|
4622
4665
|
#
|
4623
4666
|
# You can update the following parameters for a connection:
|
4624
4667
|
#
|
@@ -4627,7 +4670,7 @@ module Aws::DirectConnect
|
|
4627
4670
|
# * The connection's MAC Security (MACsec) encryption mode.
|
4628
4671
|
#
|
4629
4672
|
# @option params [required, String] :connection_id
|
4630
|
-
# The ID of the
|
4673
|
+
# The ID of the connection.
|
4631
4674
|
#
|
4632
4675
|
# You can use DescribeConnections to retrieve the connection ID.
|
4633
4676
|
#
|
@@ -4664,6 +4707,7 @@ module Aws::DirectConnect
|
|
4664
4707
|
# * {Types::Connection#port_encryption_status #port_encryption_status} => String
|
4665
4708
|
# * {Types::Connection#encryption_mode #encryption_mode} => String
|
4666
4709
|
# * {Types::Connection#mac_sec_keys #mac_sec_keys} => Array<Types::MacSecKey>
|
4710
|
+
# * {Types::Connection#partner_interconnect_mac_sec_capable #partner_interconnect_mac_sec_capable} => Boolean
|
4667
4711
|
#
|
4668
4712
|
# @example Request syntax with placeholder values
|
4669
4713
|
#
|
@@ -4703,6 +4747,7 @@ module Aws::DirectConnect
|
|
4703
4747
|
# resp.mac_sec_keys[0].ckn #=> String
|
4704
4748
|
# resp.mac_sec_keys[0].state #=> String
|
4705
4749
|
# resp.mac_sec_keys[0].start_on #=> String
|
4750
|
+
# resp.partner_interconnect_mac_sec_capable #=> Boolean
|
4706
4751
|
#
|
4707
4752
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateConnection AWS API Documentation
|
4708
4753
|
#
|
@@ -4931,6 +4976,7 @@ module Aws::DirectConnect
|
|
4931
4976
|
# resp.connections[0].mac_sec_keys[0].ckn #=> String
|
4932
4977
|
# resp.connections[0].mac_sec_keys[0].state #=> String
|
4933
4978
|
# resp.connections[0].mac_sec_keys[0].start_on #=> String
|
4979
|
+
# resp.connections[0].partner_interconnect_mac_sec_capable #=> Boolean
|
4934
4980
|
# resp.allows_hosted_connections #=> Boolean
|
4935
4981
|
# resp.jumbo_frame_capable #=> Boolean
|
4936
4982
|
# resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
|
@@ -5033,7 +5079,7 @@ module Aws::DirectConnect
|
|
5033
5079
|
# resp.amazon_address #=> String
|
5034
5080
|
# resp.customer_address #=> String
|
5035
5081
|
# resp.address_family #=> String, one of "ipv4", "ipv6"
|
5036
|
-
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "deleting", "deleted", "rejected", "unknown"
|
5082
|
+
# resp.virtual_interface_state #=> String, one of "confirming", "verifying", "pending", "available", "down", "testing", "deleting", "deleted", "rejected", "unknown"
|
5037
5083
|
# resp.customer_router_config #=> String
|
5038
5084
|
# resp.mtu #=> Integer
|
5039
5085
|
# resp.jumbo_frame_capable #=> Boolean
|
@@ -5087,7 +5133,7 @@ module Aws::DirectConnect
|
|
5087
5133
|
tracer: tracer
|
5088
5134
|
)
|
5089
5135
|
context[:gem_name] = 'aws-sdk-directconnect'
|
5090
|
-
context[:gem_version] = '1.
|
5136
|
+
context[:gem_version] = '1.94.0'
|
5091
5137
|
Seahorse::Client::Request.new(handlers, context)
|
5092
5138
|
end
|
5093
5139
|
|
@@ -198,6 +198,7 @@ module Aws::DirectConnect
|
|
198
198
|
NniPartnerType = Shapes::StringShape.new(name: 'NniPartnerType')
|
199
199
|
OwnerAccount = Shapes::StringShape.new(name: 'OwnerAccount')
|
200
200
|
PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
|
201
|
+
PartnerInterconnectMacSecCapable = Shapes::BooleanShape.new(name: 'PartnerInterconnectMacSecCapable')
|
201
202
|
PartnerName = Shapes::StringShape.new(name: 'PartnerName')
|
202
203
|
Platform = Shapes::StringShape.new(name: 'Platform')
|
203
204
|
PortEncryptionStatus = Shapes::StringShape.new(name: 'PortEncryptionStatus')
|
@@ -419,6 +420,7 @@ module Aws::DirectConnect
|
|
419
420
|
Connection.add_member(:port_encryption_status, Shapes::ShapeRef.new(shape: PortEncryptionStatus, location_name: "portEncryptionStatus"))
|
420
421
|
Connection.add_member(:encryption_mode, Shapes::ShapeRef.new(shape: EncryptionMode, location_name: "encryptionMode"))
|
421
422
|
Connection.add_member(:mac_sec_keys, Shapes::ShapeRef.new(shape: MacSecKeyList, location_name: "macSecKeys"))
|
423
|
+
Connection.add_member(:partner_interconnect_mac_sec_capable, Shapes::ShapeRef.new(shape: PartnerInterconnectMacSecCapable, location_name: "partnerInterconnectMacSecCapable"))
|
422
424
|
Connection.struct_class = Types::Connection
|
423
425
|
|
424
426
|
ConnectionList.member = Shapes::ShapeRef.new(shape: Connection)
|
@@ -475,6 +477,7 @@ module Aws::DirectConnect
|
|
475
477
|
CreateInterconnectRequest.add_member(:lag_id, Shapes::ShapeRef.new(shape: LagId, location_name: "lagId"))
|
476
478
|
CreateInterconnectRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
477
479
|
CreateInterconnectRequest.add_member(:provider_name, Shapes::ShapeRef.new(shape: ProviderName, location_name: "providerName"))
|
480
|
+
CreateInterconnectRequest.add_member(:request_mac_sec, Shapes::ShapeRef.new(shape: RequestMACSec, location_name: "requestMACSec"))
|
478
481
|
CreateInterconnectRequest.struct_class = Types::CreateInterconnectRequest
|
479
482
|
|
480
483
|
CreateLagRequest.add_member(:number_of_connections, Shapes::ShapeRef.new(shape: Count, required: true, location_name: "numberOfConnections"))
|
@@ -739,6 +742,10 @@ module Aws::DirectConnect
|
|
739
742
|
Interconnect.add_member(:has_logical_redundancy, Shapes::ShapeRef.new(shape: HasLogicalRedundancy, location_name: "hasLogicalRedundancy"))
|
740
743
|
Interconnect.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
741
744
|
Interconnect.add_member(:provider_name, Shapes::ShapeRef.new(shape: ProviderName, location_name: "providerName"))
|
745
|
+
Interconnect.add_member(:mac_sec_capable, Shapes::ShapeRef.new(shape: MacSecCapable, location_name: "macSecCapable"))
|
746
|
+
Interconnect.add_member(:port_encryption_status, Shapes::ShapeRef.new(shape: PortEncryptionStatus, location_name: "portEncryptionStatus"))
|
747
|
+
Interconnect.add_member(:encryption_mode, Shapes::ShapeRef.new(shape: EncryptionMode, location_name: "encryptionMode"))
|
748
|
+
Interconnect.add_member(:mac_sec_keys, Shapes::ShapeRef.new(shape: MacSecKeyList, location_name: "macSecKeys"))
|
742
749
|
Interconnect.struct_class = Types::Interconnect
|
743
750
|
|
744
751
|
InterconnectList.member = Shapes::ShapeRef.new(shape: Interconnect)
|
@@ -258,16 +258,16 @@ module Aws::DirectConnect
|
|
258
258
|
end
|
259
259
|
|
260
260
|
# @!attribute [rw] connection_id
|
261
|
-
# The ID of the dedicated connection (dxcon-xxxx),
|
262
|
-
# LAG (dxlag-xxxx).
|
261
|
+
# The ID of the dedicated connection (dxcon-xxxx), interconnect
|
262
|
+
# (dxcon-xxxx), or LAG (dxlag-xxxx).
|
263
263
|
#
|
264
|
-
# You can use DescribeConnections or
|
265
|
-
# connection ID.
|
264
|
+
# You can use DescribeConnections, DescribeInterconnects, or
|
265
|
+
# DescribeLags to retrieve connection ID.
|
266
266
|
# @return [String]
|
267
267
|
#
|
268
268
|
# @!attribute [rw] secret_arn
|
269
269
|
# The Amazon Resource Name (ARN) of the MAC Security (MACsec) secret
|
270
|
-
# key to associate with the
|
270
|
+
# key to associate with the connection.
|
271
271
|
#
|
272
272
|
# You can use DescribeConnections or DescribeLags to retrieve the MAC
|
273
273
|
# Security (MACsec) secret key.
|
@@ -277,8 +277,7 @@ module Aws::DirectConnect
|
|
277
277
|
# @return [String]
|
278
278
|
#
|
279
279
|
# @!attribute [rw] ckn
|
280
|
-
# The MAC Security (MACsec) CKN to associate with the
|
281
|
-
# connection.
|
280
|
+
# The MAC Security (MACsec) CKN to associate with the connection.
|
282
281
|
#
|
283
282
|
# You can create the CKN/CAK pair using an industry standard tool.
|
284
283
|
#
|
@@ -289,8 +288,7 @@ module Aws::DirectConnect
|
|
289
288
|
# @return [String]
|
290
289
|
#
|
291
290
|
# @!attribute [rw] cak
|
292
|
-
# The MAC Security (MACsec) CAK to associate with the
|
293
|
-
# connection.
|
291
|
+
# The MAC Security (MACsec) CAK to associate with the connection.
|
294
292
|
#
|
295
293
|
# You can create the CKN/CAK pair using an industry standard tool.
|
296
294
|
#
|
@@ -312,13 +310,13 @@ module Aws::DirectConnect
|
|
312
310
|
end
|
313
311
|
|
314
312
|
# @!attribute [rw] connection_id
|
315
|
-
# The ID of the dedicated connection (dxcon-xxxx),
|
316
|
-
# LAG (dxlag-xxxx).
|
313
|
+
# The ID of the dedicated connection (dxcon-xxxx), interconnect
|
314
|
+
# (dxcon-xxxx), or LAG (dxlag-xxxx).
|
317
315
|
# @return [String]
|
318
316
|
#
|
319
317
|
# @!attribute [rw] mac_sec_keys
|
320
318
|
# The MAC Security (MACsec) security keys associated with the
|
321
|
-
#
|
319
|
+
# connection.
|
322
320
|
# @return [Array<Types::MacSecKey>]
|
323
321
|
#
|
324
322
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateMacSecKeyResponse AWS API Documentation
|
@@ -887,6 +885,11 @@ module Aws::DirectConnect
|
|
887
885
|
# connection.
|
888
886
|
# @return [Array<Types::MacSecKey>]
|
889
887
|
#
|
888
|
+
# @!attribute [rw] partner_interconnect_mac_sec_capable
|
889
|
+
# Indicates whether the interconnect hosting this connection supports
|
890
|
+
# MAC Security (MACsec).
|
891
|
+
# @return [Boolean]
|
892
|
+
#
|
890
893
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/Connection AWS API Documentation
|
891
894
|
#
|
892
895
|
class Connection < Struct.new(
|
@@ -911,7 +914,8 @@ module Aws::DirectConnect
|
|
911
914
|
:mac_sec_capable,
|
912
915
|
:port_encryption_status,
|
913
916
|
:encryption_mode,
|
914
|
-
:mac_sec_keys
|
917
|
+
:mac_sec_keys,
|
918
|
+
:partner_interconnect_mac_sec_capable)
|
915
919
|
SENSITIVE = []
|
916
920
|
include Aws::Structure
|
917
921
|
end
|
@@ -986,13 +990,13 @@ module Aws::DirectConnect
|
|
986
990
|
# Indicates whether you want the connection to support MAC Security
|
987
991
|
# (MACsec).
|
988
992
|
#
|
989
|
-
# MAC Security (MACsec) is
|
990
|
-
#
|
991
|
-
#
|
993
|
+
# MAC Security (MACsec) is unavailable on hosted connections. For
|
994
|
+
# information about MAC Security (MACsec) prerequisites, see [MAC
|
995
|
+
# Security in Direct Connect][1] in the *Direct Connect User Guide*.
|
992
996
|
#
|
993
997
|
#
|
994
998
|
#
|
995
|
-
# [1]: https://docs.aws.amazon.com/directconnect/latest/UserGuide/
|
999
|
+
# [1]: https://docs.aws.amazon.com/directconnect/latest/UserGuide/MACSec.html
|
996
1000
|
# @return [Boolean]
|
997
1001
|
#
|
998
1002
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateConnectionRequest AWS API Documentation
|
@@ -1165,6 +1169,11 @@ module Aws::DirectConnect
|
|
1165
1169
|
# The name of the service provider associated with the interconnect.
|
1166
1170
|
# @return [String]
|
1167
1171
|
#
|
1172
|
+
# @!attribute [rw] request_mac_sec
|
1173
|
+
# Indicates whether you want the interconnect to support MAC Security
|
1174
|
+
# (MACsec).
|
1175
|
+
# @return [Boolean]
|
1176
|
+
#
|
1168
1177
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateInterconnectRequest AWS API Documentation
|
1169
1178
|
#
|
1170
1179
|
class CreateInterconnectRequest < Struct.new(
|
@@ -1173,7 +1182,8 @@ module Aws::DirectConnect
|
|
1173
1182
|
:location,
|
1174
1183
|
:lag_id,
|
1175
1184
|
:tags,
|
1176
|
-
:provider_name
|
1185
|
+
:provider_name,
|
1186
|
+
:request_mac_sec)
|
1177
1187
|
SENSITIVE = []
|
1178
1188
|
include Aws::Structure
|
1179
1189
|
end
|
@@ -2373,11 +2383,11 @@ module Aws::DirectConnect
|
|
2373
2383
|
end
|
2374
2384
|
|
2375
2385
|
# @!attribute [rw] connection_id
|
2376
|
-
# The ID of the dedicated connection (dxcon-xxxx),
|
2377
|
-
# LAG (dxlag-xxxx).
|
2386
|
+
# The ID of the dedicated connection (dxcon-xxxx), interconnect
|
2387
|
+
# (dxcon-xxxx), or LAG (dxlag-xxxx).
|
2378
2388
|
#
|
2379
|
-
# You can use DescribeConnections or
|
2380
|
-
# connection ID.
|
2389
|
+
# You can use DescribeConnections, DescribeInterconnects, or
|
2390
|
+
# DescribeLags to retrieve connection ID.
|
2381
2391
|
# @return [String]
|
2382
2392
|
#
|
2383
2393
|
# @!attribute [rw] secret_arn
|
@@ -2398,13 +2408,13 @@ module Aws::DirectConnect
|
|
2398
2408
|
end
|
2399
2409
|
|
2400
2410
|
# @!attribute [rw] connection_id
|
2401
|
-
# The ID of the dedicated connection (dxcon-xxxx),
|
2402
|
-
# LAG (dxlag-xxxx).
|
2411
|
+
# The ID of the dedicated connection (dxcon-xxxx), interconnect
|
2412
|
+
# (dxcon-xxxx), or LAG (dxlag-xxxx).
|
2403
2413
|
# @return [String]
|
2404
2414
|
#
|
2405
2415
|
# @!attribute [rw] mac_sec_keys
|
2406
2416
|
# The MAC Security (MACsec) security keys no longer associated with
|
2407
|
-
# the
|
2417
|
+
# the connection.
|
2408
2418
|
# @return [Array<Types::MacSecKey>]
|
2409
2419
|
#
|
2410
2420
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DisassociateMacSecKeyResponse AWS API Documentation
|
@@ -2506,6 +2516,28 @@ module Aws::DirectConnect
|
|
2506
2516
|
# The name of the service provider associated with the interconnect.
|
2507
2517
|
# @return [String]
|
2508
2518
|
#
|
2519
|
+
# @!attribute [rw] mac_sec_capable
|
2520
|
+
# Indicates whether the interconnect supports MAC Security (MACsec).
|
2521
|
+
# @return [Boolean]
|
2522
|
+
#
|
2523
|
+
# @!attribute [rw] port_encryption_status
|
2524
|
+
# The MAC Security (MACsec) port link status.
|
2525
|
+
#
|
2526
|
+
# The valid values are `Encryption Up`, which means that there is an
|
2527
|
+
# active Connection Key Name, or `Encryption Down`.
|
2528
|
+
# @return [String]
|
2529
|
+
#
|
2530
|
+
# @!attribute [rw] encryption_mode
|
2531
|
+
# The MAC Security (MACsec) encryption mode.
|
2532
|
+
#
|
2533
|
+
# The valid values are `no_encrypt`, `should_encrypt`, and
|
2534
|
+
# `must_encrypt`.
|
2535
|
+
# @return [String]
|
2536
|
+
#
|
2537
|
+
# @!attribute [rw] mac_sec_keys
|
2538
|
+
# The MAC Security (MACsec) security keys.
|
2539
|
+
# @return [Array<Types::MacSecKey>]
|
2540
|
+
#
|
2509
2541
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/Interconnect AWS API Documentation
|
2510
2542
|
#
|
2511
2543
|
class Interconnect < Struct.new(
|
@@ -2523,7 +2555,11 @@ module Aws::DirectConnect
|
|
2523
2555
|
:aws_logical_device_id,
|
2524
2556
|
:has_logical_redundancy,
|
2525
2557
|
:tags,
|
2526
|
-
:provider_name
|
2558
|
+
:provider_name,
|
2559
|
+
:mac_sec_capable,
|
2560
|
+
:port_encryption_status,
|
2561
|
+
:encryption_mode,
|
2562
|
+
:mac_sec_keys)
|
2527
2563
|
SENSITIVE = []
|
2528
2564
|
include Aws::Structure
|
2529
2565
|
end
|
@@ -3518,7 +3554,7 @@ module Aws::DirectConnect
|
|
3518
3554
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
3519
3555
|
|
3520
3556
|
# @!attribute [rw] connection_id
|
3521
|
-
# The ID of the
|
3557
|
+
# The ID of the connection.
|
3522
3558
|
#
|
3523
3559
|
# You can use DescribeConnections to retrieve the connection ID.
|
3524
3560
|
# @return [String]
|
data/sig/client.rbs
CHANGED
@@ -120,6 +120,7 @@ module Aws
|
|
120
120
|
def port_encryption_status: () -> ::String
|
121
121
|
def encryption_mode: () -> ::String
|
122
122
|
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
123
|
+
def partner_interconnect_mac_sec_capable: () -> bool
|
123
124
|
end
|
124
125
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#allocate_connection_on_interconnect-instance_method
|
125
126
|
def allocate_connection_on_interconnect: (
|
@@ -155,6 +156,7 @@ module Aws
|
|
155
156
|
def port_encryption_status: () -> ::String
|
156
157
|
def encryption_mode: () -> ::String
|
157
158
|
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
159
|
+
def partner_interconnect_mac_sec_capable: () -> bool
|
158
160
|
end
|
159
161
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#allocate_hosted_connection-instance_method
|
160
162
|
def allocate_hosted_connection: (
|
@@ -187,7 +189,7 @@ module Aws
|
|
187
189
|
def amazon_address: () -> ::String
|
188
190
|
def customer_address: () -> ::String
|
189
191
|
def address_family: () -> ("ipv4" | "ipv6")
|
190
|
-
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
192
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
|
191
193
|
def customer_router_config: () -> ::String
|
192
194
|
def mtu: () -> ::Integer
|
193
195
|
def jumbo_frame_capable: () -> bool
|
@@ -239,7 +241,7 @@ module Aws
|
|
239
241
|
def amazon_address: () -> ::String
|
240
242
|
def customer_address: () -> ::String
|
241
243
|
def address_family: () -> ("ipv4" | "ipv6")
|
242
|
-
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
244
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
|
243
245
|
def customer_router_config: () -> ::String
|
244
246
|
def mtu: () -> ::Integer
|
245
247
|
def jumbo_frame_capable: () -> bool
|
@@ -331,6 +333,7 @@ module Aws
|
|
331
333
|
def port_encryption_status: () -> ::String
|
332
334
|
def encryption_mode: () -> ::String
|
333
335
|
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
336
|
+
def partner_interconnect_mac_sec_capable: () -> bool
|
334
337
|
end
|
335
338
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#associate_connection_with_lag-instance_method
|
336
339
|
def associate_connection_with_lag: (
|
@@ -363,6 +366,7 @@ module Aws
|
|
363
366
|
def port_encryption_status: () -> ::String
|
364
367
|
def encryption_mode: () -> ::String
|
365
368
|
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
369
|
+
def partner_interconnect_mac_sec_capable: () -> bool
|
366
370
|
end
|
367
371
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#associate_hosted_connection-instance_method
|
368
372
|
def associate_hosted_connection: (
|
@@ -400,7 +404,7 @@ module Aws
|
|
400
404
|
def amazon_address: () -> ::String
|
401
405
|
def customer_address: () -> ::String
|
402
406
|
def address_family: () -> ("ipv4" | "ipv6")
|
403
|
-
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
407
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
|
404
408
|
def customer_router_config: () -> ::String
|
405
409
|
def mtu: () -> ::Integer
|
406
410
|
def jumbo_frame_capable: () -> bool
|
@@ -443,7 +447,7 @@ module Aws
|
|
443
447
|
|
444
448
|
interface _ConfirmPrivateVirtualInterfaceResponseSuccess
|
445
449
|
include ::Seahorse::Client::_ResponseSuccess[Types::ConfirmPrivateVirtualInterfaceResponse]
|
446
|
-
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
450
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
|
447
451
|
end
|
448
452
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#confirm_private_virtual_interface-instance_method
|
449
453
|
def confirm_private_virtual_interface: (
|
@@ -455,7 +459,7 @@ module Aws
|
|
455
459
|
|
456
460
|
interface _ConfirmPublicVirtualInterfaceResponseSuccess
|
457
461
|
include ::Seahorse::Client::_ResponseSuccess[Types::ConfirmPublicVirtualInterfaceResponse]
|
458
|
-
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
462
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
|
459
463
|
end
|
460
464
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#confirm_public_virtual_interface-instance_method
|
461
465
|
def confirm_public_virtual_interface: (
|
@@ -465,7 +469,7 @@ module Aws
|
|
465
469
|
|
466
470
|
interface _ConfirmTransitVirtualInterfaceResponseSuccess
|
467
471
|
include ::Seahorse::Client::_ResponseSuccess[Types::ConfirmTransitVirtualInterfaceResponse]
|
468
|
-
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
472
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
|
469
473
|
end
|
470
474
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#confirm_transit_virtual_interface-instance_method
|
471
475
|
def confirm_transit_virtual_interface: (
|
@@ -515,6 +519,7 @@ module Aws
|
|
515
519
|
def port_encryption_status: () -> ::String
|
516
520
|
def encryption_mode: () -> ::String
|
517
521
|
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
522
|
+
def partner_interconnect_mac_sec_capable: () -> bool
|
518
523
|
end
|
519
524
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#create_connection-instance_method
|
520
525
|
def create_connection: (
|
@@ -606,6 +611,10 @@ module Aws
|
|
606
611
|
def has_logical_redundancy: () -> ("unknown" | "yes" | "no")
|
607
612
|
def tags: () -> ::Array[Types::Tag]
|
608
613
|
def provider_name: () -> ::String
|
614
|
+
def mac_sec_capable: () -> bool
|
615
|
+
def port_encryption_status: () -> ::String
|
616
|
+
def encryption_mode: () -> ::String
|
617
|
+
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
609
618
|
end
|
610
619
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#create_interconnect-instance_method
|
611
620
|
def create_interconnect: (
|
@@ -619,7 +628,8 @@ module Aws
|
|
619
628
|
value: ::String?
|
620
629
|
},
|
621
630
|
],
|
622
|
-
?provider_name: ::String
|
631
|
+
?provider_name: ::String,
|
632
|
+
?request_mac_sec: bool
|
623
633
|
) -> _CreateInterconnectResponseSuccess
|
624
634
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInterconnectResponseSuccess
|
625
635
|
|
@@ -686,7 +696,7 @@ module Aws
|
|
686
696
|
def amazon_address: () -> ::String
|
687
697
|
def customer_address: () -> ::String
|
688
698
|
def address_family: () -> ("ipv4" | "ipv6")
|
689
|
-
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
699
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
|
690
700
|
def customer_router_config: () -> ::String
|
691
701
|
def mtu: () -> ::Integer
|
692
702
|
def jumbo_frame_capable: () -> bool
|
@@ -740,7 +750,7 @@ module Aws
|
|
740
750
|
def amazon_address: () -> ::String
|
741
751
|
def customer_address: () -> ::String
|
742
752
|
def address_family: () -> ("ipv4" | "ipv6")
|
743
|
-
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
753
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
|
744
754
|
def customer_router_config: () -> ::String
|
745
755
|
def mtu: () -> ::Integer
|
746
756
|
def jumbo_frame_capable: () -> bool
|
@@ -845,6 +855,7 @@ module Aws
|
|
845
855
|
def port_encryption_status: () -> ::String
|
846
856
|
def encryption_mode: () -> ::String
|
847
857
|
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
858
|
+
def partner_interconnect_mac_sec_capable: () -> bool
|
848
859
|
end
|
849
860
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#delete_connection-instance_method
|
850
861
|
def delete_connection: (
|
@@ -926,7 +937,7 @@ module Aws
|
|
926
937
|
|
927
938
|
interface _DeleteVirtualInterfaceResponseSuccess
|
928
939
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVirtualInterfaceResponse]
|
929
|
-
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
940
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
|
930
941
|
end
|
931
942
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#delete_virtual_interface-instance_method
|
932
943
|
def delete_virtual_interface: (
|
@@ -1163,6 +1174,7 @@ module Aws
|
|
1163
1174
|
def port_encryption_status: () -> ::String
|
1164
1175
|
def encryption_mode: () -> ::String
|
1165
1176
|
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
1177
|
+
def partner_interconnect_mac_sec_capable: () -> bool
|
1166
1178
|
end
|
1167
1179
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#disassociate_connection_from_lag-instance_method
|
1168
1180
|
def disassociate_connection_from_lag: (
|
@@ -1270,6 +1282,7 @@ module Aws
|
|
1270
1282
|
def port_encryption_status: () -> ::String
|
1271
1283
|
def encryption_mode: () -> ::String
|
1272
1284
|
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
1285
|
+
def partner_interconnect_mac_sec_capable: () -> bool
|
1273
1286
|
end
|
1274
1287
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#update_connection-instance_method
|
1275
1288
|
def update_connection: (
|
@@ -1358,7 +1371,7 @@ module Aws
|
|
1358
1371
|
def amazon_address: () -> ::String
|
1359
1372
|
def customer_address: () -> ::String
|
1360
1373
|
def address_family: () -> ("ipv4" | "ipv6")
|
1361
|
-
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
1374
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
|
1362
1375
|
def customer_router_config: () -> ::String
|
1363
1376
|
def mtu: () -> ::Integer
|
1364
1377
|
def jumbo_frame_capable: () -> bool
|
data/sig/types.rbs
CHANGED
@@ -155,7 +155,7 @@ module Aws::DirectConnect
|
|
155
155
|
end
|
156
156
|
|
157
157
|
class ConfirmPrivateVirtualInterfaceResponse
|
158
|
-
attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
158
|
+
attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
|
159
159
|
SENSITIVE: []
|
160
160
|
end
|
161
161
|
|
@@ -165,7 +165,7 @@ module Aws::DirectConnect
|
|
165
165
|
end
|
166
166
|
|
167
167
|
class ConfirmPublicVirtualInterfaceResponse
|
168
|
-
attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
168
|
+
attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
|
169
169
|
SENSITIVE: []
|
170
170
|
end
|
171
171
|
|
@@ -176,7 +176,7 @@ module Aws::DirectConnect
|
|
176
176
|
end
|
177
177
|
|
178
178
|
class ConfirmTransitVirtualInterfaceResponse
|
179
|
-
attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
179
|
+
attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
|
180
180
|
SENSITIVE: []
|
181
181
|
end
|
182
182
|
|
@@ -203,6 +203,7 @@ module Aws::DirectConnect
|
|
203
203
|
attr_accessor port_encryption_status: ::String
|
204
204
|
attr_accessor encryption_mode: ::String
|
205
205
|
attr_accessor mac_sec_keys: ::Array[Types::MacSecKey]
|
206
|
+
attr_accessor partner_interconnect_mac_sec_capable: bool
|
206
207
|
SENSITIVE: []
|
207
208
|
end
|
208
209
|
|
@@ -279,6 +280,7 @@ module Aws::DirectConnect
|
|
279
280
|
attr_accessor lag_id: ::String
|
280
281
|
attr_accessor tags: ::Array[Types::Tag]
|
281
282
|
attr_accessor provider_name: ::String
|
283
|
+
attr_accessor request_mac_sec: bool
|
282
284
|
SENSITIVE: []
|
283
285
|
end
|
284
286
|
|
@@ -395,7 +397,7 @@ module Aws::DirectConnect
|
|
395
397
|
end
|
396
398
|
|
397
399
|
class DeleteVirtualInterfaceResponse
|
398
|
-
attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
400
|
+
attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
|
399
401
|
SENSITIVE: []
|
400
402
|
end
|
401
403
|
|
@@ -644,6 +646,10 @@ module Aws::DirectConnect
|
|
644
646
|
attr_accessor has_logical_redundancy: ("unknown" | "yes" | "no")
|
645
647
|
attr_accessor tags: ::Array[Types::Tag]
|
646
648
|
attr_accessor provider_name: ::String
|
649
|
+
attr_accessor mac_sec_capable: bool
|
650
|
+
attr_accessor port_encryption_status: ::String
|
651
|
+
attr_accessor encryption_mode: ::String
|
652
|
+
attr_accessor mac_sec_keys: ::Array[Types::MacSecKey]
|
647
653
|
SENSITIVE: []
|
648
654
|
end
|
649
655
|
|
@@ -960,7 +966,7 @@ module Aws::DirectConnect
|
|
960
966
|
attr_accessor amazon_address: ::String
|
961
967
|
attr_accessor customer_address: ::String
|
962
968
|
attr_accessor address_family: ("ipv4" | "ipv6")
|
963
|
-
attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
969
|
+
attr_accessor virtual_interface_state: ("confirming" | "verifying" | "pending" | "available" | "down" | "testing" | "deleting" | "deleted" | "rejected" | "unknown")
|
964
970
|
attr_accessor customer_router_config: ::String
|
965
971
|
attr_accessor mtu: ::Integer
|
966
972
|
attr_accessor jumbo_frame_capable: bool
|