@aws-sdk/client-networkmanager 3.301.0 → 3.303.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.
- package/dist-cjs/models/models_0.js +184 -215
- package/dist-es/models/models_0.js +184 -215
- package/dist-types/models/models_0.d.ts +339 -184
- package/dist-types/ts3.4/models/models_0.d.ts +236 -184
- package/package.json +34 -34
|
@@ -11,13 +11,18 @@ export interface AcceptAttachmentRequest {
|
|
|
11
11
|
}
|
|
12
12
|
/**
|
|
13
13
|
* @public
|
|
14
|
+
* @enum
|
|
14
15
|
*/
|
|
15
|
-
export declare
|
|
16
|
-
CONNECT
|
|
17
|
-
SITE_TO_SITE_VPN
|
|
18
|
-
TRANSIT_GATEWAY_ROUTE_TABLE
|
|
19
|
-
VPC
|
|
20
|
-
}
|
|
16
|
+
export declare const AttachmentType: {
|
|
17
|
+
readonly CONNECT: "CONNECT";
|
|
18
|
+
readonly SITE_TO_SITE_VPN: "SITE_TO_SITE_VPN";
|
|
19
|
+
readonly TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE";
|
|
20
|
+
readonly VPC: "VPC";
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export type AttachmentType = (typeof AttachmentType)[keyof typeof AttachmentType];
|
|
21
26
|
/**
|
|
22
27
|
* @public
|
|
23
28
|
* <p>Describes a tag.</p>
|
|
@@ -54,18 +59,23 @@ export interface ProposedSegmentChange {
|
|
|
54
59
|
}
|
|
55
60
|
/**
|
|
56
61
|
* @public
|
|
62
|
+
* @enum
|
|
57
63
|
*/
|
|
58
|
-
export declare
|
|
59
|
-
AVAILABLE
|
|
60
|
-
CREATING
|
|
61
|
-
DELETING
|
|
62
|
-
FAILED
|
|
63
|
-
PENDING_ATTACHMENT_ACCEPTANCE
|
|
64
|
-
PENDING_NETWORK_UPDATE
|
|
65
|
-
PENDING_TAG_ACCEPTANCE
|
|
66
|
-
REJECTED
|
|
67
|
-
UPDATING
|
|
68
|
-
}
|
|
64
|
+
export declare const AttachmentState: {
|
|
65
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
66
|
+
readonly CREATING: "CREATING";
|
|
67
|
+
readonly DELETING: "DELETING";
|
|
68
|
+
readonly FAILED: "FAILED";
|
|
69
|
+
readonly PENDING_ATTACHMENT_ACCEPTANCE: "PENDING_ATTACHMENT_ACCEPTANCE";
|
|
70
|
+
readonly PENDING_NETWORK_UPDATE: "PENDING_NETWORK_UPDATE";
|
|
71
|
+
readonly PENDING_TAG_ACCEPTANCE: "PENDING_TAG_ACCEPTANCE";
|
|
72
|
+
readonly REJECTED: "REJECTED";
|
|
73
|
+
readonly UPDATING: "UPDATING";
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export type AttachmentState = (typeof AttachmentState)[keyof typeof AttachmentState];
|
|
69
79
|
/**
|
|
70
80
|
* @public
|
|
71
81
|
* <p>Describes a core network attachment.</p>
|
|
@@ -247,13 +257,18 @@ export interface ValidationExceptionField {
|
|
|
247
257
|
}
|
|
248
258
|
/**
|
|
249
259
|
* @public
|
|
260
|
+
* @enum
|
|
250
261
|
*/
|
|
251
|
-
export declare
|
|
252
|
-
CANNOT_PARSE
|
|
253
|
-
FIELD_VALIDATION_FAILED
|
|
254
|
-
OTHER
|
|
255
|
-
UNKNOWN_OPERATION
|
|
256
|
-
}
|
|
262
|
+
export declare const ValidationExceptionReason: {
|
|
263
|
+
readonly CANNOT_PARSE: "CannotParse";
|
|
264
|
+
readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
|
|
265
|
+
readonly OTHER: "Other";
|
|
266
|
+
readonly UNKNOWN_OPERATION: "UnknownOperation";
|
|
267
|
+
};
|
|
268
|
+
/**
|
|
269
|
+
* @public
|
|
270
|
+
*/
|
|
271
|
+
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
257
272
|
/**
|
|
258
273
|
* @public
|
|
259
274
|
* <p>The input fails to satisfy the constraints.</p>
|
|
@@ -312,13 +327,18 @@ export interface AssociateConnectPeerRequest {
|
|
|
312
327
|
}
|
|
313
328
|
/**
|
|
314
329
|
* @public
|
|
330
|
+
* @enum
|
|
315
331
|
*/
|
|
316
|
-
export declare
|
|
317
|
-
available
|
|
318
|
-
deleted
|
|
319
|
-
deleting
|
|
320
|
-
pending
|
|
321
|
-
}
|
|
332
|
+
export declare const ConnectPeerAssociationState: {
|
|
333
|
+
readonly available: "AVAILABLE";
|
|
334
|
+
readonly deleted: "DELETED";
|
|
335
|
+
readonly deleting: "DELETING";
|
|
336
|
+
readonly pending: "PENDING";
|
|
337
|
+
};
|
|
338
|
+
/**
|
|
339
|
+
* @public
|
|
340
|
+
*/
|
|
341
|
+
export type ConnectPeerAssociationState = (typeof ConnectPeerAssociationState)[keyof typeof ConnectPeerAssociationState];
|
|
322
342
|
/**
|
|
323
343
|
* @public
|
|
324
344
|
* <p>Describes a core network Connect peer association.</p>
|
|
@@ -409,13 +429,18 @@ export interface AssociateCustomerGatewayRequest {
|
|
|
409
429
|
}
|
|
410
430
|
/**
|
|
411
431
|
* @public
|
|
432
|
+
* @enum
|
|
412
433
|
*/
|
|
413
|
-
export declare
|
|
414
|
-
available
|
|
415
|
-
deleted
|
|
416
|
-
deleting
|
|
417
|
-
pending
|
|
418
|
-
}
|
|
434
|
+
export declare const CustomerGatewayAssociationState: {
|
|
435
|
+
readonly available: "AVAILABLE";
|
|
436
|
+
readonly deleted: "DELETED";
|
|
437
|
+
readonly deleting: "DELETING";
|
|
438
|
+
readonly pending: "PENDING";
|
|
439
|
+
};
|
|
440
|
+
/**
|
|
441
|
+
* @public
|
|
442
|
+
*/
|
|
443
|
+
export type CustomerGatewayAssociationState = (typeof CustomerGatewayAssociationState)[keyof typeof CustomerGatewayAssociationState];
|
|
419
444
|
/**
|
|
420
445
|
* @public
|
|
421
446
|
* <p>Describes the association between a customer gateway, a device, and a link.</p>
|
|
@@ -470,13 +495,18 @@ export interface AssociateLinkRequest {
|
|
|
470
495
|
}
|
|
471
496
|
/**
|
|
472
497
|
* @public
|
|
498
|
+
* @enum
|
|
473
499
|
*/
|
|
474
|
-
export declare
|
|
475
|
-
available
|
|
476
|
-
deleted
|
|
477
|
-
deleting
|
|
478
|
-
pending
|
|
479
|
-
}
|
|
500
|
+
export declare const LinkAssociationState: {
|
|
501
|
+
readonly available: "AVAILABLE";
|
|
502
|
+
readonly deleted: "DELETED";
|
|
503
|
+
readonly deleting: "DELETING";
|
|
504
|
+
readonly pending: "PENDING";
|
|
505
|
+
};
|
|
506
|
+
/**
|
|
507
|
+
* @public
|
|
508
|
+
*/
|
|
509
|
+
export type LinkAssociationState = (typeof LinkAssociationState)[keyof typeof LinkAssociationState];
|
|
480
510
|
/**
|
|
481
511
|
* @public
|
|
482
512
|
* <p>Describes the association between a device and a link.</p>
|
|
@@ -531,13 +561,18 @@ export interface AssociateTransitGatewayConnectPeerRequest {
|
|
|
531
561
|
}
|
|
532
562
|
/**
|
|
533
563
|
* @public
|
|
564
|
+
* @enum
|
|
534
565
|
*/
|
|
535
|
-
export declare
|
|
536
|
-
available
|
|
537
|
-
deleted
|
|
538
|
-
deleting
|
|
539
|
-
pending
|
|
540
|
-
}
|
|
566
|
+
export declare const TransitGatewayConnectPeerAssociationState: {
|
|
567
|
+
readonly available: "AVAILABLE";
|
|
568
|
+
readonly deleted: "DELETED";
|
|
569
|
+
readonly deleting: "DELETING";
|
|
570
|
+
readonly pending: "PENDING";
|
|
571
|
+
};
|
|
572
|
+
/**
|
|
573
|
+
* @public
|
|
574
|
+
*/
|
|
575
|
+
export type TransitGatewayConnectPeerAssociationState = (typeof TransitGatewayConnectPeerAssociationState)[keyof typeof TransitGatewayConnectPeerAssociationState];
|
|
541
576
|
/**
|
|
542
577
|
* @public
|
|
543
578
|
* <p>Describes a transit gateway Connect peer association.</p>
|
|
@@ -614,52 +649,77 @@ export interface BgpOptions {
|
|
|
614
649
|
}
|
|
615
650
|
/**
|
|
616
651
|
* @public
|
|
652
|
+
* @enum
|
|
617
653
|
*/
|
|
618
|
-
export declare
|
|
619
|
-
ADD
|
|
620
|
-
MODIFY
|
|
621
|
-
REMOVE
|
|
622
|
-
}
|
|
654
|
+
export declare const ChangeAction: {
|
|
655
|
+
readonly ADD: "ADD";
|
|
656
|
+
readonly MODIFY: "MODIFY";
|
|
657
|
+
readonly REMOVE: "REMOVE";
|
|
658
|
+
};
|
|
623
659
|
/**
|
|
624
660
|
* @public
|
|
625
661
|
*/
|
|
626
|
-
export
|
|
627
|
-
EXECUTING = "EXECUTING",
|
|
628
|
-
EXECUTION_SUCCEEDED = "EXECUTION_SUCCEEDED",
|
|
629
|
-
FAILED_GENERATION = "FAILED_GENERATION",
|
|
630
|
-
OUT_OF_DATE = "OUT_OF_DATE",
|
|
631
|
-
PENDING_GENERATION = "PENDING_GENERATION",
|
|
632
|
-
READY_TO_EXECUTE = "READY_TO_EXECUTE"
|
|
633
|
-
}
|
|
662
|
+
export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];
|
|
634
663
|
/**
|
|
635
664
|
* @public
|
|
665
|
+
* @enum
|
|
636
666
|
*/
|
|
637
|
-
export declare
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
667
|
+
export declare const ChangeSetState: {
|
|
668
|
+
readonly EXECUTING: "EXECUTING";
|
|
669
|
+
readonly EXECUTION_SUCCEEDED: "EXECUTION_SUCCEEDED";
|
|
670
|
+
readonly FAILED_GENERATION: "FAILED_GENERATION";
|
|
671
|
+
readonly OUT_OF_DATE: "OUT_OF_DATE";
|
|
672
|
+
readonly PENDING_GENERATION: "PENDING_GENERATION";
|
|
673
|
+
readonly READY_TO_EXECUTE: "READY_TO_EXECUTE";
|
|
674
|
+
};
|
|
643
675
|
/**
|
|
644
676
|
* @public
|
|
645
677
|
*/
|
|
646
|
-
export
|
|
647
|
-
ATTACHMENT_MAPPING = "ATTACHMENT_MAPPING",
|
|
648
|
-
ATTACHMENT_POLICIES_CONFIGURATION = "ATTACHMENT_POLICIES_CONFIGURATION",
|
|
649
|
-
ATTACHMENT_ROUTE_PROPAGATION = "ATTACHMENT_ROUTE_PROPAGATION",
|
|
650
|
-
ATTACHMENT_ROUTE_STATIC = "ATTACHMENT_ROUTE_STATIC",
|
|
651
|
-
CORE_NETWORK_CONFIGURATION = "CORE_NETWORK_CONFIGURATION",
|
|
652
|
-
CORE_NETWORK_EDGE = "CORE_NETWORK_EDGE",
|
|
653
|
-
CORE_NETWORK_SEGMENT = "CORE_NETWORK_SEGMENT",
|
|
654
|
-
SEGMENTS_CONFIGURATION = "SEGMENTS_CONFIGURATION",
|
|
655
|
-
SEGMENT_ACTIONS_CONFIGURATION = "SEGMENT_ACTIONS_CONFIGURATION"
|
|
656
|
-
}
|
|
678
|
+
export type ChangeSetState = (typeof ChangeSetState)[keyof typeof ChangeSetState];
|
|
657
679
|
/**
|
|
658
680
|
* @public
|
|
681
|
+
* @enum
|
|
659
682
|
*/
|
|
660
|
-
export declare
|
|
661
|
-
|
|
662
|
-
|
|
683
|
+
export declare const ChangeStatus: {
|
|
684
|
+
readonly COMPLETE: "COMPLETE";
|
|
685
|
+
readonly FAILED: "FAILED";
|
|
686
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
687
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
688
|
+
};
|
|
689
|
+
/**
|
|
690
|
+
* @public
|
|
691
|
+
*/
|
|
692
|
+
export type ChangeStatus = (typeof ChangeStatus)[keyof typeof ChangeStatus];
|
|
693
|
+
/**
|
|
694
|
+
* @public
|
|
695
|
+
* @enum
|
|
696
|
+
*/
|
|
697
|
+
export declare const ChangeType: {
|
|
698
|
+
readonly ATTACHMENT_MAPPING: "ATTACHMENT_MAPPING";
|
|
699
|
+
readonly ATTACHMENT_POLICIES_CONFIGURATION: "ATTACHMENT_POLICIES_CONFIGURATION";
|
|
700
|
+
readonly ATTACHMENT_ROUTE_PROPAGATION: "ATTACHMENT_ROUTE_PROPAGATION";
|
|
701
|
+
readonly ATTACHMENT_ROUTE_STATIC: "ATTACHMENT_ROUTE_STATIC";
|
|
702
|
+
readonly CORE_NETWORK_CONFIGURATION: "CORE_NETWORK_CONFIGURATION";
|
|
703
|
+
readonly CORE_NETWORK_EDGE: "CORE_NETWORK_EDGE";
|
|
704
|
+
readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
|
|
705
|
+
readonly SEGMENTS_CONFIGURATION: "SEGMENTS_CONFIGURATION";
|
|
706
|
+
readonly SEGMENT_ACTIONS_CONFIGURATION: "SEGMENT_ACTIONS_CONFIGURATION";
|
|
707
|
+
};
|
|
708
|
+
/**
|
|
709
|
+
* @public
|
|
710
|
+
*/
|
|
711
|
+
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
|
712
|
+
/**
|
|
713
|
+
* @public
|
|
714
|
+
* @enum
|
|
715
|
+
*/
|
|
716
|
+
export declare const TunnelProtocol: {
|
|
717
|
+
readonly GRE: "GRE";
|
|
718
|
+
};
|
|
719
|
+
/**
|
|
720
|
+
* @public
|
|
721
|
+
*/
|
|
722
|
+
export type TunnelProtocol = (typeof TunnelProtocol)[keyof typeof TunnelProtocol];
|
|
663
723
|
/**
|
|
664
724
|
* @public
|
|
665
725
|
* <p>Describes a core network Connect attachment options.</p>
|
|
@@ -690,13 +750,18 @@ export interface ConnectAttachment {
|
|
|
690
750
|
}
|
|
691
751
|
/**
|
|
692
752
|
* @public
|
|
753
|
+
* @enum
|
|
693
754
|
*/
|
|
694
|
-
export declare
|
|
695
|
-
available
|
|
696
|
-
deleting
|
|
697
|
-
pending
|
|
698
|
-
updating
|
|
699
|
-
}
|
|
755
|
+
export declare const ConnectionState: {
|
|
756
|
+
readonly available: "AVAILABLE";
|
|
757
|
+
readonly deleting: "DELETING";
|
|
758
|
+
readonly pending: "PENDING";
|
|
759
|
+
readonly updating: "UPDATING";
|
|
760
|
+
};
|
|
761
|
+
/**
|
|
762
|
+
* @public
|
|
763
|
+
*/
|
|
764
|
+
export type ConnectionState = (typeof ConnectionState)[keyof typeof ConnectionState];
|
|
700
765
|
/**
|
|
701
766
|
* @public
|
|
702
767
|
* <p>Describes a connection.</p>
|
|
@@ -749,18 +814,28 @@ export interface Connection {
|
|
|
749
814
|
}
|
|
750
815
|
/**
|
|
751
816
|
* @public
|
|
817
|
+
* @enum
|
|
752
818
|
*/
|
|
753
|
-
export declare
|
|
754
|
-
DOWN
|
|
755
|
-
UP
|
|
756
|
-
}
|
|
819
|
+
export declare const ConnectionStatus: {
|
|
820
|
+
readonly DOWN: "DOWN";
|
|
821
|
+
readonly UP: "UP";
|
|
822
|
+
};
|
|
757
823
|
/**
|
|
758
824
|
* @public
|
|
759
825
|
*/
|
|
760
|
-
export
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
826
|
+
export type ConnectionStatus = (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
|
|
827
|
+
/**
|
|
828
|
+
* @public
|
|
829
|
+
* @enum
|
|
830
|
+
*/
|
|
831
|
+
export declare const ConnectionType: {
|
|
832
|
+
readonly BGP: "BGP";
|
|
833
|
+
readonly IPSEC: "IPSEC";
|
|
834
|
+
};
|
|
835
|
+
/**
|
|
836
|
+
* @public
|
|
837
|
+
*/
|
|
838
|
+
export type ConnectionType = (typeof ConnectionType)[keyof typeof ConnectionType];
|
|
764
839
|
/**
|
|
765
840
|
* @public
|
|
766
841
|
* <p>Describes connection health.</p>
|
|
@@ -829,13 +904,18 @@ export interface ConnectPeerConfiguration {
|
|
|
829
904
|
}
|
|
830
905
|
/**
|
|
831
906
|
* @public
|
|
907
|
+
* @enum
|
|
832
908
|
*/
|
|
833
|
-
export declare
|
|
834
|
-
AVAILABLE
|
|
835
|
-
CREATING
|
|
836
|
-
DELETING
|
|
837
|
-
FAILED
|
|
838
|
-
}
|
|
909
|
+
export declare const ConnectPeerState: {
|
|
910
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
911
|
+
readonly CREATING: "CREATING";
|
|
912
|
+
readonly DELETING: "DELETING";
|
|
913
|
+
readonly FAILED: "FAILED";
|
|
914
|
+
};
|
|
915
|
+
/**
|
|
916
|
+
* @public
|
|
917
|
+
*/
|
|
918
|
+
export type ConnectPeerState = (typeof ConnectPeerState)[keyof typeof ConnectPeerState];
|
|
839
919
|
/**
|
|
840
920
|
* @public
|
|
841
921
|
* <p>Describes a core network Connect peer.</p>
|
|
@@ -946,13 +1026,18 @@ export interface CoreNetworkSegment {
|
|
|
946
1026
|
}
|
|
947
1027
|
/**
|
|
948
1028
|
* @public
|
|
1029
|
+
* @enum
|
|
949
1030
|
*/
|
|
950
|
-
export declare
|
|
951
|
-
AVAILABLE
|
|
952
|
-
CREATING
|
|
953
|
-
DELETING
|
|
954
|
-
UPDATING
|
|
955
|
-
}
|
|
1031
|
+
export declare const CoreNetworkState: {
|
|
1032
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
1033
|
+
readonly CREATING: "CREATING";
|
|
1034
|
+
readonly DELETING: "DELETING";
|
|
1035
|
+
readonly UPDATING: "UPDATING";
|
|
1036
|
+
};
|
|
1037
|
+
/**
|
|
1038
|
+
* @public
|
|
1039
|
+
*/
|
|
1040
|
+
export type CoreNetworkState = (typeof CoreNetworkState)[keyof typeof CoreNetworkState];
|
|
956
1041
|
/**
|
|
957
1042
|
* @public
|
|
958
1043
|
* <p>Describes a core network.</p>
|
|
@@ -1113,11 +1198,16 @@ export interface CoreNetworkChangeEvent {
|
|
|
1113
1198
|
}
|
|
1114
1199
|
/**
|
|
1115
1200
|
* @public
|
|
1201
|
+
* @enum
|
|
1116
1202
|
*/
|
|
1117
|
-
export declare
|
|
1118
|
-
LATEST
|
|
1119
|
-
LIVE
|
|
1120
|
-
}
|
|
1203
|
+
export declare const CoreNetworkPolicyAlias: {
|
|
1204
|
+
readonly LATEST: "LATEST";
|
|
1205
|
+
readonly LIVE: "LIVE";
|
|
1206
|
+
};
|
|
1207
|
+
/**
|
|
1208
|
+
* @public
|
|
1209
|
+
*/
|
|
1210
|
+
export type CoreNetworkPolicyAlias = (typeof CoreNetworkPolicyAlias)[keyof typeof CoreNetworkPolicyAlias];
|
|
1121
1211
|
/**
|
|
1122
1212
|
* @public
|
|
1123
1213
|
* <p>Provides details about an error in a core network policy.</p>
|
|
@@ -1499,13 +1589,18 @@ export interface CreateDeviceRequest {
|
|
|
1499
1589
|
}
|
|
1500
1590
|
/**
|
|
1501
1591
|
* @public
|
|
1592
|
+
* @enum
|
|
1502
1593
|
*/
|
|
1503
|
-
export declare
|
|
1504
|
-
available
|
|
1505
|
-
deleting
|
|
1506
|
-
pending
|
|
1507
|
-
updating
|
|
1508
|
-
}
|
|
1594
|
+
export declare const DeviceState: {
|
|
1595
|
+
readonly available: "AVAILABLE";
|
|
1596
|
+
readonly deleting: "DELETING";
|
|
1597
|
+
readonly pending: "PENDING";
|
|
1598
|
+
readonly updating: "UPDATING";
|
|
1599
|
+
};
|
|
1600
|
+
/**
|
|
1601
|
+
* @public
|
|
1602
|
+
*/
|
|
1603
|
+
export type DeviceState = (typeof DeviceState)[keyof typeof DeviceState];
|
|
1509
1604
|
/**
|
|
1510
1605
|
* @public
|
|
1511
1606
|
* <p>Describes a device.</p>
|
|
@@ -1593,13 +1688,18 @@ export interface CreateGlobalNetworkRequest {
|
|
|
1593
1688
|
}
|
|
1594
1689
|
/**
|
|
1595
1690
|
* @public
|
|
1691
|
+
* @enum
|
|
1596
1692
|
*/
|
|
1597
|
-
export declare
|
|
1598
|
-
available
|
|
1599
|
-
deleting
|
|
1600
|
-
pending
|
|
1601
|
-
updating
|
|
1602
|
-
}
|
|
1693
|
+
export declare const GlobalNetworkState: {
|
|
1694
|
+
readonly available: "AVAILABLE";
|
|
1695
|
+
readonly deleting: "DELETING";
|
|
1696
|
+
readonly pending: "PENDING";
|
|
1697
|
+
readonly updating: "UPDATING";
|
|
1698
|
+
};
|
|
1699
|
+
/**
|
|
1700
|
+
* @public
|
|
1701
|
+
*/
|
|
1702
|
+
export type GlobalNetworkState = (typeof GlobalNetworkState)[keyof typeof GlobalNetworkState];
|
|
1603
1703
|
/**
|
|
1604
1704
|
* @public
|
|
1605
1705
|
* <p>Describes a global network. This is a single private network acting as a high-level container for your network objects, including an Amazon Web Services-managed Core Network.</p>
|
|
@@ -1677,13 +1777,18 @@ export interface CreateLinkRequest {
|
|
|
1677
1777
|
}
|
|
1678
1778
|
/**
|
|
1679
1779
|
* @public
|
|
1780
|
+
* @enum
|
|
1680
1781
|
*/
|
|
1681
|
-
export declare
|
|
1682
|
-
available
|
|
1683
|
-
deleting
|
|
1684
|
-
pending
|
|
1685
|
-
updating
|
|
1686
|
-
}
|
|
1782
|
+
export declare const LinkState: {
|
|
1783
|
+
readonly available: "AVAILABLE";
|
|
1784
|
+
readonly deleting: "DELETING";
|
|
1785
|
+
readonly pending: "PENDING";
|
|
1786
|
+
readonly updating: "UPDATING";
|
|
1787
|
+
};
|
|
1788
|
+
/**
|
|
1789
|
+
* @public
|
|
1790
|
+
*/
|
|
1791
|
+
export type LinkState = (typeof LinkState)[keyof typeof LinkState];
|
|
1687
1792
|
/**
|
|
1688
1793
|
* @public
|
|
1689
1794
|
* <p>Describes a link.</p>
|
|
@@ -1781,13 +1886,18 @@ export interface CreateSiteRequest {
|
|
|
1781
1886
|
}
|
|
1782
1887
|
/**
|
|
1783
1888
|
* @public
|
|
1889
|
+
* @enum
|
|
1784
1890
|
*/
|
|
1785
|
-
export declare
|
|
1786
|
-
available
|
|
1787
|
-
deleting
|
|
1788
|
-
pending
|
|
1789
|
-
updating
|
|
1790
|
-
}
|
|
1891
|
+
export declare const SiteState: {
|
|
1892
|
+
readonly available: "AVAILABLE";
|
|
1893
|
+
readonly deleting: "DELETING";
|
|
1894
|
+
readonly pending: "PENDING";
|
|
1895
|
+
readonly updating: "UPDATING";
|
|
1896
|
+
};
|
|
1897
|
+
/**
|
|
1898
|
+
* @public
|
|
1899
|
+
*/
|
|
1900
|
+
export type SiteState = (typeof SiteState)[keyof typeof SiteState];
|
|
1791
1901
|
/**
|
|
1792
1902
|
* @public
|
|
1793
1903
|
* <p>Describes a site.</p>
|
|
@@ -1902,19 +2012,29 @@ export interface CreateTransitGatewayPeeringRequest {
|
|
|
1902
2012
|
}
|
|
1903
2013
|
/**
|
|
1904
2014
|
* @public
|
|
2015
|
+
* @enum
|
|
1905
2016
|
*/
|
|
1906
|
-
export declare
|
|
1907
|
-
TRANSIT_GATEWAY
|
|
1908
|
-
}
|
|
2017
|
+
export declare const PeeringType: {
|
|
2018
|
+
readonly TRANSIT_GATEWAY: "TRANSIT_GATEWAY";
|
|
2019
|
+
};
|
|
1909
2020
|
/**
|
|
1910
2021
|
* @public
|
|
1911
2022
|
*/
|
|
1912
|
-
export
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
2023
|
+
export type PeeringType = (typeof PeeringType)[keyof typeof PeeringType];
|
|
2024
|
+
/**
|
|
2025
|
+
* @public
|
|
2026
|
+
* @enum
|
|
2027
|
+
*/
|
|
2028
|
+
export declare const PeeringState: {
|
|
2029
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
2030
|
+
readonly CREATING: "CREATING";
|
|
2031
|
+
readonly DELETING: "DELETING";
|
|
2032
|
+
readonly FAILED: "FAILED";
|
|
2033
|
+
};
|
|
2034
|
+
/**
|
|
2035
|
+
* @public
|
|
2036
|
+
*/
|
|
2037
|
+
export type PeeringState = (typeof PeeringState)[keyof typeof PeeringState];
|
|
1918
2038
|
/**
|
|
1919
2039
|
* @public
|
|
1920
2040
|
* <p>Describes a peering connection.</p>
|
|
@@ -2335,14 +2455,19 @@ export interface DeregisterTransitGatewayRequest {
|
|
|
2335
2455
|
}
|
|
2336
2456
|
/**
|
|
2337
2457
|
* @public
|
|
2458
|
+
* @enum
|
|
2338
2459
|
*/
|
|
2339
|
-
export declare
|
|
2340
|
-
available
|
|
2341
|
-
deleted
|
|
2342
|
-
deleting
|
|
2343
|
-
failed
|
|
2344
|
-
pending
|
|
2345
|
-
}
|
|
2460
|
+
export declare const TransitGatewayRegistrationState: {
|
|
2461
|
+
readonly available: "AVAILABLE";
|
|
2462
|
+
readonly deleted: "DELETED";
|
|
2463
|
+
readonly deleting: "DELETING";
|
|
2464
|
+
readonly failed: "FAILED";
|
|
2465
|
+
readonly pending: "PENDING";
|
|
2466
|
+
};
|
|
2467
|
+
/**
|
|
2468
|
+
* @public
|
|
2469
|
+
*/
|
|
2470
|
+
export type TransitGatewayRegistrationState = (typeof TransitGatewayRegistrationState)[keyof typeof TransitGatewayRegistrationState];
|
|
2346
2471
|
/**
|
|
2347
2472
|
* @public
|
|
2348
2473
|
* <p>Describes the status of a transit gateway registration.</p>
|
|
@@ -3432,18 +3557,28 @@ export interface RouteTableIdentifier {
|
|
|
3432
3557
|
}
|
|
3433
3558
|
/**
|
|
3434
3559
|
* @public
|
|
3560
|
+
* @enum
|
|
3435
3561
|
*/
|
|
3436
|
-
export declare
|
|
3437
|
-
ACTIVE
|
|
3438
|
-
BLACKHOLE
|
|
3439
|
-
}
|
|
3562
|
+
export declare const RouteState: {
|
|
3563
|
+
readonly ACTIVE: "ACTIVE";
|
|
3564
|
+
readonly BLACKHOLE: "BLACKHOLE";
|
|
3565
|
+
};
|
|
3440
3566
|
/**
|
|
3441
3567
|
* @public
|
|
3442
3568
|
*/
|
|
3443
|
-
export
|
|
3444
|
-
|
|
3445
|
-
|
|
3446
|
-
|
|
3569
|
+
export type RouteState = (typeof RouteState)[keyof typeof RouteState];
|
|
3570
|
+
/**
|
|
3571
|
+
* @public
|
|
3572
|
+
* @enum
|
|
3573
|
+
*/
|
|
3574
|
+
export declare const RouteType: {
|
|
3575
|
+
readonly PROPAGATED: "PROPAGATED";
|
|
3576
|
+
readonly STATIC: "STATIC";
|
|
3577
|
+
};
|
|
3578
|
+
/**
|
|
3579
|
+
* @public
|
|
3580
|
+
*/
|
|
3581
|
+
export type RouteType = (typeof RouteType)[keyof typeof RouteType];
|
|
3447
3582
|
/**
|
|
3448
3583
|
* @public
|
|
3449
3584
|
*/
|
|
@@ -3547,11 +3682,16 @@ export interface NetworkRoute {
|
|
|
3547
3682
|
}
|
|
3548
3683
|
/**
|
|
3549
3684
|
* @public
|
|
3685
|
+
* @enum
|
|
3550
3686
|
*/
|
|
3551
|
-
export declare
|
|
3552
|
-
CORE_NETWORK_SEGMENT
|
|
3553
|
-
TRANSIT_GATEWAY_ROUTE_TABLE
|
|
3554
|
-
}
|
|
3687
|
+
export declare const RouteTableType: {
|
|
3688
|
+
readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
|
|
3689
|
+
readonly TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE";
|
|
3690
|
+
};
|
|
3691
|
+
/**
|
|
3692
|
+
* @public
|
|
3693
|
+
*/
|
|
3694
|
+
export type RouteTableType = (typeof RouteTableType)[keyof typeof RouteTableType];
|
|
3555
3695
|
/**
|
|
3556
3696
|
* @public
|
|
3557
3697
|
*/
|
|
@@ -3798,27 +3938,37 @@ export interface RouteAnalysisEndpointOptions {
|
|
|
3798
3938
|
}
|
|
3799
3939
|
/**
|
|
3800
3940
|
* @public
|
|
3941
|
+
* @enum
|
|
3801
3942
|
*/
|
|
3802
|
-
export declare
|
|
3803
|
-
BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND
|
|
3804
|
-
CYCLIC_PATH_DETECTED
|
|
3805
|
-
INACTIVE_ROUTE_FOR_DESTINATION_FOUND
|
|
3806
|
-
MAX_HOPS_EXCEEDED
|
|
3807
|
-
NO_DESTINATION_ARN_PROVIDED
|
|
3808
|
-
POSSIBLE_MIDDLEBOX
|
|
3809
|
-
ROUTE_NOT_FOUND
|
|
3810
|
-
TRANSIT_GATEWAY_ATTACHMENT
|
|
3811
|
-
TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND
|
|
3812
|
-
TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY
|
|
3813
|
-
TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND
|
|
3814
|
-
}
|
|
3943
|
+
export declare const RouteAnalysisCompletionReasonCode: {
|
|
3944
|
+
readonly BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND: "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND";
|
|
3945
|
+
readonly CYCLIC_PATH_DETECTED: "CYCLIC_PATH_DETECTED";
|
|
3946
|
+
readonly INACTIVE_ROUTE_FOR_DESTINATION_FOUND: "INACTIVE_ROUTE_FOR_DESTINATION_FOUND";
|
|
3947
|
+
readonly MAX_HOPS_EXCEEDED: "MAX_HOPS_EXCEEDED";
|
|
3948
|
+
readonly NO_DESTINATION_ARN_PROVIDED: "NO_DESTINATION_ARN_PROVIDED";
|
|
3949
|
+
readonly POSSIBLE_MIDDLEBOX: "POSSIBLE_MIDDLEBOX";
|
|
3950
|
+
readonly ROUTE_NOT_FOUND: "ROUTE_NOT_FOUND";
|
|
3951
|
+
readonly TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT_ATTACH_ARN_NO_MATCH";
|
|
3952
|
+
readonly TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND: "TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND";
|
|
3953
|
+
readonly TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY: "TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY";
|
|
3954
|
+
readonly TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND: "TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND";
|
|
3955
|
+
};
|
|
3815
3956
|
/**
|
|
3816
3957
|
* @public
|
|
3817
3958
|
*/
|
|
3818
|
-
export
|
|
3819
|
-
|
|
3820
|
-
|
|
3821
|
-
|
|
3959
|
+
export type RouteAnalysisCompletionReasonCode = (typeof RouteAnalysisCompletionReasonCode)[keyof typeof RouteAnalysisCompletionReasonCode];
|
|
3960
|
+
/**
|
|
3961
|
+
* @public
|
|
3962
|
+
* @enum
|
|
3963
|
+
*/
|
|
3964
|
+
export declare const RouteAnalysisCompletionResultCode: {
|
|
3965
|
+
readonly CONNECTED: "CONNECTED";
|
|
3966
|
+
readonly NOT_CONNECTED: "NOT_CONNECTED";
|
|
3967
|
+
};
|
|
3968
|
+
/**
|
|
3969
|
+
* @public
|
|
3970
|
+
*/
|
|
3971
|
+
export type RouteAnalysisCompletionResultCode = (typeof RouteAnalysisCompletionResultCode)[keyof typeof RouteAnalysisCompletionResultCode];
|
|
3822
3972
|
/**
|
|
3823
3973
|
* @public
|
|
3824
3974
|
* <p>Describes the status of an analysis at completion.</p>
|
|
@@ -3940,12 +4090,17 @@ export interface RouteAnalysisPath {
|
|
|
3940
4090
|
}
|
|
3941
4091
|
/**
|
|
3942
4092
|
* @public
|
|
4093
|
+
* @enum
|
|
3943
4094
|
*/
|
|
3944
|
-
export declare
|
|
3945
|
-
completed
|
|
3946
|
-
failed
|
|
3947
|
-
running
|
|
3948
|
-
}
|
|
4095
|
+
export declare const RouteAnalysisStatus: {
|
|
4096
|
+
readonly completed: "COMPLETED";
|
|
4097
|
+
readonly failed: "FAILED";
|
|
4098
|
+
readonly running: "RUNNING";
|
|
4099
|
+
};
|
|
4100
|
+
/**
|
|
4101
|
+
* @public
|
|
4102
|
+
*/
|
|
4103
|
+
export type RouteAnalysisStatus = (typeof RouteAnalysisStatus)[keyof typeof RouteAnalysisStatus];
|
|
3949
4104
|
/**
|
|
3950
4105
|
* @public
|
|
3951
4106
|
* <p>Describes a route analysis.</p>
|