aws-sdk-networkmanager 1.18.0 → 1.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,8 +16,8 @@ module Aws::NetworkManager
16
16
  # data as a hash:
17
17
  #
18
18
  # {
19
- # zone: "String",
20
- # subnet_arn: "String",
19
+ # zone: "ConstrainedString",
20
+ # subnet_arn: "SubnetArn",
21
21
  # }
22
22
  #
23
23
  # @!attribute [rw] zone
@@ -39,6 +39,37 @@ module Aws::NetworkManager
39
39
  include Aws::Structure
40
40
  end
41
41
 
42
+ # @note When making an API call, you may pass AcceptAttachmentRequest
43
+ # data as a hash:
44
+ #
45
+ # {
46
+ # attachment_id: "AttachmentId", # required
47
+ # }
48
+ #
49
+ # @!attribute [rw] attachment_id
50
+ # The ID of the attachment.
51
+ # @return [String]
52
+ #
53
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/AcceptAttachmentRequest AWS API Documentation
54
+ #
55
+ class AcceptAttachmentRequest < Struct.new(
56
+ :attachment_id)
57
+ SENSITIVE = []
58
+ include Aws::Structure
59
+ end
60
+
61
+ # @!attribute [rw] attachment
62
+ # The response to the attachment request.
63
+ # @return [Types::Attachment]
64
+ #
65
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/AcceptAttachmentResponse AWS API Documentation
66
+ #
67
+ class AcceptAttachmentResponse < Struct.new(
68
+ :attachment)
69
+ SENSITIVE = []
70
+ include Aws::Structure
71
+ end
72
+
42
73
  # You do not have sufficient access to perform this action.
43
74
  #
44
75
  # @!attribute [rw] message
@@ -52,14 +83,63 @@ module Aws::NetworkManager
52
83
  include Aws::Structure
53
84
  end
54
85
 
86
+ # @note When making an API call, you may pass AssociateConnectPeerRequest
87
+ # data as a hash:
88
+ #
89
+ # {
90
+ # global_network_id: "GlobalNetworkId", # required
91
+ # connect_peer_id: "ConnectPeerId", # required
92
+ # device_id: "DeviceId", # required
93
+ # link_id: "LinkId",
94
+ # }
95
+ #
96
+ # @!attribute [rw] global_network_id
97
+ # The ID of your global network.
98
+ # @return [String]
99
+ #
100
+ # @!attribute [rw] connect_peer_id
101
+ # The ID of the Connect peer.
102
+ # @return [String]
103
+ #
104
+ # @!attribute [rw] device_id
105
+ # The ID of the device.
106
+ # @return [String]
107
+ #
108
+ # @!attribute [rw] link_id
109
+ # The ID of the link.
110
+ # @return [String]
111
+ #
112
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/AssociateConnectPeerRequest AWS API Documentation
113
+ #
114
+ class AssociateConnectPeerRequest < Struct.new(
115
+ :global_network_id,
116
+ :connect_peer_id,
117
+ :device_id,
118
+ :link_id)
119
+ SENSITIVE = []
120
+ include Aws::Structure
121
+ end
122
+
123
+ # @!attribute [rw] connect_peer_association
124
+ # The response to the Connect peer request.
125
+ # @return [Types::ConnectPeerAssociation]
126
+ #
127
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/AssociateConnectPeerResponse AWS API Documentation
128
+ #
129
+ class AssociateConnectPeerResponse < Struct.new(
130
+ :connect_peer_association)
131
+ SENSITIVE = []
132
+ include Aws::Structure
133
+ end
134
+
55
135
  # @note When making an API call, you may pass AssociateCustomerGatewayRequest
56
136
  # data as a hash:
57
137
  #
58
138
  # {
59
- # customer_gateway_arn: "String", # required
60
- # global_network_id: "String", # required
61
- # device_id: "String", # required
62
- # link_id: "String",
139
+ # customer_gateway_arn: "CustomerGatewayArn", # required
140
+ # global_network_id: "GlobalNetworkId", # required
141
+ # device_id: "DeviceId", # required
142
+ # link_id: "LinkId",
63
143
  # }
64
144
  #
65
145
  # @!attribute [rw] customer_gateway_arn
@@ -105,9 +185,9 @@ module Aws::NetworkManager
105
185
  # data as a hash:
106
186
  #
107
187
  # {
108
- # global_network_id: "String", # required
109
- # device_id: "String", # required
110
- # link_id: "String", # required
188
+ # global_network_id: "GlobalNetworkId", # required
189
+ # device_id: "DeviceId", # required
190
+ # link_id: "LinkId", # required
111
191
  # }
112
192
  #
113
193
  # @!attribute [rw] global_network_id
@@ -148,10 +228,10 @@ module Aws::NetworkManager
148
228
  # data as a hash:
149
229
  #
150
230
  # {
151
- # global_network_id: "String", # required
152
- # transit_gateway_connect_peer_arn: "String", # required
153
- # device_id: "String", # required
154
- # link_id: "String",
231
+ # global_network_id: "GlobalNetworkId", # required
232
+ # transit_gateway_connect_peer_arn: "TransitGatewayConnectPeerArn", # required
233
+ # device_id: "DeviceId", # required
234
+ # link_id: "LinkId",
155
235
  # }
156
236
  #
157
237
  # @!attribute [rw] global_network_id
@@ -193,6 +273,85 @@ module Aws::NetworkManager
193
273
  include Aws::Structure
194
274
  end
195
275
 
276
+ # Describes a core network attachment.
277
+ #
278
+ # @!attribute [rw] core_network_id
279
+ # A core network ID.
280
+ # @return [String]
281
+ #
282
+ # @!attribute [rw] core_network_arn
283
+ # The ARN of a core network.
284
+ # @return [String]
285
+ #
286
+ # @!attribute [rw] attachment_id
287
+ # The ID of the attachment.
288
+ # @return [String]
289
+ #
290
+ # @!attribute [rw] owner_account_id
291
+ # The ID of the attachment account owner.
292
+ # @return [String]
293
+ #
294
+ # @!attribute [rw] attachment_type
295
+ # The type of attachment.
296
+ # @return [String]
297
+ #
298
+ # @!attribute [rw] state
299
+ # The state of the attachment.
300
+ # @return [String]
301
+ #
302
+ # @!attribute [rw] edge_location
303
+ # The Region where the edge is located.
304
+ # @return [String]
305
+ #
306
+ # @!attribute [rw] resource_arn
307
+ # The attachment resource ARN.
308
+ # @return [String]
309
+ #
310
+ # @!attribute [rw] attachment_policy_rule_number
311
+ # The policy rule number associated with the attachment.
312
+ # @return [Integer]
313
+ #
314
+ # @!attribute [rw] segment_name
315
+ # The name of the segment attachment.
316
+ # @return [String]
317
+ #
318
+ # @!attribute [rw] tags
319
+ # The tags associated with the attachment.
320
+ # @return [Array<Types::Tag>]
321
+ #
322
+ # @!attribute [rw] proposed_segment_change
323
+ # The attachment to move from one segment to another.
324
+ # @return [Types::ProposedSegmentChange]
325
+ #
326
+ # @!attribute [rw] created_at
327
+ # The timestamp when the attachment was created.
328
+ # @return [Time]
329
+ #
330
+ # @!attribute [rw] updated_at
331
+ # The timestamp when the attachment was last updated.
332
+ # @return [Time]
333
+ #
334
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/Attachment AWS API Documentation
335
+ #
336
+ class Attachment < Struct.new(
337
+ :core_network_id,
338
+ :core_network_arn,
339
+ :attachment_id,
340
+ :owner_account_id,
341
+ :attachment_type,
342
+ :state,
343
+ :edge_location,
344
+ :resource_arn,
345
+ :attachment_policy_rule_number,
346
+ :segment_name,
347
+ :tags,
348
+ :proposed_segment_change,
349
+ :created_at,
350
+ :updated_at)
351
+ SENSITIVE = []
352
+ include Aws::Structure
353
+ end
354
+
196
355
  # Describes bandwidth information.
197
356
  #
198
357
  # @note When making an API call, you may pass Bandwidth
@@ -220,6 +379,27 @@ module Aws::NetworkManager
220
379
  include Aws::Structure
221
380
  end
222
381
 
382
+ # Describes the BGP options.
383
+ #
384
+ # @note When making an API call, you may pass BgpOptions
385
+ # data as a hash:
386
+ #
387
+ # {
388
+ # peer_asn: 1,
389
+ # }
390
+ #
391
+ # @!attribute [rw] peer_asn
392
+ # The Peer ASN of the BGP.
393
+ # @return [Integer]
394
+ #
395
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/BgpOptions AWS API Documentation
396
+ #
397
+ class BgpOptions < Struct.new(
398
+ :peer_asn)
399
+ SENSITIVE = []
400
+ include Aws::Structure
401
+ end
402
+
223
403
  # There was a conflict processing the request. Updating or deleting the
224
404
  # resource can cause an inconsistent state.
225
405
  #
@@ -244,6 +424,241 @@ module Aws::NetworkManager
244
424
  include Aws::Structure
245
425
  end
246
426
 
427
+ # Describes a core network Connect attachment.
428
+ #
429
+ # @!attribute [rw] attachment
430
+ # The attachment details.
431
+ # @return [Types::Attachment]
432
+ #
433
+ # @!attribute [rw] transport_attachment_id
434
+ # The ID of the transport attachment.
435
+ # @return [String]
436
+ #
437
+ # @!attribute [rw] options
438
+ # Options for connecting an attachment.
439
+ # @return [Types::ConnectAttachmentOptions]
440
+ #
441
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectAttachment AWS API Documentation
442
+ #
443
+ class ConnectAttachment < Struct.new(
444
+ :attachment,
445
+ :transport_attachment_id,
446
+ :options)
447
+ SENSITIVE = []
448
+ include Aws::Structure
449
+ end
450
+
451
+ # Describes a core network Connect attachment options.
452
+ #
453
+ # @note When making an API call, you may pass ConnectAttachmentOptions
454
+ # data as a hash:
455
+ #
456
+ # {
457
+ # protocol: "GRE", # accepts GRE
458
+ # }
459
+ #
460
+ # @!attribute [rw] protocol
461
+ # The protocol used for the attachment connection.
462
+ # @return [String]
463
+ #
464
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectAttachmentOptions AWS API Documentation
465
+ #
466
+ class ConnectAttachmentOptions < Struct.new(
467
+ :protocol)
468
+ SENSITIVE = []
469
+ include Aws::Structure
470
+ end
471
+
472
+ # Describes a core network Connect peer.
473
+ #
474
+ # @!attribute [rw] core_network_id
475
+ # The ID of a core network.
476
+ # @return [String]
477
+ #
478
+ # @!attribute [rw] connect_attachment_id
479
+ # The ID of the attachment to connect.
480
+ # @return [String]
481
+ #
482
+ # @!attribute [rw] connect_peer_id
483
+ # The ID of the Connect peer.
484
+ # @return [String]
485
+ #
486
+ # @!attribute [rw] edge_location
487
+ # The Connect peer Regions where edges are located.
488
+ # @return [String]
489
+ #
490
+ # @!attribute [rw] state
491
+ # The state of the Connect peer.
492
+ # @return [String]
493
+ #
494
+ # @!attribute [rw] created_at
495
+ # The timestamp when the Connect peer was created.
496
+ # @return [Time]
497
+ #
498
+ # @!attribute [rw] configuration
499
+ # The configuration of the Connect peer.
500
+ # @return [Types::ConnectPeerConfiguration]
501
+ #
502
+ # @!attribute [rw] tags
503
+ # The tags associated with the Connect peer.
504
+ # @return [Array<Types::Tag>]
505
+ #
506
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectPeer AWS API Documentation
507
+ #
508
+ class ConnectPeer < Struct.new(
509
+ :core_network_id,
510
+ :connect_attachment_id,
511
+ :connect_peer_id,
512
+ :edge_location,
513
+ :state,
514
+ :created_at,
515
+ :configuration,
516
+ :tags)
517
+ SENSITIVE = []
518
+ include Aws::Structure
519
+ end
520
+
521
+ # Describes a core network Connect peer association.
522
+ #
523
+ # @!attribute [rw] connect_peer_id
524
+ # The ID of the Connect peer.
525
+ # @return [String]
526
+ #
527
+ # @!attribute [rw] global_network_id
528
+ # The ID of the global network.
529
+ # @return [String]
530
+ #
531
+ # @!attribute [rw] device_id
532
+ # The ID of the device to connect to.
533
+ # @return [String]
534
+ #
535
+ # @!attribute [rw] link_id
536
+ # The ID of the link.
537
+ # @return [String]
538
+ #
539
+ # @!attribute [rw] state
540
+ # The state of the Connect peer association.
541
+ # @return [String]
542
+ #
543
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectPeerAssociation AWS API Documentation
544
+ #
545
+ class ConnectPeerAssociation < Struct.new(
546
+ :connect_peer_id,
547
+ :global_network_id,
548
+ :device_id,
549
+ :link_id,
550
+ :state)
551
+ SENSITIVE = []
552
+ include Aws::Structure
553
+ end
554
+
555
+ # Describes a core network BGP configuration.
556
+ #
557
+ # @!attribute [rw] core_network_asn
558
+ # The ASN of the Coret Network.
559
+ # @return [Integer]
560
+ #
561
+ # @!attribute [rw] peer_asn
562
+ # The ASN of the Connect peer.
563
+ # @return [Integer]
564
+ #
565
+ # @!attribute [rw] core_network_address
566
+ # The address of a core network.
567
+ # @return [String]
568
+ #
569
+ # @!attribute [rw] peer_address
570
+ # The address of a core network Connect peer.
571
+ # @return [String]
572
+ #
573
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectPeerBgpConfiguration AWS API Documentation
574
+ #
575
+ class ConnectPeerBgpConfiguration < Struct.new(
576
+ :core_network_asn,
577
+ :peer_asn,
578
+ :core_network_address,
579
+ :peer_address)
580
+ SENSITIVE = []
581
+ include Aws::Structure
582
+ end
583
+
584
+ # Describes a core network Connect peer configuration.
585
+ #
586
+ # @!attribute [rw] core_network_address
587
+ # The IP address of a core network.
588
+ # @return [String]
589
+ #
590
+ # @!attribute [rw] peer_address
591
+ # The IP address of the Connect peer.
592
+ # @return [String]
593
+ #
594
+ # @!attribute [rw] inside_cidr_blocks
595
+ # The inside IP addresses used for a Connect peer configuration.
596
+ # @return [Array<String>]
597
+ #
598
+ # @!attribute [rw] protocol
599
+ # The protocol used for a Connect peer configuration.
600
+ # @return [String]
601
+ #
602
+ # @!attribute [rw] bgp_configurations
603
+ # The Connect peer BGP configurations.
604
+ # @return [Array<Types::ConnectPeerBgpConfiguration>]
605
+ #
606
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectPeerConfiguration AWS API Documentation
607
+ #
608
+ class ConnectPeerConfiguration < Struct.new(
609
+ :core_network_address,
610
+ :peer_address,
611
+ :inside_cidr_blocks,
612
+ :protocol,
613
+ :bgp_configurations)
614
+ SENSITIVE = []
615
+ include Aws::Structure
616
+ end
617
+
618
+ # Summary description of a Connect peer.
619
+ #
620
+ # @!attribute [rw] core_network_id
621
+ # The ID of a core network.
622
+ # @return [String]
623
+ #
624
+ # @!attribute [rw] connect_attachment_id
625
+ # The ID of a Connect peer attachment.
626
+ # @return [String]
627
+ #
628
+ # @!attribute [rw] connect_peer_id
629
+ # The ID of a Connect peer.
630
+ # @return [String]
631
+ #
632
+ # @!attribute [rw] edge_location
633
+ # The Region where the edge is located.
634
+ # @return [String]
635
+ #
636
+ # @!attribute [rw] connect_peer_state
637
+ # The state of a Connect peer.
638
+ # @return [String]
639
+ #
640
+ # @!attribute [rw] created_at
641
+ # The timestamp when a Connect peer was created.
642
+ # @return [Time]
643
+ #
644
+ # @!attribute [rw] tags
645
+ # The tags associated with a Connect peer summary.
646
+ # @return [Array<Types::Tag>]
647
+ #
648
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectPeerSummary AWS API Documentation
649
+ #
650
+ class ConnectPeerSummary < Struct.new(
651
+ :core_network_id,
652
+ :connect_attachment_id,
653
+ :connect_peer_id,
654
+ :edge_location,
655
+ :connect_peer_state,
656
+ :created_at,
657
+ :tags)
658
+ SENSITIVE = []
659
+ include Aws::Structure
660
+ end
661
+
247
662
  # Describes a connection.
248
663
  #
249
664
  # @!attribute [rw] connection_id
@@ -258,76 +673,615 @@ module Aws::NetworkManager
258
673
  # The ID of the global network.
259
674
  # @return [String]
260
675
  #
261
- # @!attribute [rw] device_id
262
- # The ID of the first device in the connection.
263
- # @return [String]
676
+ # @!attribute [rw] device_id
677
+ # The ID of the first device in the connection.
678
+ # @return [String]
679
+ #
680
+ # @!attribute [rw] connected_device_id
681
+ # The ID of the second device in the connection.
682
+ # @return [String]
683
+ #
684
+ # @!attribute [rw] link_id
685
+ # The ID of the link for the first device in the connection.
686
+ # @return [String]
687
+ #
688
+ # @!attribute [rw] connected_link_id
689
+ # The ID of the link for the second device in the connection.
690
+ # @return [String]
691
+ #
692
+ # @!attribute [rw] description
693
+ # The description of the connection.
694
+ # @return [String]
695
+ #
696
+ # @!attribute [rw] created_at
697
+ # The date and time that the connection was created.
698
+ # @return [Time]
699
+ #
700
+ # @!attribute [rw] state
701
+ # The state of the connection.
702
+ # @return [String]
703
+ #
704
+ # @!attribute [rw] tags
705
+ # The tags for the connection.
706
+ # @return [Array<Types::Tag>]
707
+ #
708
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/Connection AWS API Documentation
709
+ #
710
+ class Connection < Struct.new(
711
+ :connection_id,
712
+ :connection_arn,
713
+ :global_network_id,
714
+ :device_id,
715
+ :connected_device_id,
716
+ :link_id,
717
+ :connected_link_id,
718
+ :description,
719
+ :created_at,
720
+ :state,
721
+ :tags)
722
+ SENSITIVE = []
723
+ include Aws::Structure
724
+ end
725
+
726
+ # Describes connection health.
727
+ #
728
+ # @!attribute [rw] type
729
+ # The connection type.
730
+ # @return [String]
731
+ #
732
+ # @!attribute [rw] status
733
+ # The connection status.
734
+ # @return [String]
735
+ #
736
+ # @!attribute [rw] timestamp
737
+ # The time the status was last updated.
738
+ # @return [Time]
739
+ #
740
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectionHealth AWS API Documentation
741
+ #
742
+ class ConnectionHealth < Struct.new(
743
+ :type,
744
+ :status,
745
+ :timestamp)
746
+ SENSITIVE = []
747
+ include Aws::Structure
748
+ end
749
+
750
+ # Describes a core network.
751
+ #
752
+ # @!attribute [rw] global_network_id
753
+ # The ID of the global network that your core network is a part of.
754
+ # @return [String]
755
+ #
756
+ # @!attribute [rw] core_network_id
757
+ # The ID of a core network.
758
+ # @return [String]
759
+ #
760
+ # @!attribute [rw] core_network_arn
761
+ # The ARN of a core network.
762
+ # @return [String]
763
+ #
764
+ # @!attribute [rw] description
765
+ # The description of a core network.
766
+ # @return [String]
767
+ #
768
+ # @!attribute [rw] created_at
769
+ # The timestamp when a core network was created.
770
+ # @return [Time]
771
+ #
772
+ # @!attribute [rw] state
773
+ # The current state of a core network.
774
+ # @return [String]
775
+ #
776
+ # @!attribute [rw] segments
777
+ # The segments within a core network.
778
+ # @return [Array<Types::CoreNetworkSegment>]
779
+ #
780
+ # @!attribute [rw] edges
781
+ # The edges within a core network.
782
+ # @return [Array<Types::CoreNetworkEdge>]
783
+ #
784
+ # @!attribute [rw] tags
785
+ # The tags associated with a core network.
786
+ # @return [Array<Types::Tag>]
787
+ #
788
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetwork AWS API Documentation
789
+ #
790
+ class CoreNetwork < Struct.new(
791
+ :global_network_id,
792
+ :core_network_id,
793
+ :core_network_arn,
794
+ :description,
795
+ :created_at,
796
+ :state,
797
+ :segments,
798
+ :edges,
799
+ :tags)
800
+ SENSITIVE = []
801
+ include Aws::Structure
802
+ end
803
+
804
+ # Details describing a core network change.
805
+ #
806
+ # @!attribute [rw] type
807
+ # The type of change.
808
+ # @return [String]
809
+ #
810
+ # @!attribute [rw] action
811
+ # The action to take for a core network.
812
+ # @return [String]
813
+ #
814
+ # @!attribute [rw] identifier
815
+ # The resource identifier.
816
+ # @return [String]
817
+ #
818
+ # @!attribute [rw] previous_values
819
+ # The previous values for a core network.
820
+ # @return [Types::CoreNetworkChangeValues]
821
+ #
822
+ # @!attribute [rw] new_values
823
+ # The new value for a core network
824
+ # @return [Types::CoreNetworkChangeValues]
825
+ #
826
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkChange AWS API Documentation
827
+ #
828
+ class CoreNetworkChange < Struct.new(
829
+ :type,
830
+ :action,
831
+ :identifier,
832
+ :previous_values,
833
+ :new_values)
834
+ SENSITIVE = []
835
+ include Aws::Structure
836
+ end
837
+
838
+ # Describes a core network change.
839
+ #
840
+ # @!attribute [rw] segment_name
841
+ # The names of the segments in a core network.
842
+ # @return [String]
843
+ #
844
+ # @!attribute [rw] edge_locations
845
+ # The Regions where edges are located in a core network.
846
+ # @return [Array<String>]
847
+ #
848
+ # @!attribute [rw] asn
849
+ # The ASN of a core network.
850
+ # @return [Integer]
851
+ #
852
+ # @!attribute [rw] cidr
853
+ # The IP addresses used for a core network.
854
+ # @return [String]
855
+ #
856
+ # @!attribute [rw] destination_identifier
857
+ # The ID of the destination.
858
+ # @return [String]
859
+ #
860
+ # @!attribute [rw] inside_cidr_blocks
861
+ # The inside IP addresses used for core network change values.
862
+ # @return [Array<String>]
863
+ #
864
+ # @!attribute [rw] shared_segments
865
+ # The shared segments for a core network change value.
866
+ # @return [Array<String>]
867
+ #
868
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkChangeValues AWS API Documentation
869
+ #
870
+ class CoreNetworkChangeValues < Struct.new(
871
+ :segment_name,
872
+ :edge_locations,
873
+ :asn,
874
+ :cidr,
875
+ :destination_identifier,
876
+ :inside_cidr_blocks,
877
+ :shared_segments)
878
+ SENSITIVE = []
879
+ include Aws::Structure
880
+ end
881
+
882
+ # Describes a core network edge.
883
+ #
884
+ # @!attribute [rw] edge_location
885
+ # The Region where a core network edge is located.
886
+ # @return [String]
887
+ #
888
+ # @!attribute [rw] asn
889
+ # The ASN of a core network edge.
890
+ # @return [Integer]
891
+ #
892
+ # @!attribute [rw] inside_cidr_blocks
893
+ # The inside IP addresses used for core network edges.
894
+ # @return [Array<String>]
895
+ #
896
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkEdge AWS API Documentation
897
+ #
898
+ class CoreNetworkEdge < Struct.new(
899
+ :edge_location,
900
+ :asn,
901
+ :inside_cidr_blocks)
902
+ SENSITIVE = []
903
+ include Aws::Structure
904
+ end
905
+
906
+ # Describes a core network policy. You can have only one LIVE Core
907
+ # Policy.
908
+ #
909
+ # @!attribute [rw] core_network_id
910
+ # The ID of a core network.
911
+ # @return [String]
912
+ #
913
+ # @!attribute [rw] policy_version_id
914
+ # The ID of the policy version.
915
+ # @return [Integer]
916
+ #
917
+ # @!attribute [rw] alias
918
+ # Whether a core network policy is the current LIVE policy or the most
919
+ # recently submitted policy.
920
+ # @return [String]
921
+ #
922
+ # @!attribute [rw] description
923
+ # The description of a core network policy.
924
+ # @return [String]
925
+ #
926
+ # @!attribute [rw] created_at
927
+ # The timestamp when a core network policy was created.
928
+ # @return [Time]
929
+ #
930
+ # @!attribute [rw] change_set_state
931
+ # The state of a core network policy.
932
+ # @return [String]
933
+ #
934
+ # @!attribute [rw] policy_errors
935
+ # Describes any errors in a core network policy.
936
+ # @return [Array<Types::CoreNetworkPolicyError>]
937
+ #
938
+ # @!attribute [rw] policy_document
939
+ # Describes a core network policy.
940
+ # @return [String]
941
+ #
942
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkPolicy AWS API Documentation
943
+ #
944
+ class CoreNetworkPolicy < Struct.new(
945
+ :core_network_id,
946
+ :policy_version_id,
947
+ :alias,
948
+ :description,
949
+ :created_at,
950
+ :change_set_state,
951
+ :policy_errors,
952
+ :policy_document)
953
+ SENSITIVE = []
954
+ include Aws::Structure
955
+ end
956
+
957
+ # Provides details about an error in a core network policy.
958
+ #
959
+ # @!attribute [rw] error_code
960
+ # The error code associated with a core network policy error.
961
+ # @return [String]
962
+ #
963
+ # @!attribute [rw] message
964
+ # The message associated with a core network policy error code.
965
+ # @return [String]
966
+ #
967
+ # @!attribute [rw] path
968
+ # The JSON path where the error was discovered in the policy document.
969
+ # @return [String]
970
+ #
971
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkPolicyError AWS API Documentation
972
+ #
973
+ class CoreNetworkPolicyError < Struct.new(
974
+ :error_code,
975
+ :message,
976
+ :path)
977
+ SENSITIVE = []
978
+ include Aws::Structure
979
+ end
980
+
981
+ # Describes a core network policy exception.
982
+ #
983
+ # @!attribute [rw] message
984
+ # @return [String]
985
+ #
986
+ # @!attribute [rw] errors
987
+ # Describes a core network policy exception.
988
+ # @return [Array<Types::CoreNetworkPolicyError>]
989
+ #
990
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkPolicyException AWS API Documentation
991
+ #
992
+ class CoreNetworkPolicyException < Struct.new(
993
+ :message,
994
+ :errors)
995
+ SENSITIVE = []
996
+ include Aws::Structure
997
+ end
998
+
999
+ # Describes a core network policy version.
1000
+ #
1001
+ # @!attribute [rw] core_network_id
1002
+ # The ID of a core network.
1003
+ # @return [String]
1004
+ #
1005
+ # @!attribute [rw] policy_version_id
1006
+ # The ID of the policy version.
1007
+ # @return [Integer]
1008
+ #
1009
+ # @!attribute [rw] alias
1010
+ # Whether a core network policy is the current policy or the most
1011
+ # recently submitted policy.
1012
+ # @return [String]
1013
+ #
1014
+ # @!attribute [rw] description
1015
+ # The description of a core network policy version.
1016
+ # @return [String]
1017
+ #
1018
+ # @!attribute [rw] created_at
1019
+ # The timestamp when a core network policy version was created.
1020
+ # @return [Time]
1021
+ #
1022
+ # @!attribute [rw] change_set_state
1023
+ # The status of the policy version change set.
1024
+ # @return [String]
1025
+ #
1026
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkPolicyVersion AWS API Documentation
1027
+ #
1028
+ class CoreNetworkPolicyVersion < Struct.new(
1029
+ :core_network_id,
1030
+ :policy_version_id,
1031
+ :alias,
1032
+ :description,
1033
+ :created_at,
1034
+ :change_set_state)
1035
+ SENSITIVE = []
1036
+ include Aws::Structure
1037
+ end
1038
+
1039
+ # Describes a core network segment, which are dedicated routes. Only
1040
+ # attachments within this segment can communicate with each other.
1041
+ #
1042
+ # @!attribute [rw] name
1043
+ # The name of a core network segment.
1044
+ # @return [String]
1045
+ #
1046
+ # @!attribute [rw] edge_locations
1047
+ # The Regions where the edges are located.
1048
+ # @return [Array<String>]
1049
+ #
1050
+ # @!attribute [rw] shared_segments
1051
+ # The shared segments of a core network.
1052
+ # @return [Array<String>]
1053
+ #
1054
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkSegment AWS API Documentation
1055
+ #
1056
+ class CoreNetworkSegment < Struct.new(
1057
+ :name,
1058
+ :edge_locations,
1059
+ :shared_segments)
1060
+ SENSITIVE = []
1061
+ include Aws::Structure
1062
+ end
1063
+
1064
+ # Returns details about a core network edge.
1065
+ #
1066
+ # @note When making an API call, you may pass CoreNetworkSegmentEdgeIdentifier
1067
+ # data as a hash:
1068
+ #
1069
+ # {
1070
+ # core_network_id: "CoreNetworkId",
1071
+ # segment_name: "ConstrainedString",
1072
+ # edge_location: "ExternalRegionCode",
1073
+ # }
1074
+ #
1075
+ # @!attribute [rw] core_network_id
1076
+ # The ID of a core network.
1077
+ # @return [String]
1078
+ #
1079
+ # @!attribute [rw] segment_name
1080
+ # The name of the segment edge.
1081
+ # @return [String]
1082
+ #
1083
+ # @!attribute [rw] edge_location
1084
+ # The Region where the segment edge is located.
1085
+ # @return [String]
1086
+ #
1087
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkSegmentEdgeIdentifier AWS API Documentation
1088
+ #
1089
+ class CoreNetworkSegmentEdgeIdentifier < Struct.new(
1090
+ :core_network_id,
1091
+ :segment_name,
1092
+ :edge_location)
1093
+ SENSITIVE = []
1094
+ include Aws::Structure
1095
+ end
1096
+
1097
+ # Returns summary information about a core network.
1098
+ #
1099
+ # @!attribute [rw] core_network_id
1100
+ # The ID of a core network.
1101
+ # @return [String]
1102
+ #
1103
+ # @!attribute [rw] core_network_arn
1104
+ # a core network ARN.
1105
+ # @return [String]
1106
+ #
1107
+ # @!attribute [rw] global_network_id
1108
+ # The global network ID.
1109
+ # @return [String]
1110
+ #
1111
+ # @!attribute [rw] owner_account_id
1112
+ # The ID of the account owner.
1113
+ # @return [String]
1114
+ #
1115
+ # @!attribute [rw] state
1116
+ # The state of a core network.
1117
+ # @return [String]
1118
+ #
1119
+ # @!attribute [rw] description
1120
+ # The description of a core network.
1121
+ # @return [String]
1122
+ #
1123
+ # @!attribute [rw] tags
1124
+ # The key-value tags associated with a core network summary.
1125
+ # @return [Array<Types::Tag>]
1126
+ #
1127
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkSummary AWS API Documentation
1128
+ #
1129
+ class CoreNetworkSummary < Struct.new(
1130
+ :core_network_id,
1131
+ :core_network_arn,
1132
+ :global_network_id,
1133
+ :owner_account_id,
1134
+ :state,
1135
+ :description,
1136
+ :tags)
1137
+ SENSITIVE = []
1138
+ include Aws::Structure
1139
+ end
1140
+
1141
+ # @note When making an API call, you may pass CreateConnectAttachmentRequest
1142
+ # data as a hash:
1143
+ #
1144
+ # {
1145
+ # core_network_id: "CoreNetworkId", # required
1146
+ # edge_location: "ExternalRegionCode", # required
1147
+ # transport_attachment_id: "AttachmentId", # required
1148
+ # options: { # required
1149
+ # protocol: "GRE", # accepts GRE
1150
+ # },
1151
+ # tags: [
1152
+ # {
1153
+ # key: "TagKey",
1154
+ # value: "TagValue",
1155
+ # },
1156
+ # ],
1157
+ # client_token: "ClientToken",
1158
+ # }
1159
+ #
1160
+ # @!attribute [rw] core_network_id
1161
+ # The ID of a core network where you want to create the attachment.
1162
+ # @return [String]
1163
+ #
1164
+ # @!attribute [rw] edge_location
1165
+ # The Region where the edge is located.
1166
+ # @return [String]
1167
+ #
1168
+ # @!attribute [rw] transport_attachment_id
1169
+ # The ID of the attachment between the two connections.
1170
+ # @return [String]
1171
+ #
1172
+ # @!attribute [rw] options
1173
+ # Options for creating an attachment.
1174
+ # @return [Types::ConnectAttachmentOptions]
1175
+ #
1176
+ # @!attribute [rw] tags
1177
+ # The list of key-value tags associated with the request.
1178
+ # @return [Array<Types::Tag>]
1179
+ #
1180
+ # @!attribute [rw] client_token
1181
+ # The client token associated with the request.
1182
+ #
1183
+ # **A suitable default value is auto-generated.** You should normally
1184
+ # not need to pass this option.
1185
+ # @return [String]
1186
+ #
1187
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateConnectAttachmentRequest AWS API Documentation
1188
+ #
1189
+ class CreateConnectAttachmentRequest < Struct.new(
1190
+ :core_network_id,
1191
+ :edge_location,
1192
+ :transport_attachment_id,
1193
+ :options,
1194
+ :tags,
1195
+ :client_token)
1196
+ SENSITIVE = []
1197
+ include Aws::Structure
1198
+ end
1199
+
1200
+ # @!attribute [rw] connect_attachment
1201
+ # The response to a Connect attachment request.
1202
+ # @return [Types::ConnectAttachment]
1203
+ #
1204
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateConnectAttachmentResponse AWS API Documentation
264
1205
  #
265
- # @!attribute [rw] connected_device_id
266
- # The ID of the second device in the connection.
267
- # @return [String]
1206
+ class CreateConnectAttachmentResponse < Struct.new(
1207
+ :connect_attachment)
1208
+ SENSITIVE = []
1209
+ include Aws::Structure
1210
+ end
1211
+
1212
+ # @note When making an API call, you may pass CreateConnectPeerRequest
1213
+ # data as a hash:
268
1214
  #
269
- # @!attribute [rw] link_id
270
- # The ID of the link for the first device in the connection.
1215
+ # {
1216
+ # connect_attachment_id: "AttachmentId", # required
1217
+ # core_network_address: "IPAddress",
1218
+ # peer_address: "IPAddress", # required
1219
+ # bgp_options: {
1220
+ # peer_asn: 1,
1221
+ # },
1222
+ # inside_cidr_blocks: ["ConstrainedString"], # required
1223
+ # tags: [
1224
+ # {
1225
+ # key: "TagKey",
1226
+ # value: "TagValue",
1227
+ # },
1228
+ # ],
1229
+ # client_token: "ClientToken",
1230
+ # }
1231
+ #
1232
+ # @!attribute [rw] connect_attachment_id
1233
+ # The ID of the connection attachment.
271
1234
  # @return [String]
272
1235
  #
273
- # @!attribute [rw] connected_link_id
274
- # The ID of the link for the second device in the connection.
1236
+ # @!attribute [rw] core_network_address
1237
+ # A Connect peer core network address.
275
1238
  # @return [String]
276
1239
  #
277
- # @!attribute [rw] description
278
- # The description of the connection.
1240
+ # @!attribute [rw] peer_address
1241
+ # The Connect peer address.
279
1242
  # @return [String]
280
1243
  #
281
- # @!attribute [rw] created_at
282
- # The date and time that the connection was created.
283
- # @return [Time]
1244
+ # @!attribute [rw] bgp_options
1245
+ # The Connect peer BGP options.
1246
+ # @return [Types::BgpOptions]
284
1247
  #
285
- # @!attribute [rw] state
286
- # The state of the connection.
287
- # @return [String]
1248
+ # @!attribute [rw] inside_cidr_blocks
1249
+ # The inside IP addresses used for BGP peering.
1250
+ # @return [Array<String>]
288
1251
  #
289
1252
  # @!attribute [rw] tags
290
- # The tags for the connection.
1253
+ # The tags associated with the peer request.
291
1254
  # @return [Array<Types::Tag>]
292
1255
  #
293
- # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/Connection AWS API Documentation
1256
+ # @!attribute [rw] client_token
1257
+ # The client token associated with the request.
294
1258
  #
295
- class Connection < Struct.new(
296
- :connection_id,
297
- :connection_arn,
298
- :global_network_id,
299
- :device_id,
300
- :connected_device_id,
301
- :link_id,
302
- :connected_link_id,
303
- :description,
304
- :created_at,
305
- :state,
306
- :tags)
1259
+ # **A suitable default value is auto-generated.** You should normally
1260
+ # not need to pass this option.
1261
+ # @return [String]
1262
+ #
1263
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateConnectPeerRequest AWS API Documentation
1264
+ #
1265
+ class CreateConnectPeerRequest < Struct.new(
1266
+ :connect_attachment_id,
1267
+ :core_network_address,
1268
+ :peer_address,
1269
+ :bgp_options,
1270
+ :inside_cidr_blocks,
1271
+ :tags,
1272
+ :client_token)
307
1273
  SENSITIVE = []
308
1274
  include Aws::Structure
309
1275
  end
310
1276
 
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]
1277
+ # @!attribute [rw] connect_peer
1278
+ # The response to the request.
1279
+ # @return [Types::ConnectPeer]
324
1280
  #
325
- # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectionHealth AWS API Documentation
1281
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateConnectPeerResponse AWS API Documentation
326
1282
  #
327
- class ConnectionHealth < Struct.new(
328
- :type,
329
- :status,
330
- :timestamp)
1283
+ class CreateConnectPeerResponse < Struct.new(
1284
+ :connect_peer)
331
1285
  SENSITIVE = []
332
1286
  include Aws::Structure
333
1287
  end
@@ -336,12 +1290,12 @@ module Aws::NetworkManager
336
1290
  # data as a hash:
337
1291
  #
338
1292
  # {
339
- # global_network_id: "String", # required
340
- # device_id: "String", # required
341
- # connected_device_id: "String", # required
342
- # link_id: "String",
343
- # connected_link_id: "String",
344
- # description: "String",
1293
+ # global_network_id: "GlobalNetworkId", # required
1294
+ # device_id: "DeviceId", # required
1295
+ # connected_device_id: "DeviceId", # required
1296
+ # link_id: "LinkId",
1297
+ # connected_link_id: "LinkId",
1298
+ # description: "ConstrainedString",
345
1299
  # tags: [
346
1300
  # {
347
1301
  # key: "TagKey",
@@ -406,26 +1360,89 @@ module Aws::NetworkManager
406
1360
  include Aws::Structure
407
1361
  end
408
1362
 
1363
+ # @note When making an API call, you may pass CreateCoreNetworkRequest
1364
+ # data as a hash:
1365
+ #
1366
+ # {
1367
+ # global_network_id: "GlobalNetworkId", # required
1368
+ # description: "ConstrainedString",
1369
+ # tags: [
1370
+ # {
1371
+ # key: "TagKey",
1372
+ # value: "TagValue",
1373
+ # },
1374
+ # ],
1375
+ # policy_document: "CoreNetworkPolicyDocument",
1376
+ # client_token: "ClientToken",
1377
+ # }
1378
+ #
1379
+ # @!attribute [rw] global_network_id
1380
+ # The ID of the global network that a core network will be a part of.
1381
+ # @return [String]
1382
+ #
1383
+ # @!attribute [rw] description
1384
+ # The description of a core network.
1385
+ # @return [String]
1386
+ #
1387
+ # @!attribute [rw] tags
1388
+ # Key-value tags associated with a core network request.
1389
+ # @return [Array<Types::Tag>]
1390
+ #
1391
+ # @!attribute [rw] policy_document
1392
+ # The policy document for creating a core network.
1393
+ # @return [String]
1394
+ #
1395
+ # @!attribute [rw] client_token
1396
+ # The client token associated with a core network request.
1397
+ #
1398
+ # **A suitable default value is auto-generated.** You should normally
1399
+ # not need to pass this option.
1400
+ # @return [String]
1401
+ #
1402
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateCoreNetworkRequest AWS API Documentation
1403
+ #
1404
+ class CreateCoreNetworkRequest < Struct.new(
1405
+ :global_network_id,
1406
+ :description,
1407
+ :tags,
1408
+ :policy_document,
1409
+ :client_token)
1410
+ SENSITIVE = []
1411
+ include Aws::Structure
1412
+ end
1413
+
1414
+ # @!attribute [rw] core_network
1415
+ # Returns details about a core network.
1416
+ # @return [Types::CoreNetwork]
1417
+ #
1418
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateCoreNetworkResponse AWS API Documentation
1419
+ #
1420
+ class CreateCoreNetworkResponse < Struct.new(
1421
+ :core_network)
1422
+ SENSITIVE = []
1423
+ include Aws::Structure
1424
+ end
1425
+
409
1426
  # @note When making an API call, you may pass CreateDeviceRequest
410
1427
  # data as a hash:
411
1428
  #
412
1429
  # {
413
- # global_network_id: "String", # required
1430
+ # global_network_id: "GlobalNetworkId", # required
414
1431
  # aws_location: {
415
- # zone: "String",
416
- # subnet_arn: "String",
1432
+ # zone: "ConstrainedString",
1433
+ # subnet_arn: "SubnetArn",
417
1434
  # },
418
- # description: "String",
419
- # type: "String",
420
- # vendor: "String",
421
- # model: "String",
422
- # serial_number: "String",
1435
+ # description: "ConstrainedString",
1436
+ # type: "ConstrainedString",
1437
+ # vendor: "ConstrainedString",
1438
+ # model: "ConstrainedString",
1439
+ # serial_number: "ConstrainedString",
423
1440
  # location: {
424
- # address: "String",
425
- # latitude: "String",
426
- # longitude: "String",
1441
+ # address: "ConstrainedString",
1442
+ # latitude: "ConstrainedString",
1443
+ # longitude: "ConstrainedString",
427
1444
  # },
428
- # site_id: "String",
1445
+ # site_id: "SiteId",
429
1446
  # tags: [
430
1447
  # {
431
1448
  # key: "TagKey",
@@ -516,7 +1533,7 @@ module Aws::NetworkManager
516
1533
  # data as a hash:
517
1534
  #
518
1535
  # {
519
- # description: "String",
1536
+ # description: "ConstrainedString",
520
1537
  # tags: [
521
1538
  # {
522
1539
  # key: "TagKey",
@@ -560,15 +1577,15 @@ module Aws::NetworkManager
560
1577
  # data as a hash:
561
1578
  #
562
1579
  # {
563
- # global_network_id: "String", # required
564
- # description: "String",
565
- # type: "String",
1580
+ # global_network_id: "GlobalNetworkId", # required
1581
+ # description: "ConstrainedString",
1582
+ # type: "ConstrainedString",
566
1583
  # bandwidth: { # required
567
1584
  # upload_speed: 1,
568
1585
  # download_speed: 1,
569
1586
  # },
570
- # provider: "String",
571
- # site_id: "String", # required
1587
+ # provider: "ConstrainedString",
1588
+ # site_id: "SiteId", # required
572
1589
  # tags: [
573
1590
  # {
574
1591
  # key: "TagKey",
@@ -643,12 +1660,12 @@ module Aws::NetworkManager
643
1660
  # data as a hash:
644
1661
  #
645
1662
  # {
646
- # global_network_id: "String", # required
647
- # description: "String",
1663
+ # global_network_id: "GlobalNetworkId", # required
1664
+ # description: "ConstrainedString",
648
1665
  # location: {
649
- # address: "String",
650
- # latitude: "String",
651
- # longitude: "String",
1666
+ # address: "ConstrainedString",
1667
+ # latitude: "ConstrainedString",
1668
+ # longitude: "ConstrainedString",
652
1669
  # },
653
1670
  # tags: [
654
1671
  # {
@@ -707,6 +1724,135 @@ module Aws::NetworkManager
707
1724
  include Aws::Structure
708
1725
  end
709
1726
 
1727
+ # @note When making an API call, you may pass CreateSiteToSiteVpnAttachmentRequest
1728
+ # data as a hash:
1729
+ #
1730
+ # {
1731
+ # core_network_id: "CoreNetworkId", # required
1732
+ # vpn_connection_arn: "VpnConnectionArn", # required
1733
+ # tags: [
1734
+ # {
1735
+ # key: "TagKey",
1736
+ # value: "TagValue",
1737
+ # },
1738
+ # ],
1739
+ # client_token: "ClientToken",
1740
+ # }
1741
+ #
1742
+ # @!attribute [rw] core_network_id
1743
+ # The ID of a core network where you're creating a site-to-site VPN
1744
+ # attachment.
1745
+ # @return [String]
1746
+ #
1747
+ # @!attribute [rw] vpn_connection_arn
1748
+ # The ARN identifying the VPN attachment.
1749
+ # @return [String]
1750
+ #
1751
+ # @!attribute [rw] tags
1752
+ # The tags associated with the request.
1753
+ # @return [Array<Types::Tag>]
1754
+ #
1755
+ # @!attribute [rw] client_token
1756
+ # The client token associated with the request.
1757
+ #
1758
+ # **A suitable default value is auto-generated.** You should normally
1759
+ # not need to pass this option.
1760
+ # @return [String]
1761
+ #
1762
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateSiteToSiteVpnAttachmentRequest AWS API Documentation
1763
+ #
1764
+ class CreateSiteToSiteVpnAttachmentRequest < Struct.new(
1765
+ :core_network_id,
1766
+ :vpn_connection_arn,
1767
+ :tags,
1768
+ :client_token)
1769
+ SENSITIVE = []
1770
+ include Aws::Structure
1771
+ end
1772
+
1773
+ # @!attribute [rw] site_to_site_vpn_attachment
1774
+ # Details about a site-to-site VPN attachment.
1775
+ # @return [Types::SiteToSiteVpnAttachment]
1776
+ #
1777
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateSiteToSiteVpnAttachmentResponse AWS API Documentation
1778
+ #
1779
+ class CreateSiteToSiteVpnAttachmentResponse < Struct.new(
1780
+ :site_to_site_vpn_attachment)
1781
+ SENSITIVE = []
1782
+ include Aws::Structure
1783
+ end
1784
+
1785
+ # @note When making an API call, you may pass CreateVpcAttachmentRequest
1786
+ # data as a hash:
1787
+ #
1788
+ # {
1789
+ # core_network_id: "CoreNetworkId", # required
1790
+ # vpc_arn: "VpcArn", # required
1791
+ # subnet_arns: ["SubnetArn"], # required
1792
+ # options: {
1793
+ # ipv_6_support: false,
1794
+ # },
1795
+ # tags: [
1796
+ # {
1797
+ # key: "TagKey",
1798
+ # value: "TagValue",
1799
+ # },
1800
+ # ],
1801
+ # client_token: "ClientToken",
1802
+ # }
1803
+ #
1804
+ # @!attribute [rw] core_network_id
1805
+ # The ID of a core network for the VPC attachment.
1806
+ # @return [String]
1807
+ #
1808
+ # @!attribute [rw] vpc_arn
1809
+ # The ARN of the VPC.
1810
+ # @return [String]
1811
+ #
1812
+ # @!attribute [rw] subnet_arns
1813
+ # The subnet ARN of the VPC attachment.
1814
+ # @return [Array<String>]
1815
+ #
1816
+ # @!attribute [rw] options
1817
+ # Options for the VPC attachment.
1818
+ # @return [Types::VpcOptions]
1819
+ #
1820
+ # @!attribute [rw] tags
1821
+ # The key-value tags associated with the request.
1822
+ # @return [Array<Types::Tag>]
1823
+ #
1824
+ # @!attribute [rw] client_token
1825
+ # The client token associated with the request.
1826
+ #
1827
+ # **A suitable default value is auto-generated.** You should normally
1828
+ # not need to pass this option.
1829
+ # @return [String]
1830
+ #
1831
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateVpcAttachmentRequest AWS API Documentation
1832
+ #
1833
+ class CreateVpcAttachmentRequest < Struct.new(
1834
+ :core_network_id,
1835
+ :vpc_arn,
1836
+ :subnet_arns,
1837
+ :options,
1838
+ :tags,
1839
+ :client_token)
1840
+ SENSITIVE = []
1841
+ include Aws::Structure
1842
+ end
1843
+
1844
+ # @!attribute [rw] vpc_attachment
1845
+ # Provides details about the VPC attachment.
1846
+ # @return [Types::VpcAttachment]
1847
+ #
1848
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateVpcAttachmentResponse AWS API Documentation
1849
+ #
1850
+ class CreateVpcAttachmentResponse < Struct.new(
1851
+ :vpc_attachment)
1852
+ SENSITIVE = []
1853
+ include Aws::Structure
1854
+ end
1855
+
710
1856
  # Describes the association between a customer gateway, a device, and a
711
1857
  # link.
712
1858
  #
@@ -742,12 +1888,74 @@ module Aws::NetworkManager
742
1888
  include Aws::Structure
743
1889
  end
744
1890
 
1891
+ # @note When making an API call, you may pass DeleteAttachmentRequest
1892
+ # data as a hash:
1893
+ #
1894
+ # {
1895
+ # attachment_id: "AttachmentId", # required
1896
+ # }
1897
+ #
1898
+ # @!attribute [rw] attachment_id
1899
+ # The ID of the attachment to delete.
1900
+ # @return [String]
1901
+ #
1902
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeleteAttachmentRequest AWS API Documentation
1903
+ #
1904
+ class DeleteAttachmentRequest < Struct.new(
1905
+ :attachment_id)
1906
+ SENSITIVE = []
1907
+ include Aws::Structure
1908
+ end
1909
+
1910
+ # @!attribute [rw] attachment
1911
+ # Information about the deleted attachment.
1912
+ # @return [Types::Attachment]
1913
+ #
1914
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeleteAttachmentResponse AWS API Documentation
1915
+ #
1916
+ class DeleteAttachmentResponse < Struct.new(
1917
+ :attachment)
1918
+ SENSITIVE = []
1919
+ include Aws::Structure
1920
+ end
1921
+
1922
+ # @note When making an API call, you may pass DeleteConnectPeerRequest
1923
+ # data as a hash:
1924
+ #
1925
+ # {
1926
+ # connect_peer_id: "ConnectPeerId", # required
1927
+ # }
1928
+ #
1929
+ # @!attribute [rw] connect_peer_id
1930
+ # The ID of the deleted Connect peer.
1931
+ # @return [String]
1932
+ #
1933
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeleteConnectPeerRequest AWS API Documentation
1934
+ #
1935
+ class DeleteConnectPeerRequest < Struct.new(
1936
+ :connect_peer_id)
1937
+ SENSITIVE = []
1938
+ include Aws::Structure
1939
+ end
1940
+
1941
+ # @!attribute [rw] connect_peer
1942
+ # Information about the deleted Connect peer.
1943
+ # @return [Types::ConnectPeer]
1944
+ #
1945
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeleteConnectPeerResponse AWS API Documentation
1946
+ #
1947
+ class DeleteConnectPeerResponse < Struct.new(
1948
+ :connect_peer)
1949
+ SENSITIVE = []
1950
+ include Aws::Structure
1951
+ end
1952
+
745
1953
  # @note When making an API call, you may pass DeleteConnectionRequest
746
1954
  # data as a hash:
747
1955
  #
748
1956
  # {
749
- # global_network_id: "String", # required
750
- # connection_id: "String", # required
1957
+ # global_network_id: "GlobalNetworkId", # required
1958
+ # connection_id: "ConnectionId", # required
751
1959
  # }
752
1960
  #
753
1961
  # @!attribute [rw] global_network_id
@@ -771,10 +1979,78 @@ module Aws::NetworkManager
771
1979
  # Information about the connection.
772
1980
  # @return [Types::Connection]
773
1981
  #
774
- # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeleteConnectionResponse AWS API Documentation
1982
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeleteConnectionResponse AWS API Documentation
1983
+ #
1984
+ class DeleteConnectionResponse < Struct.new(
1985
+ :connection)
1986
+ SENSITIVE = []
1987
+ include Aws::Structure
1988
+ end
1989
+
1990
+ # @note When making an API call, you may pass DeleteCoreNetworkPolicyVersionRequest
1991
+ # data as a hash:
1992
+ #
1993
+ # {
1994
+ # core_network_id: "CoreNetworkId", # required
1995
+ # policy_version_id: 1, # required
1996
+ # }
1997
+ #
1998
+ # @!attribute [rw] core_network_id
1999
+ # The ID of a core network for the deleted policy.
2000
+ # @return [String]
2001
+ #
2002
+ # @!attribute [rw] policy_version_id
2003
+ # The version ID of the deleted policy.
2004
+ # @return [Integer]
2005
+ #
2006
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeleteCoreNetworkPolicyVersionRequest AWS API Documentation
2007
+ #
2008
+ class DeleteCoreNetworkPolicyVersionRequest < Struct.new(
2009
+ :core_network_id,
2010
+ :policy_version_id)
2011
+ SENSITIVE = []
2012
+ include Aws::Structure
2013
+ end
2014
+
2015
+ # @!attribute [rw] core_network_policy
2016
+ # Returns information about the deleted policy version.
2017
+ # @return [Types::CoreNetworkPolicy]
2018
+ #
2019
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeleteCoreNetworkPolicyVersionResponse AWS API Documentation
2020
+ #
2021
+ class DeleteCoreNetworkPolicyVersionResponse < Struct.new(
2022
+ :core_network_policy)
2023
+ SENSITIVE = []
2024
+ include Aws::Structure
2025
+ end
2026
+
2027
+ # @note When making an API call, you may pass DeleteCoreNetworkRequest
2028
+ # data as a hash:
2029
+ #
2030
+ # {
2031
+ # core_network_id: "CoreNetworkId", # required
2032
+ # }
2033
+ #
2034
+ # @!attribute [rw] core_network_id
2035
+ # The network ID of the deleted core network.
2036
+ # @return [String]
2037
+ #
2038
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeleteCoreNetworkRequest AWS API Documentation
2039
+ #
2040
+ class DeleteCoreNetworkRequest < Struct.new(
2041
+ :core_network_id)
2042
+ SENSITIVE = []
2043
+ include Aws::Structure
2044
+ end
2045
+
2046
+ # @!attribute [rw] core_network
2047
+ # Information about the deleted core network.
2048
+ # @return [Types::CoreNetwork]
2049
+ #
2050
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeleteCoreNetworkResponse AWS API Documentation
775
2051
  #
776
- class DeleteConnectionResponse < Struct.new(
777
- :connection)
2052
+ class DeleteCoreNetworkResponse < Struct.new(
2053
+ :core_network)
778
2054
  SENSITIVE = []
779
2055
  include Aws::Structure
780
2056
  end
@@ -783,8 +2059,8 @@ module Aws::NetworkManager
783
2059
  # data as a hash:
784
2060
  #
785
2061
  # {
786
- # global_network_id: "String", # required
787
- # device_id: "String", # required
2062
+ # global_network_id: "GlobalNetworkId", # required
2063
+ # device_id: "DeviceId", # required
788
2064
  # }
789
2065
  #
790
2066
  # @!attribute [rw] global_network_id
@@ -820,7 +2096,7 @@ module Aws::NetworkManager
820
2096
  # data as a hash:
821
2097
  #
822
2098
  # {
823
- # global_network_id: "String", # required
2099
+ # global_network_id: "GlobalNetworkId", # required
824
2100
  # }
825
2101
  #
826
2102
  # @!attribute [rw] global_network_id
@@ -851,8 +2127,8 @@ module Aws::NetworkManager
851
2127
  # data as a hash:
852
2128
  #
853
2129
  # {
854
- # global_network_id: "String", # required
855
- # link_id: "String", # required
2130
+ # global_network_id: "GlobalNetworkId", # required
2131
+ # link_id: "LinkId", # required
856
2132
  # }
857
2133
  #
858
2134
  # @!attribute [rw] global_network_id
@@ -884,12 +2160,35 @@ module Aws::NetworkManager
884
2160
  include Aws::Structure
885
2161
  end
886
2162
 
2163
+ # @note When making an API call, you may pass DeleteResourcePolicyRequest
2164
+ # data as a hash:
2165
+ #
2166
+ # {
2167
+ # resource_arn: "ResourceArn", # required
2168
+ # }
2169
+ #
2170
+ # @!attribute [rw] resource_arn
2171
+ # The ARN of the policy to delete.
2172
+ # @return [String]
2173
+ #
2174
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeleteResourcePolicyRequest AWS API Documentation
2175
+ #
2176
+ class DeleteResourcePolicyRequest < Struct.new(
2177
+ :resource_arn)
2178
+ SENSITIVE = []
2179
+ include Aws::Structure
2180
+ end
2181
+
2182
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeleteResourcePolicyResponse AWS API Documentation
2183
+ #
2184
+ class DeleteResourcePolicyResponse < Aws::EmptyStructure; end
2185
+
887
2186
  # @note When making an API call, you may pass DeleteSiteRequest
888
2187
  # data as a hash:
889
2188
  #
890
2189
  # {
891
- # global_network_id: "String", # required
892
- # site_id: "String", # required
2190
+ # global_network_id: "GlobalNetworkId", # required
2191
+ # site_id: "SiteId", # required
893
2192
  # }
894
2193
  #
895
2194
  # @!attribute [rw] global_network_id
@@ -925,8 +2224,8 @@ module Aws::NetworkManager
925
2224
  # data as a hash:
926
2225
  #
927
2226
  # {
928
- # global_network_id: "String", # required
929
- # transit_gateway_arn: "String", # required
2227
+ # global_network_id: "GlobalNetworkId", # required
2228
+ # transit_gateway_arn: "TransitGatewayArn", # required
930
2229
  # }
931
2230
  #
932
2231
  # @!attribute [rw] global_network_id
@@ -962,9 +2261,9 @@ module Aws::NetworkManager
962
2261
  # data as a hash:
963
2262
  #
964
2263
  # {
965
- # global_network_ids: ["String"],
2264
+ # global_network_ids: ["GlobalNetworkId"],
966
2265
  # max_results: 1,
967
- # next_token: "String",
2266
+ # next_token: "NextToken",
968
2267
  # }
969
2268
  #
970
2269
  # @!attribute [rw] global_network_ids
@@ -1085,12 +2384,49 @@ module Aws::NetworkManager
1085
2384
  include Aws::Structure
1086
2385
  end
1087
2386
 
2387
+ # @note When making an API call, you may pass DisassociateConnectPeerRequest
2388
+ # data as a hash:
2389
+ #
2390
+ # {
2391
+ # global_network_id: "GlobalNetworkId", # required
2392
+ # connect_peer_id: "ConnectPeerId", # required
2393
+ # }
2394
+ #
2395
+ # @!attribute [rw] global_network_id
2396
+ # The ID of the global network.
2397
+ # @return [String]
2398
+ #
2399
+ # @!attribute [rw] connect_peer_id
2400
+ # The ID of the Connect peer to disassociate from a device.
2401
+ # @return [String]
2402
+ #
2403
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DisassociateConnectPeerRequest AWS API Documentation
2404
+ #
2405
+ class DisassociateConnectPeerRequest < Struct.new(
2406
+ :global_network_id,
2407
+ :connect_peer_id)
2408
+ SENSITIVE = []
2409
+ include Aws::Structure
2410
+ end
2411
+
2412
+ # @!attribute [rw] connect_peer_association
2413
+ # Describes the Connect peer association.
2414
+ # @return [Types::ConnectPeerAssociation]
2415
+ #
2416
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DisassociateConnectPeerResponse AWS API Documentation
2417
+ #
2418
+ class DisassociateConnectPeerResponse < Struct.new(
2419
+ :connect_peer_association)
2420
+ SENSITIVE = []
2421
+ include Aws::Structure
2422
+ end
2423
+
1088
2424
  # @note When making an API call, you may pass DisassociateCustomerGatewayRequest
1089
2425
  # data as a hash:
1090
2426
  #
1091
2427
  # {
1092
- # global_network_id: "String", # required
1093
- # customer_gateway_arn: "String", # required
2428
+ # global_network_id: "GlobalNetworkId", # required
2429
+ # customer_gateway_arn: "CustomerGatewayArn", # required
1094
2430
  # }
1095
2431
  #
1096
2432
  # @!attribute [rw] global_network_id
@@ -1126,9 +2462,9 @@ module Aws::NetworkManager
1126
2462
  # data as a hash:
1127
2463
  #
1128
2464
  # {
1129
- # global_network_id: "String", # required
1130
- # device_id: "String", # required
1131
- # link_id: "String", # required
2465
+ # global_network_id: "GlobalNetworkId", # required
2466
+ # device_id: "DeviceId", # required
2467
+ # link_id: "LinkId", # required
1132
2468
  # }
1133
2469
  #
1134
2470
  # @!attribute [rw] global_network_id
@@ -1169,8 +2505,8 @@ module Aws::NetworkManager
1169
2505
  # data as a hash:
1170
2506
  #
1171
2507
  # {
1172
- # global_network_id: "String", # required
1173
- # transit_gateway_connect_peer_arn: "String", # required
2508
+ # global_network_id: "GlobalNetworkId", # required
2509
+ # transit_gateway_connect_peer_arn: "TransitGatewayConnectPeerArn", # required
1174
2510
  # }
1175
2511
  #
1176
2512
  # @!attribute [rw] global_network_id
@@ -1181,83 +2517,356 @@ module Aws::NetworkManager
1181
2517
  # The Amazon Resource Name (ARN) of the transit gateway Connect peer.
1182
2518
  # @return [String]
1183
2519
  #
1184
- # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DisassociateTransitGatewayConnectPeerRequest AWS API Documentation
2520
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DisassociateTransitGatewayConnectPeerRequest AWS API Documentation
2521
+ #
2522
+ class DisassociateTransitGatewayConnectPeerRequest < Struct.new(
2523
+ :global_network_id,
2524
+ :transit_gateway_connect_peer_arn)
2525
+ SENSITIVE = []
2526
+ include Aws::Structure
2527
+ end
2528
+
2529
+ # @!attribute [rw] transit_gateway_connect_peer_association
2530
+ # The transit gateway Connect peer association.
2531
+ # @return [Types::TransitGatewayConnectPeerAssociation]
2532
+ #
2533
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DisassociateTransitGatewayConnectPeerResponse AWS API Documentation
2534
+ #
2535
+ class DisassociateTransitGatewayConnectPeerResponse < Struct.new(
2536
+ :transit_gateway_connect_peer_association)
2537
+ SENSITIVE = []
2538
+ include Aws::Structure
2539
+ end
2540
+
2541
+ # @note When making an API call, you may pass ExecuteCoreNetworkChangeSetRequest
2542
+ # data as a hash:
2543
+ #
2544
+ # {
2545
+ # core_network_id: "CoreNetworkId", # required
2546
+ # policy_version_id: 1, # required
2547
+ # }
2548
+ #
2549
+ # @!attribute [rw] core_network_id
2550
+ # The ID of a core network.
2551
+ # @return [String]
2552
+ #
2553
+ # @!attribute [rw] policy_version_id
2554
+ # The ID of the policy version.
2555
+ # @return [Integer]
2556
+ #
2557
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ExecuteCoreNetworkChangeSetRequest AWS API Documentation
2558
+ #
2559
+ class ExecuteCoreNetworkChangeSetRequest < Struct.new(
2560
+ :core_network_id,
2561
+ :policy_version_id)
2562
+ SENSITIVE = []
2563
+ include Aws::Structure
2564
+ end
2565
+
2566
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ExecuteCoreNetworkChangeSetResponse AWS API Documentation
2567
+ #
2568
+ class ExecuteCoreNetworkChangeSetResponse < Aws::EmptyStructure; end
2569
+
2570
+ # @note When making an API call, you may pass GetConnectAttachmentRequest
2571
+ # data as a hash:
2572
+ #
2573
+ # {
2574
+ # attachment_id: "AttachmentId", # required
2575
+ # }
2576
+ #
2577
+ # @!attribute [rw] attachment_id
2578
+ # The ID of the attachment.
2579
+ # @return [String]
2580
+ #
2581
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetConnectAttachmentRequest AWS API Documentation
2582
+ #
2583
+ class GetConnectAttachmentRequest < Struct.new(
2584
+ :attachment_id)
2585
+ SENSITIVE = []
2586
+ include Aws::Structure
2587
+ end
2588
+
2589
+ # @!attribute [rw] connect_attachment
2590
+ # Details about the Connect attachment.
2591
+ # @return [Types::ConnectAttachment]
2592
+ #
2593
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetConnectAttachmentResponse AWS API Documentation
2594
+ #
2595
+ class GetConnectAttachmentResponse < Struct.new(
2596
+ :connect_attachment)
2597
+ SENSITIVE = []
2598
+ include Aws::Structure
2599
+ end
2600
+
2601
+ # @note When making an API call, you may pass GetConnectPeerAssociationsRequest
2602
+ # data as a hash:
2603
+ #
2604
+ # {
2605
+ # global_network_id: "GlobalNetworkId", # required
2606
+ # connect_peer_ids: ["ConnectPeerId"],
2607
+ # max_results: 1,
2608
+ # next_token: "NextToken",
2609
+ # }
2610
+ #
2611
+ # @!attribute [rw] global_network_id
2612
+ # The ID of the global network.
2613
+ # @return [String]
2614
+ #
2615
+ # @!attribute [rw] connect_peer_ids
2616
+ # The IDs of the Connect peers.
2617
+ # @return [Array<String>]
2618
+ #
2619
+ # @!attribute [rw] max_results
2620
+ # The maximum number of results to return.
2621
+ # @return [Integer]
2622
+ #
2623
+ # @!attribute [rw] next_token
2624
+ # The token for the next page of results.
2625
+ # @return [String]
2626
+ #
2627
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetConnectPeerAssociationsRequest AWS API Documentation
2628
+ #
2629
+ class GetConnectPeerAssociationsRequest < Struct.new(
2630
+ :global_network_id,
2631
+ :connect_peer_ids,
2632
+ :max_results,
2633
+ :next_token)
2634
+ SENSITIVE = []
2635
+ include Aws::Structure
2636
+ end
2637
+
2638
+ # @!attribute [rw] connect_peer_associations
2639
+ # Displays a list of Connect peer associations.
2640
+ # @return [Array<Types::ConnectPeerAssociation>]
2641
+ #
2642
+ # @!attribute [rw] next_token
2643
+ # The token for the next page of results.
2644
+ # @return [String]
2645
+ #
2646
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetConnectPeerAssociationsResponse AWS API Documentation
2647
+ #
2648
+ class GetConnectPeerAssociationsResponse < Struct.new(
2649
+ :connect_peer_associations,
2650
+ :next_token)
2651
+ SENSITIVE = []
2652
+ include Aws::Structure
2653
+ end
2654
+
2655
+ # @note When making an API call, you may pass GetConnectPeerRequest
2656
+ # data as a hash:
2657
+ #
2658
+ # {
2659
+ # connect_peer_id: "ConnectPeerId", # required
2660
+ # }
2661
+ #
2662
+ # @!attribute [rw] connect_peer_id
2663
+ # The ID of the Connect peer.
2664
+ # @return [String]
2665
+ #
2666
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetConnectPeerRequest AWS API Documentation
2667
+ #
2668
+ class GetConnectPeerRequest < Struct.new(
2669
+ :connect_peer_id)
2670
+ SENSITIVE = []
2671
+ include Aws::Structure
2672
+ end
2673
+
2674
+ # @!attribute [rw] connect_peer
2675
+ # Returns information about a core network Connect peer.
2676
+ # @return [Types::ConnectPeer]
2677
+ #
2678
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetConnectPeerResponse AWS API Documentation
2679
+ #
2680
+ class GetConnectPeerResponse < Struct.new(
2681
+ :connect_peer)
2682
+ SENSITIVE = []
2683
+ include Aws::Structure
2684
+ end
2685
+
2686
+ # @note When making an API call, you may pass GetConnectionsRequest
2687
+ # data as a hash:
2688
+ #
2689
+ # {
2690
+ # global_network_id: "GlobalNetworkId", # required
2691
+ # connection_ids: ["ConnectionId"],
2692
+ # device_id: "DeviceId",
2693
+ # max_results: 1,
2694
+ # next_token: "NextToken",
2695
+ # }
2696
+ #
2697
+ # @!attribute [rw] global_network_id
2698
+ # The ID of the global network.
2699
+ # @return [String]
2700
+ #
2701
+ # @!attribute [rw] connection_ids
2702
+ # One or more connection IDs.
2703
+ # @return [Array<String>]
2704
+ #
2705
+ # @!attribute [rw] device_id
2706
+ # The ID of the device.
2707
+ # @return [String]
2708
+ #
2709
+ # @!attribute [rw] max_results
2710
+ # The maximum number of results to return.
2711
+ # @return [Integer]
2712
+ #
2713
+ # @!attribute [rw] next_token
2714
+ # The token for the next page of results.
2715
+ # @return [String]
2716
+ #
2717
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetConnectionsRequest AWS API Documentation
2718
+ #
2719
+ class GetConnectionsRequest < Struct.new(
2720
+ :global_network_id,
2721
+ :connection_ids,
2722
+ :device_id,
2723
+ :max_results,
2724
+ :next_token)
2725
+ SENSITIVE = []
2726
+ include Aws::Structure
2727
+ end
2728
+
2729
+ # @!attribute [rw] connections
2730
+ # Information about the connections.
2731
+ # @return [Array<Types::Connection>]
2732
+ #
2733
+ # @!attribute [rw] next_token
2734
+ # The token to use for the next page of results.
2735
+ # @return [String]
2736
+ #
2737
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetConnectionsResponse AWS API Documentation
2738
+ #
2739
+ class GetConnectionsResponse < Struct.new(
2740
+ :connections,
2741
+ :next_token)
2742
+ SENSITIVE = []
2743
+ include Aws::Structure
2744
+ end
2745
+
2746
+ # @note When making an API call, you may pass GetCoreNetworkChangeSetRequest
2747
+ # data as a hash:
2748
+ #
2749
+ # {
2750
+ # core_network_id: "CoreNetworkId", # required
2751
+ # policy_version_id: 1, # required
2752
+ # max_results: 1,
2753
+ # next_token: "NextToken",
2754
+ # }
2755
+ #
2756
+ # @!attribute [rw] core_network_id
2757
+ # The ID of a core network.
2758
+ # @return [String]
2759
+ #
2760
+ # @!attribute [rw] policy_version_id
2761
+ # The ID of the policy version.
2762
+ # @return [Integer]
2763
+ #
2764
+ # @!attribute [rw] max_results
2765
+ # The maximum number of results to return.
2766
+ # @return [Integer]
2767
+ #
2768
+ # @!attribute [rw] next_token
2769
+ # The token for the next page of results.
2770
+ # @return [String]
2771
+ #
2772
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetCoreNetworkChangeSetRequest AWS API Documentation
2773
+ #
2774
+ class GetCoreNetworkChangeSetRequest < Struct.new(
2775
+ :core_network_id,
2776
+ :policy_version_id,
2777
+ :max_results,
2778
+ :next_token)
2779
+ SENSITIVE = []
2780
+ include Aws::Structure
2781
+ end
2782
+
2783
+ # @!attribute [rw] core_network_changes
2784
+ # Describes a core network changes.
2785
+ # @return [Array<Types::CoreNetworkChange>]
2786
+ #
2787
+ # @!attribute [rw] next_token
2788
+ # The token for the next page of results.
2789
+ # @return [String]
2790
+ #
2791
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetCoreNetworkChangeSetResponse AWS API Documentation
2792
+ #
2793
+ class GetCoreNetworkChangeSetResponse < Struct.new(
2794
+ :core_network_changes,
2795
+ :next_token)
2796
+ SENSITIVE = []
2797
+ include Aws::Structure
2798
+ end
2799
+
2800
+ # @note When making an API call, you may pass GetCoreNetworkPolicyRequest
2801
+ # data as a hash:
2802
+ #
2803
+ # {
2804
+ # core_network_id: "CoreNetworkId", # required
2805
+ # policy_version_id: 1,
2806
+ # alias: "LIVE", # accepts LIVE, LATEST
2807
+ # }
2808
+ #
2809
+ # @!attribute [rw] core_network_id
2810
+ # The ID of a core network.
2811
+ # @return [String]
2812
+ #
2813
+ # @!attribute [rw] policy_version_id
2814
+ # The ID of a core network policy version.
2815
+ # @return [Integer]
2816
+ #
2817
+ # @!attribute [rw] alias
2818
+ # The alias of a core network policy
2819
+ # @return [String]
2820
+ #
2821
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetCoreNetworkPolicyRequest AWS API Documentation
1185
2822
  #
1186
- class DisassociateTransitGatewayConnectPeerRequest < Struct.new(
1187
- :global_network_id,
1188
- :transit_gateway_connect_peer_arn)
2823
+ class GetCoreNetworkPolicyRequest < Struct.new(
2824
+ :core_network_id,
2825
+ :policy_version_id,
2826
+ :alias)
1189
2827
  SENSITIVE = []
1190
2828
  include Aws::Structure
1191
2829
  end
1192
2830
 
1193
- # @!attribute [rw] transit_gateway_connect_peer_association
1194
- # The transit gateway Connect peer association.
1195
- # @return [Types::TransitGatewayConnectPeerAssociation]
2831
+ # @!attribute [rw] core_network_policy
2832
+ # The details about a core network policy.
2833
+ # @return [Types::CoreNetworkPolicy]
1196
2834
  #
1197
- # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DisassociateTransitGatewayConnectPeerResponse AWS API Documentation
2835
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetCoreNetworkPolicyResponse AWS API Documentation
1198
2836
  #
1199
- class DisassociateTransitGatewayConnectPeerResponse < Struct.new(
1200
- :transit_gateway_connect_peer_association)
2837
+ class GetCoreNetworkPolicyResponse < Struct.new(
2838
+ :core_network_policy)
1201
2839
  SENSITIVE = []
1202
2840
  include Aws::Structure
1203
2841
  end
1204
2842
 
1205
- # @note When making an API call, you may pass GetConnectionsRequest
2843
+ # @note When making an API call, you may pass GetCoreNetworkRequest
1206
2844
  # data as a hash:
1207
2845
  #
1208
2846
  # {
1209
- # global_network_id: "String", # required
1210
- # connection_ids: ["String"],
1211
- # device_id: "String",
1212
- # max_results: 1,
1213
- # next_token: "String",
2847
+ # core_network_id: "CoreNetworkId", # required
1214
2848
  # }
1215
2849
  #
1216
- # @!attribute [rw] global_network_id
1217
- # The ID of the global network.
1218
- # @return [String]
1219
- #
1220
- # @!attribute [rw] connection_ids
1221
- # One or more connection IDs.
1222
- # @return [Array<String>]
1223
- #
1224
- # @!attribute [rw] device_id
1225
- # The ID of the device.
1226
- # @return [String]
1227
- #
1228
- # @!attribute [rw] max_results
1229
- # The maximum number of results to return.
1230
- # @return [Integer]
1231
- #
1232
- # @!attribute [rw] next_token
1233
- # The token for the next page of results.
2850
+ # @!attribute [rw] core_network_id
2851
+ # The ID of a core network.
1234
2852
  # @return [String]
1235
2853
  #
1236
- # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetConnectionsRequest AWS API Documentation
2854
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetCoreNetworkRequest AWS API Documentation
1237
2855
  #
1238
- class GetConnectionsRequest < Struct.new(
1239
- :global_network_id,
1240
- :connection_ids,
1241
- :device_id,
1242
- :max_results,
1243
- :next_token)
2856
+ class GetCoreNetworkRequest < Struct.new(
2857
+ :core_network_id)
1244
2858
  SENSITIVE = []
1245
2859
  include Aws::Structure
1246
2860
  end
1247
2861
 
1248
- # @!attribute [rw] connections
1249
- # Information about the connections.
1250
- # @return [Array<Types::Connection>]
1251
- #
1252
- # @!attribute [rw] next_token
1253
- # The token to use for the next page of results.
1254
- # @return [String]
2862
+ # @!attribute [rw] core_network
2863
+ # Details about a core network.
2864
+ # @return [Types::CoreNetwork]
1255
2865
  #
1256
- # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetConnectionsResponse AWS API Documentation
2866
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetCoreNetworkResponse AWS API Documentation
1257
2867
  #
1258
- class GetConnectionsResponse < Struct.new(
1259
- :connections,
1260
- :next_token)
2868
+ class GetCoreNetworkResponse < Struct.new(
2869
+ :core_network)
1261
2870
  SENSITIVE = []
1262
2871
  include Aws::Structure
1263
2872
  end
@@ -1266,10 +2875,10 @@ module Aws::NetworkManager
1266
2875
  # data as a hash:
1267
2876
  #
1268
2877
  # {
1269
- # global_network_id: "String", # required
1270
- # customer_gateway_arns: ["String"],
2878
+ # global_network_id: "GlobalNetworkId", # required
2879
+ # customer_gateway_arns: ["CustomerGatewayArn"],
1271
2880
  # max_results: 1,
1272
- # next_token: "String",
2881
+ # next_token: "NextToken",
1273
2882
  # }
1274
2883
  #
1275
2884
  # @!attribute [rw] global_network_id
@@ -1321,11 +2930,11 @@ module Aws::NetworkManager
1321
2930
  # data as a hash:
1322
2931
  #
1323
2932
  # {
1324
- # global_network_id: "String", # required
1325
- # device_ids: ["String"],
1326
- # site_id: "String",
2933
+ # global_network_id: "GlobalNetworkId", # required
2934
+ # device_ids: ["DeviceId"],
2935
+ # site_id: "SiteId",
1327
2936
  # max_results: 1,
1328
- # next_token: "String",
2937
+ # next_token: "NextToken",
1329
2938
  # }
1330
2939
  #
1331
2940
  # @!attribute [rw] global_network_id
@@ -1381,11 +2990,11 @@ module Aws::NetworkManager
1381
2990
  # data as a hash:
1382
2991
  #
1383
2992
  # {
1384
- # global_network_id: "String", # required
1385
- # device_id: "String",
1386
- # link_id: "String",
2993
+ # global_network_id: "GlobalNetworkId", # required
2994
+ # device_id: "DeviceId",
2995
+ # link_id: "LinkId",
1387
2996
  # max_results: 1,
1388
- # next_token: "String",
2997
+ # next_token: "NextToken",
1389
2998
  # }
1390
2999
  #
1391
3000
  # @!attribute [rw] global_network_id
@@ -1441,13 +3050,13 @@ module Aws::NetworkManager
1441
3050
  # data as a hash:
1442
3051
  #
1443
3052
  # {
1444
- # global_network_id: "String", # required
1445
- # link_ids: ["String"],
1446
- # site_id: "String",
1447
- # type: "String",
1448
- # provider: "String",
3053
+ # global_network_id: "GlobalNetworkId", # required
3054
+ # link_ids: ["LinkId"],
3055
+ # site_id: "SiteId",
3056
+ # type: "ConstrainedString",
3057
+ # provider: "ConstrainedString",
1449
3058
  # max_results: 1,
1450
- # next_token: "String",
3059
+ # next_token: "NextToken",
1451
3060
  # }
1452
3061
  #
1453
3062
  # @!attribute [rw] global_network_id
@@ -1513,10 +3122,10 @@ module Aws::NetworkManager
1513
3122
  # data as a hash:
1514
3123
  #
1515
3124
  # {
1516
- # global_network_id: "String", # required
1517
- # resource_type: "String",
3125
+ # global_network_id: "GlobalNetworkId", # required
3126
+ # resource_type: "ConstrainedString",
1518
3127
  # max_results: 1,
1519
- # next_token: "String",
3128
+ # next_token: "NextToken",
1520
3129
  # }
1521
3130
  #
1522
3131
  # @!attribute [rw] global_network_id
@@ -1599,20 +3208,25 @@ module Aws::NetworkManager
1599
3208
  # data as a hash:
1600
3209
  #
1601
3210
  # {
1602
- # global_network_id: "String", # required
1603
- # registered_gateway_arn: "String",
1604
- # aws_region: "String",
1605
- # account_id: "String",
1606
- # resource_type: "String",
1607
- # resource_arn: "String",
3211
+ # global_network_id: "GlobalNetworkId", # required
3212
+ # core_network_id: "CoreNetworkId",
3213
+ # registered_gateway_arn: "ResourceArn",
3214
+ # aws_region: "ExternalRegionCode",
3215
+ # account_id: "AWSAccountId",
3216
+ # resource_type: "ConstrainedString",
3217
+ # resource_arn: "ResourceArn",
1608
3218
  # max_results: 1,
1609
- # next_token: "String",
3219
+ # next_token: "NextToken",
1610
3220
  # }
1611
3221
  #
1612
3222
  # @!attribute [rw] global_network_id
1613
3223
  # The ID of the global network.
1614
3224
  # @return [String]
1615
3225
  #
3226
+ # @!attribute [rw] core_network_id
3227
+ # The ID of a core network.
3228
+ # @return [String]
3229
+ #
1616
3230
  # @!attribute [rw] registered_gateway_arn
1617
3231
  # The ARN of the registered gateway.
1618
3232
  # @return [String]
@@ -1677,6 +3291,7 @@ module Aws::NetworkManager
1677
3291
  #
1678
3292
  class GetNetworkResourceRelationshipsRequest < Struct.new(
1679
3293
  :global_network_id,
3294
+ :core_network_id,
1680
3295
  :registered_gateway_arn,
1681
3296
  :aws_region,
1682
3297
  :account_id,
@@ -1709,20 +3324,25 @@ module Aws::NetworkManager
1709
3324
  # data as a hash:
1710
3325
  #
1711
3326
  # {
1712
- # global_network_id: "String", # required
1713
- # registered_gateway_arn: "String",
1714
- # aws_region: "String",
1715
- # account_id: "String",
1716
- # resource_type: "String",
1717
- # resource_arn: "String",
3327
+ # global_network_id: "GlobalNetworkId", # required
3328
+ # core_network_id: "CoreNetworkId",
3329
+ # registered_gateway_arn: "ResourceArn",
3330
+ # aws_region: "ExternalRegionCode",
3331
+ # account_id: "AWSAccountId",
3332
+ # resource_type: "ConstrainedString",
3333
+ # resource_arn: "ResourceArn",
1718
3334
  # max_results: 1,
1719
- # next_token: "String",
3335
+ # next_token: "NextToken",
1720
3336
  # }
1721
3337
  #
1722
3338
  # @!attribute [rw] global_network_id
1723
3339
  # The ID of the global network.
1724
3340
  # @return [String]
1725
3341
  #
3342
+ # @!attribute [rw] core_network_id
3343
+ # The ID of a core network.
3344
+ # @return [String]
3345
+ #
1726
3346
  # @!attribute [rw] registered_gateway_arn
1727
3347
  # The ARN of the gateway.
1728
3348
  # @return [String]
@@ -1806,6 +3426,7 @@ module Aws::NetworkManager
1806
3426
  #
1807
3427
  class GetNetworkResourcesRequest < Struct.new(
1808
3428
  :global_network_id,
3429
+ :core_network_id,
1809
3430
  :registered_gateway_arn,
1810
3431
  :aws_region,
1811
3432
  :account_id,
@@ -1838,15 +3459,20 @@ module Aws::NetworkManager
1838
3459
  # data as a hash:
1839
3460
  #
1840
3461
  # {
1841
- # global_network_id: "String", # required
3462
+ # global_network_id: "GlobalNetworkId", # required
1842
3463
  # route_table_identifier: { # required
1843
- # transit_gateway_route_table_arn: "String",
3464
+ # transit_gateway_route_table_arn: "TransitGatewayRouteTableArn",
3465
+ # core_network_segment_edge: {
3466
+ # core_network_id: "CoreNetworkId",
3467
+ # segment_name: "ConstrainedString",
3468
+ # edge_location: "ExternalRegionCode",
3469
+ # },
1844
3470
  # },
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"],
3471
+ # exact_cidr_matches: ["ConstrainedString"],
3472
+ # longest_prefix_matches: ["ConstrainedString"],
3473
+ # subnet_of_matches: ["ConstrainedString"],
3474
+ # supernet_of_matches: ["ConstrainedString"],
3475
+ # prefix_list_ids: ["ConstrainedString"],
1850
3476
  # states: ["ACTIVE"], # accepts ACTIVE, BLACKHOLE
1851
3477
  # types: ["PROPAGATED"], # accepts PROPAGATED, STATIC
1852
3478
  # destination_filters: {
@@ -1918,6 +3544,10 @@ module Aws::NetworkManager
1918
3544
  # The ARN of the route table.
1919
3545
  # @return [String]
1920
3546
  #
3547
+ # @!attribute [rw] core_network_segment_edge
3548
+ # Describes a core network segment edge.
3549
+ # @return [Types::CoreNetworkSegmentEdgeIdentifier]
3550
+ #
1921
3551
  # @!attribute [rw] route_table_type
1922
3552
  # The route table type.
1923
3553
  # @return [String]
@@ -1934,6 +3564,7 @@ module Aws::NetworkManager
1934
3564
  #
1935
3565
  class GetNetworkRoutesResponse < Struct.new(
1936
3566
  :route_table_arn,
3567
+ :core_network_segment_edge,
1937
3568
  :route_table_type,
1938
3569
  :route_table_timestamp,
1939
3570
  :network_routes)
@@ -1945,20 +3576,25 @@ module Aws::NetworkManager
1945
3576
  # data as a hash:
1946
3577
  #
1947
3578
  # {
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",
3579
+ # global_network_id: "GlobalNetworkId", # required
3580
+ # core_network_id: "CoreNetworkId",
3581
+ # registered_gateway_arn: "ResourceArn",
3582
+ # aws_region: "ExternalRegionCode",
3583
+ # account_id: "AWSAccountId",
3584
+ # resource_type: "ConstrainedString",
3585
+ # resource_arn: "ResourceArn",
1954
3586
  # max_results: 1,
1955
- # next_token: "String",
3587
+ # next_token: "NextToken",
1956
3588
  # }
1957
3589
  #
1958
3590
  # @!attribute [rw] global_network_id
1959
3591
  # The ID of the global network.
1960
3592
  # @return [String]
1961
3593
  #
3594
+ # @!attribute [rw] core_network_id
3595
+ # The ID of a core network.
3596
+ # @return [String]
3597
+ #
1962
3598
  # @!attribute [rw] registered_gateway_arn
1963
3599
  # The ARN of the gateway.
1964
3600
  # @return [String]
@@ -2023,6 +3659,7 @@ module Aws::NetworkManager
2023
3659
  #
2024
3660
  class GetNetworkTelemetryRequest < Struct.new(
2025
3661
  :global_network_id,
3662
+ :core_network_id,
2026
3663
  :registered_gateway_arn,
2027
3664
  :aws_region,
2028
3665
  :account_id,
@@ -2051,12 +3688,43 @@ module Aws::NetworkManager
2051
3688
  include Aws::Structure
2052
3689
  end
2053
3690
 
3691
+ # @note When making an API call, you may pass GetResourcePolicyRequest
3692
+ # data as a hash:
3693
+ #
3694
+ # {
3695
+ # resource_arn: "ResourceArn", # required
3696
+ # }
3697
+ #
3698
+ # @!attribute [rw] resource_arn
3699
+ # The ARN of the resource.
3700
+ # @return [String]
3701
+ #
3702
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetResourcePolicyRequest AWS API Documentation
3703
+ #
3704
+ class GetResourcePolicyRequest < Struct.new(
3705
+ :resource_arn)
3706
+ SENSITIVE = []
3707
+ include Aws::Structure
3708
+ end
3709
+
3710
+ # @!attribute [rw] policy_document
3711
+ # The resource policy document.
3712
+ # @return [String]
3713
+ #
3714
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetResourcePolicyResponse AWS API Documentation
3715
+ #
3716
+ class GetResourcePolicyResponse < Struct.new(
3717
+ :policy_document)
3718
+ SENSITIVE = []
3719
+ include Aws::Structure
3720
+ end
3721
+
2054
3722
  # @note When making an API call, you may pass GetRouteAnalysisRequest
2055
3723
  # data as a hash:
2056
3724
  #
2057
3725
  # {
2058
- # global_network_id: "String", # required
2059
- # route_analysis_id: "String", # required
3726
+ # global_network_id: "GlobalNetworkId", # required
3727
+ # route_analysis_id: "ConstrainedString", # required
2060
3728
  # }
2061
3729
  #
2062
3730
  # @!attribute [rw] global_network_id
@@ -2088,14 +3756,45 @@ module Aws::NetworkManager
2088
3756
  include Aws::Structure
2089
3757
  end
2090
3758
 
3759
+ # @note When making an API call, you may pass GetSiteToSiteVpnAttachmentRequest
3760
+ # data as a hash:
3761
+ #
3762
+ # {
3763
+ # attachment_id: "AttachmentId", # required
3764
+ # }
3765
+ #
3766
+ # @!attribute [rw] attachment_id
3767
+ # The ID of the attachment.
3768
+ # @return [String]
3769
+ #
3770
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetSiteToSiteVpnAttachmentRequest AWS API Documentation
3771
+ #
3772
+ class GetSiteToSiteVpnAttachmentRequest < Struct.new(
3773
+ :attachment_id)
3774
+ SENSITIVE = []
3775
+ include Aws::Structure
3776
+ end
3777
+
3778
+ # @!attribute [rw] site_to_site_vpn_attachment
3779
+ # Describes the site-to-site attachment.
3780
+ # @return [Types::SiteToSiteVpnAttachment]
3781
+ #
3782
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetSiteToSiteVpnAttachmentResponse AWS API Documentation
3783
+ #
3784
+ class GetSiteToSiteVpnAttachmentResponse < Struct.new(
3785
+ :site_to_site_vpn_attachment)
3786
+ SENSITIVE = []
3787
+ include Aws::Structure
3788
+ end
3789
+
2091
3790
  # @note When making an API call, you may pass GetSitesRequest
2092
3791
  # data as a hash:
2093
3792
  #
2094
3793
  # {
2095
- # global_network_id: "String", # required
2096
- # site_ids: ["String"],
3794
+ # global_network_id: "GlobalNetworkId", # required
3795
+ # site_ids: ["SiteId"],
2097
3796
  # max_results: 1,
2098
- # next_token: "String",
3797
+ # next_token: "NextToken",
2099
3798
  # }
2100
3799
  #
2101
3800
  # @!attribute [rw] global_network_id
@@ -2146,10 +3845,10 @@ module Aws::NetworkManager
2146
3845
  # data as a hash:
2147
3846
  #
2148
3847
  # {
2149
- # global_network_id: "String", # required
2150
- # transit_gateway_connect_peer_arns: ["String"],
3848
+ # global_network_id: "GlobalNetworkId", # required
3849
+ # transit_gateway_connect_peer_arns: ["TransitGatewayConnectPeerArn"],
2151
3850
  # max_results: 1,
2152
- # next_token: "String",
3851
+ # next_token: "NextToken",
2153
3852
  # }
2154
3853
  #
2155
3854
  # @!attribute [rw] global_network_id
@@ -2201,10 +3900,10 @@ module Aws::NetworkManager
2201
3900
  # data as a hash:
2202
3901
  #
2203
3902
  # {
2204
- # global_network_id: "String", # required
2205
- # transit_gateway_arns: ["String"],
3903
+ # global_network_id: "GlobalNetworkId", # required
3904
+ # transit_gateway_arns: ["TransitGatewayArn"],
2206
3905
  # max_results: 1,
2207
- # next_token: "String",
3906
+ # next_token: "NextToken",
2208
3907
  # }
2209
3908
  #
2210
3909
  # @!attribute [rw] global_network_id
@@ -2252,7 +3951,40 @@ module Aws::NetworkManager
2252
3951
  include Aws::Structure
2253
3952
  end
2254
3953
 
2255
- # Describes a global network.
3954
+ # @note When making an API call, you may pass GetVpcAttachmentRequest
3955
+ # data as a hash:
3956
+ #
3957
+ # {
3958
+ # attachment_id: "AttachmentId", # required
3959
+ # }
3960
+ #
3961
+ # @!attribute [rw] attachment_id
3962
+ # The ID of the attachment.
3963
+ # @return [String]
3964
+ #
3965
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetVpcAttachmentRequest AWS API Documentation
3966
+ #
3967
+ class GetVpcAttachmentRequest < Struct.new(
3968
+ :attachment_id)
3969
+ SENSITIVE = []
3970
+ include Aws::Structure
3971
+ end
3972
+
3973
+ # @!attribute [rw] vpc_attachment
3974
+ # Returns details about a VPC attachment.
3975
+ # @return [Types::VpcAttachment]
3976
+ #
3977
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetVpcAttachmentResponse AWS API Documentation
3978
+ #
3979
+ class GetVpcAttachmentResponse < Struct.new(
3980
+ :vpc_attachment)
3981
+ SENSITIVE = []
3982
+ include Aws::Structure
3983
+ end
3984
+
3985
+ # Describes a global network. This is a single private network acting as
3986
+ # a high-level container for your network objects, including an Amazon
3987
+ # Web Services-manged Core Network.
2256
3988
  #
2257
3989
  # @!attribute [rw] global_network_id
2258
3990
  # The ID of the global network.
@@ -2351,53 +4083,263 @@ module Aws::NetworkManager
2351
4083
  # The state of the link.
2352
4084
  # @return [String]
2353
4085
  #
2354
- # @!attribute [rw] tags
2355
- # The tags for the link.
2356
- # @return [Array<Types::Tag>]
4086
+ # @!attribute [rw] tags
4087
+ # The tags for the link.
4088
+ # @return [Array<Types::Tag>]
4089
+ #
4090
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/Link AWS API Documentation
4091
+ #
4092
+ class Link < Struct.new(
4093
+ :link_id,
4094
+ :link_arn,
4095
+ :global_network_id,
4096
+ :site_id,
4097
+ :description,
4098
+ :type,
4099
+ :bandwidth,
4100
+ :provider,
4101
+ :created_at,
4102
+ :state,
4103
+ :tags)
4104
+ SENSITIVE = []
4105
+ include Aws::Structure
4106
+ end
4107
+
4108
+ # Describes the association between a device and a link.
4109
+ #
4110
+ # @!attribute [rw] global_network_id
4111
+ # The ID of the global network.
4112
+ # @return [String]
4113
+ #
4114
+ # @!attribute [rw] device_id
4115
+ # The device ID for the link association.
4116
+ # @return [String]
4117
+ #
4118
+ # @!attribute [rw] link_id
4119
+ # The ID of the link.
4120
+ # @return [String]
4121
+ #
4122
+ # @!attribute [rw] link_association_state
4123
+ # The state of the association.
4124
+ # @return [String]
4125
+ #
4126
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/LinkAssociation AWS API Documentation
4127
+ #
4128
+ class LinkAssociation < Struct.new(
4129
+ :global_network_id,
4130
+ :device_id,
4131
+ :link_id,
4132
+ :link_association_state)
4133
+ SENSITIVE = []
4134
+ include Aws::Structure
4135
+ end
4136
+
4137
+ # @note When making an API call, you may pass ListAttachmentsRequest
4138
+ # data as a hash:
4139
+ #
4140
+ # {
4141
+ # core_network_id: "CoreNetworkId",
4142
+ # attachment_type: "CONNECT", # accepts CONNECT, SITE_TO_SITE_VPN, VPC
4143
+ # edge_location: "ExternalRegionCode",
4144
+ # state: "REJECTED", # accepts REJECTED, PENDING_ATTACHMENT_ACCEPTANCE, CREATING, FAILED, AVAILABLE, UPDATING, PENDING_NETWORK_UPDATE, PENDING_TAG_ACCEPTANCE, DELETING
4145
+ # max_results: 1,
4146
+ # next_token: "NextToken",
4147
+ # }
4148
+ #
4149
+ # @!attribute [rw] core_network_id
4150
+ # The ID of a core network.
4151
+ # @return [String]
4152
+ #
4153
+ # @!attribute [rw] attachment_type
4154
+ # The type of attachment.
4155
+ # @return [String]
4156
+ #
4157
+ # @!attribute [rw] edge_location
4158
+ # The Region where the edge is located.
4159
+ # @return [String]
4160
+ #
4161
+ # @!attribute [rw] state
4162
+ # The state of the attachment.
4163
+ # @return [String]
4164
+ #
4165
+ # @!attribute [rw] max_results
4166
+ # The maximum number of results to return.
4167
+ # @return [Integer]
4168
+ #
4169
+ # @!attribute [rw] next_token
4170
+ # The token for the next page of results.
4171
+ # @return [String]
4172
+ #
4173
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListAttachmentsRequest AWS API Documentation
4174
+ #
4175
+ class ListAttachmentsRequest < Struct.new(
4176
+ :core_network_id,
4177
+ :attachment_type,
4178
+ :edge_location,
4179
+ :state,
4180
+ :max_results,
4181
+ :next_token)
4182
+ SENSITIVE = []
4183
+ include Aws::Structure
4184
+ end
4185
+
4186
+ # @!attribute [rw] attachments
4187
+ # Describes the list of attachments.
4188
+ # @return [Array<Types::Attachment>]
4189
+ #
4190
+ # @!attribute [rw] next_token
4191
+ # The token for the next page of results.
4192
+ # @return [String]
4193
+ #
4194
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListAttachmentsResponse AWS API Documentation
4195
+ #
4196
+ class ListAttachmentsResponse < Struct.new(
4197
+ :attachments,
4198
+ :next_token)
4199
+ SENSITIVE = []
4200
+ include Aws::Structure
4201
+ end
4202
+
4203
+ # @note When making an API call, you may pass ListConnectPeersRequest
4204
+ # data as a hash:
4205
+ #
4206
+ # {
4207
+ # core_network_id: "CoreNetworkId",
4208
+ # connect_attachment_id: "AttachmentId",
4209
+ # max_results: 1,
4210
+ # next_token: "NextToken",
4211
+ # }
4212
+ #
4213
+ # @!attribute [rw] core_network_id
4214
+ # The ID of a core network.
4215
+ # @return [String]
4216
+ #
4217
+ # @!attribute [rw] connect_attachment_id
4218
+ # The ID of the attachment.
4219
+ # @return [String]
4220
+ #
4221
+ # @!attribute [rw] max_results
4222
+ # The maximum number of results to return.
4223
+ # @return [Integer]
4224
+ #
4225
+ # @!attribute [rw] next_token
4226
+ # The token for the next page of results.
4227
+ # @return [String]
4228
+ #
4229
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListConnectPeersRequest AWS API Documentation
4230
+ #
4231
+ class ListConnectPeersRequest < Struct.new(
4232
+ :core_network_id,
4233
+ :connect_attachment_id,
4234
+ :max_results,
4235
+ :next_token)
4236
+ SENSITIVE = []
4237
+ include Aws::Structure
4238
+ end
4239
+
4240
+ # @!attribute [rw] connect_peers
4241
+ # Describes the Connect peers.
4242
+ # @return [Array<Types::ConnectPeerSummary>]
4243
+ #
4244
+ # @!attribute [rw] next_token
4245
+ # The token for the next page of results.
4246
+ # @return [String]
4247
+ #
4248
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListConnectPeersResponse AWS API Documentation
4249
+ #
4250
+ class ListConnectPeersResponse < Struct.new(
4251
+ :connect_peers,
4252
+ :next_token)
4253
+ SENSITIVE = []
4254
+ include Aws::Structure
4255
+ end
4256
+
4257
+ # @note When making an API call, you may pass ListCoreNetworkPolicyVersionsRequest
4258
+ # data as a hash:
4259
+ #
4260
+ # {
4261
+ # core_network_id: "CoreNetworkId", # required
4262
+ # max_results: 1,
4263
+ # next_token: "NextToken",
4264
+ # }
4265
+ #
4266
+ # @!attribute [rw] core_network_id
4267
+ # The ID of a core network.
4268
+ # @return [String]
4269
+ #
4270
+ # @!attribute [rw] max_results
4271
+ # The maximum number of results to return.
4272
+ # @return [Integer]
4273
+ #
4274
+ # @!attribute [rw] next_token
4275
+ # The token for the next page of results.
4276
+ # @return [String]
2357
4277
  #
2358
- # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/Link AWS API Documentation
4278
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListCoreNetworkPolicyVersionsRequest AWS API Documentation
2359
4279
  #
2360
- class Link < Struct.new(
2361
- :link_id,
2362
- :link_arn,
2363
- :global_network_id,
2364
- :site_id,
2365
- :description,
2366
- :type,
2367
- :bandwidth,
2368
- :provider,
2369
- :created_at,
2370
- :state,
2371
- :tags)
4280
+ class ListCoreNetworkPolicyVersionsRequest < Struct.new(
4281
+ :core_network_id,
4282
+ :max_results,
4283
+ :next_token)
2372
4284
  SENSITIVE = []
2373
4285
  include Aws::Structure
2374
4286
  end
2375
4287
 
2376
- # Describes the association between a device and a link.
4288
+ # @!attribute [rw] core_network_policy_versions
4289
+ # Describes core network policy versions.
4290
+ # @return [Array<Types::CoreNetworkPolicyVersion>]
2377
4291
  #
2378
- # @!attribute [rw] global_network_id
2379
- # The ID of the global network.
4292
+ # @!attribute [rw] next_token
4293
+ # The token for the next page of results.
2380
4294
  # @return [String]
2381
4295
  #
2382
- # @!attribute [rw] device_id
2383
- # The device ID for the link association.
2384
- # @return [String]
4296
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListCoreNetworkPolicyVersionsResponse AWS API Documentation
2385
4297
  #
2386
- # @!attribute [rw] link_id
2387
- # The ID of the link.
4298
+ class ListCoreNetworkPolicyVersionsResponse < Struct.new(
4299
+ :core_network_policy_versions,
4300
+ :next_token)
4301
+ SENSITIVE = []
4302
+ include Aws::Structure
4303
+ end
4304
+
4305
+ # @note When making an API call, you may pass ListCoreNetworksRequest
4306
+ # data as a hash:
4307
+ #
4308
+ # {
4309
+ # max_results: 1,
4310
+ # next_token: "NextToken",
4311
+ # }
4312
+ #
4313
+ # @!attribute [rw] max_results
4314
+ # The maximum number of results to return.
4315
+ # @return [Integer]
4316
+ #
4317
+ # @!attribute [rw] next_token
4318
+ # The token for the next page of results.
2388
4319
  # @return [String]
2389
4320
  #
2390
- # @!attribute [rw] link_association_state
2391
- # The state of the association.
4321
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListCoreNetworksRequest AWS API Documentation
4322
+ #
4323
+ class ListCoreNetworksRequest < Struct.new(
4324
+ :max_results,
4325
+ :next_token)
4326
+ SENSITIVE = []
4327
+ include Aws::Structure
4328
+ end
4329
+
4330
+ # @!attribute [rw] core_networks
4331
+ # Describes the list of core networks.
4332
+ # @return [Array<Types::CoreNetworkSummary>]
4333
+ #
4334
+ # @!attribute [rw] next_token
4335
+ # The token for the next page of results.
2392
4336
  # @return [String]
2393
4337
  #
2394
- # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/LinkAssociation AWS API Documentation
4338
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListCoreNetworksResponse AWS API Documentation
2395
4339
  #
2396
- class LinkAssociation < Struct.new(
2397
- :global_network_id,
2398
- :device_id,
2399
- :link_id,
2400
- :link_association_state)
4340
+ class ListCoreNetworksResponse < Struct.new(
4341
+ :core_networks,
4342
+ :next_token)
2401
4343
  SENSITIVE = []
2402
4344
  include Aws::Structure
2403
4345
  end
@@ -2406,7 +4348,7 @@ module Aws::NetworkManager
2406
4348
  # data as a hash:
2407
4349
  #
2408
4350
  # {
2409
- # resource_arn: "ResourceARN", # required
4351
+ # resource_arn: "ResourceArn", # required
2410
4352
  # }
2411
4353
  #
2412
4354
  # @!attribute [rw] resource_arn
@@ -2439,9 +4381,9 @@ module Aws::NetworkManager
2439
4381
  # data as a hash:
2440
4382
  #
2441
4383
  # {
2442
- # address: "String",
2443
- # latitude: "String",
2444
- # longitude: "String",
4384
+ # address: "ConstrainedString",
4385
+ # latitude: "ConstrainedString",
4386
+ # longitude: "ConstrainedString",
2445
4387
  # }
2446
4388
  #
2447
4389
  # @!attribute [rw] address
@@ -2472,6 +4414,10 @@ module Aws::NetworkManager
2472
4414
  # The ARN of the gateway.
2473
4415
  # @return [String]
2474
4416
  #
4417
+ # @!attribute [rw] core_network_id
4418
+ # a core network ID.
4419
+ # @return [String]
4420
+ #
2475
4421
  # @!attribute [rw] aws_region
2476
4422
  # The Amazon Web Services Region.
2477
4423
  # @return [String]
@@ -2546,6 +4492,7 @@ module Aws::NetworkManager
2546
4492
  #
2547
4493
  class NetworkResource < Struct.new(
2548
4494
  :registered_gateway_arn,
4495
+ :core_network_id,
2549
4496
  :aws_region,
2550
4497
  :account_id,
2551
4498
  :resource_type,
@@ -2655,10 +4602,22 @@ module Aws::NetworkManager
2655
4602
 
2656
4603
  # Describes the destination of a network route.
2657
4604
  #
4605
+ # @!attribute [rw] core_network_attachment_id
4606
+ # The ID of a core network attachment.
4607
+ # @return [String]
4608
+ #
2658
4609
  # @!attribute [rw] transit_gateway_attachment_id
2659
4610
  # The ID of the transit gateway attachment.
2660
4611
  # @return [String]
2661
4612
  #
4613
+ # @!attribute [rw] segment_name
4614
+ # The name of the segment.
4615
+ # @return [String]
4616
+ #
4617
+ # @!attribute [rw] edge_location
4618
+ # The edge location for the network destination.
4619
+ # @return [String]
4620
+ #
2662
4621
  # @!attribute [rw] resource_type
2663
4622
  # The resource type.
2664
4623
  # @return [String]
@@ -2670,7 +4629,10 @@ module Aws::NetworkManager
2670
4629
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/NetworkRouteDestination AWS API Documentation
2671
4630
  #
2672
4631
  class NetworkRouteDestination < Struct.new(
4632
+ :core_network_attachment_id,
2673
4633
  :transit_gateway_attachment_id,
4634
+ :segment_name,
4635
+ :edge_location,
2674
4636
  :resource_type,
2675
4637
  :resource_id)
2676
4638
  SENSITIVE = []
@@ -2683,6 +4645,10 @@ module Aws::NetworkManager
2683
4645
  # The ARN of the gateway.
2684
4646
  # @return [String]
2685
4647
  #
4648
+ # @!attribute [rw] core_network_id
4649
+ # The ID of a core network.
4650
+ # @return [String]
4651
+ #
2686
4652
  # @!attribute [rw] aws_region
2687
4653
  # The Amazon Web Services Region.
2688
4654
  # @return [String]
@@ -2715,6 +4681,7 @@ module Aws::NetworkManager
2715
4681
  #
2716
4682
  class NetworkTelemetry < Struct.new(
2717
4683
  :registered_gateway_arn,
4684
+ :core_network_id,
2718
4685
  :aws_region,
2719
4686
  :account_id,
2720
4687
  :resource_type,
@@ -2750,12 +4717,124 @@ module Aws::NetworkManager
2750
4717
  include Aws::Structure
2751
4718
  end
2752
4719
 
4720
+ # Describes a proposed segment change. In some cases, the segment change
4721
+ # must first be evaluated and accepted.
4722
+ #
4723
+ # @!attribute [rw] tags
4724
+ # The key-value tags that changed for the segment.
4725
+ # @return [Array<Types::Tag>]
4726
+ #
4727
+ # @!attribute [rw] attachment_policy_rule_number
4728
+ # The rule number in the policy document that applies to this change.
4729
+ # @return [Integer]
4730
+ #
4731
+ # @!attribute [rw] segment_name
4732
+ # The name of the segment to change.
4733
+ # @return [String]
4734
+ #
4735
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ProposedSegmentChange AWS API Documentation
4736
+ #
4737
+ class ProposedSegmentChange < Struct.new(
4738
+ :tags,
4739
+ :attachment_policy_rule_number,
4740
+ :segment_name)
4741
+ SENSITIVE = []
4742
+ include Aws::Structure
4743
+ end
4744
+
4745
+ # @note When making an API call, you may pass PutCoreNetworkPolicyRequest
4746
+ # data as a hash:
4747
+ #
4748
+ # {
4749
+ # core_network_id: "CoreNetworkId", # required
4750
+ # policy_document: "CoreNetworkPolicyDocument", # required
4751
+ # description: "ConstrainedString",
4752
+ # latest_version_id: 1,
4753
+ # client_token: "ClientToken",
4754
+ # }
4755
+ #
4756
+ # @!attribute [rw] core_network_id
4757
+ # The ID of a core network.
4758
+ # @return [String]
4759
+ #
4760
+ # @!attribute [rw] policy_document
4761
+ # The policy document.
4762
+ # @return [String]
4763
+ #
4764
+ # @!attribute [rw] description
4765
+ # a core network policy description.
4766
+ # @return [String]
4767
+ #
4768
+ # @!attribute [rw] latest_version_id
4769
+ # The ID of a core network policy.
4770
+ # @return [Integer]
4771
+ #
4772
+ # @!attribute [rw] client_token
4773
+ # The client token associated with the request.
4774
+ #
4775
+ # **A suitable default value is auto-generated.** You should normally
4776
+ # not need to pass this option.
4777
+ # @return [String]
4778
+ #
4779
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/PutCoreNetworkPolicyRequest AWS API Documentation
4780
+ #
4781
+ class PutCoreNetworkPolicyRequest < Struct.new(
4782
+ :core_network_id,
4783
+ :policy_document,
4784
+ :description,
4785
+ :latest_version_id,
4786
+ :client_token)
4787
+ SENSITIVE = []
4788
+ include Aws::Structure
4789
+ end
4790
+
4791
+ # @!attribute [rw] core_network_policy
4792
+ # Describes the changed core network policy.
4793
+ # @return [Types::CoreNetworkPolicy]
4794
+ #
4795
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/PutCoreNetworkPolicyResponse AWS API Documentation
4796
+ #
4797
+ class PutCoreNetworkPolicyResponse < Struct.new(
4798
+ :core_network_policy)
4799
+ SENSITIVE = []
4800
+ include Aws::Structure
4801
+ end
4802
+
4803
+ # @note When making an API call, you may pass PutResourcePolicyRequest
4804
+ # data as a hash:
4805
+ #
4806
+ # {
4807
+ # policy_document: "ResourcePolicyDocument", # required
4808
+ # resource_arn: "ResourceArn", # required
4809
+ # }
4810
+ #
4811
+ # @!attribute [rw] policy_document
4812
+ # The JSON resource policy document.
4813
+ # @return [String]
4814
+ #
4815
+ # @!attribute [rw] resource_arn
4816
+ # The ARN of the resource policy.
4817
+ # @return [String]
4818
+ #
4819
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/PutResourcePolicyRequest AWS API Documentation
4820
+ #
4821
+ class PutResourcePolicyRequest < Struct.new(
4822
+ :policy_document,
4823
+ :resource_arn)
4824
+ SENSITIVE = []
4825
+ include Aws::Structure
4826
+ end
4827
+
4828
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/PutResourcePolicyResponse AWS API Documentation
4829
+ #
4830
+ class PutResourcePolicyResponse < Aws::EmptyStructure; end
4831
+
2753
4832
  # @note When making an API call, you may pass RegisterTransitGatewayRequest
2754
4833
  # data as a hash:
2755
4834
  #
2756
4835
  # {
2757
- # global_network_id: "String", # required
2758
- # transit_gateway_arn: "String", # required
4836
+ # global_network_id: "GlobalNetworkId", # required
4837
+ # transit_gateway_arn: "TransitGatewayArn", # required
2759
4838
  # }
2760
4839
  #
2761
4840
  # @!attribute [rw] global_network_id
@@ -2787,6 +4866,37 @@ module Aws::NetworkManager
2787
4866
  include Aws::Structure
2788
4867
  end
2789
4868
 
4869
+ # @note When making an API call, you may pass RejectAttachmentRequest
4870
+ # data as a hash:
4871
+ #
4872
+ # {
4873
+ # attachment_id: "AttachmentId", # required
4874
+ # }
4875
+ #
4876
+ # @!attribute [rw] attachment_id
4877
+ # The ID of the attachment.
4878
+ # @return [String]
4879
+ #
4880
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RejectAttachmentRequest AWS API Documentation
4881
+ #
4882
+ class RejectAttachmentRequest < Struct.new(
4883
+ :attachment_id)
4884
+ SENSITIVE = []
4885
+ include Aws::Structure
4886
+ end
4887
+
4888
+ # @!attribute [rw] attachment
4889
+ # Describes the rejected attachment request.
4890
+ # @return [Types::Attachment]
4891
+ #
4892
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RejectAttachmentResponse AWS API Documentation
4893
+ #
4894
+ class RejectAttachmentResponse < Struct.new(
4895
+ :attachment)
4896
+ SENSITIVE = []
4897
+ include Aws::Structure
4898
+ end
4899
+
2790
4900
  # Describes a resource relationship.
2791
4901
  #
2792
4902
  # @!attribute [rw] from
@@ -2820,6 +4930,7 @@ module Aws::NetworkManager
2820
4930
  # @return [String]
2821
4931
  #
2822
4932
  # @!attribute [rw] context
4933
+ # The specified resource could not be found.
2823
4934
  # @return [Hash<String,String>]
2824
4935
  #
2825
4936
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ResourceNotFoundException AWS API Documentation
@@ -2833,6 +4944,43 @@ module Aws::NetworkManager
2833
4944
  include Aws::Structure
2834
4945
  end
2835
4946
 
4947
+ # @note When making an API call, you may pass RestoreCoreNetworkPolicyVersionRequest
4948
+ # data as a hash:
4949
+ #
4950
+ # {
4951
+ # core_network_id: "CoreNetworkId", # required
4952
+ # policy_version_id: 1, # required
4953
+ # }
4954
+ #
4955
+ # @!attribute [rw] core_network_id
4956
+ # The ID of a core network.
4957
+ # @return [String]
4958
+ #
4959
+ # @!attribute [rw] policy_version_id
4960
+ # The ID of the policy version to restore.
4961
+ # @return [Integer]
4962
+ #
4963
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RestoreCoreNetworkPolicyVersionRequest AWS API Documentation
4964
+ #
4965
+ class RestoreCoreNetworkPolicyVersionRequest < Struct.new(
4966
+ :core_network_id,
4967
+ :policy_version_id)
4968
+ SENSITIVE = []
4969
+ include Aws::Structure
4970
+ end
4971
+
4972
+ # @!attribute [rw] core_network_policy
4973
+ # Describes the restored core network policy.
4974
+ # @return [Types::CoreNetworkPolicy]
4975
+ #
4976
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RestoreCoreNetworkPolicyVersionResponse AWS API Documentation
4977
+ #
4978
+ class RestoreCoreNetworkPolicyVersionResponse < Struct.new(
4979
+ :core_network_policy)
4980
+ SENSITIVE = []
4981
+ include Aws::Structure
4982
+ end
4983
+
2836
4984
  # Describes a route analysis.
2837
4985
  #
2838
4986
  # @!attribute [rw] global_network_id
@@ -2981,8 +5129,8 @@ module Aws::NetworkManager
2981
5129
  # data as a hash:
2982
5130
  #
2983
5131
  # {
2984
- # transit_gateway_attachment_arn: "String",
2985
- # ip_address: "String",
5132
+ # transit_gateway_attachment_arn: "TransitGatewayAttachmentArn",
5133
+ # ip_address: "IPAddress",
2986
5134
  # }
2987
5135
  #
2988
5136
  # @!attribute [rw] transit_gateway_attachment_arn
@@ -3027,17 +5175,27 @@ module Aws::NetworkManager
3027
5175
  # data as a hash:
3028
5176
  #
3029
5177
  # {
3030
- # transit_gateway_route_table_arn: "String",
5178
+ # transit_gateway_route_table_arn: "TransitGatewayRouteTableArn",
5179
+ # core_network_segment_edge: {
5180
+ # core_network_id: "CoreNetworkId",
5181
+ # segment_name: "ConstrainedString",
5182
+ # edge_location: "ExternalRegionCode",
5183
+ # },
3031
5184
  # }
3032
5185
  #
3033
5186
  # @!attribute [rw] transit_gateway_route_table_arn
3034
5187
  # The ARN of the transit gateway route table.
3035
5188
  # @return [String]
3036
5189
  #
5190
+ # @!attribute [rw] core_network_segment_edge
5191
+ # The segment edge in a core network.
5192
+ # @return [Types::CoreNetworkSegmentEdgeIdentifier]
5193
+ #
3037
5194
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/RouteTableIdentifier AWS API Documentation
3038
5195
  #
3039
5196
  class RouteTableIdentifier < Struct.new(
3040
- :transit_gateway_route_table_arn)
5197
+ :transit_gateway_route_table_arn,
5198
+ :core_network_segment_edge)
3041
5199
  SENSITIVE = []
3042
5200
  include Aws::Structure
3043
5201
  end
@@ -3125,18 +5283,37 @@ module Aws::NetworkManager
3125
5283
  include Aws::Structure
3126
5284
  end
3127
5285
 
5286
+ # Creates a site-to-site VPN attachment.
5287
+ #
5288
+ # @!attribute [rw] attachment
5289
+ # Provides details about a site-to-site VPN attachment.
5290
+ # @return [Types::Attachment]
5291
+ #
5292
+ # @!attribute [rw] vpn_connection_arn
5293
+ # The ARN of the site-to-site VPN attachment.
5294
+ # @return [String]
5295
+ #
5296
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/SiteToSiteVpnAttachment AWS API Documentation
5297
+ #
5298
+ class SiteToSiteVpnAttachment < Struct.new(
5299
+ :attachment,
5300
+ :vpn_connection_arn)
5301
+ SENSITIVE = []
5302
+ include Aws::Structure
5303
+ end
5304
+
3128
5305
  # @note When making an API call, you may pass StartRouteAnalysisRequest
3129
5306
  # data as a hash:
3130
5307
  #
3131
5308
  # {
3132
- # global_network_id: "String", # required
5309
+ # global_network_id: "GlobalNetworkId", # required
3133
5310
  # source: { # required
3134
- # transit_gateway_attachment_arn: "String",
3135
- # ip_address: "String",
5311
+ # transit_gateway_attachment_arn: "TransitGatewayAttachmentArn",
5312
+ # ip_address: "IPAddress",
3136
5313
  # },
3137
5314
  # destination: { # required
3138
- # transit_gateway_attachment_arn: "String",
3139
- # ip_address: "String",
5315
+ # transit_gateway_attachment_arn: "TransitGatewayAttachmentArn",
5316
+ # ip_address: "IPAddress",
3140
5317
  # },
3141
5318
  # include_return_path: false,
3142
5319
  # use_middleboxes: false,
@@ -3223,7 +5400,7 @@ module Aws::NetworkManager
3223
5400
  # data as a hash:
3224
5401
  #
3225
5402
  # {
3226
- # resource_arn: "ResourceARN", # required
5403
+ # resource_arn: "ResourceArn", # required
3227
5404
  # tags: [ # required
3228
5405
  # {
3229
5406
  # key: "TagKey",
@@ -3352,7 +5529,7 @@ module Aws::NetworkManager
3352
5529
  # data as a hash:
3353
5530
  #
3354
5531
  # {
3355
- # resource_arn: "ResourceARN", # required
5532
+ # resource_arn: "ResourceArn", # required
3356
5533
  # tag_keys: ["TagKey"], # required
3357
5534
  # }
3358
5535
  #
@@ -3381,11 +5558,11 @@ module Aws::NetworkManager
3381
5558
  # data as a hash:
3382
5559
  #
3383
5560
  # {
3384
- # global_network_id: "String", # required
3385
- # connection_id: "String", # required
3386
- # link_id: "String",
3387
- # connected_link_id: "String",
3388
- # description: "String",
5561
+ # global_network_id: "GlobalNetworkId", # required
5562
+ # connection_id: "ConnectionId", # required
5563
+ # link_id: "LinkId",
5564
+ # connected_link_id: "LinkId",
5565
+ # description: "ConstrainedString",
3389
5566
  # }
3390
5567
  #
3391
5568
  # @!attribute [rw] global_network_id
@@ -3434,27 +5611,64 @@ module Aws::NetworkManager
3434
5611
  include Aws::Structure
3435
5612
  end
3436
5613
 
5614
+ # @note When making an API call, you may pass UpdateCoreNetworkRequest
5615
+ # data as a hash:
5616
+ #
5617
+ # {
5618
+ # core_network_id: "CoreNetworkId", # required
5619
+ # description: "ConstrainedString",
5620
+ # }
5621
+ #
5622
+ # @!attribute [rw] core_network_id
5623
+ # The ID of a core network.
5624
+ # @return [String]
5625
+ #
5626
+ # @!attribute [rw] description
5627
+ # The description of the update.
5628
+ # @return [String]
5629
+ #
5630
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/UpdateCoreNetworkRequest AWS API Documentation
5631
+ #
5632
+ class UpdateCoreNetworkRequest < Struct.new(
5633
+ :core_network_id,
5634
+ :description)
5635
+ SENSITIVE = []
5636
+ include Aws::Structure
5637
+ end
5638
+
5639
+ # @!attribute [rw] core_network
5640
+ # Returns information about a core network update.
5641
+ # @return [Types::CoreNetwork]
5642
+ #
5643
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/UpdateCoreNetworkResponse AWS API Documentation
5644
+ #
5645
+ class UpdateCoreNetworkResponse < Struct.new(
5646
+ :core_network)
5647
+ SENSITIVE = []
5648
+ include Aws::Structure
5649
+ end
5650
+
3437
5651
  # @note When making an API call, you may pass UpdateDeviceRequest
3438
5652
  # data as a hash:
3439
5653
  #
3440
5654
  # {
3441
- # global_network_id: "String", # required
3442
- # device_id: "String", # required
5655
+ # global_network_id: "GlobalNetworkId", # required
5656
+ # device_id: "DeviceId", # required
3443
5657
  # aws_location: {
3444
- # zone: "String",
3445
- # subnet_arn: "String",
5658
+ # zone: "ConstrainedString",
5659
+ # subnet_arn: "SubnetArn",
3446
5660
  # },
3447
- # description: "String",
3448
- # type: "String",
3449
- # vendor: "String",
3450
- # model: "String",
3451
- # serial_number: "String",
5661
+ # description: "ConstrainedString",
5662
+ # type: "ConstrainedString",
5663
+ # vendor: "ConstrainedString",
5664
+ # model: "ConstrainedString",
5665
+ # serial_number: "ConstrainedString",
3452
5666
  # location: {
3453
- # address: "String",
3454
- # latitude: "String",
3455
- # longitude: "String",
5667
+ # address: "ConstrainedString",
5668
+ # latitude: "ConstrainedString",
5669
+ # longitude: "ConstrainedString",
3456
5670
  # },
3457
- # site_id: "String",
5671
+ # site_id: "SiteId",
3458
5672
  # }
3459
5673
  #
3460
5674
  # @!attribute [rw] global_network_id
@@ -3539,8 +5753,8 @@ module Aws::NetworkManager
3539
5753
  # data as a hash:
3540
5754
  #
3541
5755
  # {
3542
- # global_network_id: "String", # required
3543
- # description: "String",
5756
+ # global_network_id: "GlobalNetworkId", # required
5757
+ # description: "ConstrainedString",
3544
5758
  # }
3545
5759
  #
3546
5760
  # @!attribute [rw] global_network_id
@@ -3578,15 +5792,15 @@ module Aws::NetworkManager
3578
5792
  # data as a hash:
3579
5793
  #
3580
5794
  # {
3581
- # global_network_id: "String", # required
3582
- # link_id: "String", # required
3583
- # description: "String",
3584
- # type: "String",
5795
+ # global_network_id: "GlobalNetworkId", # required
5796
+ # link_id: "LinkId", # required
5797
+ # description: "ConstrainedString",
5798
+ # type: "ConstrainedString",
3585
5799
  # bandwidth: {
3586
5800
  # upload_speed: 1,
3587
5801
  # download_speed: 1,
3588
5802
  # },
3589
- # provider: "String",
5803
+ # provider: "ConstrainedString",
3590
5804
  # }
3591
5805
  #
3592
5806
  # @!attribute [rw] global_network_id
@@ -3648,10 +5862,10 @@ module Aws::NetworkManager
3648
5862
  # data as a hash:
3649
5863
  #
3650
5864
  # {
3651
- # global_network_id: "String", # required
3652
- # resource_arn: "String", # required
5865
+ # global_network_id: "GlobalNetworkId", # required
5866
+ # resource_arn: "ResourceArn", # required
3653
5867
  # metadata: { # required
3654
- # "NetworkResourceMetadataKey" => "NetworkResourceMetadataValue",
5868
+ # "ConstrainedString" => "ConstrainedString",
3655
5869
  # },
3656
5870
  # }
3657
5871
  #
@@ -3698,13 +5912,13 @@ module Aws::NetworkManager
3698
5912
  # data as a hash:
3699
5913
  #
3700
5914
  # {
3701
- # global_network_id: "String", # required
3702
- # site_id: "String", # required
3703
- # description: "String",
5915
+ # global_network_id: "GlobalNetworkId", # required
5916
+ # site_id: "SiteId", # required
5917
+ # description: "ConstrainedString",
3704
5918
  # location: {
3705
- # address: "String",
3706
- # latitude: "String",
3707
- # longitude: "String",
5919
+ # address: "ConstrainedString",
5920
+ # latitude: "ConstrainedString",
5921
+ # longitude: "ConstrainedString",
3708
5922
  # },
3709
5923
  # }
3710
5924
  #
@@ -3755,6 +5969,57 @@ module Aws::NetworkManager
3755
5969
  include Aws::Structure
3756
5970
  end
3757
5971
 
5972
+ # @note When making an API call, you may pass UpdateVpcAttachmentRequest
5973
+ # data as a hash:
5974
+ #
5975
+ # {
5976
+ # attachment_id: "AttachmentId", # required
5977
+ # add_subnet_arns: ["SubnetArn"],
5978
+ # remove_subnet_arns: ["SubnetArn"],
5979
+ # options: {
5980
+ # ipv_6_support: false,
5981
+ # },
5982
+ # }
5983
+ #
5984
+ # @!attribute [rw] attachment_id
5985
+ # The ID of the attachment.
5986
+ # @return [String]
5987
+ #
5988
+ # @!attribute [rw] add_subnet_arns
5989
+ # Adds a subnet ARN to the VPC attachment.
5990
+ # @return [Array<String>]
5991
+ #
5992
+ # @!attribute [rw] remove_subnet_arns
5993
+ # Removes a subnet ARN from the attachment.
5994
+ # @return [Array<String>]
5995
+ #
5996
+ # @!attribute [rw] options
5997
+ # Additional options for updating the VPC attachment.
5998
+ # @return [Types::VpcOptions]
5999
+ #
6000
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/UpdateVpcAttachmentRequest AWS API Documentation
6001
+ #
6002
+ class UpdateVpcAttachmentRequest < Struct.new(
6003
+ :attachment_id,
6004
+ :add_subnet_arns,
6005
+ :remove_subnet_arns,
6006
+ :options)
6007
+ SENSITIVE = []
6008
+ include Aws::Structure
6009
+ end
6010
+
6011
+ # @!attribute [rw] vpc_attachment
6012
+ # Describes the updated VPC attachment.
6013
+ # @return [Types::VpcAttachment]
6014
+ #
6015
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/UpdateVpcAttachmentResponse AWS API Documentation
6016
+ #
6017
+ class UpdateVpcAttachmentResponse < Struct.new(
6018
+ :vpc_attachment)
6019
+ SENSITIVE = []
6020
+ include Aws::Structure
6021
+ end
6022
+
3758
6023
  # The input fails to satisfy the constraints.
3759
6024
  #
3760
6025
  # @!attribute [rw] message
@@ -3797,5 +6062,50 @@ module Aws::NetworkManager
3797
6062
  include Aws::Structure
3798
6063
  end
3799
6064
 
6065
+ # Describes a VPC attachment.
6066
+ #
6067
+ # @!attribute [rw] attachment
6068
+ # Provides details about the VPC attachment.
6069
+ # @return [Types::Attachment]
6070
+ #
6071
+ # @!attribute [rw] subnet_arns
6072
+ # The subnet ARNs.
6073
+ # @return [Array<String>]
6074
+ #
6075
+ # @!attribute [rw] options
6076
+ # Provides details about the VPC attachment.
6077
+ # @return [Types::VpcOptions]
6078
+ #
6079
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/VpcAttachment AWS API Documentation
6080
+ #
6081
+ class VpcAttachment < Struct.new(
6082
+ :attachment,
6083
+ :subnet_arns,
6084
+ :options)
6085
+ SENSITIVE = []
6086
+ include Aws::Structure
6087
+ end
6088
+
6089
+ # Describes the VPC options.
6090
+ #
6091
+ # @note When making an API call, you may pass VpcOptions
6092
+ # data as a hash:
6093
+ #
6094
+ # {
6095
+ # ipv_6_support: false,
6096
+ # }
6097
+ #
6098
+ # @!attribute [rw] ipv_6_support
6099
+ # Indicates whether IPv6 is supported.
6100
+ # @return [Boolean]
6101
+ #
6102
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/VpcOptions AWS API Documentation
6103
+ #
6104
+ class VpcOptions < Struct.new(
6105
+ :ipv_6_support)
6106
+ SENSITIVE = []
6107
+ include Aws::Structure
6108
+ end
6109
+
3800
6110
  end
3801
6111
  end