aws-sdk-networkmanager 1.44.0 → 1.45.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c769fd9b33ef7ac650788e8d662e95e82c4ce080f58b67058f4f8343e552c9b5
4
- data.tar.gz: 6da80ddd11de5fa4b5c66636033528c30435d8009ded388be7d7d1960c8b1b74
3
+ metadata.gz: a3d6c52991cd538044f3ff46753a2819db3dc82bba43fc1bfeb2fe62fa901915
4
+ data.tar.gz: 1f8532ac502ac64523626cce0672ec0aea08fda255e97c5c76f90a49782af7c4
5
5
  SHA512:
6
- metadata.gz: 169275156efaec8aefea14ff3606bdfc5019b2bcadd3e8c9f7c8092f8cbbe9854b77c296d7ff6d34c13c077c070d7e6054edafec74f82e3a62ac963d29134c38
7
- data.tar.gz: ee543800d4db2abd9672b1353e345a80e588a1d3814e6de5fc5de0262e0abb4fa4a44070e1e89a5a9e380c6f4fc903a6ce27693f8b8da6357a8bcb25f18390a1
6
+ metadata.gz: 80f06451dcc6f86383b080641ccfc9ebc2a410b93446658b760a7f9153513b3b282ff8e2e71c74b379d05c4ee0412c16f23bb77d9e2c8462a0cc3c6f4460d425
7
+ data.tar.gz: d6b76d428cc4cae8e178e6c5bf919fd20b50f29908a43bddb44bdc30bef5dee41d171b3ef4bc5dbdf711b66b9015739e41392adef639d953932a14343efbc91b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.45.0 (2024-06-11)
5
+ ------------------
6
+
7
+ * Feature - This is model changes & documentation update for Service Insertion feature for AWS Cloud WAN. This feature allows insertion of AWS/3rd party security services on Cloud WAN. This allows to steer inter/intra segment traffic via security appliances and provide visibility to the route updates.
8
+
4
9
  1.44.0 (2024-06-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.44.0
1
+ 1.45.0
@@ -443,6 +443,7 @@ module Aws::NetworkManager
443
443
  # resp.attachment.resource_arn #=> String
444
444
  # resp.attachment.attachment_policy_rule_number #=> Integer
445
445
  # resp.attachment.segment_name #=> String
446
+ # resp.attachment.network_function_group_name #=> String
446
447
  # resp.attachment.tags #=> Array
447
448
  # resp.attachment.tags[0].key #=> String
448
449
  # resp.attachment.tags[0].value #=> String
@@ -451,6 +452,11 @@ module Aws::NetworkManager
451
452
  # resp.attachment.proposed_segment_change.tags[0].value #=> String
452
453
  # resp.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
453
454
  # resp.attachment.proposed_segment_change.segment_name #=> String
455
+ # resp.attachment.proposed_network_function_group_change.tags #=> Array
456
+ # resp.attachment.proposed_network_function_group_change.tags[0].key #=> String
457
+ # resp.attachment.proposed_network_function_group_change.tags[0].value #=> String
458
+ # resp.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
459
+ # resp.attachment.proposed_network_function_group_change.network_function_group_name #=> String
454
460
  # resp.attachment.created_at #=> Time
455
461
  # resp.attachment.updated_at #=> Time
456
462
  #
@@ -731,6 +737,7 @@ module Aws::NetworkManager
731
737
  # resp.connect_attachment.attachment.resource_arn #=> String
732
738
  # resp.connect_attachment.attachment.attachment_policy_rule_number #=> Integer
733
739
  # resp.connect_attachment.attachment.segment_name #=> String
740
+ # resp.connect_attachment.attachment.network_function_group_name #=> String
734
741
  # resp.connect_attachment.attachment.tags #=> Array
735
742
  # resp.connect_attachment.attachment.tags[0].key #=> String
736
743
  # resp.connect_attachment.attachment.tags[0].value #=> String
@@ -739,6 +746,11 @@ module Aws::NetworkManager
739
746
  # resp.connect_attachment.attachment.proposed_segment_change.tags[0].value #=> String
740
747
  # resp.connect_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
741
748
  # resp.connect_attachment.attachment.proposed_segment_change.segment_name #=> String
749
+ # resp.connect_attachment.attachment.proposed_network_function_group_change.tags #=> Array
750
+ # resp.connect_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
751
+ # resp.connect_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
752
+ # resp.connect_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
753
+ # resp.connect_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
742
754
  # resp.connect_attachment.attachment.created_at #=> Time
743
755
  # resp.connect_attachment.attachment.updated_at #=> Time
744
756
  # resp.connect_attachment.transport_attachment_id #=> String
@@ -762,13 +774,15 @@ module Aws::NetworkManager
762
774
  # The ID of the connection attachment.
763
775
  #
764
776
  # @option params [String] :core_network_address
765
- # A Connect peer core network address.
777
+ # A Connect peer core network address. This only applies only when the
778
+ # protocol is `GRE`.
766
779
  #
767
780
  # @option params [required, String] :peer_address
768
781
  # The Connect peer address.
769
782
  #
770
783
  # @option params [Types::BgpOptions] :bgp_options
771
- # The Connect peer BGP options.
784
+ # The Connect peer BGP options. This only applies only when the protocol
785
+ # is `GRE`.
772
786
  #
773
787
  # @option params [Array<String>] :inside_cidr_blocks
774
788
  # The inside IP addresses used for BGP peering.
@@ -783,7 +797,8 @@ module Aws::NetworkManager
783
797
  # not need to pass this option.**
784
798
  #
785
799
  # @option params [String] :subnet_arn
786
- # The subnet ARN for the Connect peer.
800
+ # The subnet ARN for the Connect peer. This only applies only when the
801
+ # protocol is NO\_ENCAP.
787
802
  #
788
803
  # @return [Types::CreateConnectPeerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
789
804
  #
@@ -969,6 +984,14 @@ module Aws::NetworkManager
969
984
  # resp.core_network.segments[0].edge_locations[0] #=> String
970
985
  # resp.core_network.segments[0].shared_segments #=> Array
971
986
  # resp.core_network.segments[0].shared_segments[0] #=> String
987
+ # resp.core_network.network_function_groups #=> Array
988
+ # resp.core_network.network_function_groups[0].name #=> String
989
+ # resp.core_network.network_function_groups[0].edge_locations #=> Array
990
+ # resp.core_network.network_function_groups[0].edge_locations[0] #=> String
991
+ # resp.core_network.network_function_groups[0].segments.send_via #=> Array
992
+ # resp.core_network.network_function_groups[0].segments.send_via[0] #=> String
993
+ # resp.core_network.network_function_groups[0].segments.send_to #=> Array
994
+ # resp.core_network.network_function_groups[0].segments.send_to[0] #=> String
972
995
  # resp.core_network.edges #=> Array
973
996
  # resp.core_network.edges[0].edge_location #=> String
974
997
  # resp.core_network.edges[0].asn #=> Integer
@@ -1338,6 +1361,7 @@ module Aws::NetworkManager
1338
1361
  # resp.site_to_site_vpn_attachment.attachment.resource_arn #=> String
1339
1362
  # resp.site_to_site_vpn_attachment.attachment.attachment_policy_rule_number #=> Integer
1340
1363
  # resp.site_to_site_vpn_attachment.attachment.segment_name #=> String
1364
+ # resp.site_to_site_vpn_attachment.attachment.network_function_group_name #=> String
1341
1365
  # resp.site_to_site_vpn_attachment.attachment.tags #=> Array
1342
1366
  # resp.site_to_site_vpn_attachment.attachment.tags[0].key #=> String
1343
1367
  # resp.site_to_site_vpn_attachment.attachment.tags[0].value #=> String
@@ -1346,6 +1370,11 @@ module Aws::NetworkManager
1346
1370
  # resp.site_to_site_vpn_attachment.attachment.proposed_segment_change.tags[0].value #=> String
1347
1371
  # resp.site_to_site_vpn_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
1348
1372
  # resp.site_to_site_vpn_attachment.attachment.proposed_segment_change.segment_name #=> String
1373
+ # resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.tags #=> Array
1374
+ # resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
1375
+ # resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
1376
+ # resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
1377
+ # resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
1349
1378
  # resp.site_to_site_vpn_attachment.attachment.created_at #=> Time
1350
1379
  # resp.site_to_site_vpn_attachment.attachment.updated_at #=> Time
1351
1380
  # resp.site_to_site_vpn_attachment.vpn_connection_arn #=> String
@@ -1469,6 +1498,7 @@ module Aws::NetworkManager
1469
1498
  # resp.transit_gateway_route_table_attachment.attachment.resource_arn #=> String
1470
1499
  # resp.transit_gateway_route_table_attachment.attachment.attachment_policy_rule_number #=> Integer
1471
1500
  # resp.transit_gateway_route_table_attachment.attachment.segment_name #=> String
1501
+ # resp.transit_gateway_route_table_attachment.attachment.network_function_group_name #=> String
1472
1502
  # resp.transit_gateway_route_table_attachment.attachment.tags #=> Array
1473
1503
  # resp.transit_gateway_route_table_attachment.attachment.tags[0].key #=> String
1474
1504
  # resp.transit_gateway_route_table_attachment.attachment.tags[0].value #=> String
@@ -1477,6 +1507,11 @@ module Aws::NetworkManager
1477
1507
  # resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.tags[0].value #=> String
1478
1508
  # resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
1479
1509
  # resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.segment_name #=> String
1510
+ # resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.tags #=> Array
1511
+ # resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
1512
+ # resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
1513
+ # resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
1514
+ # resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
1480
1515
  # resp.transit_gateway_route_table_attachment.attachment.created_at #=> Time
1481
1516
  # resp.transit_gateway_route_table_attachment.attachment.updated_at #=> Time
1482
1517
  # resp.transit_gateway_route_table_attachment.peering_id #=> String
@@ -1549,6 +1584,7 @@ module Aws::NetworkManager
1549
1584
  # resp.vpc_attachment.attachment.resource_arn #=> String
1550
1585
  # resp.vpc_attachment.attachment.attachment_policy_rule_number #=> Integer
1551
1586
  # resp.vpc_attachment.attachment.segment_name #=> String
1587
+ # resp.vpc_attachment.attachment.network_function_group_name #=> String
1552
1588
  # resp.vpc_attachment.attachment.tags #=> Array
1553
1589
  # resp.vpc_attachment.attachment.tags[0].key #=> String
1554
1590
  # resp.vpc_attachment.attachment.tags[0].value #=> String
@@ -1557,6 +1593,11 @@ module Aws::NetworkManager
1557
1593
  # resp.vpc_attachment.attachment.proposed_segment_change.tags[0].value #=> String
1558
1594
  # resp.vpc_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
1559
1595
  # resp.vpc_attachment.attachment.proposed_segment_change.segment_name #=> String
1596
+ # resp.vpc_attachment.attachment.proposed_network_function_group_change.tags #=> Array
1597
+ # resp.vpc_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
1598
+ # resp.vpc_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
1599
+ # resp.vpc_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
1600
+ # resp.vpc_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
1560
1601
  # resp.vpc_attachment.attachment.created_at #=> Time
1561
1602
  # resp.vpc_attachment.attachment.updated_at #=> Time
1562
1603
  # resp.vpc_attachment.subnet_arns #=> Array
@@ -1600,6 +1641,7 @@ module Aws::NetworkManager
1600
1641
  # resp.attachment.resource_arn #=> String
1601
1642
  # resp.attachment.attachment_policy_rule_number #=> Integer
1602
1643
  # resp.attachment.segment_name #=> String
1644
+ # resp.attachment.network_function_group_name #=> String
1603
1645
  # resp.attachment.tags #=> Array
1604
1646
  # resp.attachment.tags[0].key #=> String
1605
1647
  # resp.attachment.tags[0].value #=> String
@@ -1608,6 +1650,11 @@ module Aws::NetworkManager
1608
1650
  # resp.attachment.proposed_segment_change.tags[0].value #=> String
1609
1651
  # resp.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
1610
1652
  # resp.attachment.proposed_segment_change.segment_name #=> String
1653
+ # resp.attachment.proposed_network_function_group_change.tags #=> Array
1654
+ # resp.attachment.proposed_network_function_group_change.tags[0].key #=> String
1655
+ # resp.attachment.proposed_network_function_group_change.tags[0].value #=> String
1656
+ # resp.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
1657
+ # resp.attachment.proposed_network_function_group_change.network_function_group_name #=> String
1611
1658
  # resp.attachment.created_at #=> Time
1612
1659
  # resp.attachment.updated_at #=> Time
1613
1660
  #
@@ -1741,6 +1788,14 @@ module Aws::NetworkManager
1741
1788
  # resp.core_network.segments[0].edge_locations[0] #=> String
1742
1789
  # resp.core_network.segments[0].shared_segments #=> Array
1743
1790
  # resp.core_network.segments[0].shared_segments[0] #=> String
1791
+ # resp.core_network.network_function_groups #=> Array
1792
+ # resp.core_network.network_function_groups[0].name #=> String
1793
+ # resp.core_network.network_function_groups[0].edge_locations #=> Array
1794
+ # resp.core_network.network_function_groups[0].edge_locations[0] #=> String
1795
+ # resp.core_network.network_function_groups[0].segments.send_via #=> Array
1796
+ # resp.core_network.network_function_groups[0].segments.send_via[0] #=> String
1797
+ # resp.core_network.network_function_groups[0].segments.send_to #=> Array
1798
+ # resp.core_network.network_function_groups[0].segments.send_to[0] #=> String
1744
1799
  # resp.core_network.edges #=> Array
1745
1800
  # resp.core_network.edges[0].edge_location #=> String
1746
1801
  # resp.core_network.edges[0].asn #=> Integer
@@ -2333,6 +2388,7 @@ module Aws::NetworkManager
2333
2388
  # resp.connect_attachment.attachment.resource_arn #=> String
2334
2389
  # resp.connect_attachment.attachment.attachment_policy_rule_number #=> Integer
2335
2390
  # resp.connect_attachment.attachment.segment_name #=> String
2391
+ # resp.connect_attachment.attachment.network_function_group_name #=> String
2336
2392
  # resp.connect_attachment.attachment.tags #=> Array
2337
2393
  # resp.connect_attachment.attachment.tags[0].key #=> String
2338
2394
  # resp.connect_attachment.attachment.tags[0].value #=> String
@@ -2341,6 +2397,11 @@ module Aws::NetworkManager
2341
2397
  # resp.connect_attachment.attachment.proposed_segment_change.tags[0].value #=> String
2342
2398
  # resp.connect_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
2343
2399
  # resp.connect_attachment.attachment.proposed_segment_change.segment_name #=> String
2400
+ # resp.connect_attachment.attachment.proposed_network_function_group_change.tags #=> Array
2401
+ # resp.connect_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
2402
+ # resp.connect_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
2403
+ # resp.connect_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
2404
+ # resp.connect_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
2344
2405
  # resp.connect_attachment.attachment.created_at #=> Time
2345
2406
  # resp.connect_attachment.attachment.updated_at #=> Time
2346
2407
  # resp.connect_attachment.transport_attachment_id #=> String
@@ -2542,6 +2603,14 @@ module Aws::NetworkManager
2542
2603
  # resp.core_network.segments[0].edge_locations[0] #=> String
2543
2604
  # resp.core_network.segments[0].shared_segments #=> Array
2544
2605
  # resp.core_network.segments[0].shared_segments[0] #=> String
2606
+ # resp.core_network.network_function_groups #=> Array
2607
+ # resp.core_network.network_function_groups[0].name #=> String
2608
+ # resp.core_network.network_function_groups[0].edge_locations #=> Array
2609
+ # resp.core_network.network_function_groups[0].edge_locations[0] #=> String
2610
+ # resp.core_network.network_function_groups[0].segments.send_via #=> Array
2611
+ # resp.core_network.network_function_groups[0].segments.send_via[0] #=> String
2612
+ # resp.core_network.network_function_groups[0].segments.send_to #=> Array
2613
+ # resp.core_network.network_function_groups[0].segments.send_to[0] #=> String
2545
2614
  # resp.core_network.edges #=> Array
2546
2615
  # resp.core_network.edges[0].edge_location #=> String
2547
2616
  # resp.core_network.edges[0].asn #=> Integer
@@ -2593,13 +2662,14 @@ module Aws::NetworkManager
2593
2662
  # @example Response structure
2594
2663
  #
2595
2664
  # resp.core_network_change_events #=> Array
2596
- # resp.core_network_change_events[0].type #=> String, one of "CORE_NETWORK_SEGMENT", "CORE_NETWORK_EDGE", "ATTACHMENT_MAPPING", "ATTACHMENT_ROUTE_PROPAGATION", "ATTACHMENT_ROUTE_STATIC", "CORE_NETWORK_CONFIGURATION", "SEGMENTS_CONFIGURATION", "SEGMENT_ACTIONS_CONFIGURATION", "ATTACHMENT_POLICIES_CONFIGURATION"
2665
+ # resp.core_network_change_events[0].type #=> String, one of "CORE_NETWORK_SEGMENT", "NETWORK_FUNCTION_GROUP", "CORE_NETWORK_EDGE", "ATTACHMENT_MAPPING", "ATTACHMENT_ROUTE_PROPAGATION", "ATTACHMENT_ROUTE_STATIC", "CORE_NETWORK_CONFIGURATION", "SEGMENTS_CONFIGURATION", "SEGMENT_ACTIONS_CONFIGURATION", "ATTACHMENT_POLICIES_CONFIGURATION"
2597
2666
  # resp.core_network_change_events[0].action #=> String, one of "ADD", "MODIFY", "REMOVE"
2598
2667
  # resp.core_network_change_events[0].identifier_path #=> String
2599
2668
  # resp.core_network_change_events[0].event_time #=> Time
2600
2669
  # resp.core_network_change_events[0].status #=> String, one of "NOT_STARTED", "IN_PROGRESS", "COMPLETE", "FAILED"
2601
2670
  # resp.core_network_change_events[0].values.edge_location #=> String
2602
2671
  # resp.core_network_change_events[0].values.segment_name #=> String
2672
+ # resp.core_network_change_events[0].values.network_function_group_name #=> String
2603
2673
  # resp.core_network_change_events[0].values.attachment_id #=> String
2604
2674
  # resp.core_network_change_events[0].values.cidr #=> String
2605
2675
  # resp.next_token #=> String
@@ -2647,10 +2717,11 @@ module Aws::NetworkManager
2647
2717
  # @example Response structure
2648
2718
  #
2649
2719
  # resp.core_network_changes #=> Array
2650
- # resp.core_network_changes[0].type #=> String, one of "CORE_NETWORK_SEGMENT", "CORE_NETWORK_EDGE", "ATTACHMENT_MAPPING", "ATTACHMENT_ROUTE_PROPAGATION", "ATTACHMENT_ROUTE_STATIC", "CORE_NETWORK_CONFIGURATION", "SEGMENTS_CONFIGURATION", "SEGMENT_ACTIONS_CONFIGURATION", "ATTACHMENT_POLICIES_CONFIGURATION"
2720
+ # resp.core_network_changes[0].type #=> String, one of "CORE_NETWORK_SEGMENT", "NETWORK_FUNCTION_GROUP", "CORE_NETWORK_EDGE", "ATTACHMENT_MAPPING", "ATTACHMENT_ROUTE_PROPAGATION", "ATTACHMENT_ROUTE_STATIC", "CORE_NETWORK_CONFIGURATION", "SEGMENTS_CONFIGURATION", "SEGMENT_ACTIONS_CONFIGURATION", "ATTACHMENT_POLICIES_CONFIGURATION"
2651
2721
  # resp.core_network_changes[0].action #=> String, one of "ADD", "MODIFY", "REMOVE"
2652
2722
  # resp.core_network_changes[0].identifier #=> String
2653
2723
  # resp.core_network_changes[0].previous_values.segment_name #=> String
2724
+ # resp.core_network_changes[0].previous_values.network_function_group_name #=> String
2654
2725
  # resp.core_network_changes[0].previous_values.edge_locations #=> Array
2655
2726
  # resp.core_network_changes[0].previous_values.edge_locations[0] #=> String
2656
2727
  # resp.core_network_changes[0].previous_values.asn #=> Integer
@@ -2660,7 +2731,20 @@ module Aws::NetworkManager
2660
2731
  # resp.core_network_changes[0].previous_values.inside_cidr_blocks[0] #=> String
2661
2732
  # resp.core_network_changes[0].previous_values.shared_segments #=> Array
2662
2733
  # resp.core_network_changes[0].previous_values.shared_segments[0] #=> String
2734
+ # resp.core_network_changes[0].previous_values.service_insertion_actions #=> Array
2735
+ # resp.core_network_changes[0].previous_values.service_insertion_actions[0].action #=> String, one of "send-via", "send-to"
2736
+ # resp.core_network_changes[0].previous_values.service_insertion_actions[0].mode #=> String, one of "dual-hop", "single-hop"
2737
+ # resp.core_network_changes[0].previous_values.service_insertion_actions[0].when_sent_to.when_sent_to_segments_list #=> Array
2738
+ # resp.core_network_changes[0].previous_values.service_insertion_actions[0].when_sent_to.when_sent_to_segments_list[0] #=> String
2739
+ # resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.network_function_groups #=> Array
2740
+ # resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.network_function_groups[0].name #=> String
2741
+ # resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.with_edge_overrides #=> Array
2742
+ # resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.with_edge_overrides[0].edge_sets #=> Array
2743
+ # resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.with_edge_overrides[0].edge_sets[0] #=> Array
2744
+ # resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.with_edge_overrides[0].edge_sets[0][0] #=> String
2745
+ # resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.with_edge_overrides[0].use_edge #=> String
2663
2746
  # resp.core_network_changes[0].new_values.segment_name #=> String
2747
+ # resp.core_network_changes[0].new_values.network_function_group_name #=> String
2664
2748
  # resp.core_network_changes[0].new_values.edge_locations #=> Array
2665
2749
  # resp.core_network_changes[0].new_values.edge_locations[0] #=> String
2666
2750
  # resp.core_network_changes[0].new_values.asn #=> Integer
@@ -2670,6 +2754,18 @@ module Aws::NetworkManager
2670
2754
  # resp.core_network_changes[0].new_values.inside_cidr_blocks[0] #=> String
2671
2755
  # resp.core_network_changes[0].new_values.shared_segments #=> Array
2672
2756
  # resp.core_network_changes[0].new_values.shared_segments[0] #=> String
2757
+ # resp.core_network_changes[0].new_values.service_insertion_actions #=> Array
2758
+ # resp.core_network_changes[0].new_values.service_insertion_actions[0].action #=> String, one of "send-via", "send-to"
2759
+ # resp.core_network_changes[0].new_values.service_insertion_actions[0].mode #=> String, one of "dual-hop", "single-hop"
2760
+ # resp.core_network_changes[0].new_values.service_insertion_actions[0].when_sent_to.when_sent_to_segments_list #=> Array
2761
+ # resp.core_network_changes[0].new_values.service_insertion_actions[0].when_sent_to.when_sent_to_segments_list[0] #=> String
2762
+ # resp.core_network_changes[0].new_values.service_insertion_actions[0].via.network_function_groups #=> Array
2763
+ # resp.core_network_changes[0].new_values.service_insertion_actions[0].via.network_function_groups[0].name #=> String
2764
+ # resp.core_network_changes[0].new_values.service_insertion_actions[0].via.with_edge_overrides #=> Array
2765
+ # resp.core_network_changes[0].new_values.service_insertion_actions[0].via.with_edge_overrides[0].edge_sets #=> Array
2766
+ # resp.core_network_changes[0].new_values.service_insertion_actions[0].via.with_edge_overrides[0].edge_sets[0] #=> Array
2767
+ # resp.core_network_changes[0].new_values.service_insertion_actions[0].via.with_edge_overrides[0].edge_sets[0][0] #=> String
2768
+ # resp.core_network_changes[0].new_values.service_insertion_actions[0].via.with_edge_overrides[0].use_edge #=> String
2673
2769
  # resp.core_network_changes[0].identifier_path #=> String
2674
2770
  # resp.next_token #=> String
2675
2771
  #
@@ -2995,12 +3091,20 @@ module Aws::NetworkManager
2995
3091
  #
2996
3092
  # The following are the supported resource types for Network Manager:
2997
3093
  #
3094
+ # * `attachment`
3095
+ #
3096
+ # * `connect-peer`
3097
+ #
2998
3098
  # * `connection`
2999
3099
  #
3100
+ # * `core-network`
3101
+ #
3000
3102
  # * `device`
3001
3103
  #
3002
3104
  # * `link`
3003
3105
  #
3106
+ # * `peering`
3107
+ #
3004
3108
  # * `site`
3005
3109
  #
3006
3110
  # The following are the supported resource types for Amazon VPC:
@@ -3086,12 +3190,20 @@ module Aws::NetworkManager
3086
3190
  #
3087
3191
  # The following are the supported resource types for Network Manager:
3088
3192
  #
3193
+ # * `attachment`
3194
+ #
3195
+ # * `connect-peer`
3196
+ #
3089
3197
  # * `connection`
3090
3198
  #
3199
+ # * `core-network`
3200
+ #
3091
3201
  # * `device`
3092
3202
  #
3093
3203
  # * `link`
3094
3204
  #
3205
+ # * `peering`
3206
+ #
3095
3207
  # * `site`
3096
3208
  #
3097
3209
  # The following are the supported resource types for Amazon VPC:
@@ -3180,54 +3292,43 @@ module Aws::NetworkManager
3180
3292
  #
3181
3293
  # The following are the supported resource types for Direct Connect:
3182
3294
  #
3183
- # * `dxcon` - The definition model is [Connection][1].
3295
+ # * `dxcon`
3184
3296
  #
3185
- # * `dx-gateway` - The definition model is [DirectConnectGateway][2].
3297
+ # * `dx-gateway`
3186
3298
  #
3187
- # * `dx-vif` - The definition model is [VirtualInterface][3].
3299
+ # * `dx-vif`
3188
3300
  #
3189
3301
  # The following are the supported resource types for Network Manager:
3190
3302
  #
3191
- # * `connection` - The definition model is [Connection][4].
3303
+ # * `attachment`
3192
3304
  #
3193
- # * `device` - The definition model is [Device][5].
3305
+ # * `connect-peer`
3194
3306
  #
3195
- # * `link` - The definition model is [Link][6].
3307
+ # * `connection`
3196
3308
  #
3197
- # * `site` - The definition model is [Site][7].
3309
+ # * `core-network`
3198
3310
  #
3199
- # The following are the supported resource types for Amazon VPC:
3311
+ # * `device`
3200
3312
  #
3201
- # * `customer-gateway` - The definition model is [CustomerGateway][8].
3313
+ # * `link`
3202
3314
  #
3203
- # * `transit-gateway` - The definition model is [TransitGateway][9].
3315
+ # * `peering`
3204
3316
  #
3205
- # * `transit-gateway-attachment` - The definition model is
3206
- # [TransitGatewayAttachment][10].
3317
+ # * `site`
3207
3318
  #
3208
- # * `transit-gateway-connect-peer` - The definition model is
3209
- # [TransitGatewayConnectPeer][11].
3319
+ # The following are the supported resource types for Amazon VPC:
3210
3320
  #
3211
- # * `transit-gateway-route-table` - The definition model is
3212
- # [TransitGatewayRouteTable][12].
3321
+ # * `customer-gateway`
3213
3322
  #
3214
- # * `vpn-connection` - The definition model is [VpnConnection][13].
3323
+ # * `transit-gateway`
3324
+ #
3325
+ # * `transit-gateway-attachment`
3215
3326
  #
3327
+ # * `transit-gateway-connect-peer`
3216
3328
  #
3329
+ # * `transit-gateway-route-table`
3217
3330
  #
3218
- # [1]: https://docs.aws.amazon.com/directconnect/latest/APIReference/API_Connection.html
3219
- # [2]: https://docs.aws.amazon.com/directconnect/latest/APIReference/API_DirectConnectGateway.html
3220
- # [3]: https://docs.aws.amazon.com/directconnect/latest/APIReference/API_VirtualInterface.html
3221
- # [4]: https://docs.aws.amazon.com/networkmanager/latest/APIReference/API_Connection.html
3222
- # [5]: https://docs.aws.amazon.com/networkmanager/latest/APIReference/API_Device.html
3223
- # [6]: https://docs.aws.amazon.com/networkmanager/latest/APIReference/API_Link.html
3224
- # [7]: https://docs.aws.amazon.com/networkmanager/latest/APIReference/API_Site.html
3225
- # [8]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CustomerGateway.html
3226
- # [9]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TransitGateway.html
3227
- # [10]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TransitGatewayAttachment.html
3228
- # [11]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TransitGatewayConnectPeer.html
3229
- # [12]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_TransitGatewayRouteTable.html
3230
- # [13]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_VpnConnection.html
3331
+ # * `vpn-connection`
3231
3332
  #
3232
3333
  # @option params [String] :resource_arn
3233
3334
  # The ARN of the resource.
@@ -3341,6 +3442,11 @@ module Aws::NetworkManager
3341
3442
  # segment_name: "ConstrainedString",
3342
3443
  # edge_location: "ExternalRegionCode",
3343
3444
  # },
3445
+ # core_network_network_function_group: {
3446
+ # core_network_id: "CoreNetworkId",
3447
+ # network_function_group_name: "ConstrainedString",
3448
+ # edge_location: "ExternalRegionCode",
3449
+ # },
3344
3450
  # },
3345
3451
  # exact_cidr_matches: ["ConstrainedString"],
3346
3452
  # longest_prefix_matches: ["ConstrainedString"],
@@ -3360,7 +3466,7 @@ module Aws::NetworkManager
3360
3466
  # resp.core_network_segment_edge.core_network_id #=> String
3361
3467
  # resp.core_network_segment_edge.segment_name #=> String
3362
3468
  # resp.core_network_segment_edge.edge_location #=> String
3363
- # resp.route_table_type #=> String, one of "TRANSIT_GATEWAY_ROUTE_TABLE", "CORE_NETWORK_SEGMENT"
3469
+ # resp.route_table_type #=> String, one of "TRANSIT_GATEWAY_ROUTE_TABLE", "CORE_NETWORK_SEGMENT", "NETWORK_FUNCTION_GROUP"
3364
3470
  # resp.route_table_timestamp #=> Time
3365
3471
  # resp.network_routes #=> Array
3366
3472
  # resp.network_routes[0].destination_cidr_block #=> String
@@ -3368,6 +3474,7 @@ module Aws::NetworkManager
3368
3474
  # resp.network_routes[0].destinations[0].core_network_attachment_id #=> String
3369
3475
  # resp.network_routes[0].destinations[0].transit_gateway_attachment_id #=> String
3370
3476
  # resp.network_routes[0].destinations[0].segment_name #=> String
3477
+ # resp.network_routes[0].destinations[0].network_function_group_name #=> String
3371
3478
  # resp.network_routes[0].destinations[0].edge_location #=> String
3372
3479
  # resp.network_routes[0].destinations[0].resource_type #=> String
3373
3480
  # resp.network_routes[0].destinations[0].resource_id #=> String
@@ -3402,38 +3509,12 @@ module Aws::NetworkManager
3402
3509
  # The Amazon Web Services account ID.
3403
3510
  #
3404
3511
  # @option params [String] :resource_type
3405
- # The resource type.
3512
+ # The resource type. The following are the supported resource types:
3406
3513
  #
3407
- # The following are the supported resource types for Direct Connect:
3408
- #
3409
- # * `dxcon`
3410
- #
3411
- # * `dx-gateway`
3412
- #
3413
- # * `dx-vif`
3414
- #
3415
- # The following are the supported resource types for Network Manager:
3416
- #
3417
- # * `connection`
3418
- #
3419
- # * `device`
3420
- #
3421
- # * `link`
3422
- #
3423
- # * `site`
3424
- #
3425
- # The following are the supported resource types for Amazon VPC:
3426
- #
3427
- # * `customer-gateway`
3428
- #
3429
- # * `transit-gateway`
3430
- #
3431
- # * `transit-gateway-attachment`
3514
+ # * `connect-peer`
3432
3515
  #
3433
3516
  # * `transit-gateway-connect-peer`
3434
3517
  #
3435
- # * `transit-gateway-route-table`
3436
- #
3437
3518
  # * `vpn-connection`
3438
3519
  #
3439
3520
  # @option params [String] :resource_arn
@@ -3616,6 +3697,7 @@ module Aws::NetworkManager
3616
3697
  # resp.site_to_site_vpn_attachment.attachment.resource_arn #=> String
3617
3698
  # resp.site_to_site_vpn_attachment.attachment.attachment_policy_rule_number #=> Integer
3618
3699
  # resp.site_to_site_vpn_attachment.attachment.segment_name #=> String
3700
+ # resp.site_to_site_vpn_attachment.attachment.network_function_group_name #=> String
3619
3701
  # resp.site_to_site_vpn_attachment.attachment.tags #=> Array
3620
3702
  # resp.site_to_site_vpn_attachment.attachment.tags[0].key #=> String
3621
3703
  # resp.site_to_site_vpn_attachment.attachment.tags[0].value #=> String
@@ -3624,6 +3706,11 @@ module Aws::NetworkManager
3624
3706
  # resp.site_to_site_vpn_attachment.attachment.proposed_segment_change.tags[0].value #=> String
3625
3707
  # resp.site_to_site_vpn_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
3626
3708
  # resp.site_to_site_vpn_attachment.attachment.proposed_segment_change.segment_name #=> String
3709
+ # resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.tags #=> Array
3710
+ # resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
3711
+ # resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
3712
+ # resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
3713
+ # resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
3627
3714
  # resp.site_to_site_vpn_attachment.attachment.created_at #=> Time
3628
3715
  # resp.site_to_site_vpn_attachment.attachment.updated_at #=> Time
3629
3716
  # resp.site_to_site_vpn_attachment.vpn_connection_arn #=> String
@@ -3861,6 +3948,7 @@ module Aws::NetworkManager
3861
3948
  # resp.transit_gateway_route_table_attachment.attachment.resource_arn #=> String
3862
3949
  # resp.transit_gateway_route_table_attachment.attachment.attachment_policy_rule_number #=> Integer
3863
3950
  # resp.transit_gateway_route_table_attachment.attachment.segment_name #=> String
3951
+ # resp.transit_gateway_route_table_attachment.attachment.network_function_group_name #=> String
3864
3952
  # resp.transit_gateway_route_table_attachment.attachment.tags #=> Array
3865
3953
  # resp.transit_gateway_route_table_attachment.attachment.tags[0].key #=> String
3866
3954
  # resp.transit_gateway_route_table_attachment.attachment.tags[0].value #=> String
@@ -3869,6 +3957,11 @@ module Aws::NetworkManager
3869
3957
  # resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.tags[0].value #=> String
3870
3958
  # resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
3871
3959
  # resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.segment_name #=> String
3960
+ # resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.tags #=> Array
3961
+ # resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
3962
+ # resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
3963
+ # resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
3964
+ # resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
3872
3965
  # resp.transit_gateway_route_table_attachment.attachment.created_at #=> Time
3873
3966
  # resp.transit_gateway_route_table_attachment.attachment.updated_at #=> Time
3874
3967
  # resp.transit_gateway_route_table_attachment.peering_id #=> String
@@ -3910,6 +4003,7 @@ module Aws::NetworkManager
3910
4003
  # resp.vpc_attachment.attachment.resource_arn #=> String
3911
4004
  # resp.vpc_attachment.attachment.attachment_policy_rule_number #=> Integer
3912
4005
  # resp.vpc_attachment.attachment.segment_name #=> String
4006
+ # resp.vpc_attachment.attachment.network_function_group_name #=> String
3913
4007
  # resp.vpc_attachment.attachment.tags #=> Array
3914
4008
  # resp.vpc_attachment.attachment.tags[0].key #=> String
3915
4009
  # resp.vpc_attachment.attachment.tags[0].value #=> String
@@ -3918,6 +4012,11 @@ module Aws::NetworkManager
3918
4012
  # resp.vpc_attachment.attachment.proposed_segment_change.tags[0].value #=> String
3919
4013
  # resp.vpc_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
3920
4014
  # resp.vpc_attachment.attachment.proposed_segment_change.segment_name #=> String
4015
+ # resp.vpc_attachment.attachment.proposed_network_function_group_change.tags #=> Array
4016
+ # resp.vpc_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
4017
+ # resp.vpc_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
4018
+ # resp.vpc_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
4019
+ # resp.vpc_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
3921
4020
  # resp.vpc_attachment.attachment.created_at #=> Time
3922
4021
  # resp.vpc_attachment.attachment.updated_at #=> Time
3923
4022
  # resp.vpc_attachment.subnet_arns #=> Array
@@ -3985,6 +4084,7 @@ module Aws::NetworkManager
3985
4084
  # resp.attachments[0].resource_arn #=> String
3986
4085
  # resp.attachments[0].attachment_policy_rule_number #=> Integer
3987
4086
  # resp.attachments[0].segment_name #=> String
4087
+ # resp.attachments[0].network_function_group_name #=> String
3988
4088
  # resp.attachments[0].tags #=> Array
3989
4089
  # resp.attachments[0].tags[0].key #=> String
3990
4090
  # resp.attachments[0].tags[0].value #=> String
@@ -3993,6 +4093,11 @@ module Aws::NetworkManager
3993
4093
  # resp.attachments[0].proposed_segment_change.tags[0].value #=> String
3994
4094
  # resp.attachments[0].proposed_segment_change.attachment_policy_rule_number #=> Integer
3995
4095
  # resp.attachments[0].proposed_segment_change.segment_name #=> String
4096
+ # resp.attachments[0].proposed_network_function_group_change.tags #=> Array
4097
+ # resp.attachments[0].proposed_network_function_group_change.tags[0].key #=> String
4098
+ # resp.attachments[0].proposed_network_function_group_change.tags[0].value #=> String
4099
+ # resp.attachments[0].proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
4100
+ # resp.attachments[0].proposed_network_function_group_change.network_function_group_name #=> String
3996
4101
  # resp.attachments[0].created_at #=> Time
3997
4102
  # resp.attachments[0].updated_at #=> Time
3998
4103
  # resp.next_token #=> String
@@ -4451,6 +4556,7 @@ module Aws::NetworkManager
4451
4556
  # resp.attachment.resource_arn #=> String
4452
4557
  # resp.attachment.attachment_policy_rule_number #=> Integer
4453
4558
  # resp.attachment.segment_name #=> String
4559
+ # resp.attachment.network_function_group_name #=> String
4454
4560
  # resp.attachment.tags #=> Array
4455
4561
  # resp.attachment.tags[0].key #=> String
4456
4562
  # resp.attachment.tags[0].value #=> String
@@ -4459,6 +4565,11 @@ module Aws::NetworkManager
4459
4565
  # resp.attachment.proposed_segment_change.tags[0].value #=> String
4460
4566
  # resp.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
4461
4567
  # resp.attachment.proposed_segment_change.segment_name #=> String
4568
+ # resp.attachment.proposed_network_function_group_change.tags #=> Array
4569
+ # resp.attachment.proposed_network_function_group_change.tags[0].key #=> String
4570
+ # resp.attachment.proposed_network_function_group_change.tags[0].value #=> String
4571
+ # resp.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
4572
+ # resp.attachment.proposed_network_function_group_change.network_function_group_name #=> String
4462
4573
  # resp.attachment.created_at #=> Time
4463
4574
  # resp.attachment.updated_at #=> Time
4464
4575
  #
@@ -4794,6 +4905,14 @@ module Aws::NetworkManager
4794
4905
  # resp.core_network.segments[0].edge_locations[0] #=> String
4795
4906
  # resp.core_network.segments[0].shared_segments #=> Array
4796
4907
  # resp.core_network.segments[0].shared_segments[0] #=> String
4908
+ # resp.core_network.network_function_groups #=> Array
4909
+ # resp.core_network.network_function_groups[0].name #=> String
4910
+ # resp.core_network.network_function_groups[0].edge_locations #=> Array
4911
+ # resp.core_network.network_function_groups[0].edge_locations[0] #=> String
4912
+ # resp.core_network.network_function_groups[0].segments.send_via #=> Array
4913
+ # resp.core_network.network_function_groups[0].segments.send_via[0] #=> String
4914
+ # resp.core_network.network_function_groups[0].segments.send_to #=> Array
4915
+ # resp.core_network.network_function_groups[0].segments.send_to[0] #=> String
4797
4916
  # resp.core_network.edges #=> Array
4798
4917
  # resp.core_network.edges[0].edge_location #=> String
4799
4918
  # resp.core_network.edges[0].asn #=> Integer
@@ -5171,6 +5290,7 @@ module Aws::NetworkManager
5171
5290
  # resp.vpc_attachment.attachment.resource_arn #=> String
5172
5291
  # resp.vpc_attachment.attachment.attachment_policy_rule_number #=> Integer
5173
5292
  # resp.vpc_attachment.attachment.segment_name #=> String
5293
+ # resp.vpc_attachment.attachment.network_function_group_name #=> String
5174
5294
  # resp.vpc_attachment.attachment.tags #=> Array
5175
5295
  # resp.vpc_attachment.attachment.tags[0].key #=> String
5176
5296
  # resp.vpc_attachment.attachment.tags[0].value #=> String
@@ -5179,6 +5299,11 @@ module Aws::NetworkManager
5179
5299
  # resp.vpc_attachment.attachment.proposed_segment_change.tags[0].value #=> String
5180
5300
  # resp.vpc_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
5181
5301
  # resp.vpc_attachment.attachment.proposed_segment_change.segment_name #=> String
5302
+ # resp.vpc_attachment.attachment.proposed_network_function_group_change.tags #=> Array
5303
+ # resp.vpc_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
5304
+ # resp.vpc_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
5305
+ # resp.vpc_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
5306
+ # resp.vpc_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
5182
5307
  # resp.vpc_attachment.attachment.created_at #=> Time
5183
5308
  # resp.vpc_attachment.attachment.updated_at #=> Time
5184
5309
  # resp.vpc_attachment.subnet_arns #=> Array
@@ -5208,7 +5333,7 @@ module Aws::NetworkManager
5208
5333
  params: params,
5209
5334
  config: config)
5210
5335
  context[:gem_name] = 'aws-sdk-networkmanager'
5211
- context[:gem_version] = '1.44.0'
5336
+ context[:gem_version] = '1.45.0'
5212
5337
  Seahorse::Client::Request.new(handlers, context)
5213
5338
  end
5214
5339