aws-sdk-networkmanager 1.40.0 → 1.41.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,1685 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::NetworkManager
9
+ module Types
10
+
11
+ class AWSLocation
12
+ attr_accessor zone: ::String
13
+ attr_accessor subnet_arn: ::String
14
+ SENSITIVE: []
15
+ end
16
+
17
+ class AcceptAttachmentRequest
18
+ attr_accessor attachment_id: ::String
19
+ SENSITIVE: []
20
+ end
21
+
22
+ class AcceptAttachmentResponse
23
+ attr_accessor attachment: Types::Attachment
24
+ SENSITIVE: []
25
+ end
26
+
27
+ class AccessDeniedException
28
+ attr_accessor message: ::String
29
+ SENSITIVE: []
30
+ end
31
+
32
+ class AccountStatus
33
+ attr_accessor account_id: ::String
34
+ attr_accessor slr_deployment_status: ::String
35
+ SENSITIVE: []
36
+ end
37
+
38
+ class AssociateConnectPeerRequest
39
+ attr_accessor global_network_id: ::String
40
+ attr_accessor connect_peer_id: ::String
41
+ attr_accessor device_id: ::String
42
+ attr_accessor link_id: ::String
43
+ SENSITIVE: []
44
+ end
45
+
46
+ class AssociateConnectPeerResponse
47
+ attr_accessor connect_peer_association: Types::ConnectPeerAssociation
48
+ SENSITIVE: []
49
+ end
50
+
51
+ class AssociateCustomerGatewayRequest
52
+ attr_accessor customer_gateway_arn: ::String
53
+ attr_accessor global_network_id: ::String
54
+ attr_accessor device_id: ::String
55
+ attr_accessor link_id: ::String
56
+ SENSITIVE: []
57
+ end
58
+
59
+ class AssociateCustomerGatewayResponse
60
+ attr_accessor customer_gateway_association: Types::CustomerGatewayAssociation
61
+ SENSITIVE: []
62
+ end
63
+
64
+ class AssociateLinkRequest
65
+ attr_accessor global_network_id: ::String
66
+ attr_accessor device_id: ::String
67
+ attr_accessor link_id: ::String
68
+ SENSITIVE: []
69
+ end
70
+
71
+ class AssociateLinkResponse
72
+ attr_accessor link_association: Types::LinkAssociation
73
+ SENSITIVE: []
74
+ end
75
+
76
+ class AssociateTransitGatewayConnectPeerRequest
77
+ attr_accessor global_network_id: ::String
78
+ attr_accessor transit_gateway_connect_peer_arn: ::String
79
+ attr_accessor device_id: ::String
80
+ attr_accessor link_id: ::String
81
+ SENSITIVE: []
82
+ end
83
+
84
+ class AssociateTransitGatewayConnectPeerResponse
85
+ attr_accessor transit_gateway_connect_peer_association: Types::TransitGatewayConnectPeerAssociation
86
+ SENSITIVE: []
87
+ end
88
+
89
+ class Attachment
90
+ attr_accessor core_network_id: ::String
91
+ attr_accessor core_network_arn: ::String
92
+ attr_accessor attachment_id: ::String
93
+ attr_accessor owner_account_id: ::String
94
+ attr_accessor attachment_type: ("CONNECT" | "SITE_TO_SITE_VPN" | "VPC" | "TRANSIT_GATEWAY_ROUTE_TABLE")
95
+ attr_accessor state: ("REJECTED" | "PENDING_ATTACHMENT_ACCEPTANCE" | "CREATING" | "FAILED" | "AVAILABLE" | "UPDATING" | "PENDING_NETWORK_UPDATE" | "PENDING_TAG_ACCEPTANCE" | "DELETING")
96
+ attr_accessor edge_location: ::String
97
+ attr_accessor resource_arn: ::String
98
+ attr_accessor attachment_policy_rule_number: ::Integer
99
+ attr_accessor segment_name: ::String
100
+ attr_accessor tags: ::Array[Types::Tag]
101
+ attr_accessor proposed_segment_change: Types::ProposedSegmentChange
102
+ attr_accessor created_at: ::Time
103
+ attr_accessor updated_at: ::Time
104
+ SENSITIVE: []
105
+ end
106
+
107
+ class Bandwidth
108
+ attr_accessor upload_speed: ::Integer
109
+ attr_accessor download_speed: ::Integer
110
+ SENSITIVE: []
111
+ end
112
+
113
+ class BgpOptions
114
+ attr_accessor peer_asn: ::Integer
115
+ SENSITIVE: []
116
+ end
117
+
118
+ class ConflictException
119
+ attr_accessor message: ::String
120
+ attr_accessor resource_id: ::String
121
+ attr_accessor resource_type: ::String
122
+ SENSITIVE: []
123
+ end
124
+
125
+ class ConnectAttachment
126
+ attr_accessor attachment: Types::Attachment
127
+ attr_accessor transport_attachment_id: ::String
128
+ attr_accessor options: Types::ConnectAttachmentOptions
129
+ SENSITIVE: []
130
+ end
131
+
132
+ class ConnectAttachmentOptions
133
+ attr_accessor protocol: ("GRE" | "NO_ENCAP")
134
+ SENSITIVE: []
135
+ end
136
+
137
+ class ConnectPeer
138
+ attr_accessor core_network_id: ::String
139
+ attr_accessor connect_attachment_id: ::String
140
+ attr_accessor connect_peer_id: ::String
141
+ attr_accessor edge_location: ::String
142
+ attr_accessor state: ("CREATING" | "FAILED" | "AVAILABLE" | "DELETING")
143
+ attr_accessor created_at: ::Time
144
+ attr_accessor configuration: Types::ConnectPeerConfiguration
145
+ attr_accessor tags: ::Array[Types::Tag]
146
+ attr_accessor subnet_arn: ::String
147
+ SENSITIVE: []
148
+ end
149
+
150
+ class ConnectPeerAssociation
151
+ attr_accessor connect_peer_id: ::String
152
+ attr_accessor global_network_id: ::String
153
+ attr_accessor device_id: ::String
154
+ attr_accessor link_id: ::String
155
+ attr_accessor state: ("PENDING" | "AVAILABLE" | "DELETING" | "DELETED")
156
+ SENSITIVE: []
157
+ end
158
+
159
+ class ConnectPeerBgpConfiguration
160
+ attr_accessor core_network_asn: ::Integer
161
+ attr_accessor peer_asn: ::Integer
162
+ attr_accessor core_network_address: ::String
163
+ attr_accessor peer_address: ::String
164
+ SENSITIVE: []
165
+ end
166
+
167
+ class ConnectPeerConfiguration
168
+ attr_accessor core_network_address: ::String
169
+ attr_accessor peer_address: ::String
170
+ attr_accessor inside_cidr_blocks: ::Array[::String]
171
+ attr_accessor protocol: ("GRE" | "NO_ENCAP")
172
+ attr_accessor bgp_configurations: ::Array[Types::ConnectPeerBgpConfiguration]
173
+ SENSITIVE: []
174
+ end
175
+
176
+ class ConnectPeerSummary
177
+ attr_accessor core_network_id: ::String
178
+ attr_accessor connect_attachment_id: ::String
179
+ attr_accessor connect_peer_id: ::String
180
+ attr_accessor edge_location: ::String
181
+ attr_accessor connect_peer_state: ("CREATING" | "FAILED" | "AVAILABLE" | "DELETING")
182
+ attr_accessor created_at: ::Time
183
+ attr_accessor tags: ::Array[Types::Tag]
184
+ attr_accessor subnet_arn: ::String
185
+ SENSITIVE: []
186
+ end
187
+
188
+ class Connection
189
+ attr_accessor connection_id: ::String
190
+ attr_accessor connection_arn: ::String
191
+ attr_accessor global_network_id: ::String
192
+ attr_accessor device_id: ::String
193
+ attr_accessor connected_device_id: ::String
194
+ attr_accessor link_id: ::String
195
+ attr_accessor connected_link_id: ::String
196
+ attr_accessor description: ::String
197
+ attr_accessor created_at: ::Time
198
+ attr_accessor state: ("PENDING" | "AVAILABLE" | "DELETING" | "UPDATING")
199
+ attr_accessor tags: ::Array[Types::Tag]
200
+ SENSITIVE: []
201
+ end
202
+
203
+ class ConnectionHealth
204
+ attr_accessor type: ("BGP" | "IPSEC")
205
+ attr_accessor status: ("UP" | "DOWN")
206
+ attr_accessor timestamp: ::Time
207
+ SENSITIVE: []
208
+ end
209
+
210
+ class CoreNetwork
211
+ attr_accessor global_network_id: ::String
212
+ attr_accessor core_network_id: ::String
213
+ attr_accessor core_network_arn: ::String
214
+ attr_accessor description: ::String
215
+ attr_accessor created_at: ::Time
216
+ attr_accessor state: ("CREATING" | "UPDATING" | "AVAILABLE" | "DELETING")
217
+ attr_accessor segments: ::Array[Types::CoreNetworkSegment]
218
+ attr_accessor edges: ::Array[Types::CoreNetworkEdge]
219
+ attr_accessor tags: ::Array[Types::Tag]
220
+ SENSITIVE: []
221
+ end
222
+
223
+ class CoreNetworkChange
224
+ attr_accessor type: ("CORE_NETWORK_SEGMENT" | "CORE_NETWORK_EDGE" | "ATTACHMENT_MAPPING" | "ATTACHMENT_ROUTE_PROPAGATION" | "ATTACHMENT_ROUTE_STATIC" | "CORE_NETWORK_CONFIGURATION" | "SEGMENTS_CONFIGURATION" | "SEGMENT_ACTIONS_CONFIGURATION" | "ATTACHMENT_POLICIES_CONFIGURATION")
225
+ attr_accessor action: ("ADD" | "MODIFY" | "REMOVE")
226
+ attr_accessor identifier: ::String
227
+ attr_accessor previous_values: Types::CoreNetworkChangeValues
228
+ attr_accessor new_values: Types::CoreNetworkChangeValues
229
+ attr_accessor identifier_path: ::String
230
+ SENSITIVE: []
231
+ end
232
+
233
+ class CoreNetworkChangeEvent
234
+ attr_accessor type: ("CORE_NETWORK_SEGMENT" | "CORE_NETWORK_EDGE" | "ATTACHMENT_MAPPING" | "ATTACHMENT_ROUTE_PROPAGATION" | "ATTACHMENT_ROUTE_STATIC" | "CORE_NETWORK_CONFIGURATION" | "SEGMENTS_CONFIGURATION" | "SEGMENT_ACTIONS_CONFIGURATION" | "ATTACHMENT_POLICIES_CONFIGURATION")
235
+ attr_accessor action: ("ADD" | "MODIFY" | "REMOVE")
236
+ attr_accessor identifier_path: ::String
237
+ attr_accessor event_time: ::Time
238
+ attr_accessor status: ("NOT_STARTED" | "IN_PROGRESS" | "COMPLETE" | "FAILED")
239
+ attr_accessor values: Types::CoreNetworkChangeEventValues
240
+ SENSITIVE: []
241
+ end
242
+
243
+ class CoreNetworkChangeEventValues
244
+ attr_accessor edge_location: ::String
245
+ attr_accessor segment_name: ::String
246
+ attr_accessor attachment_id: ::String
247
+ attr_accessor cidr: ::String
248
+ SENSITIVE: []
249
+ end
250
+
251
+ class CoreNetworkChangeValues
252
+ attr_accessor segment_name: ::String
253
+ attr_accessor edge_locations: ::Array[::String]
254
+ attr_accessor asn: ::Integer
255
+ attr_accessor cidr: ::String
256
+ attr_accessor destination_identifier: ::String
257
+ attr_accessor inside_cidr_blocks: ::Array[::String]
258
+ attr_accessor shared_segments: ::Array[::String]
259
+ SENSITIVE: []
260
+ end
261
+
262
+ class CoreNetworkEdge
263
+ attr_accessor edge_location: ::String
264
+ attr_accessor asn: ::Integer
265
+ attr_accessor inside_cidr_blocks: ::Array[::String]
266
+ SENSITIVE: []
267
+ end
268
+
269
+ class CoreNetworkPolicy
270
+ attr_accessor core_network_id: ::String
271
+ attr_accessor policy_version_id: ::Integer
272
+ attr_accessor alias: ("LIVE" | "LATEST")
273
+ attr_accessor description: ::String
274
+ attr_accessor created_at: ::Time
275
+ attr_accessor change_set_state: ("PENDING_GENERATION" | "FAILED_GENERATION" | "READY_TO_EXECUTE" | "EXECUTING" | "EXECUTION_SUCCEEDED" | "OUT_OF_DATE")
276
+ attr_accessor policy_errors: ::Array[Types::CoreNetworkPolicyError]
277
+ attr_accessor policy_document: ::String
278
+ SENSITIVE: []
279
+ end
280
+
281
+ class CoreNetworkPolicyError
282
+ attr_accessor error_code: ::String
283
+ attr_accessor message: ::String
284
+ attr_accessor path: ::String
285
+ SENSITIVE: []
286
+ end
287
+
288
+ class CoreNetworkPolicyException
289
+ attr_accessor message: ::String
290
+ attr_accessor errors: ::Array[Types::CoreNetworkPolicyError]
291
+ SENSITIVE: []
292
+ end
293
+
294
+ class CoreNetworkPolicyVersion
295
+ attr_accessor core_network_id: ::String
296
+ attr_accessor policy_version_id: ::Integer
297
+ attr_accessor alias: ("LIVE" | "LATEST")
298
+ attr_accessor description: ::String
299
+ attr_accessor created_at: ::Time
300
+ attr_accessor change_set_state: ("PENDING_GENERATION" | "FAILED_GENERATION" | "READY_TO_EXECUTE" | "EXECUTING" | "EXECUTION_SUCCEEDED" | "OUT_OF_DATE")
301
+ SENSITIVE: []
302
+ end
303
+
304
+ class CoreNetworkSegment
305
+ attr_accessor name: ::String
306
+ attr_accessor edge_locations: ::Array[::String]
307
+ attr_accessor shared_segments: ::Array[::String]
308
+ SENSITIVE: []
309
+ end
310
+
311
+ class CoreNetworkSegmentEdgeIdentifier
312
+ attr_accessor core_network_id: ::String
313
+ attr_accessor segment_name: ::String
314
+ attr_accessor edge_location: ::String
315
+ SENSITIVE: []
316
+ end
317
+
318
+ class CoreNetworkSummary
319
+ attr_accessor core_network_id: ::String
320
+ attr_accessor core_network_arn: ::String
321
+ attr_accessor global_network_id: ::String
322
+ attr_accessor owner_account_id: ::String
323
+ attr_accessor state: ("CREATING" | "UPDATING" | "AVAILABLE" | "DELETING")
324
+ attr_accessor description: ::String
325
+ attr_accessor tags: ::Array[Types::Tag]
326
+ SENSITIVE: []
327
+ end
328
+
329
+ class CreateConnectAttachmentRequest
330
+ attr_accessor core_network_id: ::String
331
+ attr_accessor edge_location: ::String
332
+ attr_accessor transport_attachment_id: ::String
333
+ attr_accessor options: Types::ConnectAttachmentOptions
334
+ attr_accessor tags: ::Array[Types::Tag]
335
+ attr_accessor client_token: ::String
336
+ SENSITIVE: []
337
+ end
338
+
339
+ class CreateConnectAttachmentResponse
340
+ attr_accessor connect_attachment: Types::ConnectAttachment
341
+ SENSITIVE: []
342
+ end
343
+
344
+ class CreateConnectPeerRequest
345
+ attr_accessor connect_attachment_id: ::String
346
+ attr_accessor core_network_address: ::String
347
+ attr_accessor peer_address: ::String
348
+ attr_accessor bgp_options: Types::BgpOptions
349
+ attr_accessor inside_cidr_blocks: ::Array[::String]
350
+ attr_accessor tags: ::Array[Types::Tag]
351
+ attr_accessor client_token: ::String
352
+ attr_accessor subnet_arn: ::String
353
+ SENSITIVE: []
354
+ end
355
+
356
+ class CreateConnectPeerResponse
357
+ attr_accessor connect_peer: Types::ConnectPeer
358
+ SENSITIVE: []
359
+ end
360
+
361
+ class CreateConnectionRequest
362
+ attr_accessor global_network_id: ::String
363
+ attr_accessor device_id: ::String
364
+ attr_accessor connected_device_id: ::String
365
+ attr_accessor link_id: ::String
366
+ attr_accessor connected_link_id: ::String
367
+ attr_accessor description: ::String
368
+ attr_accessor tags: ::Array[Types::Tag]
369
+ SENSITIVE: []
370
+ end
371
+
372
+ class CreateConnectionResponse
373
+ attr_accessor connection: Types::Connection
374
+ SENSITIVE: []
375
+ end
376
+
377
+ class CreateCoreNetworkRequest
378
+ attr_accessor global_network_id: ::String
379
+ attr_accessor description: ::String
380
+ attr_accessor tags: ::Array[Types::Tag]
381
+ attr_accessor policy_document: ::String
382
+ attr_accessor client_token: ::String
383
+ SENSITIVE: []
384
+ end
385
+
386
+ class CreateCoreNetworkResponse
387
+ attr_accessor core_network: Types::CoreNetwork
388
+ SENSITIVE: []
389
+ end
390
+
391
+ class CreateDeviceRequest
392
+ attr_accessor global_network_id: ::String
393
+ attr_accessor aws_location: Types::AWSLocation
394
+ attr_accessor description: ::String
395
+ attr_accessor type: ::String
396
+ attr_accessor vendor: ::String
397
+ attr_accessor model: ::String
398
+ attr_accessor serial_number: ::String
399
+ attr_accessor location: Types::Location
400
+ attr_accessor site_id: ::String
401
+ attr_accessor tags: ::Array[Types::Tag]
402
+ SENSITIVE: [:location]
403
+ end
404
+
405
+ class CreateDeviceResponse
406
+ attr_accessor device: Types::Device
407
+ SENSITIVE: []
408
+ end
409
+
410
+ class CreateGlobalNetworkRequest
411
+ attr_accessor description: ::String
412
+ attr_accessor tags: ::Array[Types::Tag]
413
+ SENSITIVE: []
414
+ end
415
+
416
+ class CreateGlobalNetworkResponse
417
+ attr_accessor global_network: Types::GlobalNetwork
418
+ SENSITIVE: []
419
+ end
420
+
421
+ class CreateLinkRequest
422
+ attr_accessor global_network_id: ::String
423
+ attr_accessor description: ::String
424
+ attr_accessor type: ::String
425
+ attr_accessor bandwidth: Types::Bandwidth
426
+ attr_accessor provider: ::String
427
+ attr_accessor site_id: ::String
428
+ attr_accessor tags: ::Array[Types::Tag]
429
+ SENSITIVE: []
430
+ end
431
+
432
+ class CreateLinkResponse
433
+ attr_accessor link: Types::Link
434
+ SENSITIVE: []
435
+ end
436
+
437
+ class CreateSiteRequest
438
+ attr_accessor global_network_id: ::String
439
+ attr_accessor description: ::String
440
+ attr_accessor location: Types::Location
441
+ attr_accessor tags: ::Array[Types::Tag]
442
+ SENSITIVE: [:location]
443
+ end
444
+
445
+ class CreateSiteResponse
446
+ attr_accessor site: Types::Site
447
+ SENSITIVE: []
448
+ end
449
+
450
+ class CreateSiteToSiteVpnAttachmentRequest
451
+ attr_accessor core_network_id: ::String
452
+ attr_accessor vpn_connection_arn: ::String
453
+ attr_accessor tags: ::Array[Types::Tag]
454
+ attr_accessor client_token: ::String
455
+ SENSITIVE: []
456
+ end
457
+
458
+ class CreateSiteToSiteVpnAttachmentResponse
459
+ attr_accessor site_to_site_vpn_attachment: Types::SiteToSiteVpnAttachment
460
+ SENSITIVE: []
461
+ end
462
+
463
+ class CreateTransitGatewayPeeringRequest
464
+ attr_accessor core_network_id: ::String
465
+ attr_accessor transit_gateway_arn: ::String
466
+ attr_accessor tags: ::Array[Types::Tag]
467
+ attr_accessor client_token: ::String
468
+ SENSITIVE: []
469
+ end
470
+
471
+ class CreateTransitGatewayPeeringResponse
472
+ attr_accessor transit_gateway_peering: Types::TransitGatewayPeering
473
+ SENSITIVE: []
474
+ end
475
+
476
+ class CreateTransitGatewayRouteTableAttachmentRequest
477
+ attr_accessor peering_id: ::String
478
+ attr_accessor transit_gateway_route_table_arn: ::String
479
+ attr_accessor tags: ::Array[Types::Tag]
480
+ attr_accessor client_token: ::String
481
+ SENSITIVE: []
482
+ end
483
+
484
+ class CreateTransitGatewayRouteTableAttachmentResponse
485
+ attr_accessor transit_gateway_route_table_attachment: Types::TransitGatewayRouteTableAttachment
486
+ SENSITIVE: []
487
+ end
488
+
489
+ class CreateVpcAttachmentRequest
490
+ attr_accessor core_network_id: ::String
491
+ attr_accessor vpc_arn: ::String
492
+ attr_accessor subnet_arns: ::Array[::String]
493
+ attr_accessor options: Types::VpcOptions
494
+ attr_accessor tags: ::Array[Types::Tag]
495
+ attr_accessor client_token: ::String
496
+ SENSITIVE: []
497
+ end
498
+
499
+ class CreateVpcAttachmentResponse
500
+ attr_accessor vpc_attachment: Types::VpcAttachment
501
+ SENSITIVE: []
502
+ end
503
+
504
+ class CustomerGatewayAssociation
505
+ attr_accessor customer_gateway_arn: ::String
506
+ attr_accessor global_network_id: ::String
507
+ attr_accessor device_id: ::String
508
+ attr_accessor link_id: ::String
509
+ attr_accessor state: ("PENDING" | "AVAILABLE" | "DELETING" | "DELETED")
510
+ SENSITIVE: []
511
+ end
512
+
513
+ class DeleteAttachmentRequest
514
+ attr_accessor attachment_id: ::String
515
+ SENSITIVE: []
516
+ end
517
+
518
+ class DeleteAttachmentResponse
519
+ attr_accessor attachment: Types::Attachment
520
+ SENSITIVE: []
521
+ end
522
+
523
+ class DeleteConnectPeerRequest
524
+ attr_accessor connect_peer_id: ::String
525
+ SENSITIVE: []
526
+ end
527
+
528
+ class DeleteConnectPeerResponse
529
+ attr_accessor connect_peer: Types::ConnectPeer
530
+ SENSITIVE: []
531
+ end
532
+
533
+ class DeleteConnectionRequest
534
+ attr_accessor global_network_id: ::String
535
+ attr_accessor connection_id: ::String
536
+ SENSITIVE: []
537
+ end
538
+
539
+ class DeleteConnectionResponse
540
+ attr_accessor connection: Types::Connection
541
+ SENSITIVE: []
542
+ end
543
+
544
+ class DeleteCoreNetworkPolicyVersionRequest
545
+ attr_accessor core_network_id: ::String
546
+ attr_accessor policy_version_id: ::Integer
547
+ SENSITIVE: []
548
+ end
549
+
550
+ class DeleteCoreNetworkPolicyVersionResponse
551
+ attr_accessor core_network_policy: Types::CoreNetworkPolicy
552
+ SENSITIVE: []
553
+ end
554
+
555
+ class DeleteCoreNetworkRequest
556
+ attr_accessor core_network_id: ::String
557
+ SENSITIVE: []
558
+ end
559
+
560
+ class DeleteCoreNetworkResponse
561
+ attr_accessor core_network: Types::CoreNetwork
562
+ SENSITIVE: []
563
+ end
564
+
565
+ class DeleteDeviceRequest
566
+ attr_accessor global_network_id: ::String
567
+ attr_accessor device_id: ::String
568
+ SENSITIVE: []
569
+ end
570
+
571
+ class DeleteDeviceResponse
572
+ attr_accessor device: Types::Device
573
+ SENSITIVE: []
574
+ end
575
+
576
+ class DeleteGlobalNetworkRequest
577
+ attr_accessor global_network_id: ::String
578
+ SENSITIVE: []
579
+ end
580
+
581
+ class DeleteGlobalNetworkResponse
582
+ attr_accessor global_network: Types::GlobalNetwork
583
+ SENSITIVE: []
584
+ end
585
+
586
+ class DeleteLinkRequest
587
+ attr_accessor global_network_id: ::String
588
+ attr_accessor link_id: ::String
589
+ SENSITIVE: []
590
+ end
591
+
592
+ class DeleteLinkResponse
593
+ attr_accessor link: Types::Link
594
+ SENSITIVE: []
595
+ end
596
+
597
+ class DeletePeeringRequest
598
+ attr_accessor peering_id: ::String
599
+ SENSITIVE: []
600
+ end
601
+
602
+ class DeletePeeringResponse
603
+ attr_accessor peering: Types::Peering
604
+ SENSITIVE: []
605
+ end
606
+
607
+ class DeleteResourcePolicyRequest
608
+ attr_accessor resource_arn: ::String
609
+ SENSITIVE: []
610
+ end
611
+
612
+ class DeleteResourcePolicyResponse < Aws::EmptyStructure
613
+ end
614
+
615
+ class DeleteSiteRequest
616
+ attr_accessor global_network_id: ::String
617
+ attr_accessor site_id: ::String
618
+ SENSITIVE: []
619
+ end
620
+
621
+ class DeleteSiteResponse
622
+ attr_accessor site: Types::Site
623
+ SENSITIVE: []
624
+ end
625
+
626
+ class DeregisterTransitGatewayRequest
627
+ attr_accessor global_network_id: ::String
628
+ attr_accessor transit_gateway_arn: ::String
629
+ SENSITIVE: []
630
+ end
631
+
632
+ class DeregisterTransitGatewayResponse
633
+ attr_accessor transit_gateway_registration: Types::TransitGatewayRegistration
634
+ SENSITIVE: []
635
+ end
636
+
637
+ class DescribeGlobalNetworksRequest
638
+ attr_accessor global_network_ids: ::Array[::String]
639
+ attr_accessor max_results: ::Integer
640
+ attr_accessor next_token: ::String
641
+ SENSITIVE: []
642
+ end
643
+
644
+ class DescribeGlobalNetworksResponse
645
+ attr_accessor global_networks: ::Array[Types::GlobalNetwork]
646
+ attr_accessor next_token: ::String
647
+ SENSITIVE: []
648
+ end
649
+
650
+ class Device
651
+ attr_accessor device_id: ::String
652
+ attr_accessor device_arn: ::String
653
+ attr_accessor global_network_id: ::String
654
+ attr_accessor aws_location: Types::AWSLocation
655
+ attr_accessor description: ::String
656
+ attr_accessor type: ::String
657
+ attr_accessor vendor: ::String
658
+ attr_accessor model: ::String
659
+ attr_accessor serial_number: ::String
660
+ attr_accessor location: Types::Location
661
+ attr_accessor site_id: ::String
662
+ attr_accessor created_at: ::Time
663
+ attr_accessor state: ("PENDING" | "AVAILABLE" | "DELETING" | "UPDATING")
664
+ attr_accessor tags: ::Array[Types::Tag]
665
+ SENSITIVE: [:location]
666
+ end
667
+
668
+ class DisassociateConnectPeerRequest
669
+ attr_accessor global_network_id: ::String
670
+ attr_accessor connect_peer_id: ::String
671
+ SENSITIVE: []
672
+ end
673
+
674
+ class DisassociateConnectPeerResponse
675
+ attr_accessor connect_peer_association: Types::ConnectPeerAssociation
676
+ SENSITIVE: []
677
+ end
678
+
679
+ class DisassociateCustomerGatewayRequest
680
+ attr_accessor global_network_id: ::String
681
+ attr_accessor customer_gateway_arn: ::String
682
+ SENSITIVE: []
683
+ end
684
+
685
+ class DisassociateCustomerGatewayResponse
686
+ attr_accessor customer_gateway_association: Types::CustomerGatewayAssociation
687
+ SENSITIVE: []
688
+ end
689
+
690
+ class DisassociateLinkRequest
691
+ attr_accessor global_network_id: ::String
692
+ attr_accessor device_id: ::String
693
+ attr_accessor link_id: ::String
694
+ SENSITIVE: []
695
+ end
696
+
697
+ class DisassociateLinkResponse
698
+ attr_accessor link_association: Types::LinkAssociation
699
+ SENSITIVE: []
700
+ end
701
+
702
+ class DisassociateTransitGatewayConnectPeerRequest
703
+ attr_accessor global_network_id: ::String
704
+ attr_accessor transit_gateway_connect_peer_arn: ::String
705
+ SENSITIVE: []
706
+ end
707
+
708
+ class DisassociateTransitGatewayConnectPeerResponse
709
+ attr_accessor transit_gateway_connect_peer_association: Types::TransitGatewayConnectPeerAssociation
710
+ SENSITIVE: []
711
+ end
712
+
713
+ class ExecuteCoreNetworkChangeSetRequest
714
+ attr_accessor core_network_id: ::String
715
+ attr_accessor policy_version_id: ::Integer
716
+ SENSITIVE: []
717
+ end
718
+
719
+ class ExecuteCoreNetworkChangeSetResponse < Aws::EmptyStructure
720
+ end
721
+
722
+ class GetConnectAttachmentRequest
723
+ attr_accessor attachment_id: ::String
724
+ SENSITIVE: []
725
+ end
726
+
727
+ class GetConnectAttachmentResponse
728
+ attr_accessor connect_attachment: Types::ConnectAttachment
729
+ SENSITIVE: []
730
+ end
731
+
732
+ class GetConnectPeerAssociationsRequest
733
+ attr_accessor global_network_id: ::String
734
+ attr_accessor connect_peer_ids: ::Array[::String]
735
+ attr_accessor max_results: ::Integer
736
+ attr_accessor next_token: ::String
737
+ SENSITIVE: []
738
+ end
739
+
740
+ class GetConnectPeerAssociationsResponse
741
+ attr_accessor connect_peer_associations: ::Array[Types::ConnectPeerAssociation]
742
+ attr_accessor next_token: ::String
743
+ SENSITIVE: []
744
+ end
745
+
746
+ class GetConnectPeerRequest
747
+ attr_accessor connect_peer_id: ::String
748
+ SENSITIVE: []
749
+ end
750
+
751
+ class GetConnectPeerResponse
752
+ attr_accessor connect_peer: Types::ConnectPeer
753
+ SENSITIVE: []
754
+ end
755
+
756
+ class GetConnectionsRequest
757
+ attr_accessor global_network_id: ::String
758
+ attr_accessor connection_ids: ::Array[::String]
759
+ attr_accessor device_id: ::String
760
+ attr_accessor max_results: ::Integer
761
+ attr_accessor next_token: ::String
762
+ SENSITIVE: []
763
+ end
764
+
765
+ class GetConnectionsResponse
766
+ attr_accessor connections: ::Array[Types::Connection]
767
+ attr_accessor next_token: ::String
768
+ SENSITIVE: []
769
+ end
770
+
771
+ class GetCoreNetworkChangeEventsRequest
772
+ attr_accessor core_network_id: ::String
773
+ attr_accessor policy_version_id: ::Integer
774
+ attr_accessor max_results: ::Integer
775
+ attr_accessor next_token: ::String
776
+ SENSITIVE: []
777
+ end
778
+
779
+ class GetCoreNetworkChangeEventsResponse
780
+ attr_accessor core_network_change_events: ::Array[Types::CoreNetworkChangeEvent]
781
+ attr_accessor next_token: ::String
782
+ SENSITIVE: []
783
+ end
784
+
785
+ class GetCoreNetworkChangeSetRequest
786
+ attr_accessor core_network_id: ::String
787
+ attr_accessor policy_version_id: ::Integer
788
+ attr_accessor max_results: ::Integer
789
+ attr_accessor next_token: ::String
790
+ SENSITIVE: []
791
+ end
792
+
793
+ class GetCoreNetworkChangeSetResponse
794
+ attr_accessor core_network_changes: ::Array[Types::CoreNetworkChange]
795
+ attr_accessor next_token: ::String
796
+ SENSITIVE: []
797
+ end
798
+
799
+ class GetCoreNetworkPolicyRequest
800
+ attr_accessor core_network_id: ::String
801
+ attr_accessor policy_version_id: ::Integer
802
+ attr_accessor alias: ("LIVE" | "LATEST")
803
+ SENSITIVE: []
804
+ end
805
+
806
+ class GetCoreNetworkPolicyResponse
807
+ attr_accessor core_network_policy: Types::CoreNetworkPolicy
808
+ SENSITIVE: []
809
+ end
810
+
811
+ class GetCoreNetworkRequest
812
+ attr_accessor core_network_id: ::String
813
+ SENSITIVE: []
814
+ end
815
+
816
+ class GetCoreNetworkResponse
817
+ attr_accessor core_network: Types::CoreNetwork
818
+ SENSITIVE: []
819
+ end
820
+
821
+ class GetCustomerGatewayAssociationsRequest
822
+ attr_accessor global_network_id: ::String
823
+ attr_accessor customer_gateway_arns: ::Array[::String]
824
+ attr_accessor max_results: ::Integer
825
+ attr_accessor next_token: ::String
826
+ SENSITIVE: []
827
+ end
828
+
829
+ class GetCustomerGatewayAssociationsResponse
830
+ attr_accessor customer_gateway_associations: ::Array[Types::CustomerGatewayAssociation]
831
+ attr_accessor next_token: ::String
832
+ SENSITIVE: []
833
+ end
834
+
835
+ class GetDevicesRequest
836
+ attr_accessor global_network_id: ::String
837
+ attr_accessor device_ids: ::Array[::String]
838
+ attr_accessor site_id: ::String
839
+ attr_accessor max_results: ::Integer
840
+ attr_accessor next_token: ::String
841
+ SENSITIVE: []
842
+ end
843
+
844
+ class GetDevicesResponse
845
+ attr_accessor devices: ::Array[Types::Device]
846
+ attr_accessor next_token: ::String
847
+ SENSITIVE: []
848
+ end
849
+
850
+ class GetLinkAssociationsRequest
851
+ attr_accessor global_network_id: ::String
852
+ attr_accessor device_id: ::String
853
+ attr_accessor link_id: ::String
854
+ attr_accessor max_results: ::Integer
855
+ attr_accessor next_token: ::String
856
+ SENSITIVE: []
857
+ end
858
+
859
+ class GetLinkAssociationsResponse
860
+ attr_accessor link_associations: ::Array[Types::LinkAssociation]
861
+ attr_accessor next_token: ::String
862
+ SENSITIVE: []
863
+ end
864
+
865
+ class GetLinksRequest
866
+ attr_accessor global_network_id: ::String
867
+ attr_accessor link_ids: ::Array[::String]
868
+ attr_accessor site_id: ::String
869
+ attr_accessor type: ::String
870
+ attr_accessor provider: ::String
871
+ attr_accessor max_results: ::Integer
872
+ attr_accessor next_token: ::String
873
+ SENSITIVE: []
874
+ end
875
+
876
+ class GetLinksResponse
877
+ attr_accessor links: ::Array[Types::Link]
878
+ attr_accessor next_token: ::String
879
+ SENSITIVE: []
880
+ end
881
+
882
+ class GetNetworkResourceCountsRequest
883
+ attr_accessor global_network_id: ::String
884
+ attr_accessor resource_type: ::String
885
+ attr_accessor max_results: ::Integer
886
+ attr_accessor next_token: ::String
887
+ SENSITIVE: []
888
+ end
889
+
890
+ class GetNetworkResourceCountsResponse
891
+ attr_accessor network_resource_counts: ::Array[Types::NetworkResourceCount]
892
+ attr_accessor next_token: ::String
893
+ SENSITIVE: []
894
+ end
895
+
896
+ class GetNetworkResourceRelationshipsRequest
897
+ attr_accessor global_network_id: ::String
898
+ attr_accessor core_network_id: ::String
899
+ attr_accessor registered_gateway_arn: ::String
900
+ attr_accessor aws_region: ::String
901
+ attr_accessor account_id: ::String
902
+ attr_accessor resource_type: ::String
903
+ attr_accessor resource_arn: ::String
904
+ attr_accessor max_results: ::Integer
905
+ attr_accessor next_token: ::String
906
+ SENSITIVE: []
907
+ end
908
+
909
+ class GetNetworkResourceRelationshipsResponse
910
+ attr_accessor relationships: ::Array[Types::Relationship]
911
+ attr_accessor next_token: ::String
912
+ SENSITIVE: []
913
+ end
914
+
915
+ class GetNetworkResourcesRequest
916
+ attr_accessor global_network_id: ::String
917
+ attr_accessor core_network_id: ::String
918
+ attr_accessor registered_gateway_arn: ::String
919
+ attr_accessor aws_region: ::String
920
+ attr_accessor account_id: ::String
921
+ attr_accessor resource_type: ::String
922
+ attr_accessor resource_arn: ::String
923
+ attr_accessor max_results: ::Integer
924
+ attr_accessor next_token: ::String
925
+ SENSITIVE: []
926
+ end
927
+
928
+ class GetNetworkResourcesResponse
929
+ attr_accessor network_resources: ::Array[Types::NetworkResource]
930
+ attr_accessor next_token: ::String
931
+ SENSITIVE: []
932
+ end
933
+
934
+ class GetNetworkRoutesRequest
935
+ attr_accessor global_network_id: ::String
936
+ attr_accessor route_table_identifier: Types::RouteTableIdentifier
937
+ attr_accessor exact_cidr_matches: ::Array[::String]
938
+ attr_accessor longest_prefix_matches: ::Array[::String]
939
+ attr_accessor subnet_of_matches: ::Array[::String]
940
+ attr_accessor supernet_of_matches: ::Array[::String]
941
+ attr_accessor prefix_list_ids: ::Array[::String]
942
+ attr_accessor states: ::Array[("ACTIVE" | "BLACKHOLE")]
943
+ attr_accessor types: ::Array[("PROPAGATED" | "STATIC")]
944
+ attr_accessor destination_filters: ::Hash[::String, ::Array[::String]]
945
+ SENSITIVE: []
946
+ end
947
+
948
+ class GetNetworkRoutesResponse
949
+ attr_accessor route_table_arn: ::String
950
+ attr_accessor core_network_segment_edge: Types::CoreNetworkSegmentEdgeIdentifier
951
+ attr_accessor route_table_type: ("TRANSIT_GATEWAY_ROUTE_TABLE" | "CORE_NETWORK_SEGMENT")
952
+ attr_accessor route_table_timestamp: ::Time
953
+ attr_accessor network_routes: ::Array[Types::NetworkRoute]
954
+ SENSITIVE: []
955
+ end
956
+
957
+ class GetNetworkTelemetryRequest
958
+ attr_accessor global_network_id: ::String
959
+ attr_accessor core_network_id: ::String
960
+ attr_accessor registered_gateway_arn: ::String
961
+ attr_accessor aws_region: ::String
962
+ attr_accessor account_id: ::String
963
+ attr_accessor resource_type: ::String
964
+ attr_accessor resource_arn: ::String
965
+ attr_accessor max_results: ::Integer
966
+ attr_accessor next_token: ::String
967
+ SENSITIVE: []
968
+ end
969
+
970
+ class GetNetworkTelemetryResponse
971
+ attr_accessor network_telemetry: ::Array[Types::NetworkTelemetry]
972
+ attr_accessor next_token: ::String
973
+ SENSITIVE: []
974
+ end
975
+
976
+ class GetResourcePolicyRequest
977
+ attr_accessor resource_arn: ::String
978
+ SENSITIVE: []
979
+ end
980
+
981
+ class GetResourcePolicyResponse
982
+ attr_accessor policy_document: ::String
983
+ SENSITIVE: []
984
+ end
985
+
986
+ class GetRouteAnalysisRequest
987
+ attr_accessor global_network_id: ::String
988
+ attr_accessor route_analysis_id: ::String
989
+ SENSITIVE: []
990
+ end
991
+
992
+ class GetRouteAnalysisResponse
993
+ attr_accessor route_analysis: Types::RouteAnalysis
994
+ SENSITIVE: []
995
+ end
996
+
997
+ class GetSiteToSiteVpnAttachmentRequest
998
+ attr_accessor attachment_id: ::String
999
+ SENSITIVE: []
1000
+ end
1001
+
1002
+ class GetSiteToSiteVpnAttachmentResponse
1003
+ attr_accessor site_to_site_vpn_attachment: Types::SiteToSiteVpnAttachment
1004
+ SENSITIVE: []
1005
+ end
1006
+
1007
+ class GetSitesRequest
1008
+ attr_accessor global_network_id: ::String
1009
+ attr_accessor site_ids: ::Array[::String]
1010
+ attr_accessor max_results: ::Integer
1011
+ attr_accessor next_token: ::String
1012
+ SENSITIVE: []
1013
+ end
1014
+
1015
+ class GetSitesResponse
1016
+ attr_accessor sites: ::Array[Types::Site]
1017
+ attr_accessor next_token: ::String
1018
+ SENSITIVE: []
1019
+ end
1020
+
1021
+ class GetTransitGatewayConnectPeerAssociationsRequest
1022
+ attr_accessor global_network_id: ::String
1023
+ attr_accessor transit_gateway_connect_peer_arns: ::Array[::String]
1024
+ attr_accessor max_results: ::Integer
1025
+ attr_accessor next_token: ::String
1026
+ SENSITIVE: []
1027
+ end
1028
+
1029
+ class GetTransitGatewayConnectPeerAssociationsResponse
1030
+ attr_accessor transit_gateway_connect_peer_associations: ::Array[Types::TransitGatewayConnectPeerAssociation]
1031
+ attr_accessor next_token: ::String
1032
+ SENSITIVE: []
1033
+ end
1034
+
1035
+ class GetTransitGatewayPeeringRequest
1036
+ attr_accessor peering_id: ::String
1037
+ SENSITIVE: []
1038
+ end
1039
+
1040
+ class GetTransitGatewayPeeringResponse
1041
+ attr_accessor transit_gateway_peering: Types::TransitGatewayPeering
1042
+ SENSITIVE: []
1043
+ end
1044
+
1045
+ class GetTransitGatewayRegistrationsRequest
1046
+ attr_accessor global_network_id: ::String
1047
+ attr_accessor transit_gateway_arns: ::Array[::String]
1048
+ attr_accessor max_results: ::Integer
1049
+ attr_accessor next_token: ::String
1050
+ SENSITIVE: []
1051
+ end
1052
+
1053
+ class GetTransitGatewayRegistrationsResponse
1054
+ attr_accessor transit_gateway_registrations: ::Array[Types::TransitGatewayRegistration]
1055
+ attr_accessor next_token: ::String
1056
+ SENSITIVE: []
1057
+ end
1058
+
1059
+ class GetTransitGatewayRouteTableAttachmentRequest
1060
+ attr_accessor attachment_id: ::String
1061
+ SENSITIVE: []
1062
+ end
1063
+
1064
+ class GetTransitGatewayRouteTableAttachmentResponse
1065
+ attr_accessor transit_gateway_route_table_attachment: Types::TransitGatewayRouteTableAttachment
1066
+ SENSITIVE: []
1067
+ end
1068
+
1069
+ class GetVpcAttachmentRequest
1070
+ attr_accessor attachment_id: ::String
1071
+ SENSITIVE: []
1072
+ end
1073
+
1074
+ class GetVpcAttachmentResponse
1075
+ attr_accessor vpc_attachment: Types::VpcAttachment
1076
+ SENSITIVE: []
1077
+ end
1078
+
1079
+ class GlobalNetwork
1080
+ attr_accessor global_network_id: ::String
1081
+ attr_accessor global_network_arn: ::String
1082
+ attr_accessor description: ::String
1083
+ attr_accessor created_at: ::Time
1084
+ attr_accessor state: ("PENDING" | "AVAILABLE" | "DELETING" | "UPDATING")
1085
+ attr_accessor tags: ::Array[Types::Tag]
1086
+ SENSITIVE: []
1087
+ end
1088
+
1089
+ class InternalServerException
1090
+ attr_accessor message: ::String
1091
+ attr_accessor retry_after_seconds: ::Integer
1092
+ SENSITIVE: []
1093
+ end
1094
+
1095
+ class Link
1096
+ attr_accessor link_id: ::String
1097
+ attr_accessor link_arn: ::String
1098
+ attr_accessor global_network_id: ::String
1099
+ attr_accessor site_id: ::String
1100
+ attr_accessor description: ::String
1101
+ attr_accessor type: ::String
1102
+ attr_accessor bandwidth: Types::Bandwidth
1103
+ attr_accessor provider: ::String
1104
+ attr_accessor created_at: ::Time
1105
+ attr_accessor state: ("PENDING" | "AVAILABLE" | "DELETING" | "UPDATING")
1106
+ attr_accessor tags: ::Array[Types::Tag]
1107
+ SENSITIVE: []
1108
+ end
1109
+
1110
+ class LinkAssociation
1111
+ attr_accessor global_network_id: ::String
1112
+ attr_accessor device_id: ::String
1113
+ attr_accessor link_id: ::String
1114
+ attr_accessor link_association_state: ("PENDING" | "AVAILABLE" | "DELETING" | "DELETED")
1115
+ SENSITIVE: []
1116
+ end
1117
+
1118
+ class ListAttachmentsRequest
1119
+ attr_accessor core_network_id: ::String
1120
+ attr_accessor attachment_type: ("CONNECT" | "SITE_TO_SITE_VPN" | "VPC" | "TRANSIT_GATEWAY_ROUTE_TABLE")
1121
+ attr_accessor edge_location: ::String
1122
+ attr_accessor state: ("REJECTED" | "PENDING_ATTACHMENT_ACCEPTANCE" | "CREATING" | "FAILED" | "AVAILABLE" | "UPDATING" | "PENDING_NETWORK_UPDATE" | "PENDING_TAG_ACCEPTANCE" | "DELETING")
1123
+ attr_accessor max_results: ::Integer
1124
+ attr_accessor next_token: ::String
1125
+ SENSITIVE: []
1126
+ end
1127
+
1128
+ class ListAttachmentsResponse
1129
+ attr_accessor attachments: ::Array[Types::Attachment]
1130
+ attr_accessor next_token: ::String
1131
+ SENSITIVE: []
1132
+ end
1133
+
1134
+ class ListConnectPeersRequest
1135
+ attr_accessor core_network_id: ::String
1136
+ attr_accessor connect_attachment_id: ::String
1137
+ attr_accessor max_results: ::Integer
1138
+ attr_accessor next_token: ::String
1139
+ SENSITIVE: []
1140
+ end
1141
+
1142
+ class ListConnectPeersResponse
1143
+ attr_accessor connect_peers: ::Array[Types::ConnectPeerSummary]
1144
+ attr_accessor next_token: ::String
1145
+ SENSITIVE: []
1146
+ end
1147
+
1148
+ class ListCoreNetworkPolicyVersionsRequest
1149
+ attr_accessor core_network_id: ::String
1150
+ attr_accessor max_results: ::Integer
1151
+ attr_accessor next_token: ::String
1152
+ SENSITIVE: []
1153
+ end
1154
+
1155
+ class ListCoreNetworkPolicyVersionsResponse
1156
+ attr_accessor core_network_policy_versions: ::Array[Types::CoreNetworkPolicyVersion]
1157
+ attr_accessor next_token: ::String
1158
+ SENSITIVE: []
1159
+ end
1160
+
1161
+ class ListCoreNetworksRequest
1162
+ attr_accessor max_results: ::Integer
1163
+ attr_accessor next_token: ::String
1164
+ SENSITIVE: []
1165
+ end
1166
+
1167
+ class ListCoreNetworksResponse
1168
+ attr_accessor core_networks: ::Array[Types::CoreNetworkSummary]
1169
+ attr_accessor next_token: ::String
1170
+ SENSITIVE: []
1171
+ end
1172
+
1173
+ class ListOrganizationServiceAccessStatusRequest
1174
+ attr_accessor max_results: ::Integer
1175
+ attr_accessor next_token: ::String
1176
+ SENSITIVE: []
1177
+ end
1178
+
1179
+ class ListOrganizationServiceAccessStatusResponse
1180
+ attr_accessor organization_status: Types::OrganizationStatus
1181
+ attr_accessor next_token: ::String
1182
+ SENSITIVE: []
1183
+ end
1184
+
1185
+ class ListPeeringsRequest
1186
+ attr_accessor core_network_id: ::String
1187
+ attr_accessor peering_type: ("TRANSIT_GATEWAY")
1188
+ attr_accessor edge_location: ::String
1189
+ attr_accessor state: ("CREATING" | "FAILED" | "AVAILABLE" | "DELETING")
1190
+ attr_accessor max_results: ::Integer
1191
+ attr_accessor next_token: ::String
1192
+ SENSITIVE: []
1193
+ end
1194
+
1195
+ class ListPeeringsResponse
1196
+ attr_accessor peerings: ::Array[Types::Peering]
1197
+ attr_accessor next_token: ::String
1198
+ SENSITIVE: []
1199
+ end
1200
+
1201
+ class ListTagsForResourceRequest
1202
+ attr_accessor resource_arn: ::String
1203
+ SENSITIVE: []
1204
+ end
1205
+
1206
+ class ListTagsForResourceResponse
1207
+ attr_accessor tag_list: ::Array[Types::Tag]
1208
+ SENSITIVE: []
1209
+ end
1210
+
1211
+ class Location
1212
+ attr_accessor address: ::String
1213
+ attr_accessor latitude: ::String
1214
+ attr_accessor longitude: ::String
1215
+ SENSITIVE: []
1216
+ end
1217
+
1218
+ class NetworkResource
1219
+ attr_accessor registered_gateway_arn: ::String
1220
+ attr_accessor core_network_id: ::String
1221
+ attr_accessor aws_region: ::String
1222
+ attr_accessor account_id: ::String
1223
+ attr_accessor resource_type: ::String
1224
+ attr_accessor resource_id: ::String
1225
+ attr_accessor resource_arn: ::String
1226
+ attr_accessor definition: ::String
1227
+ attr_accessor definition_timestamp: ::Time
1228
+ attr_accessor tags: ::Array[Types::Tag]
1229
+ attr_accessor metadata: ::Hash[::String, ::String]
1230
+ SENSITIVE: []
1231
+ end
1232
+
1233
+ class NetworkResourceCount
1234
+ attr_accessor resource_type: ::String
1235
+ attr_accessor count: ::Integer
1236
+ SENSITIVE: []
1237
+ end
1238
+
1239
+ class NetworkResourceSummary
1240
+ attr_accessor registered_gateway_arn: ::String
1241
+ attr_accessor resource_arn: ::String
1242
+ attr_accessor resource_type: ::String
1243
+ attr_accessor definition: ::String
1244
+ attr_accessor name_tag: ::String
1245
+ attr_accessor is_middlebox: bool
1246
+ SENSITIVE: []
1247
+ end
1248
+
1249
+ class NetworkRoute
1250
+ attr_accessor destination_cidr_block: ::String
1251
+ attr_accessor destinations: ::Array[Types::NetworkRouteDestination]
1252
+ attr_accessor prefix_list_id: ::String
1253
+ attr_accessor state: ("ACTIVE" | "BLACKHOLE")
1254
+ attr_accessor type: ("PROPAGATED" | "STATIC")
1255
+ SENSITIVE: []
1256
+ end
1257
+
1258
+ class NetworkRouteDestination
1259
+ attr_accessor core_network_attachment_id: ::String
1260
+ attr_accessor transit_gateway_attachment_id: ::String
1261
+ attr_accessor segment_name: ::String
1262
+ attr_accessor edge_location: ::String
1263
+ attr_accessor resource_type: ::String
1264
+ attr_accessor resource_id: ::String
1265
+ SENSITIVE: []
1266
+ end
1267
+
1268
+ class NetworkTelemetry
1269
+ attr_accessor registered_gateway_arn: ::String
1270
+ attr_accessor core_network_id: ::String
1271
+ attr_accessor aws_region: ::String
1272
+ attr_accessor account_id: ::String
1273
+ attr_accessor resource_type: ::String
1274
+ attr_accessor resource_id: ::String
1275
+ attr_accessor resource_arn: ::String
1276
+ attr_accessor address: ::String
1277
+ attr_accessor health: Types::ConnectionHealth
1278
+ SENSITIVE: []
1279
+ end
1280
+
1281
+ class OrganizationStatus
1282
+ attr_accessor organization_id: ::String
1283
+ attr_accessor organization_aws_service_access_status: ::String
1284
+ attr_accessor slr_deployment_status: ::String
1285
+ attr_accessor account_status_list: ::Array[Types::AccountStatus]
1286
+ SENSITIVE: []
1287
+ end
1288
+
1289
+ class PathComponent
1290
+ attr_accessor sequence: ::Integer
1291
+ attr_accessor resource: Types::NetworkResourceSummary
1292
+ attr_accessor destination_cidr_block: ::String
1293
+ SENSITIVE: []
1294
+ end
1295
+
1296
+ class Peering
1297
+ attr_accessor core_network_id: ::String
1298
+ attr_accessor core_network_arn: ::String
1299
+ attr_accessor peering_id: ::String
1300
+ attr_accessor owner_account_id: ::String
1301
+ attr_accessor peering_type: ("TRANSIT_GATEWAY")
1302
+ attr_accessor state: ("CREATING" | "FAILED" | "AVAILABLE" | "DELETING")
1303
+ attr_accessor edge_location: ::String
1304
+ attr_accessor resource_arn: ::String
1305
+ attr_accessor tags: ::Array[Types::Tag]
1306
+ attr_accessor created_at: ::Time
1307
+ SENSITIVE: []
1308
+ end
1309
+
1310
+ class ProposedSegmentChange
1311
+ attr_accessor tags: ::Array[Types::Tag]
1312
+ attr_accessor attachment_policy_rule_number: ::Integer
1313
+ attr_accessor segment_name: ::String
1314
+ SENSITIVE: []
1315
+ end
1316
+
1317
+ class PutCoreNetworkPolicyRequest
1318
+ attr_accessor core_network_id: ::String
1319
+ attr_accessor policy_document: ::String
1320
+ attr_accessor description: ::String
1321
+ attr_accessor latest_version_id: ::Integer
1322
+ attr_accessor client_token: ::String
1323
+ SENSITIVE: []
1324
+ end
1325
+
1326
+ class PutCoreNetworkPolicyResponse
1327
+ attr_accessor core_network_policy: Types::CoreNetworkPolicy
1328
+ SENSITIVE: []
1329
+ end
1330
+
1331
+ class PutResourcePolicyRequest
1332
+ attr_accessor policy_document: ::String
1333
+ attr_accessor resource_arn: ::String
1334
+ SENSITIVE: []
1335
+ end
1336
+
1337
+ class PutResourcePolicyResponse < Aws::EmptyStructure
1338
+ end
1339
+
1340
+ class RegisterTransitGatewayRequest
1341
+ attr_accessor global_network_id: ::String
1342
+ attr_accessor transit_gateway_arn: ::String
1343
+ SENSITIVE: []
1344
+ end
1345
+
1346
+ class RegisterTransitGatewayResponse
1347
+ attr_accessor transit_gateway_registration: Types::TransitGatewayRegistration
1348
+ SENSITIVE: []
1349
+ end
1350
+
1351
+ class RejectAttachmentRequest
1352
+ attr_accessor attachment_id: ::String
1353
+ SENSITIVE: []
1354
+ end
1355
+
1356
+ class RejectAttachmentResponse
1357
+ attr_accessor attachment: Types::Attachment
1358
+ SENSITIVE: []
1359
+ end
1360
+
1361
+ class Relationship
1362
+ attr_accessor from: ::String
1363
+ attr_accessor to: ::String
1364
+ SENSITIVE: []
1365
+ end
1366
+
1367
+ class ResourceNotFoundException
1368
+ attr_accessor message: ::String
1369
+ attr_accessor resource_id: ::String
1370
+ attr_accessor resource_type: ::String
1371
+ attr_accessor context: ::Hash[::String, ::String]
1372
+ SENSITIVE: []
1373
+ end
1374
+
1375
+ class RestoreCoreNetworkPolicyVersionRequest
1376
+ attr_accessor core_network_id: ::String
1377
+ attr_accessor policy_version_id: ::Integer
1378
+ SENSITIVE: []
1379
+ end
1380
+
1381
+ class RestoreCoreNetworkPolicyVersionResponse
1382
+ attr_accessor core_network_policy: Types::CoreNetworkPolicy
1383
+ SENSITIVE: []
1384
+ end
1385
+
1386
+ class RouteAnalysis
1387
+ attr_accessor global_network_id: ::String
1388
+ attr_accessor owner_account_id: ::String
1389
+ attr_accessor route_analysis_id: ::String
1390
+ attr_accessor start_timestamp: ::Time
1391
+ attr_accessor status: ("RUNNING" | "COMPLETED" | "FAILED")
1392
+ attr_accessor source: Types::RouteAnalysisEndpointOptions
1393
+ attr_accessor destination: Types::RouteAnalysisEndpointOptions
1394
+ attr_accessor include_return_path: bool
1395
+ attr_accessor use_middleboxes: bool
1396
+ attr_accessor forward_path: Types::RouteAnalysisPath
1397
+ attr_accessor return_path: Types::RouteAnalysisPath
1398
+ SENSITIVE: []
1399
+ end
1400
+
1401
+ class RouteAnalysisCompletion
1402
+ attr_accessor result_code: ("CONNECTED" | "NOT_CONNECTED")
1403
+ attr_accessor reason_code: ("TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND" | "TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY" | "CYCLIC_PATH_DETECTED" | "TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND" | "ROUTE_NOT_FOUND" | "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND" | "INACTIVE_ROUTE_FOR_DESTINATION_FOUND" | "TRANSIT_GATEWAY_ATTACHMENT_ATTACH_ARN_NO_MATCH" | "MAX_HOPS_EXCEEDED" | "POSSIBLE_MIDDLEBOX" | "NO_DESTINATION_ARN_PROVIDED")
1404
+ attr_accessor reason_context: ::Hash[::String, ::String]
1405
+ SENSITIVE: []
1406
+ end
1407
+
1408
+ class RouteAnalysisEndpointOptions
1409
+ attr_accessor transit_gateway_attachment_arn: ::String
1410
+ attr_accessor transit_gateway_arn: ::String
1411
+ attr_accessor ip_address: ::String
1412
+ SENSITIVE: []
1413
+ end
1414
+
1415
+ class RouteAnalysisEndpointOptionsSpecification
1416
+ attr_accessor transit_gateway_attachment_arn: ::String
1417
+ attr_accessor ip_address: ::String
1418
+ SENSITIVE: []
1419
+ end
1420
+
1421
+ class RouteAnalysisPath
1422
+ attr_accessor completion_status: Types::RouteAnalysisCompletion
1423
+ attr_accessor path: ::Array[Types::PathComponent]
1424
+ SENSITIVE: []
1425
+ end
1426
+
1427
+ class RouteTableIdentifier
1428
+ attr_accessor transit_gateway_route_table_arn: ::String
1429
+ attr_accessor core_network_segment_edge: Types::CoreNetworkSegmentEdgeIdentifier
1430
+ SENSITIVE: []
1431
+ end
1432
+
1433
+ class ServiceQuotaExceededException
1434
+ attr_accessor message: ::String
1435
+ attr_accessor resource_id: ::String
1436
+ attr_accessor resource_type: ::String
1437
+ attr_accessor limit_code: ::String
1438
+ attr_accessor service_code: ::String
1439
+ SENSITIVE: []
1440
+ end
1441
+
1442
+ class Site
1443
+ attr_accessor site_id: ::String
1444
+ attr_accessor site_arn: ::String
1445
+ attr_accessor global_network_id: ::String
1446
+ attr_accessor description: ::String
1447
+ attr_accessor location: Types::Location
1448
+ attr_accessor created_at: ::Time
1449
+ attr_accessor state: ("PENDING" | "AVAILABLE" | "DELETING" | "UPDATING")
1450
+ attr_accessor tags: ::Array[Types::Tag]
1451
+ SENSITIVE: [:location]
1452
+ end
1453
+
1454
+ class SiteToSiteVpnAttachment
1455
+ attr_accessor attachment: Types::Attachment
1456
+ attr_accessor vpn_connection_arn: ::String
1457
+ SENSITIVE: []
1458
+ end
1459
+
1460
+ class StartOrganizationServiceAccessUpdateRequest
1461
+ attr_accessor action: ::String
1462
+ SENSITIVE: []
1463
+ end
1464
+
1465
+ class StartOrganizationServiceAccessUpdateResponse
1466
+ attr_accessor organization_status: Types::OrganizationStatus
1467
+ SENSITIVE: []
1468
+ end
1469
+
1470
+ class StartRouteAnalysisRequest
1471
+ attr_accessor global_network_id: ::String
1472
+ attr_accessor source: Types::RouteAnalysisEndpointOptionsSpecification
1473
+ attr_accessor destination: Types::RouteAnalysisEndpointOptionsSpecification
1474
+ attr_accessor include_return_path: bool
1475
+ attr_accessor use_middleboxes: bool
1476
+ SENSITIVE: []
1477
+ end
1478
+
1479
+ class StartRouteAnalysisResponse
1480
+ attr_accessor route_analysis: Types::RouteAnalysis
1481
+ SENSITIVE: []
1482
+ end
1483
+
1484
+ class Tag
1485
+ attr_accessor key: ::String
1486
+ attr_accessor value: ::String
1487
+ SENSITIVE: []
1488
+ end
1489
+
1490
+ class TagResourceRequest
1491
+ attr_accessor resource_arn: ::String
1492
+ attr_accessor tags: ::Array[Types::Tag]
1493
+ SENSITIVE: []
1494
+ end
1495
+
1496
+ class TagResourceResponse < Aws::EmptyStructure
1497
+ end
1498
+
1499
+ class ThrottlingException
1500
+ attr_accessor message: ::String
1501
+ attr_accessor retry_after_seconds: ::Integer
1502
+ SENSITIVE: []
1503
+ end
1504
+
1505
+ class TransitGatewayConnectPeerAssociation
1506
+ attr_accessor transit_gateway_connect_peer_arn: ::String
1507
+ attr_accessor global_network_id: ::String
1508
+ attr_accessor device_id: ::String
1509
+ attr_accessor link_id: ::String
1510
+ attr_accessor state: ("PENDING" | "AVAILABLE" | "DELETING" | "DELETED")
1511
+ SENSITIVE: []
1512
+ end
1513
+
1514
+ class TransitGatewayPeering
1515
+ attr_accessor peering: Types::Peering
1516
+ attr_accessor transit_gateway_arn: ::String
1517
+ attr_accessor transit_gateway_peering_attachment_id: ::String
1518
+ SENSITIVE: []
1519
+ end
1520
+
1521
+ class TransitGatewayRegistration
1522
+ attr_accessor global_network_id: ::String
1523
+ attr_accessor transit_gateway_arn: ::String
1524
+ attr_accessor state: Types::TransitGatewayRegistrationStateReason
1525
+ SENSITIVE: []
1526
+ end
1527
+
1528
+ class TransitGatewayRegistrationStateReason
1529
+ attr_accessor code: ("PENDING" | "AVAILABLE" | "DELETING" | "DELETED" | "FAILED")
1530
+ attr_accessor message: ::String
1531
+ SENSITIVE: []
1532
+ end
1533
+
1534
+ class TransitGatewayRouteTableAttachment
1535
+ attr_accessor attachment: Types::Attachment
1536
+ attr_accessor peering_id: ::String
1537
+ attr_accessor transit_gateway_route_table_arn: ::String
1538
+ SENSITIVE: []
1539
+ end
1540
+
1541
+ class UntagResourceRequest
1542
+ attr_accessor resource_arn: ::String
1543
+ attr_accessor tag_keys: ::Array[::String]
1544
+ SENSITIVE: []
1545
+ end
1546
+
1547
+ class UntagResourceResponse < Aws::EmptyStructure
1548
+ end
1549
+
1550
+ class UpdateConnectionRequest
1551
+ attr_accessor global_network_id: ::String
1552
+ attr_accessor connection_id: ::String
1553
+ attr_accessor link_id: ::String
1554
+ attr_accessor connected_link_id: ::String
1555
+ attr_accessor description: ::String
1556
+ SENSITIVE: []
1557
+ end
1558
+
1559
+ class UpdateConnectionResponse
1560
+ attr_accessor connection: Types::Connection
1561
+ SENSITIVE: []
1562
+ end
1563
+
1564
+ class UpdateCoreNetworkRequest
1565
+ attr_accessor core_network_id: ::String
1566
+ attr_accessor description: ::String
1567
+ SENSITIVE: []
1568
+ end
1569
+
1570
+ class UpdateCoreNetworkResponse
1571
+ attr_accessor core_network: Types::CoreNetwork
1572
+ SENSITIVE: []
1573
+ end
1574
+
1575
+ class UpdateDeviceRequest
1576
+ attr_accessor global_network_id: ::String
1577
+ attr_accessor device_id: ::String
1578
+ attr_accessor aws_location: Types::AWSLocation
1579
+ attr_accessor description: ::String
1580
+ attr_accessor type: ::String
1581
+ attr_accessor vendor: ::String
1582
+ attr_accessor model: ::String
1583
+ attr_accessor serial_number: ::String
1584
+ attr_accessor location: Types::Location
1585
+ attr_accessor site_id: ::String
1586
+ SENSITIVE: [:location]
1587
+ end
1588
+
1589
+ class UpdateDeviceResponse
1590
+ attr_accessor device: Types::Device
1591
+ SENSITIVE: []
1592
+ end
1593
+
1594
+ class UpdateGlobalNetworkRequest
1595
+ attr_accessor global_network_id: ::String
1596
+ attr_accessor description: ::String
1597
+ SENSITIVE: []
1598
+ end
1599
+
1600
+ class UpdateGlobalNetworkResponse
1601
+ attr_accessor global_network: Types::GlobalNetwork
1602
+ SENSITIVE: []
1603
+ end
1604
+
1605
+ class UpdateLinkRequest
1606
+ attr_accessor global_network_id: ::String
1607
+ attr_accessor link_id: ::String
1608
+ attr_accessor description: ::String
1609
+ attr_accessor type: ::String
1610
+ attr_accessor bandwidth: Types::Bandwidth
1611
+ attr_accessor provider: ::String
1612
+ SENSITIVE: []
1613
+ end
1614
+
1615
+ class UpdateLinkResponse
1616
+ attr_accessor link: Types::Link
1617
+ SENSITIVE: []
1618
+ end
1619
+
1620
+ class UpdateNetworkResourceMetadataRequest
1621
+ attr_accessor global_network_id: ::String
1622
+ attr_accessor resource_arn: ::String
1623
+ attr_accessor metadata: ::Hash[::String, ::String]
1624
+ SENSITIVE: []
1625
+ end
1626
+
1627
+ class UpdateNetworkResourceMetadataResponse
1628
+ attr_accessor resource_arn: ::String
1629
+ attr_accessor metadata: ::Hash[::String, ::String]
1630
+ SENSITIVE: []
1631
+ end
1632
+
1633
+ class UpdateSiteRequest
1634
+ attr_accessor global_network_id: ::String
1635
+ attr_accessor site_id: ::String
1636
+ attr_accessor description: ::String
1637
+ attr_accessor location: Types::Location
1638
+ SENSITIVE: [:location]
1639
+ end
1640
+
1641
+ class UpdateSiteResponse
1642
+ attr_accessor site: Types::Site
1643
+ SENSITIVE: []
1644
+ end
1645
+
1646
+ class UpdateVpcAttachmentRequest
1647
+ attr_accessor attachment_id: ::String
1648
+ attr_accessor add_subnet_arns: ::Array[::String]
1649
+ attr_accessor remove_subnet_arns: ::Array[::String]
1650
+ attr_accessor options: Types::VpcOptions
1651
+ SENSITIVE: []
1652
+ end
1653
+
1654
+ class UpdateVpcAttachmentResponse
1655
+ attr_accessor vpc_attachment: Types::VpcAttachment
1656
+ SENSITIVE: []
1657
+ end
1658
+
1659
+ class ValidationException
1660
+ attr_accessor message: ::String
1661
+ attr_accessor reason: ("UnknownOperation" | "CannotParse" | "FieldValidationFailed" | "Other")
1662
+ attr_accessor fields: ::Array[Types::ValidationExceptionField]
1663
+ SENSITIVE: []
1664
+ end
1665
+
1666
+ class ValidationExceptionField
1667
+ attr_accessor name: ::String
1668
+ attr_accessor message: ::String
1669
+ SENSITIVE: []
1670
+ end
1671
+
1672
+ class VpcAttachment
1673
+ attr_accessor attachment: Types::Attachment
1674
+ attr_accessor subnet_arns: ::Array[::String]
1675
+ attr_accessor options: Types::VpcOptions
1676
+ SENSITIVE: []
1677
+ end
1678
+
1679
+ class VpcOptions
1680
+ attr_accessor ipv_6_support: bool
1681
+ attr_accessor appliance_mode_support: bool
1682
+ SENSITIVE: []
1683
+ end
1684
+ end
1685
+ end