aws-sdk-networkmanager 1.13.0 → 1.17.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-networkmanager/client.rb +736 -53
- data/lib/aws-sdk-networkmanager/client_api.rb +414 -0
- data/lib/aws-sdk-networkmanager/errors.rb +5 -0
- data/lib/aws-sdk-networkmanager/types.rb +1435 -223
- data/lib/aws-sdk-networkmanager.rb +1 -1
- metadata +5 -5
@@ -10,7 +10,7 @@
|
|
10
10
|
module Aws::NetworkManager
|
11
11
|
module Types
|
12
12
|
|
13
|
-
# Specifies a location in
|
13
|
+
# Specifies a location in Amazon Web Services.
|
14
14
|
#
|
15
15
|
# @note When making an API call, you may pass AWSLocation
|
16
16
|
# data as a hash:
|
@@ -21,13 +21,13 @@ module Aws::NetworkManager
|
|
21
21
|
# }
|
22
22
|
#
|
23
23
|
# @!attribute [rw] zone
|
24
|
-
# The Zone the device is located in.
|
24
|
+
# The Zone that the device is located in. Specify the ID of an
|
25
25
|
# Availability Zone, Local Zone, Wavelength Zone, or an Outpost.
|
26
26
|
# @return [String]
|
27
27
|
#
|
28
28
|
# @!attribute [rw] subnet_arn
|
29
|
-
# The Amazon Resource Name (ARN) of the subnet the device is
|
30
|
-
# in.
|
29
|
+
# The Amazon Resource Name (ARN) of the subnet that the device is
|
30
|
+
# located in.
|
31
31
|
# @return [String]
|
32
32
|
#
|
33
33
|
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/AWSLocation AWS API Documentation
|
@@ -63,12 +63,7 @@ module Aws::NetworkManager
|
|
63
63
|
# }
|
64
64
|
#
|
65
65
|
# @!attribute [rw] customer_gateway_arn
|
66
|
-
# The Amazon Resource Name (ARN) of the customer gateway.
|
67
|
-
# information, see [Resources Defined by Amazon EC2][1].
|
68
|
-
#
|
69
|
-
#
|
70
|
-
#
|
71
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazonec2.html#amazonec2-resources-for-iam-policies
|
66
|
+
# The Amazon Resource Name (ARN) of the customer gateway.
|
72
67
|
# @return [String]
|
73
68
|
#
|
74
69
|
# @!attribute [rw] global_network_id
|
@@ -313,6 +308,30 @@ module Aws::NetworkManager
|
|
313
308
|
include Aws::Structure
|
314
309
|
end
|
315
310
|
|
311
|
+
# Describes connection health.
|
312
|
+
#
|
313
|
+
# @!attribute [rw] type
|
314
|
+
# The connection type.
|
315
|
+
# @return [String]
|
316
|
+
#
|
317
|
+
# @!attribute [rw] status
|
318
|
+
# The connection status.
|
319
|
+
# @return [String]
|
320
|
+
#
|
321
|
+
# @!attribute [rw] timestamp
|
322
|
+
# The time the status was last updated.
|
323
|
+
# @return [Time]
|
324
|
+
#
|
325
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectionHealth AWS API Documentation
|
326
|
+
#
|
327
|
+
class ConnectionHealth < Struct.new(
|
328
|
+
:type,
|
329
|
+
:status,
|
330
|
+
:timestamp)
|
331
|
+
SENSITIVE = []
|
332
|
+
include Aws::Structure
|
333
|
+
end
|
334
|
+
|
316
335
|
# @note When making an API call, you may pass CreateConnectionRequest
|
317
336
|
# data as a hash:
|
318
337
|
#
|
@@ -420,13 +439,14 @@ module Aws::NetworkManager
|
|
420
439
|
# @return [String]
|
421
440
|
#
|
422
441
|
# @!attribute [rw] aws_location
|
423
|
-
# The
|
442
|
+
# The Amazon Web Services location of the device, if applicable. For
|
443
|
+
# an on-premises device, you can omit this parameter.
|
424
444
|
# @return [Types::AWSLocation]
|
425
445
|
#
|
426
446
|
# @!attribute [rw] description
|
427
447
|
# A description of the device.
|
428
448
|
#
|
429
|
-
#
|
449
|
+
# Constraints: Maximum length of 256 characters.
|
430
450
|
# @return [String]
|
431
451
|
#
|
432
452
|
# @!attribute [rw] type
|
@@ -436,19 +456,19 @@ module Aws::NetworkManager
|
|
436
456
|
# @!attribute [rw] vendor
|
437
457
|
# The vendor of the device.
|
438
458
|
#
|
439
|
-
#
|
459
|
+
# Constraints: Maximum length of 128 characters.
|
440
460
|
# @return [String]
|
441
461
|
#
|
442
462
|
# @!attribute [rw] model
|
443
463
|
# The model of the device.
|
444
464
|
#
|
445
|
-
#
|
465
|
+
# Constraints: Maximum length of 128 characters.
|
446
466
|
# @return [String]
|
447
467
|
#
|
448
468
|
# @!attribute [rw] serial_number
|
449
469
|
# The serial number of the device.
|
450
470
|
#
|
451
|
-
#
|
471
|
+
# Constraints: Maximum length of 128 characters.
|
452
472
|
# @return [String]
|
453
473
|
#
|
454
474
|
# @!attribute [rw] location
|
@@ -508,7 +528,7 @@ module Aws::NetworkManager
|
|
508
528
|
# @!attribute [rw] description
|
509
529
|
# A description of the global network.
|
510
530
|
#
|
511
|
-
#
|
531
|
+
# Constraints: Maximum length of 256 characters.
|
512
532
|
# @return [String]
|
513
533
|
#
|
514
534
|
# @!attribute [rw] tags
|
@@ -564,15 +584,14 @@ module Aws::NetworkManager
|
|
564
584
|
# @!attribute [rw] description
|
565
585
|
# A description of the link.
|
566
586
|
#
|
567
|
-
#
|
587
|
+
# Constraints: Maximum length of 256 characters.
|
568
588
|
# @return [String]
|
569
589
|
#
|
570
590
|
# @!attribute [rw] type
|
571
591
|
# The type of the link.
|
572
592
|
#
|
573
|
-
# Constraints:
|
574
|
-
#
|
575
|
-
# Length Constraints: Maximum length of 128 characters.
|
593
|
+
# Constraints: Maximum length of 128 characters. Cannot include the
|
594
|
+
# following characters: \| \\ ^
|
576
595
|
# @return [String]
|
577
596
|
#
|
578
597
|
# @!attribute [rw] bandwidth
|
@@ -582,9 +601,8 @@ module Aws::NetworkManager
|
|
582
601
|
# @!attribute [rw] provider
|
583
602
|
# The provider of the link.
|
584
603
|
#
|
585
|
-
# Constraints:
|
586
|
-
#
|
587
|
-
# Length Constraints: Maximum length of 128 characters.
|
604
|
+
# Constraints: Maximum length of 128 characters. Cannot include the
|
605
|
+
# following characters: \| \\ ^
|
588
606
|
# @return [String]
|
589
607
|
#
|
590
608
|
# @!attribute [rw] site_id
|
@@ -647,7 +665,7 @@ module Aws::NetworkManager
|
|
647
665
|
# @!attribute [rw] description
|
648
666
|
# A description of your site.
|
649
667
|
#
|
650
|
-
#
|
668
|
+
# Constraints: Maximum length of 256 characters.
|
651
669
|
# @return [String]
|
652
670
|
#
|
653
671
|
# @!attribute [rw] location
|
@@ -1003,7 +1021,7 @@ module Aws::NetworkManager
|
|
1003
1021
|
# @return [String]
|
1004
1022
|
#
|
1005
1023
|
# @!attribute [rw] aws_location
|
1006
|
-
# The
|
1024
|
+
# The Amazon Web Services location of the device.
|
1007
1025
|
# @return [Types::AWSLocation]
|
1008
1026
|
#
|
1009
1027
|
# @!attribute [rw] description
|
@@ -1080,12 +1098,7 @@ module Aws::NetworkManager
|
|
1080
1098
|
# @return [String]
|
1081
1099
|
#
|
1082
1100
|
# @!attribute [rw] customer_gateway_arn
|
1083
|
-
# The Amazon Resource Name (ARN) of the customer gateway.
|
1084
|
-
# information, see [Resources Defined by Amazon EC2][1].
|
1085
|
-
#
|
1086
|
-
#
|
1087
|
-
#
|
1088
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazonec2.html#amazonec2-resources-for-iam-policies
|
1101
|
+
# The Amazon Resource Name (ARN) of the customer gateway.
|
1089
1102
|
# @return [String]
|
1090
1103
|
#
|
1091
1104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DisassociateCustomerGatewayRequest AWS API Documentation
|
@@ -1264,13 +1277,8 @@ module Aws::NetworkManager
|
|
1264
1277
|
# @return [String]
|
1265
1278
|
#
|
1266
1279
|
# @!attribute [rw] customer_gateway_arns
|
1267
|
-
# One or more customer gateway Amazon Resource Names (ARNs).
|
1268
|
-
#
|
1269
|
-
# is 10.
|
1270
|
-
#
|
1271
|
-
#
|
1272
|
-
#
|
1273
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazonec2.html#amazonec2-resources-for-iam-policies
|
1280
|
+
# One or more customer gateway Amazon Resource Names (ARNs). The
|
1281
|
+
# maximum is 10.
|
1274
1282
|
# @return [Array<String>]
|
1275
1283
|
#
|
1276
1284
|
# @!attribute [rw] max_results
|
@@ -1501,12 +1509,12 @@ module Aws::NetworkManager
|
|
1501
1509
|
include Aws::Structure
|
1502
1510
|
end
|
1503
1511
|
|
1504
|
-
# @note When making an API call, you may pass
|
1512
|
+
# @note When making an API call, you may pass GetNetworkResourceCountsRequest
|
1505
1513
|
# data as a hash:
|
1506
1514
|
#
|
1507
1515
|
# {
|
1508
1516
|
# global_network_id: "String", # required
|
1509
|
-
#
|
1517
|
+
# resource_type: "String",
|
1510
1518
|
# max_results: 1,
|
1511
1519
|
# next_token: "String",
|
1512
1520
|
# }
|
@@ -1515,9 +1523,41 @@ module Aws::NetworkManager
|
|
1515
1523
|
# The ID of the global network.
|
1516
1524
|
# @return [String]
|
1517
1525
|
#
|
1518
|
-
# @!attribute [rw]
|
1519
|
-
#
|
1520
|
-
#
|
1526
|
+
# @!attribute [rw] resource_type
|
1527
|
+
# The resource type.
|
1528
|
+
#
|
1529
|
+
# The following are the supported resource types for Direct Connect:
|
1530
|
+
#
|
1531
|
+
# * `dxcon`
|
1532
|
+
#
|
1533
|
+
# * `dx-gateway`
|
1534
|
+
#
|
1535
|
+
# * `dx-vif`
|
1536
|
+
#
|
1537
|
+
# The following are the supported resource types for Network Manager:
|
1538
|
+
#
|
1539
|
+
# * `connection`
|
1540
|
+
#
|
1541
|
+
# * `device`
|
1542
|
+
#
|
1543
|
+
# * `link`
|
1544
|
+
#
|
1545
|
+
# * `site`
|
1546
|
+
#
|
1547
|
+
# The following are the supported resource types for Amazon VPC:
|
1548
|
+
#
|
1549
|
+
# * `customer-gateway`
|
1550
|
+
#
|
1551
|
+
# * `transit-gateway`
|
1552
|
+
#
|
1553
|
+
# * `transit-gateway-attachment`
|
1554
|
+
#
|
1555
|
+
# * `transit-gateway-connect-peer`
|
1556
|
+
#
|
1557
|
+
# * `transit-gateway-route-table`
|
1558
|
+
#
|
1559
|
+
# * `vpn-connection`
|
1560
|
+
# @return [String]
|
1521
1561
|
#
|
1522
1562
|
# @!attribute [rw] max_results
|
1523
1563
|
# The maximum number of results to return.
|
@@ -1527,40 +1567,44 @@ module Aws::NetworkManager
|
|
1527
1567
|
# The token for the next page of results.
|
1528
1568
|
# @return [String]
|
1529
1569
|
#
|
1530
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/
|
1570
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetNetworkResourceCountsRequest AWS API Documentation
|
1531
1571
|
#
|
1532
|
-
class
|
1572
|
+
class GetNetworkResourceCountsRequest < Struct.new(
|
1533
1573
|
:global_network_id,
|
1534
|
-
:
|
1574
|
+
:resource_type,
|
1535
1575
|
:max_results,
|
1536
1576
|
:next_token)
|
1537
1577
|
SENSITIVE = []
|
1538
1578
|
include Aws::Structure
|
1539
1579
|
end
|
1540
1580
|
|
1541
|
-
# @!attribute [rw]
|
1542
|
-
# The
|
1543
|
-
# @return [Array<Types::
|
1581
|
+
# @!attribute [rw] network_resource_counts
|
1582
|
+
# The count of resources.
|
1583
|
+
# @return [Array<Types::NetworkResourceCount>]
|
1544
1584
|
#
|
1545
1585
|
# @!attribute [rw] next_token
|
1546
1586
|
# The token for the next page of results.
|
1547
1587
|
# @return [String]
|
1548
1588
|
#
|
1549
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/
|
1589
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetNetworkResourceCountsResponse AWS API Documentation
|
1550
1590
|
#
|
1551
|
-
class
|
1552
|
-
:
|
1591
|
+
class GetNetworkResourceCountsResponse < Struct.new(
|
1592
|
+
:network_resource_counts,
|
1553
1593
|
:next_token)
|
1554
1594
|
SENSITIVE = []
|
1555
1595
|
include Aws::Structure
|
1556
1596
|
end
|
1557
1597
|
|
1558
|
-
# @note When making an API call, you may pass
|
1598
|
+
# @note When making an API call, you may pass GetNetworkResourceRelationshipsRequest
|
1559
1599
|
# data as a hash:
|
1560
1600
|
#
|
1561
1601
|
# {
|
1562
1602
|
# global_network_id: "String", # required
|
1563
|
-
#
|
1603
|
+
# registered_gateway_arn: "String",
|
1604
|
+
# aws_region: "String",
|
1605
|
+
# account_id: "String",
|
1606
|
+
# resource_type: "String",
|
1607
|
+
# resource_arn: "String",
|
1564
1608
|
# max_results: 1,
|
1565
1609
|
# next_token: "String",
|
1566
1610
|
# }
|
@@ -1569,10 +1613,57 @@ module Aws::NetworkManager
|
|
1569
1613
|
# The ID of the global network.
|
1570
1614
|
# @return [String]
|
1571
1615
|
#
|
1572
|
-
# @!attribute [rw]
|
1573
|
-
#
|
1574
|
-
#
|
1575
|
-
#
|
1616
|
+
# @!attribute [rw] registered_gateway_arn
|
1617
|
+
# The ARN of the registered gateway.
|
1618
|
+
# @return [String]
|
1619
|
+
#
|
1620
|
+
# @!attribute [rw] aws_region
|
1621
|
+
# The Amazon Web Services Region.
|
1622
|
+
# @return [String]
|
1623
|
+
#
|
1624
|
+
# @!attribute [rw] account_id
|
1625
|
+
# The Amazon Web Services account ID.
|
1626
|
+
# @return [String]
|
1627
|
+
#
|
1628
|
+
# @!attribute [rw] resource_type
|
1629
|
+
# The resource type.
|
1630
|
+
#
|
1631
|
+
# The following are the supported resource types for Direct Connect:
|
1632
|
+
#
|
1633
|
+
# * `dxcon`
|
1634
|
+
#
|
1635
|
+
# * `dx-gateway`
|
1636
|
+
#
|
1637
|
+
# * `dx-vif`
|
1638
|
+
#
|
1639
|
+
# The following are the supported resource types for Network Manager:
|
1640
|
+
#
|
1641
|
+
# * `connection`
|
1642
|
+
#
|
1643
|
+
# * `device`
|
1644
|
+
#
|
1645
|
+
# * `link`
|
1646
|
+
#
|
1647
|
+
# * `site`
|
1648
|
+
#
|
1649
|
+
# The following are the supported resource types for Amazon VPC:
|
1650
|
+
#
|
1651
|
+
# * `customer-gateway`
|
1652
|
+
#
|
1653
|
+
# * `transit-gateway`
|
1654
|
+
#
|
1655
|
+
# * `transit-gateway-attachment`
|
1656
|
+
#
|
1657
|
+
# * `transit-gateway-connect-peer`
|
1658
|
+
#
|
1659
|
+
# * `transit-gateway-route-table`
|
1660
|
+
#
|
1661
|
+
# * `vpn-connection`
|
1662
|
+
# @return [String]
|
1663
|
+
#
|
1664
|
+
# @!attribute [rw] resource_arn
|
1665
|
+
# The ARN of the gateway.
|
1666
|
+
# @return [String]
|
1576
1667
|
#
|
1577
1668
|
# @!attribute [rw] max_results
|
1578
1669
|
# The maximum number of results to return.
|
@@ -1582,40 +1673,48 @@ module Aws::NetworkManager
|
|
1582
1673
|
# The token for the next page of results.
|
1583
1674
|
# @return [String]
|
1584
1675
|
#
|
1585
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/
|
1676
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetNetworkResourceRelationshipsRequest AWS API Documentation
|
1586
1677
|
#
|
1587
|
-
class
|
1678
|
+
class GetNetworkResourceRelationshipsRequest < Struct.new(
|
1588
1679
|
:global_network_id,
|
1589
|
-
:
|
1680
|
+
:registered_gateway_arn,
|
1681
|
+
:aws_region,
|
1682
|
+
:account_id,
|
1683
|
+
:resource_type,
|
1684
|
+
:resource_arn,
|
1590
1685
|
:max_results,
|
1591
1686
|
:next_token)
|
1592
1687
|
SENSITIVE = []
|
1593
1688
|
include Aws::Structure
|
1594
1689
|
end
|
1595
1690
|
|
1596
|
-
# @!attribute [rw]
|
1597
|
-
#
|
1598
|
-
# @return [Array<Types::
|
1691
|
+
# @!attribute [rw] relationships
|
1692
|
+
# The resource relationships.
|
1693
|
+
# @return [Array<Types::Relationship>]
|
1599
1694
|
#
|
1600
1695
|
# @!attribute [rw] next_token
|
1601
|
-
# The token
|
1696
|
+
# The token for the next page of results.
|
1602
1697
|
# @return [String]
|
1603
1698
|
#
|
1604
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/
|
1699
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetNetworkResourceRelationshipsResponse AWS API Documentation
|
1605
1700
|
#
|
1606
|
-
class
|
1607
|
-
:
|
1701
|
+
class GetNetworkResourceRelationshipsResponse < Struct.new(
|
1702
|
+
:relationships,
|
1608
1703
|
:next_token)
|
1609
1704
|
SENSITIVE = []
|
1610
1705
|
include Aws::Structure
|
1611
1706
|
end
|
1612
1707
|
|
1613
|
-
# @note When making an API call, you may pass
|
1708
|
+
# @note When making an API call, you may pass GetNetworkResourcesRequest
|
1614
1709
|
# data as a hash:
|
1615
1710
|
#
|
1616
1711
|
# {
|
1617
1712
|
# global_network_id: "String", # required
|
1618
|
-
#
|
1713
|
+
# registered_gateway_arn: "String",
|
1714
|
+
# aws_region: "String",
|
1715
|
+
# account_id: "String",
|
1716
|
+
# resource_type: "String",
|
1717
|
+
# resource_arn: "String",
|
1619
1718
|
# max_results: 1,
|
1620
1719
|
# next_token: "String",
|
1621
1720
|
# }
|
@@ -1624,10 +1723,76 @@ module Aws::NetworkManager
|
|
1624
1723
|
# The ID of the global network.
|
1625
1724
|
# @return [String]
|
1626
1725
|
#
|
1627
|
-
# @!attribute [rw]
|
1628
|
-
# The
|
1629
|
-
#
|
1630
|
-
#
|
1726
|
+
# @!attribute [rw] registered_gateway_arn
|
1727
|
+
# The ARN of the gateway.
|
1728
|
+
# @return [String]
|
1729
|
+
#
|
1730
|
+
# @!attribute [rw] aws_region
|
1731
|
+
# The Amazon Web Services Region.
|
1732
|
+
# @return [String]
|
1733
|
+
#
|
1734
|
+
# @!attribute [rw] account_id
|
1735
|
+
# The Amazon Web Services account ID.
|
1736
|
+
# @return [String]
|
1737
|
+
#
|
1738
|
+
# @!attribute [rw] resource_type
|
1739
|
+
# The resource type.
|
1740
|
+
#
|
1741
|
+
# The following are the supported resource types for Direct Connect:
|
1742
|
+
#
|
1743
|
+
# * `dxcon` - The definition model is [Connection][1].
|
1744
|
+
#
|
1745
|
+
# * `dx-gateway` - The definition model is [DirectConnectGateway][2].
|
1746
|
+
#
|
1747
|
+
# * `dx-vif` - The definition model is [VirtualInterface][3].
|
1748
|
+
#
|
1749
|
+
# The following are the supported resource types for Network Manager:
|
1750
|
+
#
|
1751
|
+
# * `connection` - The definition model is [Connection][4].
|
1752
|
+
#
|
1753
|
+
# * `device` - The definition model is [Device][5].
|
1754
|
+
#
|
1755
|
+
# * `link` - The definition model is [Link][6].
|
1756
|
+
#
|
1757
|
+
# * `site` - The definition model is [Site][7].
|
1758
|
+
#
|
1759
|
+
# The following are the supported resource types for Amazon VPC:
|
1760
|
+
#
|
1761
|
+
# * `customer-gateway` - The definition model is [CustomerGateway][8].
|
1762
|
+
#
|
1763
|
+
# * `transit-gateway` - The definition model is [TransitGateway][9].
|
1764
|
+
#
|
1765
|
+
# * `transit-gateway-attachment` - The definition model is
|
1766
|
+
# [TransitGatewayAttachment][10].
|
1767
|
+
#
|
1768
|
+
# * `transit-gateway-connect-peer` - The definition model is
|
1769
|
+
# [TransitGatewayConnectPeer][11].
|
1770
|
+
#
|
1771
|
+
# * `transit-gateway-route-table` - The definition model is
|
1772
|
+
# [TransitGatewayRouteTable][12].
|
1773
|
+
#
|
1774
|
+
# * `vpn-connection` - The definition model is [VpnConnection][13].
|
1775
|
+
#
|
1776
|
+
#
|
1777
|
+
#
|
1778
|
+
# [1]: https://docs.aws.amazon.com/directconnect/latest/APIReference/API_Connection.html
|
1779
|
+
# [2]: https://docs.aws.amazon.com/directconnect/latest/APIReference/API_DirectConnectGateway.html
|
1780
|
+
# [3]: https://docs.aws.amazon.com/directconnect/latest/APIReference/API_VirtualInterface.html
|
1781
|
+
# [4]: https://docs.aws.amazon.com/networkmanager/latest/APIReference/API_Connection.html
|
1782
|
+
# [5]: https://docs.aws.amazon.com/networkmanager/latest/APIReference/API_Device.html
|
1783
|
+
# [6]: https://docs.aws.amazon.com/networkmanager/latest/APIReference/API_Link.html
|
1784
|
+
# [7]: https://docs.aws.amazon.com/networkmanager/latest/APIReference/API_Site.html
|
1785
|
+
# [8]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CustomerGateway.html
|
1786
|
+
# [9]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TransitGateway.html
|
1787
|
+
# [10]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TransitGatewayAttachment.html
|
1788
|
+
# [11]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TransitGatewayConnectPeer.html
|
1789
|
+
# [12]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TransitGatewayRouteTable.html
|
1790
|
+
# [13]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_VpnConnection.html
|
1791
|
+
# @return [String]
|
1792
|
+
#
|
1793
|
+
# @!attribute [rw] resource_arn
|
1794
|
+
# The ARN of the resource.
|
1795
|
+
# @return [String]
|
1631
1796
|
#
|
1632
1797
|
# @!attribute [rw] max_results
|
1633
1798
|
# The maximum number of results to return.
|
@@ -1637,144 +1802,566 @@ module Aws::NetworkManager
|
|
1637
1802
|
# The token for the next page of results.
|
1638
1803
|
# @return [String]
|
1639
1804
|
#
|
1640
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/
|
1805
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetNetworkResourcesRequest AWS API Documentation
|
1641
1806
|
#
|
1642
|
-
class
|
1807
|
+
class GetNetworkResourcesRequest < Struct.new(
|
1643
1808
|
:global_network_id,
|
1644
|
-
:
|
1809
|
+
:registered_gateway_arn,
|
1810
|
+
:aws_region,
|
1811
|
+
:account_id,
|
1812
|
+
:resource_type,
|
1813
|
+
:resource_arn,
|
1645
1814
|
:max_results,
|
1646
1815
|
:next_token)
|
1647
1816
|
SENSITIVE = []
|
1648
1817
|
include Aws::Structure
|
1649
1818
|
end
|
1650
1819
|
|
1651
|
-
# @!attribute [rw]
|
1652
|
-
# The
|
1653
|
-
# @return [Array<Types::
|
1820
|
+
# @!attribute [rw] network_resources
|
1821
|
+
# The network resources.
|
1822
|
+
# @return [Array<Types::NetworkResource>]
|
1654
1823
|
#
|
1655
1824
|
# @!attribute [rw] next_token
|
1656
1825
|
# The token for the next page of results.
|
1657
1826
|
# @return [String]
|
1658
1827
|
#
|
1659
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/
|
1828
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetNetworkResourcesResponse AWS API Documentation
|
1660
1829
|
#
|
1661
|
-
class
|
1662
|
-
:
|
1830
|
+
class GetNetworkResourcesResponse < Struct.new(
|
1831
|
+
:network_resources,
|
1663
1832
|
:next_token)
|
1664
1833
|
SENSITIVE = []
|
1665
1834
|
include Aws::Structure
|
1666
1835
|
end
|
1667
1836
|
|
1668
|
-
#
|
1837
|
+
# @note When making an API call, you may pass GetNetworkRoutesRequest
|
1838
|
+
# data as a hash:
|
1839
|
+
#
|
1840
|
+
# {
|
1841
|
+
# global_network_id: "String", # required
|
1842
|
+
# route_table_identifier: { # required
|
1843
|
+
# transit_gateway_route_table_arn: "String",
|
1844
|
+
# },
|
1845
|
+
# exact_cidr_matches: ["String"],
|
1846
|
+
# longest_prefix_matches: ["String"],
|
1847
|
+
# subnet_of_matches: ["String"],
|
1848
|
+
# supernet_of_matches: ["String"],
|
1849
|
+
# prefix_list_ids: ["String"],
|
1850
|
+
# states: ["ACTIVE"], # accepts ACTIVE, BLACKHOLE
|
1851
|
+
# types: ["PROPAGATED"], # accepts PROPAGATED, STATIC
|
1852
|
+
# destination_filters: {
|
1853
|
+
# "FilterName" => ["FilterValue"],
|
1854
|
+
# },
|
1855
|
+
# }
|
1669
1856
|
#
|
1670
1857
|
# @!attribute [rw] global_network_id
|
1671
1858
|
# The ID of the global network.
|
1672
1859
|
# @return [String]
|
1673
1860
|
#
|
1674
|
-
# @!attribute [rw]
|
1675
|
-
# The
|
1676
|
-
# @return [
|
1861
|
+
# @!attribute [rw] route_table_identifier
|
1862
|
+
# The ID of the route table.
|
1863
|
+
# @return [Types::RouteTableIdentifier]
|
1677
1864
|
#
|
1678
|
-
# @!attribute [rw]
|
1679
|
-
#
|
1680
|
-
# @return [String]
|
1865
|
+
# @!attribute [rw] exact_cidr_matches
|
1866
|
+
# An exact CIDR block.
|
1867
|
+
# @return [Array<String>]
|
1681
1868
|
#
|
1682
|
-
# @!attribute [rw]
|
1683
|
-
# The
|
1684
|
-
#
|
1869
|
+
# @!attribute [rw] longest_prefix_matches
|
1870
|
+
# The most specific route that matches the traffic (longest prefix
|
1871
|
+
# match).
|
1872
|
+
# @return [Array<String>]
|
1685
1873
|
#
|
1686
|
-
# @!attribute [rw]
|
1687
|
-
# The
|
1688
|
-
# @return [String]
|
1874
|
+
# @!attribute [rw] subnet_of_matches
|
1875
|
+
# The routes with a subnet that match the specified CIDR filter.
|
1876
|
+
# @return [Array<String>]
|
1689
1877
|
#
|
1690
|
-
# @!attribute [rw]
|
1691
|
-
# The
|
1692
|
-
#
|
1878
|
+
# @!attribute [rw] supernet_of_matches
|
1879
|
+
# The routes with a CIDR that encompasses the CIDR filter. Example: If
|
1880
|
+
# you specify 10.0.1.0/30, then the result returns 10.0.1.0/29.
|
1881
|
+
# @return [Array<String>]
|
1693
1882
|
#
|
1694
|
-
#
|
1883
|
+
# @!attribute [rw] prefix_list_ids
|
1884
|
+
# The IDs of the prefix lists.
|
1885
|
+
# @return [Array<String>]
|
1695
1886
|
#
|
1696
|
-
|
1887
|
+
# @!attribute [rw] states
|
1888
|
+
# The route states.
|
1889
|
+
# @return [Array<String>]
|
1890
|
+
#
|
1891
|
+
# @!attribute [rw] types
|
1892
|
+
# The route types.
|
1893
|
+
# @return [Array<String>]
|
1894
|
+
#
|
1895
|
+
# @!attribute [rw] destination_filters
|
1896
|
+
# Filter by route table destination. Possible Values:
|
1897
|
+
# TRANSIT\_GATEWAY\_ATTACHMENT\_ID, RESOURCE\_ID, or RESOURCE\_TYPE.
|
1898
|
+
# @return [Hash<String,Array<String>>]
|
1899
|
+
#
|
1900
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetNetworkRoutesRequest AWS API Documentation
|
1901
|
+
#
|
1902
|
+
class GetNetworkRoutesRequest < Struct.new(
|
1697
1903
|
:global_network_id,
|
1698
|
-
:
|
1699
|
-
:
|
1700
|
-
:
|
1701
|
-
:
|
1702
|
-
:
|
1904
|
+
:route_table_identifier,
|
1905
|
+
:exact_cidr_matches,
|
1906
|
+
:longest_prefix_matches,
|
1907
|
+
:subnet_of_matches,
|
1908
|
+
:supernet_of_matches,
|
1909
|
+
:prefix_list_ids,
|
1910
|
+
:states,
|
1911
|
+
:types,
|
1912
|
+
:destination_filters)
|
1703
1913
|
SENSITIVE = []
|
1704
1914
|
include Aws::Structure
|
1705
1915
|
end
|
1706
1916
|
|
1707
|
-
#
|
1917
|
+
# @!attribute [rw] route_table_arn
|
1918
|
+
# The ARN of the route table.
|
1919
|
+
# @return [String]
|
1708
1920
|
#
|
1709
|
-
# @!attribute [rw]
|
1921
|
+
# @!attribute [rw] route_table_type
|
1922
|
+
# The route table type.
|
1710
1923
|
# @return [String]
|
1711
1924
|
#
|
1712
|
-
# @!attribute [rw]
|
1713
|
-
#
|
1714
|
-
# @return [
|
1925
|
+
# @!attribute [rw] route_table_timestamp
|
1926
|
+
# The route table creation time.
|
1927
|
+
# @return [Time]
|
1715
1928
|
#
|
1716
|
-
#
|
1929
|
+
# @!attribute [rw] network_routes
|
1930
|
+
# The network routes.
|
1931
|
+
# @return [Array<Types::NetworkRoute>]
|
1717
1932
|
#
|
1718
|
-
|
1719
|
-
|
1720
|
-
|
1933
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetNetworkRoutesResponse AWS API Documentation
|
1934
|
+
#
|
1935
|
+
class GetNetworkRoutesResponse < Struct.new(
|
1936
|
+
:route_table_arn,
|
1937
|
+
:route_table_type,
|
1938
|
+
:route_table_timestamp,
|
1939
|
+
:network_routes)
|
1721
1940
|
SENSITIVE = []
|
1722
1941
|
include Aws::Structure
|
1723
1942
|
end
|
1724
1943
|
|
1725
|
-
#
|
1726
|
-
#
|
1727
|
-
# @!attribute [rw] link_id
|
1728
|
-
# The ID of the link.
|
1729
|
-
# @return [String]
|
1944
|
+
# @note When making an API call, you may pass GetNetworkTelemetryRequest
|
1945
|
+
# data as a hash:
|
1730
1946
|
#
|
1731
|
-
#
|
1732
|
-
#
|
1733
|
-
#
|
1947
|
+
# {
|
1948
|
+
# global_network_id: "String", # required
|
1949
|
+
# registered_gateway_arn: "String",
|
1950
|
+
# aws_region: "String",
|
1951
|
+
# account_id: "String",
|
1952
|
+
# resource_type: "String",
|
1953
|
+
# resource_arn: "String",
|
1954
|
+
# max_results: 1,
|
1955
|
+
# next_token: "String",
|
1956
|
+
# }
|
1734
1957
|
#
|
1735
1958
|
# @!attribute [rw] global_network_id
|
1736
1959
|
# The ID of the global network.
|
1737
1960
|
# @return [String]
|
1738
1961
|
#
|
1739
|
-
# @!attribute [rw]
|
1740
|
-
# The
|
1962
|
+
# @!attribute [rw] registered_gateway_arn
|
1963
|
+
# The ARN of the gateway.
|
1741
1964
|
# @return [String]
|
1742
1965
|
#
|
1743
|
-
# @!attribute [rw]
|
1744
|
-
# The
|
1966
|
+
# @!attribute [rw] aws_region
|
1967
|
+
# The Amazon Web Services Region.
|
1745
1968
|
# @return [String]
|
1746
1969
|
#
|
1747
|
-
# @!attribute [rw]
|
1748
|
-
# The
|
1970
|
+
# @!attribute [rw] account_id
|
1971
|
+
# The Amazon Web Services account ID.
|
1749
1972
|
# @return [String]
|
1750
1973
|
#
|
1751
|
-
# @!attribute [rw]
|
1752
|
-
# The
|
1753
|
-
# @return [Types::Bandwidth]
|
1974
|
+
# @!attribute [rw] resource_type
|
1975
|
+
# The resource type.
|
1754
1976
|
#
|
1755
|
-
#
|
1756
|
-
# The provider of the link.
|
1757
|
-
# @return [String]
|
1977
|
+
# The following are the supported resource types for Direct Connect:
|
1758
1978
|
#
|
1759
|
-
#
|
1760
|
-
# The date and time that the link was created.
|
1761
|
-
# @return [Time]
|
1979
|
+
# * `dxcon`
|
1762
1980
|
#
|
1763
|
-
#
|
1764
|
-
# The state of the link.
|
1765
|
-
# @return [String]
|
1981
|
+
# * `dx-gateway`
|
1766
1982
|
#
|
1767
|
-
#
|
1768
|
-
# The tags for the link.
|
1769
|
-
# @return [Array<Types::Tag>]
|
1983
|
+
# * `dx-vif`
|
1770
1984
|
#
|
1771
|
-
#
|
1985
|
+
# The following are the supported resource types for Network Manager:
|
1772
1986
|
#
|
1773
|
-
|
1774
|
-
|
1775
|
-
|
1776
|
-
|
1777
|
-
|
1987
|
+
# * `connection`
|
1988
|
+
#
|
1989
|
+
# * `device`
|
1990
|
+
#
|
1991
|
+
# * `link`
|
1992
|
+
#
|
1993
|
+
# * `site`
|
1994
|
+
#
|
1995
|
+
# The following are the supported resource types for Amazon VPC:
|
1996
|
+
#
|
1997
|
+
# * `customer-gateway`
|
1998
|
+
#
|
1999
|
+
# * `transit-gateway`
|
2000
|
+
#
|
2001
|
+
# * `transit-gateway-attachment`
|
2002
|
+
#
|
2003
|
+
# * `transit-gateway-connect-peer`
|
2004
|
+
#
|
2005
|
+
# * `transit-gateway-route-table`
|
2006
|
+
#
|
2007
|
+
# * `vpn-connection`
|
2008
|
+
# @return [String]
|
2009
|
+
#
|
2010
|
+
# @!attribute [rw] resource_arn
|
2011
|
+
# The ARN of the resource.
|
2012
|
+
# @return [String]
|
2013
|
+
#
|
2014
|
+
# @!attribute [rw] max_results
|
2015
|
+
# The maximum number of results to return.
|
2016
|
+
# @return [Integer]
|
2017
|
+
#
|
2018
|
+
# @!attribute [rw] next_token
|
2019
|
+
# The token for the next page of results.
|
2020
|
+
# @return [String]
|
2021
|
+
#
|
2022
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetNetworkTelemetryRequest AWS API Documentation
|
2023
|
+
#
|
2024
|
+
class GetNetworkTelemetryRequest < Struct.new(
|
2025
|
+
:global_network_id,
|
2026
|
+
:registered_gateway_arn,
|
2027
|
+
:aws_region,
|
2028
|
+
:account_id,
|
2029
|
+
:resource_type,
|
2030
|
+
:resource_arn,
|
2031
|
+
:max_results,
|
2032
|
+
:next_token)
|
2033
|
+
SENSITIVE = []
|
2034
|
+
include Aws::Structure
|
2035
|
+
end
|
2036
|
+
|
2037
|
+
# @!attribute [rw] network_telemetry
|
2038
|
+
# The network telemetry.
|
2039
|
+
# @return [Array<Types::NetworkTelemetry>]
|
2040
|
+
#
|
2041
|
+
# @!attribute [rw] next_token
|
2042
|
+
# The token for the next page of results.
|
2043
|
+
# @return [String]
|
2044
|
+
#
|
2045
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetNetworkTelemetryResponse AWS API Documentation
|
2046
|
+
#
|
2047
|
+
class GetNetworkTelemetryResponse < Struct.new(
|
2048
|
+
:network_telemetry,
|
2049
|
+
:next_token)
|
2050
|
+
SENSITIVE = []
|
2051
|
+
include Aws::Structure
|
2052
|
+
end
|
2053
|
+
|
2054
|
+
# @note When making an API call, you may pass GetRouteAnalysisRequest
|
2055
|
+
# data as a hash:
|
2056
|
+
#
|
2057
|
+
# {
|
2058
|
+
# global_network_id: "String", # required
|
2059
|
+
# route_analysis_id: "String", # required
|
2060
|
+
# }
|
2061
|
+
#
|
2062
|
+
# @!attribute [rw] global_network_id
|
2063
|
+
# The ID of the global network.
|
2064
|
+
# @return [String]
|
2065
|
+
#
|
2066
|
+
# @!attribute [rw] route_analysis_id
|
2067
|
+
# The ID of the route analysis.
|
2068
|
+
# @return [String]
|
2069
|
+
#
|
2070
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetRouteAnalysisRequest AWS API Documentation
|
2071
|
+
#
|
2072
|
+
class GetRouteAnalysisRequest < Struct.new(
|
2073
|
+
:global_network_id,
|
2074
|
+
:route_analysis_id)
|
2075
|
+
SENSITIVE = []
|
2076
|
+
include Aws::Structure
|
2077
|
+
end
|
2078
|
+
|
2079
|
+
# @!attribute [rw] route_analysis
|
2080
|
+
# The route analysis.
|
2081
|
+
# @return [Types::RouteAnalysis]
|
2082
|
+
#
|
2083
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetRouteAnalysisResponse AWS API Documentation
|
2084
|
+
#
|
2085
|
+
class GetRouteAnalysisResponse < Struct.new(
|
2086
|
+
:route_analysis)
|
2087
|
+
SENSITIVE = []
|
2088
|
+
include Aws::Structure
|
2089
|
+
end
|
2090
|
+
|
2091
|
+
# @note When making an API call, you may pass GetSitesRequest
|
2092
|
+
# data as a hash:
|
2093
|
+
#
|
2094
|
+
# {
|
2095
|
+
# global_network_id: "String", # required
|
2096
|
+
# site_ids: ["String"],
|
2097
|
+
# max_results: 1,
|
2098
|
+
# next_token: "String",
|
2099
|
+
# }
|
2100
|
+
#
|
2101
|
+
# @!attribute [rw] global_network_id
|
2102
|
+
# The ID of the global network.
|
2103
|
+
# @return [String]
|
2104
|
+
#
|
2105
|
+
# @!attribute [rw] site_ids
|
2106
|
+
# One or more site IDs. The maximum is 10.
|
2107
|
+
# @return [Array<String>]
|
2108
|
+
#
|
2109
|
+
# @!attribute [rw] max_results
|
2110
|
+
# The maximum number of results to return.
|
2111
|
+
# @return [Integer]
|
2112
|
+
#
|
2113
|
+
# @!attribute [rw] next_token
|
2114
|
+
# The token for the next page of results.
|
2115
|
+
# @return [String]
|
2116
|
+
#
|
2117
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetSitesRequest AWS API Documentation
|
2118
|
+
#
|
2119
|
+
class GetSitesRequest < Struct.new(
|
2120
|
+
:global_network_id,
|
2121
|
+
:site_ids,
|
2122
|
+
:max_results,
|
2123
|
+
:next_token)
|
2124
|
+
SENSITIVE = []
|
2125
|
+
include Aws::Structure
|
2126
|
+
end
|
2127
|
+
|
2128
|
+
# @!attribute [rw] sites
|
2129
|
+
# The sites.
|
2130
|
+
# @return [Array<Types::Site>]
|
2131
|
+
#
|
2132
|
+
# @!attribute [rw] next_token
|
2133
|
+
# The token for the next page of results.
|
2134
|
+
# @return [String]
|
2135
|
+
#
|
2136
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetSitesResponse AWS API Documentation
|
2137
|
+
#
|
2138
|
+
class GetSitesResponse < Struct.new(
|
2139
|
+
:sites,
|
2140
|
+
:next_token)
|
2141
|
+
SENSITIVE = []
|
2142
|
+
include Aws::Structure
|
2143
|
+
end
|
2144
|
+
|
2145
|
+
# @note When making an API call, you may pass GetTransitGatewayConnectPeerAssociationsRequest
|
2146
|
+
# data as a hash:
|
2147
|
+
#
|
2148
|
+
# {
|
2149
|
+
# global_network_id: "String", # required
|
2150
|
+
# transit_gateway_connect_peer_arns: ["String"],
|
2151
|
+
# max_results: 1,
|
2152
|
+
# next_token: "String",
|
2153
|
+
# }
|
2154
|
+
#
|
2155
|
+
# @!attribute [rw] global_network_id
|
2156
|
+
# The ID of the global network.
|
2157
|
+
# @return [String]
|
2158
|
+
#
|
2159
|
+
# @!attribute [rw] transit_gateway_connect_peer_arns
|
2160
|
+
# One or more transit gateway Connect peer Amazon Resource Names
|
2161
|
+
# (ARNs).
|
2162
|
+
# @return [Array<String>]
|
2163
|
+
#
|
2164
|
+
# @!attribute [rw] max_results
|
2165
|
+
# The maximum number of results to return.
|
2166
|
+
# @return [Integer]
|
2167
|
+
#
|
2168
|
+
# @!attribute [rw] next_token
|
2169
|
+
# The token for the next page of results.
|
2170
|
+
# @return [String]
|
2171
|
+
#
|
2172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetTransitGatewayConnectPeerAssociationsRequest AWS API Documentation
|
2173
|
+
#
|
2174
|
+
class GetTransitGatewayConnectPeerAssociationsRequest < Struct.new(
|
2175
|
+
:global_network_id,
|
2176
|
+
:transit_gateway_connect_peer_arns,
|
2177
|
+
:max_results,
|
2178
|
+
:next_token)
|
2179
|
+
SENSITIVE = []
|
2180
|
+
include Aws::Structure
|
2181
|
+
end
|
2182
|
+
|
2183
|
+
# @!attribute [rw] transit_gateway_connect_peer_associations
|
2184
|
+
# Information about the transit gateway Connect peer associations.
|
2185
|
+
# @return [Array<Types::TransitGatewayConnectPeerAssociation>]
|
2186
|
+
#
|
2187
|
+
# @!attribute [rw] next_token
|
2188
|
+
# The token to use for the next page of results.
|
2189
|
+
# @return [String]
|
2190
|
+
#
|
2191
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetTransitGatewayConnectPeerAssociationsResponse AWS API Documentation
|
2192
|
+
#
|
2193
|
+
class GetTransitGatewayConnectPeerAssociationsResponse < Struct.new(
|
2194
|
+
:transit_gateway_connect_peer_associations,
|
2195
|
+
:next_token)
|
2196
|
+
SENSITIVE = []
|
2197
|
+
include Aws::Structure
|
2198
|
+
end
|
2199
|
+
|
2200
|
+
# @note When making an API call, you may pass GetTransitGatewayRegistrationsRequest
|
2201
|
+
# data as a hash:
|
2202
|
+
#
|
2203
|
+
# {
|
2204
|
+
# global_network_id: "String", # required
|
2205
|
+
# transit_gateway_arns: ["String"],
|
2206
|
+
# max_results: 1,
|
2207
|
+
# next_token: "String",
|
2208
|
+
# }
|
2209
|
+
#
|
2210
|
+
# @!attribute [rw] global_network_id
|
2211
|
+
# The ID of the global network.
|
2212
|
+
# @return [String]
|
2213
|
+
#
|
2214
|
+
# @!attribute [rw] transit_gateway_arns
|
2215
|
+
# The Amazon Resource Names (ARNs) of one or more transit gateways.
|
2216
|
+
# The maximum is 10.
|
2217
|
+
# @return [Array<String>]
|
2218
|
+
#
|
2219
|
+
# @!attribute [rw] max_results
|
2220
|
+
# The maximum number of results to return.
|
2221
|
+
# @return [Integer]
|
2222
|
+
#
|
2223
|
+
# @!attribute [rw] next_token
|
2224
|
+
# The token for the next page of results.
|
2225
|
+
# @return [String]
|
2226
|
+
#
|
2227
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetTransitGatewayRegistrationsRequest AWS API Documentation
|
2228
|
+
#
|
2229
|
+
class GetTransitGatewayRegistrationsRequest < Struct.new(
|
2230
|
+
:global_network_id,
|
2231
|
+
:transit_gateway_arns,
|
2232
|
+
:max_results,
|
2233
|
+
:next_token)
|
2234
|
+
SENSITIVE = []
|
2235
|
+
include Aws::Structure
|
2236
|
+
end
|
2237
|
+
|
2238
|
+
# @!attribute [rw] transit_gateway_registrations
|
2239
|
+
# The transit gateway registrations.
|
2240
|
+
# @return [Array<Types::TransitGatewayRegistration>]
|
2241
|
+
#
|
2242
|
+
# @!attribute [rw] next_token
|
2243
|
+
# The token for the next page of results.
|
2244
|
+
# @return [String]
|
2245
|
+
#
|
2246
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetTransitGatewayRegistrationsResponse AWS API Documentation
|
2247
|
+
#
|
2248
|
+
class GetTransitGatewayRegistrationsResponse < Struct.new(
|
2249
|
+
:transit_gateway_registrations,
|
2250
|
+
:next_token)
|
2251
|
+
SENSITIVE = []
|
2252
|
+
include Aws::Structure
|
2253
|
+
end
|
2254
|
+
|
2255
|
+
# Describes a global network.
|
2256
|
+
#
|
2257
|
+
# @!attribute [rw] global_network_id
|
2258
|
+
# The ID of the global network.
|
2259
|
+
# @return [String]
|
2260
|
+
#
|
2261
|
+
# @!attribute [rw] global_network_arn
|
2262
|
+
# The Amazon Resource Name (ARN) of the global network.
|
2263
|
+
# @return [String]
|
2264
|
+
#
|
2265
|
+
# @!attribute [rw] description
|
2266
|
+
# The description of the global network.
|
2267
|
+
# @return [String]
|
2268
|
+
#
|
2269
|
+
# @!attribute [rw] created_at
|
2270
|
+
# The date and time that the global network was created.
|
2271
|
+
# @return [Time]
|
2272
|
+
#
|
2273
|
+
# @!attribute [rw] state
|
2274
|
+
# The state of the global network.
|
2275
|
+
# @return [String]
|
2276
|
+
#
|
2277
|
+
# @!attribute [rw] tags
|
2278
|
+
# The tags for the global network.
|
2279
|
+
# @return [Array<Types::Tag>]
|
2280
|
+
#
|
2281
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GlobalNetwork AWS API Documentation
|
2282
|
+
#
|
2283
|
+
class GlobalNetwork < Struct.new(
|
2284
|
+
:global_network_id,
|
2285
|
+
:global_network_arn,
|
2286
|
+
:description,
|
2287
|
+
:created_at,
|
2288
|
+
:state,
|
2289
|
+
:tags)
|
2290
|
+
SENSITIVE = []
|
2291
|
+
include Aws::Structure
|
2292
|
+
end
|
2293
|
+
|
2294
|
+
# The request has failed due to an internal error.
|
2295
|
+
#
|
2296
|
+
# @!attribute [rw] message
|
2297
|
+
# @return [String]
|
2298
|
+
#
|
2299
|
+
# @!attribute [rw] retry_after_seconds
|
2300
|
+
# Indicates when to retry the request.
|
2301
|
+
# @return [Integer]
|
2302
|
+
#
|
2303
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/InternalServerException AWS API Documentation
|
2304
|
+
#
|
2305
|
+
class InternalServerException < Struct.new(
|
2306
|
+
:message,
|
2307
|
+
:retry_after_seconds)
|
2308
|
+
SENSITIVE = []
|
2309
|
+
include Aws::Structure
|
2310
|
+
end
|
2311
|
+
|
2312
|
+
# Describes a link.
|
2313
|
+
#
|
2314
|
+
# @!attribute [rw] link_id
|
2315
|
+
# The ID of the link.
|
2316
|
+
# @return [String]
|
2317
|
+
#
|
2318
|
+
# @!attribute [rw] link_arn
|
2319
|
+
# The Amazon Resource Name (ARN) of the link.
|
2320
|
+
# @return [String]
|
2321
|
+
#
|
2322
|
+
# @!attribute [rw] global_network_id
|
2323
|
+
# The ID of the global network.
|
2324
|
+
# @return [String]
|
2325
|
+
#
|
2326
|
+
# @!attribute [rw] site_id
|
2327
|
+
# The ID of the site.
|
2328
|
+
# @return [String]
|
2329
|
+
#
|
2330
|
+
# @!attribute [rw] description
|
2331
|
+
# The description of the link.
|
2332
|
+
# @return [String]
|
2333
|
+
#
|
2334
|
+
# @!attribute [rw] type
|
2335
|
+
# The type of the link.
|
2336
|
+
# @return [String]
|
2337
|
+
#
|
2338
|
+
# @!attribute [rw] bandwidth
|
2339
|
+
# The bandwidth for the link.
|
2340
|
+
# @return [Types::Bandwidth]
|
2341
|
+
#
|
2342
|
+
# @!attribute [rw] provider
|
2343
|
+
# The provider of the link.
|
2344
|
+
# @return [String]
|
2345
|
+
#
|
2346
|
+
# @!attribute [rw] created_at
|
2347
|
+
# The date and time that the link was created.
|
2348
|
+
# @return [Time]
|
2349
|
+
#
|
2350
|
+
# @!attribute [rw] state
|
2351
|
+
# The state of the link.
|
2352
|
+
# @return [String]
|
2353
|
+
#
|
2354
|
+
# @!attribute [rw] tags
|
2355
|
+
# The tags for the link.
|
2356
|
+
# @return [Array<Types::Tag>]
|
2357
|
+
#
|
2358
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/Link AWS API Documentation
|
2359
|
+
#
|
2360
|
+
class Link < Struct.new(
|
2361
|
+
:link_id,
|
2362
|
+
:link_arn,
|
2363
|
+
:global_network_id,
|
2364
|
+
:site_id,
|
1778
2365
|
:description,
|
1779
2366
|
:type,
|
1780
2367
|
:bandwidth,
|
@@ -1792,89 +2379,373 @@ module Aws::NetworkManager
|
|
1792
2379
|
# The ID of the global network.
|
1793
2380
|
# @return [String]
|
1794
2381
|
#
|
1795
|
-
# @!attribute [rw] device_id
|
1796
|
-
# The device ID for the link association.
|
2382
|
+
# @!attribute [rw] device_id
|
2383
|
+
# The device ID for the link association.
|
2384
|
+
# @return [String]
|
2385
|
+
#
|
2386
|
+
# @!attribute [rw] link_id
|
2387
|
+
# The ID of the link.
|
2388
|
+
# @return [String]
|
2389
|
+
#
|
2390
|
+
# @!attribute [rw] link_association_state
|
2391
|
+
# The state of the association.
|
2392
|
+
# @return [String]
|
2393
|
+
#
|
2394
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/LinkAssociation AWS API Documentation
|
2395
|
+
#
|
2396
|
+
class LinkAssociation < Struct.new(
|
2397
|
+
:global_network_id,
|
2398
|
+
:device_id,
|
2399
|
+
:link_id,
|
2400
|
+
:link_association_state)
|
2401
|
+
SENSITIVE = []
|
2402
|
+
include Aws::Structure
|
2403
|
+
end
|
2404
|
+
|
2405
|
+
# @note When making an API call, you may pass ListTagsForResourceRequest
|
2406
|
+
# data as a hash:
|
2407
|
+
#
|
2408
|
+
# {
|
2409
|
+
# resource_arn: "ResourceARN", # required
|
2410
|
+
# }
|
2411
|
+
#
|
2412
|
+
# @!attribute [rw] resource_arn
|
2413
|
+
# The Amazon Resource Name (ARN) of the resource.
|
2414
|
+
# @return [String]
|
2415
|
+
#
|
2416
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListTagsForResourceRequest AWS API Documentation
|
2417
|
+
#
|
2418
|
+
class ListTagsForResourceRequest < Struct.new(
|
2419
|
+
:resource_arn)
|
2420
|
+
SENSITIVE = []
|
2421
|
+
include Aws::Structure
|
2422
|
+
end
|
2423
|
+
|
2424
|
+
# @!attribute [rw] tag_list
|
2425
|
+
# The list of tags.
|
2426
|
+
# @return [Array<Types::Tag>]
|
2427
|
+
#
|
2428
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListTagsForResourceResponse AWS API Documentation
|
2429
|
+
#
|
2430
|
+
class ListTagsForResourceResponse < Struct.new(
|
2431
|
+
:tag_list)
|
2432
|
+
SENSITIVE = []
|
2433
|
+
include Aws::Structure
|
2434
|
+
end
|
2435
|
+
|
2436
|
+
# Describes a location.
|
2437
|
+
#
|
2438
|
+
# @note When making an API call, you may pass Location
|
2439
|
+
# data as a hash:
|
2440
|
+
#
|
2441
|
+
# {
|
2442
|
+
# address: "String",
|
2443
|
+
# latitude: "String",
|
2444
|
+
# longitude: "String",
|
2445
|
+
# }
|
2446
|
+
#
|
2447
|
+
# @!attribute [rw] address
|
2448
|
+
# The physical address.
|
2449
|
+
# @return [String]
|
2450
|
+
#
|
2451
|
+
# @!attribute [rw] latitude
|
2452
|
+
# The latitude.
|
2453
|
+
# @return [String]
|
2454
|
+
#
|
2455
|
+
# @!attribute [rw] longitude
|
2456
|
+
# The longitude.
|
2457
|
+
# @return [String]
|
2458
|
+
#
|
2459
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/Location AWS API Documentation
|
2460
|
+
#
|
2461
|
+
class Location < Struct.new(
|
2462
|
+
:address,
|
2463
|
+
:latitude,
|
2464
|
+
:longitude)
|
2465
|
+
SENSITIVE = []
|
2466
|
+
include Aws::Structure
|
2467
|
+
end
|
2468
|
+
|
2469
|
+
# Describes a network resource.
|
2470
|
+
#
|
2471
|
+
# @!attribute [rw] registered_gateway_arn
|
2472
|
+
# The ARN of the gateway.
|
2473
|
+
# @return [String]
|
2474
|
+
#
|
2475
|
+
# @!attribute [rw] aws_region
|
2476
|
+
# The Amazon Web Services Region.
|
2477
|
+
# @return [String]
|
2478
|
+
#
|
2479
|
+
# @!attribute [rw] account_id
|
2480
|
+
# The Amazon Web Services account ID.
|
2481
|
+
# @return [String]
|
2482
|
+
#
|
2483
|
+
# @!attribute [rw] resource_type
|
2484
|
+
# The resource type.
|
2485
|
+
#
|
2486
|
+
# The following are the supported resource types for Direct Connect:
|
2487
|
+
#
|
2488
|
+
# * `dxcon`
|
2489
|
+
#
|
2490
|
+
# * `dx-gateway`
|
2491
|
+
#
|
2492
|
+
# * `dx-vif`
|
2493
|
+
#
|
2494
|
+
# The following are the supported resource types for Network Manager:
|
2495
|
+
#
|
2496
|
+
# * `connection`
|
2497
|
+
#
|
2498
|
+
# * `device`
|
2499
|
+
#
|
2500
|
+
# * `link`
|
2501
|
+
#
|
2502
|
+
# * `site`
|
2503
|
+
#
|
2504
|
+
# The following are the supported resource types for Amazon VPC:
|
2505
|
+
#
|
2506
|
+
# * `customer-gateway`
|
2507
|
+
#
|
2508
|
+
# * `transit-gateway`
|
2509
|
+
#
|
2510
|
+
# * `transit-gateway-attachment`
|
2511
|
+
#
|
2512
|
+
# * `transit-gateway-connect-peer`
|
2513
|
+
#
|
2514
|
+
# * `transit-gateway-route-table`
|
2515
|
+
#
|
2516
|
+
# * `vpn-connection`
|
2517
|
+
# @return [String]
|
2518
|
+
#
|
2519
|
+
# @!attribute [rw] resource_id
|
2520
|
+
# The ID of the resource.
|
2521
|
+
# @return [String]
|
2522
|
+
#
|
2523
|
+
# @!attribute [rw] resource_arn
|
2524
|
+
# The ARN of the resource.
|
2525
|
+
# @return [String]
|
2526
|
+
#
|
2527
|
+
# @!attribute [rw] definition
|
2528
|
+
# Information about the resource, in JSON format. Network Manager gets
|
2529
|
+
# this information by describing the resource using its Describe API
|
2530
|
+
# call.
|
2531
|
+
# @return [String]
|
2532
|
+
#
|
2533
|
+
# @!attribute [rw] definition_timestamp
|
2534
|
+
# The time that the resource definition was retrieved.
|
2535
|
+
# @return [Time]
|
2536
|
+
#
|
2537
|
+
# @!attribute [rw] tags
|
2538
|
+
# The tags.
|
2539
|
+
# @return [Array<Types::Tag>]
|
2540
|
+
#
|
2541
|
+
# @!attribute [rw] metadata
|
2542
|
+
# The resource metadata.
|
2543
|
+
# @return [Hash<String,String>]
|
2544
|
+
#
|
2545
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/NetworkResource AWS API Documentation
|
2546
|
+
#
|
2547
|
+
class NetworkResource < Struct.new(
|
2548
|
+
:registered_gateway_arn,
|
2549
|
+
:aws_region,
|
2550
|
+
:account_id,
|
2551
|
+
:resource_type,
|
2552
|
+
:resource_id,
|
2553
|
+
:resource_arn,
|
2554
|
+
:definition,
|
2555
|
+
:definition_timestamp,
|
2556
|
+
:tags,
|
2557
|
+
:metadata)
|
2558
|
+
SENSITIVE = []
|
2559
|
+
include Aws::Structure
|
2560
|
+
end
|
2561
|
+
|
2562
|
+
# Describes a resource count.
|
2563
|
+
#
|
2564
|
+
# @!attribute [rw] resource_type
|
2565
|
+
# The resource type.
|
2566
|
+
# @return [String]
|
2567
|
+
#
|
2568
|
+
# @!attribute [rw] count
|
2569
|
+
# The resource count.
|
2570
|
+
# @return [Integer]
|
2571
|
+
#
|
2572
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/NetworkResourceCount AWS API Documentation
|
2573
|
+
#
|
2574
|
+
class NetworkResourceCount < Struct.new(
|
2575
|
+
:resource_type,
|
2576
|
+
:count)
|
2577
|
+
SENSITIVE = []
|
2578
|
+
include Aws::Structure
|
2579
|
+
end
|
2580
|
+
|
2581
|
+
# Describes a network resource.
|
2582
|
+
#
|
2583
|
+
# @!attribute [rw] registered_gateway_arn
|
2584
|
+
# The ARN of the gateway.
|
2585
|
+
# @return [String]
|
2586
|
+
#
|
2587
|
+
# @!attribute [rw] resource_arn
|
2588
|
+
# The ARN of the resource.
|
2589
|
+
# @return [String]
|
2590
|
+
#
|
2591
|
+
# @!attribute [rw] resource_type
|
2592
|
+
# The resource type.
|
2593
|
+
# @return [String]
|
2594
|
+
#
|
2595
|
+
# @!attribute [rw] definition
|
2596
|
+
# Information about the resource, in JSON format. Network Manager gets
|
2597
|
+
# this information by describing the resource using its Describe API
|
2598
|
+
# call.
|
2599
|
+
# @return [String]
|
2600
|
+
#
|
2601
|
+
# @!attribute [rw] name_tag
|
2602
|
+
# The value for the Name tag.
|
2603
|
+
# @return [String]
|
2604
|
+
#
|
2605
|
+
# @!attribute [rw] is_middlebox
|
2606
|
+
# Indicates whether this is a middlebox appliance.
|
2607
|
+
# @return [Boolean]
|
2608
|
+
#
|
2609
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/NetworkResourceSummary AWS API Documentation
|
2610
|
+
#
|
2611
|
+
class NetworkResourceSummary < Struct.new(
|
2612
|
+
:registered_gateway_arn,
|
2613
|
+
:resource_arn,
|
2614
|
+
:resource_type,
|
2615
|
+
:definition,
|
2616
|
+
:name_tag,
|
2617
|
+
:is_middlebox)
|
2618
|
+
SENSITIVE = []
|
2619
|
+
include Aws::Structure
|
2620
|
+
end
|
2621
|
+
|
2622
|
+
# Describes a network route.
|
2623
|
+
#
|
2624
|
+
# @!attribute [rw] destination_cidr_block
|
2625
|
+
# A unique identifier for the route, such as a CIDR block.
|
2626
|
+
# @return [String]
|
2627
|
+
#
|
2628
|
+
# @!attribute [rw] destinations
|
2629
|
+
# The destinations.
|
2630
|
+
# @return [Array<Types::NetworkRouteDestination>]
|
2631
|
+
#
|
2632
|
+
# @!attribute [rw] prefix_list_id
|
2633
|
+
# The ID of the prefix list.
|
2634
|
+
# @return [String]
|
2635
|
+
#
|
2636
|
+
# @!attribute [rw] state
|
2637
|
+
# The route state. The possible values are `active` and `blackhole`.
|
2638
|
+
# @return [String]
|
2639
|
+
#
|
2640
|
+
# @!attribute [rw] type
|
2641
|
+
# The route type. The possible values are `propagated` and `static`.
|
2642
|
+
# @return [String]
|
2643
|
+
#
|
2644
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/NetworkRoute AWS API Documentation
|
2645
|
+
#
|
2646
|
+
class NetworkRoute < Struct.new(
|
2647
|
+
:destination_cidr_block,
|
2648
|
+
:destinations,
|
2649
|
+
:prefix_list_id,
|
2650
|
+
:state,
|
2651
|
+
:type)
|
2652
|
+
SENSITIVE = []
|
2653
|
+
include Aws::Structure
|
2654
|
+
end
|
2655
|
+
|
2656
|
+
# Describes the destination of a network route.
|
2657
|
+
#
|
2658
|
+
# @!attribute [rw] transit_gateway_attachment_id
|
2659
|
+
# The ID of the transit gateway attachment.
|
1797
2660
|
# @return [String]
|
1798
2661
|
#
|
1799
|
-
# @!attribute [rw]
|
1800
|
-
# The
|
2662
|
+
# @!attribute [rw] resource_type
|
2663
|
+
# The resource type.
|
1801
2664
|
# @return [String]
|
1802
2665
|
#
|
1803
|
-
# @!attribute [rw]
|
1804
|
-
# The
|
2666
|
+
# @!attribute [rw] resource_id
|
2667
|
+
# The ID of the resource.
|
1805
2668
|
# @return [String]
|
1806
2669
|
#
|
1807
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/
|
2670
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/NetworkRouteDestination AWS API Documentation
|
1808
2671
|
#
|
1809
|
-
class
|
1810
|
-
:
|
1811
|
-
:
|
1812
|
-
:
|
1813
|
-
:link_association_state)
|
2672
|
+
class NetworkRouteDestination < Struct.new(
|
2673
|
+
:transit_gateway_attachment_id,
|
2674
|
+
:resource_type,
|
2675
|
+
:resource_id)
|
1814
2676
|
SENSITIVE = []
|
1815
2677
|
include Aws::Structure
|
1816
2678
|
end
|
1817
2679
|
|
1818
|
-
#
|
1819
|
-
# data as a hash:
|
2680
|
+
# Describes the telemetry information for a resource.
|
1820
2681
|
#
|
1821
|
-
#
|
1822
|
-
#
|
1823
|
-
#
|
2682
|
+
# @!attribute [rw] registered_gateway_arn
|
2683
|
+
# The ARN of the gateway.
|
2684
|
+
# @return [String]
|
2685
|
+
#
|
2686
|
+
# @!attribute [rw] aws_region
|
2687
|
+
# The Amazon Web Services Region.
|
2688
|
+
# @return [String]
|
2689
|
+
#
|
2690
|
+
# @!attribute [rw] account_id
|
2691
|
+
# The Amazon Web Services account ID.
|
2692
|
+
# @return [String]
|
2693
|
+
#
|
2694
|
+
# @!attribute [rw] resource_type
|
2695
|
+
# The resource type.
|
2696
|
+
# @return [String]
|
2697
|
+
#
|
2698
|
+
# @!attribute [rw] resource_id
|
2699
|
+
# The ID of the resource.
|
2700
|
+
# @return [String]
|
1824
2701
|
#
|
1825
2702
|
# @!attribute [rw] resource_arn
|
1826
|
-
# The
|
2703
|
+
# The ARN of the resource.
|
1827
2704
|
# @return [String]
|
1828
2705
|
#
|
1829
|
-
#
|
2706
|
+
# @!attribute [rw] address
|
2707
|
+
# The address.
|
2708
|
+
# @return [String]
|
1830
2709
|
#
|
1831
|
-
|
1832
|
-
|
1833
|
-
|
1834
|
-
include Aws::Structure
|
1835
|
-
end
|
1836
|
-
|
1837
|
-
# @!attribute [rw] tag_list
|
1838
|
-
# The list of tags.
|
1839
|
-
# @return [Array<Types::Tag>]
|
2710
|
+
# @!attribute [rw] health
|
2711
|
+
# The connection health.
|
2712
|
+
# @return [Types::ConnectionHealth]
|
1840
2713
|
#
|
1841
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/
|
2714
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/NetworkTelemetry AWS API Documentation
|
1842
2715
|
#
|
1843
|
-
class
|
1844
|
-
:
|
2716
|
+
class NetworkTelemetry < Struct.new(
|
2717
|
+
:registered_gateway_arn,
|
2718
|
+
:aws_region,
|
2719
|
+
:account_id,
|
2720
|
+
:resource_type,
|
2721
|
+
:resource_id,
|
2722
|
+
:resource_arn,
|
2723
|
+
:address,
|
2724
|
+
:health)
|
1845
2725
|
SENSITIVE = []
|
1846
2726
|
include Aws::Structure
|
1847
2727
|
end
|
1848
2728
|
|
1849
|
-
# Describes a
|
1850
|
-
#
|
1851
|
-
# @note When making an API call, you may pass Location
|
1852
|
-
# data as a hash:
|
1853
|
-
#
|
1854
|
-
# {
|
1855
|
-
# address: "String",
|
1856
|
-
# latitude: "String",
|
1857
|
-
# longitude: "String",
|
1858
|
-
# }
|
2729
|
+
# Describes a path component.
|
1859
2730
|
#
|
1860
|
-
# @!attribute [rw]
|
1861
|
-
# The
|
1862
|
-
# @return [
|
2731
|
+
# @!attribute [rw] sequence
|
2732
|
+
# The sequence number in the path. The destination is 0.
|
2733
|
+
# @return [Integer]
|
1863
2734
|
#
|
1864
|
-
# @!attribute [rw]
|
1865
|
-
# The
|
1866
|
-
# @return [
|
2735
|
+
# @!attribute [rw] resource
|
2736
|
+
# The resource.
|
2737
|
+
# @return [Types::NetworkResourceSummary]
|
1867
2738
|
#
|
1868
|
-
# @!attribute [rw]
|
1869
|
-
# The
|
2739
|
+
# @!attribute [rw] destination_cidr_block
|
2740
|
+
# The destination CIDR block in the route table.
|
1870
2741
|
# @return [String]
|
1871
2742
|
#
|
1872
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/
|
2743
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/PathComponent AWS API Documentation
|
1873
2744
|
#
|
1874
|
-
class
|
1875
|
-
:
|
1876
|
-
:
|
1877
|
-
:
|
2745
|
+
class PathComponent < Struct.new(
|
2746
|
+
:sequence,
|
2747
|
+
:resource,
|
2748
|
+
:destination_cidr_block)
|
1878
2749
|
SENSITIVE = []
|
1879
2750
|
include Aws::Structure
|
1880
2751
|
end
|
@@ -1892,12 +2763,7 @@ module Aws::NetworkManager
|
|
1892
2763
|
# @return [String]
|
1893
2764
|
#
|
1894
2765
|
# @!attribute [rw] transit_gateway_arn
|
1895
|
-
# The Amazon Resource Name (ARN) of the transit gateway.
|
1896
|
-
# information, see [Resources Defined by Amazon EC2][1].
|
1897
|
-
#
|
1898
|
-
#
|
1899
|
-
#
|
1900
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazonec2.html#amazonec2-resources-for-iam-policies
|
2766
|
+
# The Amazon Resource Name (ARN) of the transit gateway.
|
1901
2767
|
# @return [String]
|
1902
2768
|
#
|
1903
2769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RegisterTransitGatewayRequest AWS API Documentation
|
@@ -1921,6 +2787,25 @@ module Aws::NetworkManager
|
|
1921
2787
|
include Aws::Structure
|
1922
2788
|
end
|
1923
2789
|
|
2790
|
+
# Describes a resource relationship.
|
2791
|
+
#
|
2792
|
+
# @!attribute [rw] from
|
2793
|
+
# The ARN of the resource.
|
2794
|
+
# @return [String]
|
2795
|
+
#
|
2796
|
+
# @!attribute [rw] to
|
2797
|
+
# The ARN of the resource.
|
2798
|
+
# @return [String]
|
2799
|
+
#
|
2800
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/Relationship AWS API Documentation
|
2801
|
+
#
|
2802
|
+
class Relationship < Struct.new(
|
2803
|
+
:from,
|
2804
|
+
:to)
|
2805
|
+
SENSITIVE = []
|
2806
|
+
include Aws::Structure
|
2807
|
+
end
|
2808
|
+
|
1924
2809
|
# The specified resource could not be found.
|
1925
2810
|
#
|
1926
2811
|
# @!attribute [rw] message
|
@@ -1934,12 +2819,225 @@ module Aws::NetworkManager
|
|
1934
2819
|
# The resource type.
|
1935
2820
|
# @return [String]
|
1936
2821
|
#
|
2822
|
+
# @!attribute [rw] context
|
2823
|
+
# @return [Hash<String,String>]
|
2824
|
+
#
|
1937
2825
|
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ResourceNotFoundException AWS API Documentation
|
1938
2826
|
#
|
1939
2827
|
class ResourceNotFoundException < Struct.new(
|
1940
2828
|
:message,
|
1941
2829
|
:resource_id,
|
1942
|
-
:resource_type
|
2830
|
+
:resource_type,
|
2831
|
+
:context)
|
2832
|
+
SENSITIVE = []
|
2833
|
+
include Aws::Structure
|
2834
|
+
end
|
2835
|
+
|
2836
|
+
# Describes a route analysis.
|
2837
|
+
#
|
2838
|
+
# @!attribute [rw] global_network_id
|
2839
|
+
# The ID of the global network.
|
2840
|
+
# @return [String]
|
2841
|
+
#
|
2842
|
+
# @!attribute [rw] owner_account_id
|
2843
|
+
# The ID of the AWS account that created the route analysis.
|
2844
|
+
# @return [String]
|
2845
|
+
#
|
2846
|
+
# @!attribute [rw] route_analysis_id
|
2847
|
+
# The ID of the route analysis.
|
2848
|
+
# @return [String]
|
2849
|
+
#
|
2850
|
+
# @!attribute [rw] start_timestamp
|
2851
|
+
# The time that the analysis started.
|
2852
|
+
# @return [Time]
|
2853
|
+
#
|
2854
|
+
# @!attribute [rw] status
|
2855
|
+
# The status of the route analysis.
|
2856
|
+
# @return [String]
|
2857
|
+
#
|
2858
|
+
# @!attribute [rw] source
|
2859
|
+
# The source.
|
2860
|
+
# @return [Types::RouteAnalysisEndpointOptions]
|
2861
|
+
#
|
2862
|
+
# @!attribute [rw] destination
|
2863
|
+
# The destination.
|
2864
|
+
# @return [Types::RouteAnalysisEndpointOptions]
|
2865
|
+
#
|
2866
|
+
# @!attribute [rw] include_return_path
|
2867
|
+
# Indicates whether to analyze the return path. The return path is not
|
2868
|
+
# analyzed if the forward path analysis does not succeed.
|
2869
|
+
# @return [Boolean]
|
2870
|
+
#
|
2871
|
+
# @!attribute [rw] use_middleboxes
|
2872
|
+
# Indicates whether to include the location of middlebox appliances in
|
2873
|
+
# the route analysis.
|
2874
|
+
# @return [Boolean]
|
2875
|
+
#
|
2876
|
+
# @!attribute [rw] forward_path
|
2877
|
+
# The forward path.
|
2878
|
+
# @return [Types::RouteAnalysisPath]
|
2879
|
+
#
|
2880
|
+
# @!attribute [rw] return_path
|
2881
|
+
# The return path.
|
2882
|
+
# @return [Types::RouteAnalysisPath]
|
2883
|
+
#
|
2884
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RouteAnalysis AWS API Documentation
|
2885
|
+
#
|
2886
|
+
class RouteAnalysis < Struct.new(
|
2887
|
+
:global_network_id,
|
2888
|
+
:owner_account_id,
|
2889
|
+
:route_analysis_id,
|
2890
|
+
:start_timestamp,
|
2891
|
+
:status,
|
2892
|
+
:source,
|
2893
|
+
:destination,
|
2894
|
+
:include_return_path,
|
2895
|
+
:use_middleboxes,
|
2896
|
+
:forward_path,
|
2897
|
+
:return_path)
|
2898
|
+
SENSITIVE = []
|
2899
|
+
include Aws::Structure
|
2900
|
+
end
|
2901
|
+
|
2902
|
+
# Describes the status of an analysis at completion.
|
2903
|
+
#
|
2904
|
+
# @!attribute [rw] result_code
|
2905
|
+
# The result of the analysis. If the status is `NOT_CONNECTED`, check
|
2906
|
+
# the reason code.
|
2907
|
+
# @return [String]
|
2908
|
+
#
|
2909
|
+
# @!attribute [rw] reason_code
|
2910
|
+
# The reason code. Available only if a connection is not found.
|
2911
|
+
#
|
2912
|
+
# * `BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND` - Found a black hole route
|
2913
|
+
# with the destination CIDR block.
|
2914
|
+
#
|
2915
|
+
# * `CYCLIC_PATH_DETECTED` - Found the same resource multiple times
|
2916
|
+
# while traversing the path.
|
2917
|
+
#
|
2918
|
+
# * `INACTIVE_ROUTE_FOR_DESTINATION_FOUND` - Found an inactive route
|
2919
|
+
# with the destination CIDR block.
|
2920
|
+
#
|
2921
|
+
# * `MAX_HOPS_EXCEEDED` - Analysis exceeded 64 hops without finding
|
2922
|
+
# the destination.
|
2923
|
+
#
|
2924
|
+
# * `ROUTE_NOT_FOUND` - Cannot find a route table with the destination
|
2925
|
+
# CIDR block.
|
2926
|
+
#
|
2927
|
+
# * `TGW_ATTACH_ARN_NO_MATCH` - Found an attachment, but not with the
|
2928
|
+
# correct destination ARN.
|
2929
|
+
#
|
2930
|
+
# * `TGW_ATTACH_NOT_FOUND` - Cannot find an attachment.
|
2931
|
+
#
|
2932
|
+
# * `TGW_ATTACH_NOT_IN_TGW` - Found an attachment, but not to the
|
2933
|
+
# correct transit gateway.
|
2934
|
+
#
|
2935
|
+
# * `TGW_ATTACH_STABLE_ROUTE_TABLE_NOT_FOUND` - The state of the route
|
2936
|
+
# table association is not associated.
|
2937
|
+
# @return [String]
|
2938
|
+
#
|
2939
|
+
# @!attribute [rw] reason_context
|
2940
|
+
# Additional information about the path. Available only if a
|
2941
|
+
# connection is not found.
|
2942
|
+
# @return [Hash<String,String>]
|
2943
|
+
#
|
2944
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RouteAnalysisCompletion AWS API Documentation
|
2945
|
+
#
|
2946
|
+
class RouteAnalysisCompletion < Struct.new(
|
2947
|
+
:result_code,
|
2948
|
+
:reason_code,
|
2949
|
+
:reason_context)
|
2950
|
+
SENSITIVE = []
|
2951
|
+
include Aws::Structure
|
2952
|
+
end
|
2953
|
+
|
2954
|
+
# Describes a source or a destination.
|
2955
|
+
#
|
2956
|
+
# @!attribute [rw] transit_gateway_attachment_arn
|
2957
|
+
# The ARN of the transit gateway attachment.
|
2958
|
+
# @return [String]
|
2959
|
+
#
|
2960
|
+
# @!attribute [rw] transit_gateway_arn
|
2961
|
+
# The ARN of the transit gateway.
|
2962
|
+
# @return [String]
|
2963
|
+
#
|
2964
|
+
# @!attribute [rw] ip_address
|
2965
|
+
# The IP address.
|
2966
|
+
# @return [String]
|
2967
|
+
#
|
2968
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RouteAnalysisEndpointOptions AWS API Documentation
|
2969
|
+
#
|
2970
|
+
class RouteAnalysisEndpointOptions < Struct.new(
|
2971
|
+
:transit_gateway_attachment_arn,
|
2972
|
+
:transit_gateway_arn,
|
2973
|
+
:ip_address)
|
2974
|
+
SENSITIVE = []
|
2975
|
+
include Aws::Structure
|
2976
|
+
end
|
2977
|
+
|
2978
|
+
# Describes a source or a destination.
|
2979
|
+
#
|
2980
|
+
# @note When making an API call, you may pass RouteAnalysisEndpointOptionsSpecification
|
2981
|
+
# data as a hash:
|
2982
|
+
#
|
2983
|
+
# {
|
2984
|
+
# transit_gateway_attachment_arn: "String",
|
2985
|
+
# ip_address: "String",
|
2986
|
+
# }
|
2987
|
+
#
|
2988
|
+
# @!attribute [rw] transit_gateway_attachment_arn
|
2989
|
+
# The ARN of the transit gateway attachment.
|
2990
|
+
# @return [String]
|
2991
|
+
#
|
2992
|
+
# @!attribute [rw] ip_address
|
2993
|
+
# The IP address.
|
2994
|
+
# @return [String]
|
2995
|
+
#
|
2996
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RouteAnalysisEndpointOptionsSpecification AWS API Documentation
|
2997
|
+
#
|
2998
|
+
class RouteAnalysisEndpointOptionsSpecification < Struct.new(
|
2999
|
+
:transit_gateway_attachment_arn,
|
3000
|
+
:ip_address)
|
3001
|
+
SENSITIVE = []
|
3002
|
+
include Aws::Structure
|
3003
|
+
end
|
3004
|
+
|
3005
|
+
# Describes a route analysis path.
|
3006
|
+
#
|
3007
|
+
# @!attribute [rw] completion_status
|
3008
|
+
# The status of the analysis at completion.
|
3009
|
+
# @return [Types::RouteAnalysisCompletion]
|
3010
|
+
#
|
3011
|
+
# @!attribute [rw] path
|
3012
|
+
# The route analysis path.
|
3013
|
+
# @return [Array<Types::PathComponent>]
|
3014
|
+
#
|
3015
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RouteAnalysisPath AWS API Documentation
|
3016
|
+
#
|
3017
|
+
class RouteAnalysisPath < Struct.new(
|
3018
|
+
:completion_status,
|
3019
|
+
:path)
|
3020
|
+
SENSITIVE = []
|
3021
|
+
include Aws::Structure
|
3022
|
+
end
|
3023
|
+
|
3024
|
+
# Describes a route table.
|
3025
|
+
#
|
3026
|
+
# @note When making an API call, you may pass RouteTableIdentifier
|
3027
|
+
# data as a hash:
|
3028
|
+
#
|
3029
|
+
# {
|
3030
|
+
# transit_gateway_route_table_arn: "String",
|
3031
|
+
# }
|
3032
|
+
#
|
3033
|
+
# @!attribute [rw] transit_gateway_route_table_arn
|
3034
|
+
# The ARN of the transit gateway route table.
|
3035
|
+
# @return [String]
|
3036
|
+
#
|
3037
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RouteTableIdentifier AWS API Documentation
|
3038
|
+
#
|
3039
|
+
class RouteTableIdentifier < Struct.new(
|
3040
|
+
:transit_gateway_route_table_arn)
|
1943
3041
|
SENSITIVE = []
|
1944
3042
|
include Aws::Structure
|
1945
3043
|
end
|
@@ -2027,6 +3125,69 @@ module Aws::NetworkManager
|
|
2027
3125
|
include Aws::Structure
|
2028
3126
|
end
|
2029
3127
|
|
3128
|
+
# @note When making an API call, you may pass StartRouteAnalysisRequest
|
3129
|
+
# data as a hash:
|
3130
|
+
#
|
3131
|
+
# {
|
3132
|
+
# global_network_id: "String", # required
|
3133
|
+
# source: { # required
|
3134
|
+
# transit_gateway_attachment_arn: "String",
|
3135
|
+
# ip_address: "String",
|
3136
|
+
# },
|
3137
|
+
# destination: { # required
|
3138
|
+
# transit_gateway_attachment_arn: "String",
|
3139
|
+
# ip_address: "String",
|
3140
|
+
# },
|
3141
|
+
# include_return_path: false,
|
3142
|
+
# use_middleboxes: false,
|
3143
|
+
# }
|
3144
|
+
#
|
3145
|
+
# @!attribute [rw] global_network_id
|
3146
|
+
# The ID of the global network.
|
3147
|
+
# @return [String]
|
3148
|
+
#
|
3149
|
+
# @!attribute [rw] source
|
3150
|
+
# The source from which traffic originates.
|
3151
|
+
# @return [Types::RouteAnalysisEndpointOptionsSpecification]
|
3152
|
+
#
|
3153
|
+
# @!attribute [rw] destination
|
3154
|
+
# The destination.
|
3155
|
+
# @return [Types::RouteAnalysisEndpointOptionsSpecification]
|
3156
|
+
#
|
3157
|
+
# @!attribute [rw] include_return_path
|
3158
|
+
# Indicates whether to analyze the return path. The default is
|
3159
|
+
# `false`.
|
3160
|
+
# @return [Boolean]
|
3161
|
+
#
|
3162
|
+
# @!attribute [rw] use_middleboxes
|
3163
|
+
# Indicates whether to include the location of middlebox appliances in
|
3164
|
+
# the route analysis. The default is `false`.
|
3165
|
+
# @return [Boolean]
|
3166
|
+
#
|
3167
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/StartRouteAnalysisRequest AWS API Documentation
|
3168
|
+
#
|
3169
|
+
class StartRouteAnalysisRequest < Struct.new(
|
3170
|
+
:global_network_id,
|
3171
|
+
:source,
|
3172
|
+
:destination,
|
3173
|
+
:include_return_path,
|
3174
|
+
:use_middleboxes)
|
3175
|
+
SENSITIVE = []
|
3176
|
+
include Aws::Structure
|
3177
|
+
end
|
3178
|
+
|
3179
|
+
# @!attribute [rw] route_analysis
|
3180
|
+
# The route analysis.
|
3181
|
+
# @return [Types::RouteAnalysis]
|
3182
|
+
#
|
3183
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/StartRouteAnalysisResponse AWS API Documentation
|
3184
|
+
#
|
3185
|
+
class StartRouteAnalysisResponse < Struct.new(
|
3186
|
+
:route_analysis)
|
3187
|
+
SENSITIVE = []
|
3188
|
+
include Aws::Structure
|
3189
|
+
end
|
3190
|
+
|
2030
3191
|
# Describes a tag.
|
2031
3192
|
#
|
2032
3193
|
# @note When making an API call, you may pass Tag
|
@@ -2040,13 +3201,13 @@ module Aws::NetworkManager
|
|
2040
3201
|
# @!attribute [rw] key
|
2041
3202
|
# The tag key.
|
2042
3203
|
#
|
2043
|
-
#
|
3204
|
+
# Constraints: Maximum length of 128 characters.
|
2044
3205
|
# @return [String]
|
2045
3206
|
#
|
2046
3207
|
# @!attribute [rw] value
|
2047
3208
|
# The tag value.
|
2048
3209
|
#
|
2049
|
-
#
|
3210
|
+
# Constraints: Maximum length of 256 characters.
|
2050
3211
|
# @return [String]
|
2051
3212
|
#
|
2052
3213
|
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/Tag AWS API Documentation
|
@@ -2305,13 +3466,14 @@ module Aws::NetworkManager
|
|
2305
3466
|
# @return [String]
|
2306
3467
|
#
|
2307
3468
|
# @!attribute [rw] aws_location
|
2308
|
-
# The
|
3469
|
+
# The Amazon Web Services location of the device, if applicable. For
|
3470
|
+
# an on-premises device, you can omit this parameter.
|
2309
3471
|
# @return [Types::AWSLocation]
|
2310
3472
|
#
|
2311
3473
|
# @!attribute [rw] description
|
2312
3474
|
# A description of the device.
|
2313
3475
|
#
|
2314
|
-
#
|
3476
|
+
# Constraints: Maximum length of 256 characters.
|
2315
3477
|
# @return [String]
|
2316
3478
|
#
|
2317
3479
|
# @!attribute [rw] type
|
@@ -2321,19 +3483,19 @@ module Aws::NetworkManager
|
|
2321
3483
|
# @!attribute [rw] vendor
|
2322
3484
|
# The vendor of the device.
|
2323
3485
|
#
|
2324
|
-
#
|
3486
|
+
# Constraints: Maximum length of 128 characters.
|
2325
3487
|
# @return [String]
|
2326
3488
|
#
|
2327
3489
|
# @!attribute [rw] model
|
2328
3490
|
# The model of the device.
|
2329
3491
|
#
|
2330
|
-
#
|
3492
|
+
# Constraints: Maximum length of 128 characters.
|
2331
3493
|
# @return [String]
|
2332
3494
|
#
|
2333
3495
|
# @!attribute [rw] serial_number
|
2334
3496
|
# The serial number of the device.
|
2335
3497
|
#
|
2336
|
-
#
|
3498
|
+
# Constraints: Maximum length of 128 characters.
|
2337
3499
|
# @return [String]
|
2338
3500
|
#
|
2339
3501
|
# @!attribute [rw] location
|
@@ -2388,7 +3550,7 @@ module Aws::NetworkManager
|
|
2388
3550
|
# @!attribute [rw] description
|
2389
3551
|
# A description of the global network.
|
2390
3552
|
#
|
2391
|
-
#
|
3553
|
+
# Constraints: Maximum length of 256 characters.
|
2392
3554
|
# @return [String]
|
2393
3555
|
#
|
2394
3556
|
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/UpdateGlobalNetworkRequest AWS API Documentation
|
@@ -2438,13 +3600,13 @@ module Aws::NetworkManager
|
|
2438
3600
|
# @!attribute [rw] description
|
2439
3601
|
# A description of the link.
|
2440
3602
|
#
|
2441
|
-
#
|
3603
|
+
# Constraints: Maximum length of 256 characters.
|
2442
3604
|
# @return [String]
|
2443
3605
|
#
|
2444
3606
|
# @!attribute [rw] type
|
2445
3607
|
# The type of the link.
|
2446
3608
|
#
|
2447
|
-
#
|
3609
|
+
# Constraints: Maximum length of 128 characters.
|
2448
3610
|
# @return [String]
|
2449
3611
|
#
|
2450
3612
|
# @!attribute [rw] bandwidth
|
@@ -2454,7 +3616,7 @@ module Aws::NetworkManager
|
|
2454
3616
|
# @!attribute [rw] provider
|
2455
3617
|
# The provider of the link.
|
2456
3618
|
#
|
2457
|
-
#
|
3619
|
+
# Constraints: Maximum length of 128 characters.
|
2458
3620
|
# @return [String]
|
2459
3621
|
#
|
2460
3622
|
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/UpdateLinkRequest AWS API Documentation
|
@@ -2482,6 +3644,56 @@ module Aws::NetworkManager
|
|
2482
3644
|
include Aws::Structure
|
2483
3645
|
end
|
2484
3646
|
|
3647
|
+
# @note When making an API call, you may pass UpdateNetworkResourceMetadataRequest
|
3648
|
+
# data as a hash:
|
3649
|
+
#
|
3650
|
+
# {
|
3651
|
+
# global_network_id: "String", # required
|
3652
|
+
# resource_arn: "String", # required
|
3653
|
+
# metadata: { # required
|
3654
|
+
# "NetworkResourceMetadataKey" => "NetworkResourceMetadataValue",
|
3655
|
+
# },
|
3656
|
+
# }
|
3657
|
+
#
|
3658
|
+
# @!attribute [rw] global_network_id
|
3659
|
+
# The ID of the global network.
|
3660
|
+
# @return [String]
|
3661
|
+
#
|
3662
|
+
# @!attribute [rw] resource_arn
|
3663
|
+
# The ARN of the resource.
|
3664
|
+
# @return [String]
|
3665
|
+
#
|
3666
|
+
# @!attribute [rw] metadata
|
3667
|
+
# The resource metadata.
|
3668
|
+
# @return [Hash<String,String>]
|
3669
|
+
#
|
3670
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/UpdateNetworkResourceMetadataRequest AWS API Documentation
|
3671
|
+
#
|
3672
|
+
class UpdateNetworkResourceMetadataRequest < Struct.new(
|
3673
|
+
:global_network_id,
|
3674
|
+
:resource_arn,
|
3675
|
+
:metadata)
|
3676
|
+
SENSITIVE = []
|
3677
|
+
include Aws::Structure
|
3678
|
+
end
|
3679
|
+
|
3680
|
+
# @!attribute [rw] resource_arn
|
3681
|
+
# The ARN of the resource.
|
3682
|
+
# @return [String]
|
3683
|
+
#
|
3684
|
+
# @!attribute [rw] metadata
|
3685
|
+
# The updated resource metadata.
|
3686
|
+
# @return [Hash<String,String>]
|
3687
|
+
#
|
3688
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/UpdateNetworkResourceMetadataResponse AWS API Documentation
|
3689
|
+
#
|
3690
|
+
class UpdateNetworkResourceMetadataResponse < Struct.new(
|
3691
|
+
:resource_arn,
|
3692
|
+
:metadata)
|
3693
|
+
SENSITIVE = []
|
3694
|
+
include Aws::Structure
|
3695
|
+
end
|
3696
|
+
|
2485
3697
|
# @note When making an API call, you may pass UpdateSiteRequest
|
2486
3698
|
# data as a hash:
|
2487
3699
|
#
|
@@ -2507,7 +3719,7 @@ module Aws::NetworkManager
|
|
2507
3719
|
# @!attribute [rw] description
|
2508
3720
|
# A description of your site.
|
2509
3721
|
#
|
2510
|
-
#
|
3722
|
+
# Constraints: Maximum length of 256 characters.
|
2511
3723
|
# @return [String]
|
2512
3724
|
#
|
2513
3725
|
# @!attribute [rw] location
|