@aws-sdk/client-networkmanager 3.936.0 → 3.937.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/README.md +56 -0
- package/dist-cjs/index.js +527 -31
- package/dist-es/NetworkManager.js +14 -0
- package/dist-es/commands/CreateCoreNetworkPrefixListAssociationCommand.js +16 -0
- package/dist-es/commands/DeleteCoreNetworkPrefixListAssociationCommand.js +16 -0
- package/dist-es/commands/ListAttachmentRoutingPolicyAssociationsCommand.js +16 -0
- package/dist-es/commands/ListCoreNetworkPrefixListAssociationsCommand.js +16 -0
- package/dist-es/commands/ListCoreNetworkRoutingInformationCommand.js +16 -0
- package/dist-es/commands/PutAttachmentRoutingPolicyLabelCommand.js +16 -0
- package/dist-es/commands/RemoveAttachmentRoutingPolicyLabelCommand.js +16 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/enums.js +10 -0
- package/dist-es/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListCoreNetworkPrefixListAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListCoreNetworkRoutingInformationPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +409 -31
- package/dist-types/NetworkManager.d.ts +49 -0
- package/dist-types/NetworkManagerClient.d.ts +9 -2
- package/dist-types/commands/AcceptAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateConnectAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateCoreNetworkPrefixListAssociationCommand.d.ts +101 -0
- package/dist-types/commands/CreateDirectConnectGatewayAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateSiteToSiteVpnAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateTransitGatewayRouteTableAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateVpcAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/DeleteAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCoreNetworkPrefixListAssociationCommand.d.ts +98 -0
- package/dist-types/commands/GetConnectAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetCoreNetworkChangeEventsCommand.d.ts +13 -1
- package/dist-types/commands/GetCoreNetworkChangeSetCommand.d.ts +30 -4
- package/dist-types/commands/GetDirectConnectGatewayAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetSiteToSiteVpnAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetTransitGatewayRouteTableAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetVpcAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/ListAttachmentRoutingPolicyAssociationsCommand.d.ts +104 -0
- package/dist-types/commands/ListAttachmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListCoreNetworkPrefixListAssociationsCommand.d.ts +99 -0
- package/dist-types/commands/ListCoreNetworkRoutingInformationCommand.d.ts +131 -0
- package/dist-types/commands/PutAttachmentRoutingPolicyLabelCommand.d.ts +101 -0
- package/dist-types/commands/RejectAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/RemoveAttachmentRoutingPolicyLabelCommand.d.ts +99 -0
- package/dist-types/commands/UpdateDirectConnectGatewayAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVpcAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/enums.d.ts +18 -0
- package/dist-types/models/models_0.d.ts +506 -1
- package/dist-types/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCoreNetworkPrefixListAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCoreNetworkRoutingInformationPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +30 -0
- package/dist-types/ts3.4/NetworkManager.d.ts +155 -0
- package/dist-types/ts3.4/NetworkManagerClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateCoreNetworkPrefixListAssociationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteCoreNetworkPrefixListAssociationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAttachmentRoutingPolicyAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCoreNetworkPrefixListAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCoreNetworkRoutingInformationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutAttachmentRoutingPolicyLabelCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RemoveAttachmentRoutingPolicyLabelCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/enums.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +126 -0
- package/dist-types/ts3.4/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCoreNetworkPrefixListAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCoreNetworkRoutingInformationPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +30 -0
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -278,8 +278,13 @@ const _ALR = "AssociateLinkRequest";
|
|
|
278
278
|
const _ALRs = "AssociateLinkResponse";
|
|
279
279
|
const _ALs = "AssociateLink";
|
|
280
280
|
const _AMS = "ApplianceModeSupport";
|
|
281
|
+
const _AP = "AsPath";
|
|
281
282
|
const _APRN = "AttachmentPolicyRuleNumber";
|
|
282
283
|
const _AR = "AwsRegion";
|
|
284
|
+
const _ARP = "AssociatedRoutingPolicies";
|
|
285
|
+
const _ARPA = "AttachmentRoutingPolicyAssociations";
|
|
286
|
+
const _ARPAL = "AttachmentRoutingPolicyAssociationsList";
|
|
287
|
+
const _ARPAS = "AttachmentRoutingPolicyAssociationSummary";
|
|
283
288
|
const _AS = "AccountStatus";
|
|
284
289
|
const _ASA = "AddSubnetArns";
|
|
285
290
|
const _ASL = "AccountStatusList";
|
|
@@ -307,6 +312,9 @@ const _CCA = "CreateConnectAttachment";
|
|
|
307
312
|
const _CCAR = "CreateConnectAttachmentRequest";
|
|
308
313
|
const _CCARr = "CreateConnectAttachmentResponse";
|
|
309
314
|
const _CCN = "CreateCoreNetwork";
|
|
315
|
+
const _CCNPLA = "CreateCoreNetworkPrefixListAssociation";
|
|
316
|
+
const _CCNPLAR = "CreateCoreNetworkPrefixListAssociationRequest";
|
|
317
|
+
const _CCNPLARr = "CreateCoreNetworkPrefixListAssociationResponse";
|
|
310
318
|
const _CCNR = "CreateCoreNetworkRequest";
|
|
311
319
|
const _CCNRr = "CreateCoreNetworkResponse";
|
|
312
320
|
const _CCP = "CreateConnectPeer";
|
|
@@ -338,6 +346,7 @@ const _CLI = "ConnectedLinkId";
|
|
|
338
346
|
const _CLR = "CreateLinkRequest";
|
|
339
347
|
const _CLRr = "CreateLinkResponse";
|
|
340
348
|
const _CLr = "CreateLink";
|
|
349
|
+
const _CM = "CommunityMatches";
|
|
341
350
|
const _CN = "CoreNetwork";
|
|
342
351
|
const _CNA = "CoreNetworkArn";
|
|
343
352
|
const _CNAI = "CoreNetworkAttachmentId";
|
|
@@ -364,6 +373,8 @@ const _CNPEo = "CoreNetworkPolicyException";
|
|
|
364
373
|
const _CNPV = "CoreNetworkPolicyVersion";
|
|
365
374
|
const _CNPVL = "CoreNetworkPolicyVersionList";
|
|
366
375
|
const _CNPVo = "CoreNetworkPolicyVersions";
|
|
376
|
+
const _CNRI = "CoreNetworkRoutingInformation";
|
|
377
|
+
const _CNRIL = "CoreNetworkRoutingInformationList";
|
|
367
378
|
const _CNS = "CoreNetworkSegment";
|
|
368
379
|
const _CNSE = "CoreNetworkSegmentEdge";
|
|
369
380
|
const _CNSEI = "CoreNetworkSegmentEdgeIdentifier";
|
|
@@ -406,6 +417,7 @@ const _CVAR = "CreateVpcAttachmentRequest";
|
|
|
406
417
|
const _CVARr = "CreateVpcAttachmentResponse";
|
|
407
418
|
const _Ci = "Cidr";
|
|
408
419
|
const _Co = "Connection";
|
|
420
|
+
const _Com = "Communities";
|
|
409
421
|
const _Con = "Configuration";
|
|
410
422
|
const _Conn = "Connections";
|
|
411
423
|
const _Cont = "Context";
|
|
@@ -423,6 +435,9 @@ const _DCGAi = "DirectConnectGatewayAttachment";
|
|
|
423
435
|
const _DCGR = "DisassociateCustomerGatewayRequest";
|
|
424
436
|
const _DCGRi = "DisassociateCustomerGatewayResponse";
|
|
425
437
|
const _DCN = "DeleteCoreNetwork";
|
|
438
|
+
const _DCNPLA = "DeleteCoreNetworkPrefixListAssociation";
|
|
439
|
+
const _DCNPLAR = "DeleteCoreNetworkPrefixListAssociationRequest";
|
|
440
|
+
const _DCNPLARe = "DeleteCoreNetworkPrefixListAssociationResponse";
|
|
426
441
|
const _DCNPV = "DeleteCoreNetworkPolicyVersion";
|
|
427
442
|
const _DCNPVR = "DeleteCoreNetworkPolicyVersionRequest";
|
|
428
443
|
const _DCNPVRe = "DeleteCoreNetworkPolicyVersionResponse";
|
|
@@ -480,6 +495,7 @@ const _Des = "Destinations";
|
|
|
480
495
|
const _Dest = "Destination";
|
|
481
496
|
const _Dev = "Devices";
|
|
482
497
|
const _E = "Edges";
|
|
498
|
+
const _EAPM = "ExactAsPathMatches";
|
|
483
499
|
const _EC = "ErrorCode";
|
|
484
500
|
const _ECM = "ExactCidrMatches";
|
|
485
501
|
const _ECNCS = "ExecuteCoreNetworkChangeSet";
|
|
@@ -597,6 +613,9 @@ const _L = "Location";
|
|
|
597
613
|
const _LA = "LinkAssociation";
|
|
598
614
|
const _LAL = "LinkAssociationList";
|
|
599
615
|
const _LAR = "ListAttachmentsRequest";
|
|
616
|
+
const _LARPA = "ListAttachmentRoutingPolicyAssociations";
|
|
617
|
+
const _LARPAR = "ListAttachmentRoutingPolicyAssociationsRequest";
|
|
618
|
+
const _LARPARi = "ListAttachmentRoutingPolicyAssociationsResponse";
|
|
600
619
|
const _LARi = "ListAttachmentsResponse";
|
|
601
620
|
const _LAS = "LinkAssociationState";
|
|
602
621
|
const _LAi = "LinkAssociations";
|
|
@@ -604,10 +623,16 @@ const _LAin = "LinkArn";
|
|
|
604
623
|
const _LAis = "ListAttachments";
|
|
605
624
|
const _LC = "LimitCode";
|
|
606
625
|
const _LCN = "ListCoreNetworks";
|
|
626
|
+
const _LCNPLA = "ListCoreNetworkPrefixListAssociations";
|
|
627
|
+
const _LCNPLAR = "ListCoreNetworkPrefixListAssociationsRequest";
|
|
628
|
+
const _LCNPLARi = "ListCoreNetworkPrefixListAssociationsResponse";
|
|
607
629
|
const _LCNPV = "ListCoreNetworkPolicyVersions";
|
|
608
630
|
const _LCNPVR = "ListCoreNetworkPolicyVersionsRequest";
|
|
609
631
|
const _LCNPVRi = "ListCoreNetworkPolicyVersionsResponse";
|
|
610
632
|
const _LCNR = "ListCoreNetworksRequest";
|
|
633
|
+
const _LCNRI = "ListCoreNetworkRoutingInformation";
|
|
634
|
+
const _LCNRIR = "ListCoreNetworkRoutingInformationRequest";
|
|
635
|
+
const _LCNRIRi = "ListCoreNetworkRoutingInformationResponse";
|
|
611
636
|
const _LCNRi = "ListCoreNetworksResponse";
|
|
612
637
|
const _LCP = "ListConnectPeers";
|
|
613
638
|
const _LCPR = "ListConnectPeersRequest";
|
|
@@ -619,10 +644,12 @@ const _LME = "LastModificationErrors";
|
|
|
619
644
|
const _LOSAS = "ListOrganizationServiceAccessStatus";
|
|
620
645
|
const _LOSASR = "ListOrganizationServiceAccessStatusRequest";
|
|
621
646
|
const _LOSASRi = "ListOrganizationServiceAccessStatusResponse";
|
|
622
|
-
const _LP = "
|
|
647
|
+
const _LP = "LocalPreference";
|
|
623
648
|
const _LPM = "LongestPrefixMatches";
|
|
649
|
+
const _LPMo = "LocalPreferenceMatches";
|
|
624
650
|
const _LPR = "ListPeeringsRequest";
|
|
625
651
|
const _LPRi = "ListPeeringsResponse";
|
|
652
|
+
const _LPi = "ListPeerings";
|
|
626
653
|
const _LTFR = "ListTagsForResource";
|
|
627
654
|
const _LTFRR = "ListTagsForResourceRequest";
|
|
628
655
|
const _LTFRRi = "ListTagsForResourceResponse";
|
|
@@ -632,10 +659,12 @@ const _Li = "Link";
|
|
|
632
659
|
const _Lin = "Links";
|
|
633
660
|
const _Lo = "Longitude";
|
|
634
661
|
const _M = "Message";
|
|
662
|
+
const _MM = "MedMatches";
|
|
635
663
|
const _MP = "MissingPermission";
|
|
636
664
|
const _MPC = "MissingPermissionsContext";
|
|
637
665
|
const _MR = "MaxResults";
|
|
638
|
-
const _Me = "
|
|
666
|
+
const _Me = "Med";
|
|
667
|
+
const _Met = "Metadata";
|
|
639
668
|
const _Mo = "Model";
|
|
640
669
|
const _Mod = "Mode";
|
|
641
670
|
const _N = "Name";
|
|
@@ -643,6 +672,8 @@ const _NFG = "NetworkFunctionGroups";
|
|
|
643
672
|
const _NFGL = "NetworkFunctionGroupList";
|
|
644
673
|
const _NFGN = "NetworkFunctionGroupName";
|
|
645
674
|
const _NFGe = "NetworkFunctionGroup";
|
|
675
|
+
const _NH = "NextHop";
|
|
676
|
+
const _NHF = "NextHopFilters";
|
|
646
677
|
const _NR = "NetworkResources";
|
|
647
678
|
const _NRC = "NetworkResourceCounts";
|
|
648
679
|
const _NRCL = "NetworkResourceCountList";
|
|
@@ -667,6 +698,9 @@ const _OI = "OrganizationId";
|
|
|
667
698
|
const _OS = "OrganizationStatus";
|
|
668
699
|
const _P = "Protocol";
|
|
669
700
|
const _PA = "PeerAsn";
|
|
701
|
+
const _PARPL = "PutAttachmentRoutingPolicyLabel";
|
|
702
|
+
const _PARPLR = "PutAttachmentRoutingPolicyLabelRequest";
|
|
703
|
+
const _PARPLRu = "PutAttachmentRoutingPolicyLabelResponse";
|
|
670
704
|
const _PAe = "PeerAddress";
|
|
671
705
|
const _PC = "PathComponent";
|
|
672
706
|
const _PCL = "PathComponentList";
|
|
@@ -676,16 +710,24 @@ const _PCNPRu = "PutCoreNetworkPolicyResponse";
|
|
|
676
710
|
const _PD = "PolicyDocument";
|
|
677
711
|
const _PE = "PolicyErrors";
|
|
678
712
|
const _PEC = "PermissionsErrorContext";
|
|
679
|
-
const _PEL = "
|
|
713
|
+
const _PEL = "PeerEdgeLocation";
|
|
714
|
+
const _PELe = "PeerEdgeLocations";
|
|
715
|
+
const _PELee = "PeeringErrorList";
|
|
680
716
|
const _PEe = "PeeringError";
|
|
681
717
|
const _PI = "PeeringId";
|
|
682
718
|
const _PL = "PeeringList";
|
|
719
|
+
const _PLA = "PrefixListArn";
|
|
720
|
+
const _PLAL = "PrefixListAssociationList";
|
|
721
|
+
const _PLAr = "PrefixListAlias";
|
|
722
|
+
const _PLAre = "PrefixListAssociations";
|
|
723
|
+
const _PLAref = "PrefixListAssociation";
|
|
683
724
|
const _PLI = "PrefixListIds";
|
|
684
725
|
const _PLIr = "PrefixListId";
|
|
685
726
|
const _PNFGC = "ProposedNetworkFunctionGroupChange";
|
|
686
|
-
const _PRP = "
|
|
727
|
+
const _PRP = "PendingRoutingPolicies";
|
|
687
728
|
const _PRPR = "PutResourcePolicyRequest";
|
|
688
729
|
const _PRPRu = "PutResourcePolicyResponse";
|
|
730
|
+
const _PRPu = "PutResourcePolicy";
|
|
689
731
|
const _PSC = "ProposedSegmentChange";
|
|
690
732
|
const _PT = "PeeringType";
|
|
691
733
|
const _PV = "PreviousValues";
|
|
@@ -693,7 +735,8 @@ const _PVI = "PolicyVersionId";
|
|
|
693
735
|
const _Pa = "Path";
|
|
694
736
|
const _Pe = "Peering";
|
|
695
737
|
const _Pee = "Peerings";
|
|
696
|
-
const _Pr = "
|
|
738
|
+
const _Pr = "Prefix";
|
|
739
|
+
const _Pro = "Provider";
|
|
697
740
|
const _R = "Relationships";
|
|
698
741
|
const _RA = "ResourceArn";
|
|
699
742
|
const _RAC = "RouteAnalysisCompletion";
|
|
@@ -702,6 +745,9 @@ const _RAEOS = "RouteAnalysisEndpointOptionsSpecification";
|
|
|
702
745
|
const _RAI = "RouteAnalysisId";
|
|
703
746
|
const _RAP = "RouteAnalysisPath";
|
|
704
747
|
const _RAR = "RejectAttachmentRequest";
|
|
748
|
+
const _RARPL = "RemoveAttachmentRoutingPolicyLabel";
|
|
749
|
+
const _RARPLR = "RemoveAttachmentRoutingPolicyLabelRequest";
|
|
750
|
+
const _RARPLRe = "RemoveAttachmentRoutingPolicyLabelResponse";
|
|
705
751
|
const _RARe = "RejectAttachmentResponse";
|
|
706
752
|
const _RAS = "RetryAfterSeconds";
|
|
707
753
|
const _RA_ = "Retry-After";
|
|
@@ -715,10 +761,18 @@ const _RCe = "ReasonCode";
|
|
|
715
761
|
const _RCea = "ReasonContext";
|
|
716
762
|
const _RGA = "RegisteredGatewayArn";
|
|
717
763
|
const _RI = "RequestId";
|
|
764
|
+
const _RINH = "RoutingInformationNextHop";
|
|
718
765
|
const _RIe = "ResourceId";
|
|
719
766
|
const _RL = "RelationshipList";
|
|
720
767
|
const _RNFE = "ResourceNotFoundException";
|
|
721
|
-
const _RP = "
|
|
768
|
+
const _RP = "RoutingPolicy";
|
|
769
|
+
const _RPAD = "RoutingPolicyAssociationDetails";
|
|
770
|
+
const _RPADL = "RoutingPolicyAssociationDetailsList";
|
|
771
|
+
const _RPADo = "RoutingPolicyAssociationDetail";
|
|
772
|
+
const _RPD = "RoutingPolicyDirection";
|
|
773
|
+
const _RPL = "RoutingPolicyLabel";
|
|
774
|
+
const _RPN = "RoutingPolicyNames";
|
|
775
|
+
const _RPe = "ReturnPath";
|
|
722
776
|
const _RSA = "RemoveSubnetArns";
|
|
723
777
|
const _RT = "ResourceType";
|
|
724
778
|
const _RTA = "RouteTableArn";
|
|
@@ -853,6 +907,7 @@ const _WSTSL = "WhenSentToSegmentsList";
|
|
|
853
907
|
const _Z = "Zone";
|
|
854
908
|
const _a = "application/json";
|
|
855
909
|
const _aI = "accountId";
|
|
910
|
+
const _aIt = "attachmentId";
|
|
856
911
|
const _aR = "awsRegion";
|
|
857
912
|
const _aT = "attachmentType";
|
|
858
913
|
const _al = "alias";
|
|
@@ -877,6 +932,7 @@ const _mR = "maxResults";
|
|
|
877
932
|
const _mT = "mediaType";
|
|
878
933
|
const _nT = "nextToken";
|
|
879
934
|
const _p = "provider";
|
|
935
|
+
const _pLA = "prefixListArn";
|
|
880
936
|
const _pT = "peeringType";
|
|
881
937
|
const _pVI = "policyVersionId";
|
|
882
938
|
const _rA = "resourceArn";
|
|
@@ -1004,6 +1060,14 @@ var Attachment = [
|
|
|
1004
1060
|
],
|
|
1005
1061
|
];
|
|
1006
1062
|
var AttachmentError = [3, n0, _AE, 0, [_C, _M, _RA, _RI], [0, 0, 0, 0]];
|
|
1063
|
+
var AttachmentRoutingPolicyAssociationSummary = [
|
|
1064
|
+
3,
|
|
1065
|
+
n0,
|
|
1066
|
+
_ARPAS,
|
|
1067
|
+
0,
|
|
1068
|
+
[_AI, _PRP, _ARP, _RPL],
|
|
1069
|
+
[0, 64 | 0, 64 | 0, 0],
|
|
1070
|
+
];
|
|
1007
1071
|
var AWSLocation = [3, n0, _AWSL, 0, [_Z, _SA], [0, 0]];
|
|
1008
1072
|
var Bandwidth = [3, n0, _B, 0, [_US, _DS], [1, 1]];
|
|
1009
1073
|
var BgpOptions = [3, n0, _BO, 0, [_PA], [1]];
|
|
@@ -1118,16 +1182,34 @@ var CoreNetworkChangeEventValues = [
|
|
|
1118
1182
|
n0,
|
|
1119
1183
|
_CNCEV,
|
|
1120
1184
|
0,
|
|
1121
|
-
[_EL, _SN, _NFGN, _AI, _Ci],
|
|
1122
|
-
[0, 0, 0, 0, 0],
|
|
1185
|
+
[_EL, _PEL, _RPD, _SN, _NFGN, _AI, _Ci, _RPAD],
|
|
1186
|
+
[0, 0, 0, 0, 0, 0, 0, () => RoutingPolicyAssociationDetailsList],
|
|
1123
1187
|
];
|
|
1124
1188
|
var CoreNetworkChangeValues = [
|
|
1125
1189
|
3,
|
|
1126
1190
|
n0,
|
|
1127
1191
|
_CNCV,
|
|
1128
1192
|
0,
|
|
1129
|
-
[_SN, _NFGN, _ELd, _As, _Ci, _DIe, _ICB, _SS, _SIA, _VES, _DSn, _SGRS],
|
|
1130
|
-
[
|
|
1193
|
+
[_SN, _NFGN, _ELd, _As, _Ci, _DIe, _ICB, _SS, _SIA, _VES, _DSn, _SGRS, _RPD, _RP, _PELe, _AI, _RPAD],
|
|
1194
|
+
[
|
|
1195
|
+
0,
|
|
1196
|
+
0,
|
|
1197
|
+
64 | 0,
|
|
1198
|
+
1,
|
|
1199
|
+
0,
|
|
1200
|
+
0,
|
|
1201
|
+
64 | 0,
|
|
1202
|
+
64 | 0,
|
|
1203
|
+
() => ServiceInsertionActionList,
|
|
1204
|
+
2,
|
|
1205
|
+
2,
|
|
1206
|
+
2,
|
|
1207
|
+
0,
|
|
1208
|
+
0,
|
|
1209
|
+
64 | 0,
|
|
1210
|
+
0,
|
|
1211
|
+
() => RoutingPolicyAssociationDetailsList,
|
|
1212
|
+
],
|
|
1131
1213
|
];
|
|
1132
1214
|
var CoreNetworkEdge = [3, n0, _CNE, 0, [_EL, _As, _ICB], [0, 1, 64 | 0]];
|
|
1133
1215
|
var CoreNetworkNetworkFunctionGroup = [
|
|
@@ -1175,6 +1257,14 @@ var CoreNetworkPolicyVersion = [
|
|
|
1175
1257
|
[_CNI, _PVI, _Al, _D, _CA, _CSS],
|
|
1176
1258
|
[0, 1, 0, 0, 4, 0],
|
|
1177
1259
|
];
|
|
1260
|
+
var CoreNetworkRoutingInformation = [
|
|
1261
|
+
3,
|
|
1262
|
+
n0,
|
|
1263
|
+
_CNRI,
|
|
1264
|
+
0,
|
|
1265
|
+
[_Pr, _NH, _LP, _Me, _AP, _Com],
|
|
1266
|
+
[0, () => RoutingInformationNextHop, 0, 0, 64 | 0, 64 | 0],
|
|
1267
|
+
];
|
|
1178
1268
|
var CoreNetworkSegment = [3, n0, _CNS, 0, [_N, _ELd, _SS], [0, 64 | 0, 64 | 0]];
|
|
1179
1269
|
var CoreNetworkSegmentEdgeIdentifier = [3, n0, _CNSEI, 0, [_CNI, _SN, _EL], [0, 0, 0]];
|
|
1180
1270
|
var CoreNetworkSummary = [
|
|
@@ -1190,8 +1280,8 @@ var CreateConnectAttachmentRequest = [
|
|
|
1190
1280
|
n0,
|
|
1191
1281
|
_CCAR,
|
|
1192
1282
|
0,
|
|
1193
|
-
[_CNI, _EL, _TAI, _O, _T, _CT],
|
|
1194
|
-
[0, 0, 0, () => ConnectAttachmentOptions, () => TagList, [0, 4]],
|
|
1283
|
+
[_CNI, _EL, _TAI, _RPL, _O, _T, _CT],
|
|
1284
|
+
[0, 0, 0, 0, () => ConnectAttachmentOptions, () => TagList, [0, 4]],
|
|
1195
1285
|
];
|
|
1196
1286
|
var CreateConnectAttachmentResponse = [
|
|
1197
1287
|
3,
|
|
@@ -1219,6 +1309,22 @@ var CreateConnectPeerRequest = [
|
|
|
1219
1309
|
[0, 0, 0, () => BgpOptions, 64 | 0, () => TagList, [0, 4], 0],
|
|
1220
1310
|
];
|
|
1221
1311
|
var CreateConnectPeerResponse = [3, n0, _CCPRr, 0, [_CP], [() => ConnectPeer]];
|
|
1312
|
+
var CreateCoreNetworkPrefixListAssociationRequest = [
|
|
1313
|
+
3,
|
|
1314
|
+
n0,
|
|
1315
|
+
_CCNPLAR,
|
|
1316
|
+
0,
|
|
1317
|
+
[_CNI, _PLA, _PLAr, _CT],
|
|
1318
|
+
[0, 0, 0, [0, 4]],
|
|
1319
|
+
];
|
|
1320
|
+
var CreateCoreNetworkPrefixListAssociationResponse = [
|
|
1321
|
+
3,
|
|
1322
|
+
n0,
|
|
1323
|
+
_CCNPLARr,
|
|
1324
|
+
0,
|
|
1325
|
+
[_CNI, _PLA, _PLAr],
|
|
1326
|
+
[0, 0, 0],
|
|
1327
|
+
];
|
|
1222
1328
|
var CreateCoreNetworkRequest = [
|
|
1223
1329
|
3,
|
|
1224
1330
|
n0,
|
|
@@ -1242,8 +1348,8 @@ var CreateDirectConnectGatewayAttachmentRequest = [
|
|
|
1242
1348
|
n0,
|
|
1243
1349
|
_CDCGAR,
|
|
1244
1350
|
0,
|
|
1245
|
-
[_CNI, _DCGA, _ELd, _T, _CT],
|
|
1246
|
-
[0, 0, 64 | 0, () => TagList, [0, 4]],
|
|
1351
|
+
[_CNI, _DCGA, _RPL, _ELd, _T, _CT],
|
|
1352
|
+
[0, 0, 0, 64 | 0, () => TagList, [0, 4]],
|
|
1247
1353
|
];
|
|
1248
1354
|
var CreateDirectConnectGatewayAttachmentResponse = [
|
|
1249
1355
|
3,
|
|
@@ -1260,7 +1366,7 @@ var CreateLinkRequest = [
|
|
|
1260
1366
|
n0,
|
|
1261
1367
|
_CLR,
|
|
1262
1368
|
0,
|
|
1263
|
-
[_GNI, _D, _Ty, _B,
|
|
1369
|
+
[_GNI, _D, _Ty, _B, _Pro, _SI, _T],
|
|
1264
1370
|
[[0, 1], 0, 0, () => Bandwidth, 0, 0, () => TagList],
|
|
1265
1371
|
];
|
|
1266
1372
|
var CreateLinkResponse = [3, n0, _CLRr, 0, [_Li], [() => Link]];
|
|
@@ -1278,8 +1384,8 @@ var CreateSiteToSiteVpnAttachmentRequest = [
|
|
|
1278
1384
|
n0,
|
|
1279
1385
|
_CSTSVAR,
|
|
1280
1386
|
0,
|
|
1281
|
-
[_CNI, _VCA, _T, _CT],
|
|
1282
|
-
[0, 0, () => TagList, [0, 4]],
|
|
1387
|
+
[_CNI, _VCA, _RPL, _T, _CT],
|
|
1388
|
+
[0, 0, 0, () => TagList, [0, 4]],
|
|
1283
1389
|
];
|
|
1284
1390
|
var CreateSiteToSiteVpnAttachmentResponse = [
|
|
1285
1391
|
3,
|
|
@@ -1310,8 +1416,8 @@ var CreateTransitGatewayRouteTableAttachmentRequest = [
|
|
|
1310
1416
|
n0,
|
|
1311
1417
|
_CTGRTAR,
|
|
1312
1418
|
0,
|
|
1313
|
-
[_PI, _TGRTA, _T, _CT],
|
|
1314
|
-
[0, 0, () => TagList, [0, 4]],
|
|
1419
|
+
[_PI, _TGRTA, _RPL, _T, _CT],
|
|
1420
|
+
[0, 0, 0, () => TagList, [0, 4]],
|
|
1315
1421
|
];
|
|
1316
1422
|
var CreateTransitGatewayRouteTableAttachmentResponse = [
|
|
1317
1423
|
3,
|
|
@@ -1326,8 +1432,8 @@ var CreateVpcAttachmentRequest = [
|
|
|
1326
1432
|
n0,
|
|
1327
1433
|
_CVAR,
|
|
1328
1434
|
0,
|
|
1329
|
-
[_CNI, _VA, _SAu, _O, _T, _CT],
|
|
1330
|
-
[0, 0, 64 | 0, () => VpcOptions, () => TagList, [0, 4]],
|
|
1435
|
+
[_CNI, _VA, _SAu, _O, _RPL, _T, _CT],
|
|
1436
|
+
[0, 0, 64 | 0, () => VpcOptions, 0, () => TagList, [0, 4]],
|
|
1331
1437
|
];
|
|
1332
1438
|
var CreateVpcAttachmentResponse = [3, n0, _CVARr, 0, [_VAp], [() => VpcAttachment]];
|
|
1333
1439
|
var CustomerGatewayAssociation = [
|
|
@@ -1373,6 +1479,25 @@ var DeleteCoreNetworkPolicyVersionResponse = [
|
|
|
1373
1479
|
[_CNP],
|
|
1374
1480
|
[[() => CoreNetworkPolicy, 0]],
|
|
1375
1481
|
];
|
|
1482
|
+
var DeleteCoreNetworkPrefixListAssociationRequest = [
|
|
1483
|
+
3,
|
|
1484
|
+
n0,
|
|
1485
|
+
_DCNPLAR,
|
|
1486
|
+
0,
|
|
1487
|
+
[_CNI, _PLA],
|
|
1488
|
+
[
|
|
1489
|
+
[0, 1],
|
|
1490
|
+
[0, 1],
|
|
1491
|
+
],
|
|
1492
|
+
];
|
|
1493
|
+
var DeleteCoreNetworkPrefixListAssociationResponse = [
|
|
1494
|
+
3,
|
|
1495
|
+
n0,
|
|
1496
|
+
_DCNPLARe,
|
|
1497
|
+
0,
|
|
1498
|
+
[_CNI, _PLA],
|
|
1499
|
+
[0, 0],
|
|
1500
|
+
];
|
|
1376
1501
|
var DeleteCoreNetworkRequest = [3, n0, _DCNR, 0, [_CNI], [[0, 1]]];
|
|
1377
1502
|
var DeleteCoreNetworkResponse = [3, n0, _DCNRe, 0, [_CN], [() => CoreNetwork]];
|
|
1378
1503
|
var DeleteDeviceRequest = [
|
|
@@ -1876,7 +2001,7 @@ var GetLinksRequest = [
|
|
|
1876
2001
|
n0,
|
|
1877
2002
|
_GLR,
|
|
1878
2003
|
0,
|
|
1879
|
-
[_GNI, _LIi, _SI, _Ty,
|
|
2004
|
+
[_GNI, _LIi, _SI, _Ty, _Pro, _MR, _NT],
|
|
1880
2005
|
[
|
|
1881
2006
|
[0, 1],
|
|
1882
2007
|
[
|
|
@@ -2363,10 +2488,46 @@ var Link = [
|
|
|
2363
2488
|
n0,
|
|
2364
2489
|
_Li,
|
|
2365
2490
|
0,
|
|
2366
|
-
[_LI, _LAin, _GNI, _SI, _D, _Ty, _B,
|
|
2491
|
+
[_LI, _LAin, _GNI, _SI, _D, _Ty, _B, _Pro, _CA, _S, _T],
|
|
2367
2492
|
[0, 0, 0, 0, 0, 0, () => Bandwidth, 0, 4, 0, () => TagList],
|
|
2368
2493
|
];
|
|
2369
2494
|
var LinkAssociation = [3, n0, _LA, 0, [_GNI, _DI, _LI, _LAS], [0, 0, 0, 0]];
|
|
2495
|
+
var ListAttachmentRoutingPolicyAssociationsRequest = [
|
|
2496
|
+
3,
|
|
2497
|
+
n0,
|
|
2498
|
+
_LARPAR,
|
|
2499
|
+
0,
|
|
2500
|
+
[_CNI, _AI, _MR, _NT],
|
|
2501
|
+
[
|
|
2502
|
+
[0, 1],
|
|
2503
|
+
[
|
|
2504
|
+
0,
|
|
2505
|
+
{
|
|
2506
|
+
[_hQ]: _aIt,
|
|
2507
|
+
},
|
|
2508
|
+
],
|
|
2509
|
+
[
|
|
2510
|
+
1,
|
|
2511
|
+
{
|
|
2512
|
+
[_hQ]: _mR,
|
|
2513
|
+
},
|
|
2514
|
+
],
|
|
2515
|
+
[
|
|
2516
|
+
0,
|
|
2517
|
+
{
|
|
2518
|
+
[_hQ]: _nT,
|
|
2519
|
+
},
|
|
2520
|
+
],
|
|
2521
|
+
],
|
|
2522
|
+
];
|
|
2523
|
+
var ListAttachmentRoutingPolicyAssociationsResponse = [
|
|
2524
|
+
3,
|
|
2525
|
+
n0,
|
|
2526
|
+
_LARPARi,
|
|
2527
|
+
0,
|
|
2528
|
+
[_ARPA, _NT],
|
|
2529
|
+
[() => AttachmentRoutingPolicyAssociationsList, 0],
|
|
2530
|
+
];
|
|
2370
2531
|
var ListAttachmentsRequest = [
|
|
2371
2532
|
3,
|
|
2372
2533
|
n0,
|
|
@@ -2484,6 +2645,79 @@ var ListCoreNetworkPolicyVersionsResponse = [
|
|
|
2484
2645
|
[_CNPVo, _NT],
|
|
2485
2646
|
[() => CoreNetworkPolicyVersionList, 0],
|
|
2486
2647
|
];
|
|
2648
|
+
var ListCoreNetworkPrefixListAssociationsRequest = [
|
|
2649
|
+
3,
|
|
2650
|
+
n0,
|
|
2651
|
+
_LCNPLAR,
|
|
2652
|
+
0,
|
|
2653
|
+
[_CNI, _PLA, _MR, _NT],
|
|
2654
|
+
[
|
|
2655
|
+
[0, 1],
|
|
2656
|
+
[
|
|
2657
|
+
0,
|
|
2658
|
+
{
|
|
2659
|
+
[_hQ]: _pLA,
|
|
2660
|
+
},
|
|
2661
|
+
],
|
|
2662
|
+
[
|
|
2663
|
+
1,
|
|
2664
|
+
{
|
|
2665
|
+
[_hQ]: _mR,
|
|
2666
|
+
},
|
|
2667
|
+
],
|
|
2668
|
+
[
|
|
2669
|
+
0,
|
|
2670
|
+
{
|
|
2671
|
+
[_hQ]: _nT,
|
|
2672
|
+
},
|
|
2673
|
+
],
|
|
2674
|
+
],
|
|
2675
|
+
];
|
|
2676
|
+
var ListCoreNetworkPrefixListAssociationsResponse = [
|
|
2677
|
+
3,
|
|
2678
|
+
n0,
|
|
2679
|
+
_LCNPLARi,
|
|
2680
|
+
0,
|
|
2681
|
+
[_PLAre, _NT],
|
|
2682
|
+
[() => PrefixListAssociationList, 0],
|
|
2683
|
+
];
|
|
2684
|
+
var ListCoreNetworkRoutingInformationRequest = [
|
|
2685
|
+
3,
|
|
2686
|
+
n0,
|
|
2687
|
+
_LCNRIR,
|
|
2688
|
+
0,
|
|
2689
|
+
[_CNI, _SN, _EL, _NHF, _LPMo, _EAPM, _MM, _CM, _MR, _NT],
|
|
2690
|
+
[
|
|
2691
|
+
[0, 1],
|
|
2692
|
+
0,
|
|
2693
|
+
0,
|
|
2694
|
+
[2, n0, _FM, 0, 0, 64 | 0],
|
|
2695
|
+
64 | 0,
|
|
2696
|
+
64 | 0,
|
|
2697
|
+
64 | 0,
|
|
2698
|
+
64 | 0,
|
|
2699
|
+
[
|
|
2700
|
+
1,
|
|
2701
|
+
{
|
|
2702
|
+
[_hQ]: _mR,
|
|
2703
|
+
},
|
|
2704
|
+
],
|
|
2705
|
+
[
|
|
2706
|
+
0,
|
|
2707
|
+
{
|
|
2708
|
+
[_hQ]: _nT,
|
|
2709
|
+
},
|
|
2710
|
+
],
|
|
2711
|
+
],
|
|
2712
|
+
];
|
|
2713
|
+
var ListCoreNetworkRoutingInformationResponse = [
|
|
2714
|
+
3,
|
|
2715
|
+
n0,
|
|
2716
|
+
_LCNRIRi,
|
|
2717
|
+
0,
|
|
2718
|
+
[_CNRI, _NT],
|
|
2719
|
+
[() => CoreNetworkRoutingInformationList, 0],
|
|
2720
|
+
];
|
|
2487
2721
|
var ListCoreNetworksRequest = [
|
|
2488
2722
|
3,
|
|
2489
2723
|
n0,
|
|
@@ -2597,7 +2831,7 @@ var NetworkResource = [
|
|
|
2597
2831
|
n0,
|
|
2598
2832
|
_NRet,
|
|
2599
2833
|
0,
|
|
2600
|
-
[_RGA, _CNI, _AR, _AIc, _RT, _RIe, _RA, _Def, _DT, _T,
|
|
2834
|
+
[_RGA, _CNI, _AR, _AIc, _RT, _RIe, _RA, _Def, _DT, _T, _Met],
|
|
2601
2835
|
[0, 0, 0, 0, 0, 0, 0, 0, 4, () => TagList, 128 | 0],
|
|
2602
2836
|
];
|
|
2603
2837
|
var NetworkResourceCount = [3, n0, _NRCe, 0, [_RT, _Cou], [0, 1]];
|
|
@@ -2676,6 +2910,7 @@ var PeeringError = [
|
|
|
2676
2910
|
[0, 0, 0, 0, () => PermissionsErrorContext],
|
|
2677
2911
|
];
|
|
2678
2912
|
var PermissionsErrorContext = [3, n0, _PEC, 0, [_MP], [0]];
|
|
2913
|
+
var PrefixListAssociation = [3, n0, _PLAref, 0, [_CNI, _PLA, _PLAr], [0, 0, 0]];
|
|
2679
2914
|
var ProposedNetworkFunctionGroupChange = [
|
|
2680
2915
|
3,
|
|
2681
2916
|
n0,
|
|
@@ -2685,6 +2920,22 @@ var ProposedNetworkFunctionGroupChange = [
|
|
|
2685
2920
|
[() => TagList, 1, 0],
|
|
2686
2921
|
];
|
|
2687
2922
|
var ProposedSegmentChange = [3, n0, _PSC, 0, [_T, _APRN, _SN], [() => TagList, 1, 0]];
|
|
2923
|
+
var PutAttachmentRoutingPolicyLabelRequest = [
|
|
2924
|
+
3,
|
|
2925
|
+
n0,
|
|
2926
|
+
_PARPLR,
|
|
2927
|
+
0,
|
|
2928
|
+
[_CNI, _AI, _RPL, _CT],
|
|
2929
|
+
[0, 0, 0, [0, 4]],
|
|
2930
|
+
];
|
|
2931
|
+
var PutAttachmentRoutingPolicyLabelResponse = [
|
|
2932
|
+
3,
|
|
2933
|
+
n0,
|
|
2934
|
+
_PARPLRu,
|
|
2935
|
+
0,
|
|
2936
|
+
[_CNI, _AI, _RPL],
|
|
2937
|
+
[0, 0, 0],
|
|
2938
|
+
];
|
|
2688
2939
|
var PutCoreNetworkPolicyRequest = [
|
|
2689
2940
|
3,
|
|
2690
2941
|
n0,
|
|
@@ -2725,6 +2976,25 @@ var RegisterTransitGatewayResponse = [
|
|
|
2725
2976
|
var RejectAttachmentRequest = [3, n0, _RAR, 0, [_AI], [[0, 1]]];
|
|
2726
2977
|
var RejectAttachmentResponse = [3, n0, _RARe, 0, [_A], [() => Attachment]];
|
|
2727
2978
|
var Relationship = [3, n0, _Rel, 0, [_F, _To], [0, 0]];
|
|
2979
|
+
var RemoveAttachmentRoutingPolicyLabelRequest = [
|
|
2980
|
+
3,
|
|
2981
|
+
n0,
|
|
2982
|
+
_RARPLR,
|
|
2983
|
+
0,
|
|
2984
|
+
[_CNI, _AI],
|
|
2985
|
+
[
|
|
2986
|
+
[0, 1],
|
|
2987
|
+
[0, 1],
|
|
2988
|
+
],
|
|
2989
|
+
];
|
|
2990
|
+
var RemoveAttachmentRoutingPolicyLabelResponse = [
|
|
2991
|
+
3,
|
|
2992
|
+
n0,
|
|
2993
|
+
_RARPLRe,
|
|
2994
|
+
0,
|
|
2995
|
+
[_CNI, _AI, _RPL],
|
|
2996
|
+
[0, 0, 0],
|
|
2997
|
+
];
|
|
2728
2998
|
var ResourceNotFoundException = [
|
|
2729
2999
|
-3,
|
|
2730
3000
|
n0,
|
|
@@ -2761,7 +3031,7 @@ var RouteAnalysis = [
|
|
|
2761
3031
|
n0,
|
|
2762
3032
|
_RAo,
|
|
2763
3033
|
0,
|
|
2764
|
-
[_GNI, _OAI, _RAI, _ST, _St, _So, _Dest, _IRP, _UM, _FP,
|
|
3034
|
+
[_GNI, _OAI, _RAI, _ST, _St, _So, _Dest, _IRP, _UM, _FP, _RPe],
|
|
2765
3035
|
[
|
|
2766
3036
|
0,
|
|
2767
3037
|
0,
|
|
@@ -2795,6 +3065,15 @@ var RouteTableIdentifier = [
|
|
|
2795
3065
|
[_TGRTA, _CNSE, _CNNFG],
|
|
2796
3066
|
[0, () => CoreNetworkSegmentEdgeIdentifier, () => CoreNetworkNetworkFunctionGroupIdentifier],
|
|
2797
3067
|
];
|
|
3068
|
+
var RoutingInformationNextHop = [
|
|
3069
|
+
3,
|
|
3070
|
+
n0,
|
|
3071
|
+
_RINH,
|
|
3072
|
+
0,
|
|
3073
|
+
[_IA, _CNAI, _RIe, _RT, _SN, _EL],
|
|
3074
|
+
[0, 0, 0, 0, 0, 0],
|
|
3075
|
+
];
|
|
3076
|
+
var RoutingPolicyAssociationDetail = [3, n0, _RPADo, 0, [_RPN, _SS], [64 | 0, 64 | 0]];
|
|
2798
3077
|
var ServiceInsertionAction = [
|
|
2799
3078
|
3,
|
|
2800
3079
|
n0,
|
|
@@ -2952,7 +3231,7 @@ var UpdateLinkRequest = [
|
|
|
2952
3231
|
n0,
|
|
2953
3232
|
_ULR,
|
|
2954
3233
|
0,
|
|
2955
|
-
[_GNI, _LI, _D, _Ty, _B,
|
|
3234
|
+
[_GNI, _LI, _D, _Ty, _B, _Pro],
|
|
2956
3235
|
[[0, 1], [0, 1], 0, 0, () => Bandwidth, 0],
|
|
2957
3236
|
];
|
|
2958
3237
|
var UpdateLinkResponse = [3, n0, _ULRp, 0, [_Li], [() => Link]];
|
|
@@ -2961,10 +3240,17 @@ var UpdateNetworkResourceMetadataRequest = [
|
|
|
2961
3240
|
n0,
|
|
2962
3241
|
_UNRMR,
|
|
2963
3242
|
0,
|
|
2964
|
-
[_GNI, _RA,
|
|
3243
|
+
[_GNI, _RA, _Met],
|
|
2965
3244
|
[[0, 1], [0, 1], 128 | 0],
|
|
2966
3245
|
];
|
|
2967
|
-
var UpdateNetworkResourceMetadataResponse = [
|
|
3246
|
+
var UpdateNetworkResourceMetadataResponse = [
|
|
3247
|
+
3,
|
|
3248
|
+
n0,
|
|
3249
|
+
_UNRMRp,
|
|
3250
|
+
0,
|
|
3251
|
+
[_RA, _Met],
|
|
3252
|
+
[0, 128 | 0],
|
|
3253
|
+
];
|
|
2968
3254
|
var UpdateSiteRequest = [
|
|
2969
3255
|
3,
|
|
2970
3256
|
n0,
|
|
@@ -3019,6 +3305,13 @@ schema.TypeRegistry.for(_sm).registerError(NetworkManagerServiceException, Netwo
|
|
|
3019
3305
|
var AccountStatusList = [1, n0, _ASL, 0, () => AccountStatus];
|
|
3020
3306
|
var AttachmentErrorList = [1, n0, _AEL, 0, () => AttachmentError];
|
|
3021
3307
|
var AttachmentList = [1, n0, _AL, 0, () => Attachment];
|
|
3308
|
+
var AttachmentRoutingPolicyAssociationsList = [
|
|
3309
|
+
1,
|
|
3310
|
+
n0,
|
|
3311
|
+
_ARPAL,
|
|
3312
|
+
0,
|
|
3313
|
+
() => AttachmentRoutingPolicyAssociationSummary,
|
|
3314
|
+
];
|
|
3022
3315
|
var ConnectionList = [1, n0, _CL, 0, () => Connection];
|
|
3023
3316
|
var ConnectPeerAssociationList = [1, n0, _CPAL, 0, () => ConnectPeerAssociation];
|
|
3024
3317
|
var ConnectPeerBgpConfigurationList = [1, n0, _CPBCL, 0, () => ConnectPeerBgpConfiguration];
|
|
@@ -3036,6 +3329,13 @@ var CoreNetworkNetworkFunctionGroupList = [
|
|
|
3036
3329
|
];
|
|
3037
3330
|
var CoreNetworkPolicyErrorList = [1, n0, _CNPEL, 0, () => CoreNetworkPolicyError];
|
|
3038
3331
|
var CoreNetworkPolicyVersionList = [1, n0, _CNPVL, 0, () => CoreNetworkPolicyVersion];
|
|
3332
|
+
var CoreNetworkRoutingInformationList = [
|
|
3333
|
+
1,
|
|
3334
|
+
n0,
|
|
3335
|
+
_CNRIL,
|
|
3336
|
+
0,
|
|
3337
|
+
() => CoreNetworkRoutingInformation,
|
|
3338
|
+
];
|
|
3039
3339
|
var CoreNetworkSegmentList = [1, n0, _CNSL, 0, () => CoreNetworkSegment];
|
|
3040
3340
|
var CoreNetworkSummaryList = [1, n0, _CNSLo, 0, () => CoreNetworkSummary];
|
|
3041
3341
|
var CustomerGatewayAssociationList = [1, n0, _CGAL, 0, () => CustomerGatewayAssociation];
|
|
@@ -3050,9 +3350,17 @@ var NetworkRouteDestinationList = [1, n0, _NRDL, 0, () => NetworkRouteDestinatio
|
|
|
3050
3350
|
var NetworkRouteList = [1, n0, _NRLe, 0, () => NetworkRoute];
|
|
3051
3351
|
var NetworkTelemetryList = [1, n0, _NTL, 0, () => NetworkTelemetry];
|
|
3052
3352
|
var PathComponentList = [1, n0, _PCL, 0, () => PathComponent];
|
|
3053
|
-
var PeeringErrorList = [1, n0,
|
|
3353
|
+
var PeeringErrorList = [1, n0, _PELee, 0, () => PeeringError];
|
|
3054
3354
|
var PeeringList = [1, n0, _PL, 0, () => Peering];
|
|
3355
|
+
var PrefixListAssociationList = [1, n0, _PLAL, 0, () => PrefixListAssociation];
|
|
3055
3356
|
var RelationshipList = [1, n0, _RL, 0, () => Relationship];
|
|
3357
|
+
var RoutingPolicyAssociationDetailsList = [
|
|
3358
|
+
1,
|
|
3359
|
+
n0,
|
|
3360
|
+
_RPADL,
|
|
3361
|
+
0,
|
|
3362
|
+
() => RoutingPolicyAssociationDetail,
|
|
3363
|
+
];
|
|
3056
3364
|
var ServiceInsertionActionList = [1, n0, _SIAL, 0, () => ServiceInsertionAction];
|
|
3057
3365
|
var SiteList = [1, n0, _SL, 0, [() => Site, 0]];
|
|
3058
3366
|
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
@@ -3156,6 +3464,16 @@ var CreateCoreNetwork = [
|
|
|
3156
3464
|
() => CreateCoreNetworkRequest,
|
|
3157
3465
|
() => CreateCoreNetworkResponse,
|
|
3158
3466
|
];
|
|
3467
|
+
var CreateCoreNetworkPrefixListAssociation = [
|
|
3468
|
+
9,
|
|
3469
|
+
n0,
|
|
3470
|
+
_CCNPLA,
|
|
3471
|
+
{
|
|
3472
|
+
[_h]: ["POST", "/prefix-list", 200],
|
|
3473
|
+
},
|
|
3474
|
+
() => CreateCoreNetworkPrefixListAssociationRequest,
|
|
3475
|
+
() => CreateCoreNetworkPrefixListAssociationResponse,
|
|
3476
|
+
];
|
|
3159
3477
|
var CreateDevice = [
|
|
3160
3478
|
9,
|
|
3161
3479
|
n0,
|
|
@@ -3296,6 +3614,16 @@ var DeleteCoreNetworkPolicyVersion = [
|
|
|
3296
3614
|
() => DeleteCoreNetworkPolicyVersionRequest,
|
|
3297
3615
|
() => DeleteCoreNetworkPolicyVersionResponse,
|
|
3298
3616
|
];
|
|
3617
|
+
var DeleteCoreNetworkPrefixListAssociation = [
|
|
3618
|
+
9,
|
|
3619
|
+
n0,
|
|
3620
|
+
_DCNPLA,
|
|
3621
|
+
{
|
|
3622
|
+
[_h]: ["DELETE", "/prefix-list/{PrefixListArn}/core-network/{CoreNetworkId}", 200],
|
|
3623
|
+
},
|
|
3624
|
+
() => DeleteCoreNetworkPrefixListAssociationRequest,
|
|
3625
|
+
() => DeleteCoreNetworkPrefixListAssociationResponse,
|
|
3626
|
+
];
|
|
3299
3627
|
var DeleteDevice = [
|
|
3300
3628
|
9,
|
|
3301
3629
|
n0,
|
|
@@ -3700,6 +4028,16 @@ var GetVpcAttachment = [
|
|
|
3700
4028
|
() => GetVpcAttachmentRequest,
|
|
3701
4029
|
() => GetVpcAttachmentResponse,
|
|
3702
4030
|
];
|
|
4031
|
+
var ListAttachmentRoutingPolicyAssociations = [
|
|
4032
|
+
9,
|
|
4033
|
+
n0,
|
|
4034
|
+
_LARPA,
|
|
4035
|
+
{
|
|
4036
|
+
[_h]: ["GET", "/routing-policy-label/core-network/{CoreNetworkId}", 200],
|
|
4037
|
+
},
|
|
4038
|
+
() => ListAttachmentRoutingPolicyAssociationsRequest,
|
|
4039
|
+
() => ListAttachmentRoutingPolicyAssociationsResponse,
|
|
4040
|
+
];
|
|
3703
4041
|
var ListAttachments = [
|
|
3704
4042
|
9,
|
|
3705
4043
|
n0,
|
|
@@ -3730,6 +4068,26 @@ var ListCoreNetworkPolicyVersions = [
|
|
|
3730
4068
|
() => ListCoreNetworkPolicyVersionsRequest,
|
|
3731
4069
|
() => ListCoreNetworkPolicyVersionsResponse,
|
|
3732
4070
|
];
|
|
4071
|
+
var ListCoreNetworkPrefixListAssociations = [
|
|
4072
|
+
9,
|
|
4073
|
+
n0,
|
|
4074
|
+
_LCNPLA,
|
|
4075
|
+
{
|
|
4076
|
+
[_h]: ["GET", "/prefix-list/core-network/{CoreNetworkId}", 200],
|
|
4077
|
+
},
|
|
4078
|
+
() => ListCoreNetworkPrefixListAssociationsRequest,
|
|
4079
|
+
() => ListCoreNetworkPrefixListAssociationsResponse,
|
|
4080
|
+
];
|
|
4081
|
+
var ListCoreNetworkRoutingInformation = [
|
|
4082
|
+
9,
|
|
4083
|
+
n0,
|
|
4084
|
+
_LCNRI,
|
|
4085
|
+
{
|
|
4086
|
+
[_h]: ["POST", "/core-networks/{CoreNetworkId}/core-network-routing-information", 200],
|
|
4087
|
+
},
|
|
4088
|
+
() => ListCoreNetworkRoutingInformationRequest,
|
|
4089
|
+
() => ListCoreNetworkRoutingInformationResponse,
|
|
4090
|
+
];
|
|
3733
4091
|
var ListCoreNetworks = [
|
|
3734
4092
|
9,
|
|
3735
4093
|
n0,
|
|
@@ -3753,7 +4111,7 @@ var ListOrganizationServiceAccessStatus = [
|
|
|
3753
4111
|
var ListPeerings = [
|
|
3754
4112
|
9,
|
|
3755
4113
|
n0,
|
|
3756
|
-
|
|
4114
|
+
_LPi,
|
|
3757
4115
|
{
|
|
3758
4116
|
[_h]: ["GET", "/peerings", 200],
|
|
3759
4117
|
},
|
|
@@ -3770,6 +4128,16 @@ var ListTagsForResource = [
|
|
|
3770
4128
|
() => ListTagsForResourceRequest,
|
|
3771
4129
|
() => ListTagsForResourceResponse,
|
|
3772
4130
|
];
|
|
4131
|
+
var PutAttachmentRoutingPolicyLabel = [
|
|
4132
|
+
9,
|
|
4133
|
+
n0,
|
|
4134
|
+
_PARPL,
|
|
4135
|
+
{
|
|
4136
|
+
[_h]: ["POST", "/routing-policy-label", 200],
|
|
4137
|
+
},
|
|
4138
|
+
() => PutAttachmentRoutingPolicyLabelRequest,
|
|
4139
|
+
() => PutAttachmentRoutingPolicyLabelResponse,
|
|
4140
|
+
];
|
|
3773
4141
|
var PutCoreNetworkPolicy = [
|
|
3774
4142
|
9,
|
|
3775
4143
|
n0,
|
|
@@ -3783,7 +4151,7 @@ var PutCoreNetworkPolicy = [
|
|
|
3783
4151
|
var PutResourcePolicy = [
|
|
3784
4152
|
9,
|
|
3785
4153
|
n0,
|
|
3786
|
-
|
|
4154
|
+
_PRPu,
|
|
3787
4155
|
{
|
|
3788
4156
|
[_h]: ["POST", "/resource-policy/{ResourceArn}", 200],
|
|
3789
4157
|
},
|
|
@@ -3810,6 +4178,16 @@ var RejectAttachment = [
|
|
|
3810
4178
|
() => RejectAttachmentRequest,
|
|
3811
4179
|
() => RejectAttachmentResponse,
|
|
3812
4180
|
];
|
|
4181
|
+
var RemoveAttachmentRoutingPolicyLabel = [
|
|
4182
|
+
9,
|
|
4183
|
+
n0,
|
|
4184
|
+
_RARPL,
|
|
4185
|
+
{
|
|
4186
|
+
[_h]: ["DELETE", "/routing-policy-label/core-network/{CoreNetworkId}/attachment/{AttachmentId}", 200],
|
|
4187
|
+
},
|
|
4188
|
+
() => RemoveAttachmentRoutingPolicyLabelRequest,
|
|
4189
|
+
() => RemoveAttachmentRoutingPolicyLabelResponse,
|
|
4190
|
+
];
|
|
3813
4191
|
var RestoreCoreNetworkPolicyVersion = [
|
|
3814
4192
|
9,
|
|
3815
4193
|
n0,
|
|
@@ -4059,6 +4437,18 @@ class CreateCoreNetworkCommand extends smithyClient.Command
|
|
|
4059
4437
|
.build() {
|
|
4060
4438
|
}
|
|
4061
4439
|
|
|
4440
|
+
class CreateCoreNetworkPrefixListAssociationCommand extends smithyClient.Command
|
|
4441
|
+
.classBuilder()
|
|
4442
|
+
.ep(commonParams)
|
|
4443
|
+
.m(function (Command, cs, config, o) {
|
|
4444
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4445
|
+
})
|
|
4446
|
+
.s("NetworkManager", "CreateCoreNetworkPrefixListAssociation", {})
|
|
4447
|
+
.n("NetworkManagerClient", "CreateCoreNetworkPrefixListAssociationCommand")
|
|
4448
|
+
.sc(CreateCoreNetworkPrefixListAssociation)
|
|
4449
|
+
.build() {
|
|
4450
|
+
}
|
|
4451
|
+
|
|
4062
4452
|
class CreateDeviceCommand extends smithyClient.Command
|
|
4063
4453
|
.classBuilder()
|
|
4064
4454
|
.ep(commonParams)
|
|
@@ -4227,6 +4617,18 @@ class DeleteCoreNetworkPolicyVersionCommand extends smithyClient.Command
|
|
|
4227
4617
|
.build() {
|
|
4228
4618
|
}
|
|
4229
4619
|
|
|
4620
|
+
class DeleteCoreNetworkPrefixListAssociationCommand extends smithyClient.Command
|
|
4621
|
+
.classBuilder()
|
|
4622
|
+
.ep(commonParams)
|
|
4623
|
+
.m(function (Command, cs, config, o) {
|
|
4624
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4625
|
+
})
|
|
4626
|
+
.s("NetworkManager", "DeleteCoreNetworkPrefixListAssociation", {})
|
|
4627
|
+
.n("NetworkManagerClient", "DeleteCoreNetworkPrefixListAssociationCommand")
|
|
4628
|
+
.sc(DeleteCoreNetworkPrefixListAssociation)
|
|
4629
|
+
.build() {
|
|
4630
|
+
}
|
|
4631
|
+
|
|
4230
4632
|
class DeleteDeviceCommand extends smithyClient.Command
|
|
4231
4633
|
.classBuilder()
|
|
4232
4634
|
.ep(commonParams)
|
|
@@ -4707,6 +5109,18 @@ class GetVpcAttachmentCommand extends smithyClient.Command
|
|
|
4707
5109
|
.build() {
|
|
4708
5110
|
}
|
|
4709
5111
|
|
|
5112
|
+
class ListAttachmentRoutingPolicyAssociationsCommand extends smithyClient.Command
|
|
5113
|
+
.classBuilder()
|
|
5114
|
+
.ep(commonParams)
|
|
5115
|
+
.m(function (Command, cs, config, o) {
|
|
5116
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5117
|
+
})
|
|
5118
|
+
.s("NetworkManager", "ListAttachmentRoutingPolicyAssociations", {})
|
|
5119
|
+
.n("NetworkManagerClient", "ListAttachmentRoutingPolicyAssociationsCommand")
|
|
5120
|
+
.sc(ListAttachmentRoutingPolicyAssociations)
|
|
5121
|
+
.build() {
|
|
5122
|
+
}
|
|
5123
|
+
|
|
4710
5124
|
class ListAttachmentsCommand extends smithyClient.Command
|
|
4711
5125
|
.classBuilder()
|
|
4712
5126
|
.ep(commonParams)
|
|
@@ -4743,6 +5157,30 @@ class ListCoreNetworkPolicyVersionsCommand extends smithyClient.Command
|
|
|
4743
5157
|
.build() {
|
|
4744
5158
|
}
|
|
4745
5159
|
|
|
5160
|
+
class ListCoreNetworkPrefixListAssociationsCommand extends smithyClient.Command
|
|
5161
|
+
.classBuilder()
|
|
5162
|
+
.ep(commonParams)
|
|
5163
|
+
.m(function (Command, cs, config, o) {
|
|
5164
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5165
|
+
})
|
|
5166
|
+
.s("NetworkManager", "ListCoreNetworkPrefixListAssociations", {})
|
|
5167
|
+
.n("NetworkManagerClient", "ListCoreNetworkPrefixListAssociationsCommand")
|
|
5168
|
+
.sc(ListCoreNetworkPrefixListAssociations)
|
|
5169
|
+
.build() {
|
|
5170
|
+
}
|
|
5171
|
+
|
|
5172
|
+
class ListCoreNetworkRoutingInformationCommand extends smithyClient.Command
|
|
5173
|
+
.classBuilder()
|
|
5174
|
+
.ep(commonParams)
|
|
5175
|
+
.m(function (Command, cs, config, o) {
|
|
5176
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5177
|
+
})
|
|
5178
|
+
.s("NetworkManager", "ListCoreNetworkRoutingInformation", {})
|
|
5179
|
+
.n("NetworkManagerClient", "ListCoreNetworkRoutingInformationCommand")
|
|
5180
|
+
.sc(ListCoreNetworkRoutingInformation)
|
|
5181
|
+
.build() {
|
|
5182
|
+
}
|
|
5183
|
+
|
|
4746
5184
|
class ListCoreNetworksCommand extends smithyClient.Command
|
|
4747
5185
|
.classBuilder()
|
|
4748
5186
|
.ep(commonParams)
|
|
@@ -4791,6 +5229,18 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
4791
5229
|
.build() {
|
|
4792
5230
|
}
|
|
4793
5231
|
|
|
5232
|
+
class PutAttachmentRoutingPolicyLabelCommand extends smithyClient.Command
|
|
5233
|
+
.classBuilder()
|
|
5234
|
+
.ep(commonParams)
|
|
5235
|
+
.m(function (Command, cs, config, o) {
|
|
5236
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5237
|
+
})
|
|
5238
|
+
.s("NetworkManager", "PutAttachmentRoutingPolicyLabel", {})
|
|
5239
|
+
.n("NetworkManagerClient", "PutAttachmentRoutingPolicyLabelCommand")
|
|
5240
|
+
.sc(PutAttachmentRoutingPolicyLabel)
|
|
5241
|
+
.build() {
|
|
5242
|
+
}
|
|
5243
|
+
|
|
4794
5244
|
class PutCoreNetworkPolicyCommand extends smithyClient.Command
|
|
4795
5245
|
.classBuilder()
|
|
4796
5246
|
.ep(commonParams)
|
|
@@ -4839,6 +5289,18 @@ class RejectAttachmentCommand extends smithyClient.Command
|
|
|
4839
5289
|
.build() {
|
|
4840
5290
|
}
|
|
4841
5291
|
|
|
5292
|
+
class RemoveAttachmentRoutingPolicyLabelCommand extends smithyClient.Command
|
|
5293
|
+
.classBuilder()
|
|
5294
|
+
.ep(commonParams)
|
|
5295
|
+
.m(function (Command, cs, config, o) {
|
|
5296
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5297
|
+
})
|
|
5298
|
+
.s("NetworkManager", "RemoveAttachmentRoutingPolicyLabel", {})
|
|
5299
|
+
.n("NetworkManagerClient", "RemoveAttachmentRoutingPolicyLabelCommand")
|
|
5300
|
+
.sc(RemoveAttachmentRoutingPolicyLabel)
|
|
5301
|
+
.build() {
|
|
5302
|
+
}
|
|
5303
|
+
|
|
4842
5304
|
class RestoreCoreNetworkPolicyVersionCommand extends smithyClient.Command
|
|
4843
5305
|
.classBuilder()
|
|
4844
5306
|
.ep(commonParams)
|
|
@@ -5017,6 +5479,7 @@ const commands = {
|
|
|
5017
5479
|
CreateConnectionCommand,
|
|
5018
5480
|
CreateConnectPeerCommand,
|
|
5019
5481
|
CreateCoreNetworkCommand,
|
|
5482
|
+
CreateCoreNetworkPrefixListAssociationCommand,
|
|
5020
5483
|
CreateDeviceCommand,
|
|
5021
5484
|
CreateDirectConnectGatewayAttachmentCommand,
|
|
5022
5485
|
CreateGlobalNetworkCommand,
|
|
@@ -5031,6 +5494,7 @@ const commands = {
|
|
|
5031
5494
|
DeleteConnectPeerCommand,
|
|
5032
5495
|
DeleteCoreNetworkCommand,
|
|
5033
5496
|
DeleteCoreNetworkPolicyVersionCommand,
|
|
5497
|
+
DeleteCoreNetworkPrefixListAssociationCommand,
|
|
5034
5498
|
DeleteDeviceCommand,
|
|
5035
5499
|
DeleteGlobalNetworkCommand,
|
|
5036
5500
|
DeleteLinkCommand,
|
|
@@ -5071,17 +5535,22 @@ const commands = {
|
|
|
5071
5535
|
GetTransitGatewayRegistrationsCommand,
|
|
5072
5536
|
GetTransitGatewayRouteTableAttachmentCommand,
|
|
5073
5537
|
GetVpcAttachmentCommand,
|
|
5538
|
+
ListAttachmentRoutingPolicyAssociationsCommand,
|
|
5074
5539
|
ListAttachmentsCommand,
|
|
5075
5540
|
ListConnectPeersCommand,
|
|
5076
5541
|
ListCoreNetworkPolicyVersionsCommand,
|
|
5542
|
+
ListCoreNetworkPrefixListAssociationsCommand,
|
|
5543
|
+
ListCoreNetworkRoutingInformationCommand,
|
|
5077
5544
|
ListCoreNetworksCommand,
|
|
5078
5545
|
ListOrganizationServiceAccessStatusCommand,
|
|
5079
5546
|
ListPeeringsCommand,
|
|
5080
5547
|
ListTagsForResourceCommand,
|
|
5548
|
+
PutAttachmentRoutingPolicyLabelCommand,
|
|
5081
5549
|
PutCoreNetworkPolicyCommand,
|
|
5082
5550
|
PutResourcePolicyCommand,
|
|
5083
5551
|
RegisterTransitGatewayCommand,
|
|
5084
5552
|
RejectAttachmentCommand,
|
|
5553
|
+
RemoveAttachmentRoutingPolicyLabelCommand,
|
|
5085
5554
|
RestoreCoreNetworkPolicyVersionCommand,
|
|
5086
5555
|
StartOrganizationServiceAccessUpdateCommand,
|
|
5087
5556
|
StartRouteAnalysisCommand,
|
|
@@ -5133,12 +5602,18 @@ const paginateGetTransitGatewayConnectPeerAssociations = core.createPaginator(Ne
|
|
|
5133
5602
|
|
|
5134
5603
|
const paginateGetTransitGatewayRegistrations = core.createPaginator(NetworkManagerClient, GetTransitGatewayRegistrationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
5135
5604
|
|
|
5605
|
+
const paginateListAttachmentRoutingPolicyAssociations = core.createPaginator(NetworkManagerClient, ListAttachmentRoutingPolicyAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
5606
|
+
|
|
5136
5607
|
const paginateListAttachments = core.createPaginator(NetworkManagerClient, ListAttachmentsCommand, "NextToken", "NextToken", "MaxResults");
|
|
5137
5608
|
|
|
5138
5609
|
const paginateListConnectPeers = core.createPaginator(NetworkManagerClient, ListConnectPeersCommand, "NextToken", "NextToken", "MaxResults");
|
|
5139
5610
|
|
|
5140
5611
|
const paginateListCoreNetworkPolicyVersions = core.createPaginator(NetworkManagerClient, ListCoreNetworkPolicyVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
5141
5612
|
|
|
5613
|
+
const paginateListCoreNetworkPrefixListAssociations = core.createPaginator(NetworkManagerClient, ListCoreNetworkPrefixListAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
5614
|
+
|
|
5615
|
+
const paginateListCoreNetworkRoutingInformation = core.createPaginator(NetworkManagerClient, ListCoreNetworkRoutingInformationCommand, "NextToken", "NextToken", "MaxResults");
|
|
5616
|
+
|
|
5142
5617
|
const paginateListCoreNetworks = core.createPaginator(NetworkManagerClient, ListCoreNetworksCommand, "NextToken", "NextToken", "MaxResults");
|
|
5143
5618
|
|
|
5144
5619
|
const paginateListPeerings = core.createPaginator(NetworkManagerClient, ListPeeringsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -5161,7 +5636,9 @@ const AttachmentErrorCode = {
|
|
|
5161
5636
|
SUBNET_NO_IPV6_CIDRS: "SUBNET_NO_IPV6_CIDRS",
|
|
5162
5637
|
SUBNET_UNSUPPORTED_AVAILABILITY_ZONE: "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE",
|
|
5163
5638
|
VPC_NOT_FOUND: "VPC_NOT_FOUND",
|
|
5639
|
+
VPC_UNSUPPORTED_FEATURES: "VPC_UNSUPPORTED_FEATURES",
|
|
5164
5640
|
VPN_CONNECTION_NOT_FOUND: "VPN_CONNECTION_NOT_FOUND",
|
|
5641
|
+
VPN_EXISTING_ASSOCIATIONS: "VPN_EXISTING_ASSOCIATIONS",
|
|
5165
5642
|
};
|
|
5166
5643
|
const AttachmentState = {
|
|
5167
5644
|
AVAILABLE: "AVAILABLE",
|
|
@@ -5232,6 +5709,10 @@ const ChangeType = {
|
|
|
5232
5709
|
CORE_NETWORK_EDGE: "CORE_NETWORK_EDGE",
|
|
5233
5710
|
CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT",
|
|
5234
5711
|
NETWORK_FUNCTION_GROUP: "NETWORK_FUNCTION_GROUP",
|
|
5712
|
+
ROUTING_POLICY: "ROUTING_POLICY",
|
|
5713
|
+
ROUTING_POLICY_ATTACHMENT_ASSOCIATION: "ROUTING_POLICY_ATTACHMENT_ASSOCIATION",
|
|
5714
|
+
ROUTING_POLICY_EDGE_ASSOCIATION: "ROUTING_POLICY_EDGE_ASSOCIATION",
|
|
5715
|
+
ROUTING_POLICY_SEGMENT_ASSOCIATION: "ROUTING_POLICY_SEGMENT_ASSOCIATION",
|
|
5235
5716
|
SEGMENTS_CONFIGURATION: "SEGMENTS_CONFIGURATION",
|
|
5236
5717
|
SEGMENT_ACTIONS_CONFIGURATION: "SEGMENT_ACTIONS_CONFIGURATION",
|
|
5237
5718
|
};
|
|
@@ -5273,6 +5754,10 @@ const CoreNetworkState = {
|
|
|
5273
5754
|
DELETING: "DELETING",
|
|
5274
5755
|
UPDATING: "UPDATING",
|
|
5275
5756
|
};
|
|
5757
|
+
const RoutingPolicyDirection = {
|
|
5758
|
+
INBOUND: "inbound",
|
|
5759
|
+
OUTBOUND: "outbound",
|
|
5760
|
+
};
|
|
5276
5761
|
const SegmentActionServiceInsertion = {
|
|
5277
5762
|
SEND_TO: "send-to",
|
|
5278
5763
|
SEND_VIA: "send-via",
|
|
@@ -5404,6 +5889,7 @@ exports.CreateConnectAttachmentCommand = CreateConnectAttachmentCommand;
|
|
|
5404
5889
|
exports.CreateConnectPeerCommand = CreateConnectPeerCommand;
|
|
5405
5890
|
exports.CreateConnectionCommand = CreateConnectionCommand;
|
|
5406
5891
|
exports.CreateCoreNetworkCommand = CreateCoreNetworkCommand;
|
|
5892
|
+
exports.CreateCoreNetworkPrefixListAssociationCommand = CreateCoreNetworkPrefixListAssociationCommand;
|
|
5407
5893
|
exports.CreateDeviceCommand = CreateDeviceCommand;
|
|
5408
5894
|
exports.CreateDirectConnectGatewayAttachmentCommand = CreateDirectConnectGatewayAttachmentCommand;
|
|
5409
5895
|
exports.CreateGlobalNetworkCommand = CreateGlobalNetworkCommand;
|
|
@@ -5419,6 +5905,7 @@ exports.DeleteConnectPeerCommand = DeleteConnectPeerCommand;
|
|
|
5419
5905
|
exports.DeleteConnectionCommand = DeleteConnectionCommand;
|
|
5420
5906
|
exports.DeleteCoreNetworkCommand = DeleteCoreNetworkCommand;
|
|
5421
5907
|
exports.DeleteCoreNetworkPolicyVersionCommand = DeleteCoreNetworkPolicyVersionCommand;
|
|
5908
|
+
exports.DeleteCoreNetworkPrefixListAssociationCommand = DeleteCoreNetworkPrefixListAssociationCommand;
|
|
5422
5909
|
exports.DeleteDeviceCommand = DeleteDeviceCommand;
|
|
5423
5910
|
exports.DeleteGlobalNetworkCommand = DeleteGlobalNetworkCommand;
|
|
5424
5911
|
exports.DeleteLinkCommand = DeleteLinkCommand;
|
|
@@ -5464,9 +5951,12 @@ exports.GlobalNetworkState = GlobalNetworkState;
|
|
|
5464
5951
|
exports.InternalServerException = InternalServerException$1;
|
|
5465
5952
|
exports.LinkAssociationState = LinkAssociationState;
|
|
5466
5953
|
exports.LinkState = LinkState;
|
|
5954
|
+
exports.ListAttachmentRoutingPolicyAssociationsCommand = ListAttachmentRoutingPolicyAssociationsCommand;
|
|
5467
5955
|
exports.ListAttachmentsCommand = ListAttachmentsCommand;
|
|
5468
5956
|
exports.ListConnectPeersCommand = ListConnectPeersCommand;
|
|
5469
5957
|
exports.ListCoreNetworkPolicyVersionsCommand = ListCoreNetworkPolicyVersionsCommand;
|
|
5958
|
+
exports.ListCoreNetworkPrefixListAssociationsCommand = ListCoreNetworkPrefixListAssociationsCommand;
|
|
5959
|
+
exports.ListCoreNetworkRoutingInformationCommand = ListCoreNetworkRoutingInformationCommand;
|
|
5470
5960
|
exports.ListCoreNetworksCommand = ListCoreNetworksCommand;
|
|
5471
5961
|
exports.ListOrganizationServiceAccessStatusCommand = ListOrganizationServiceAccessStatusCommand;
|
|
5472
5962
|
exports.ListPeeringsCommand = ListPeeringsCommand;
|
|
@@ -5477,10 +5967,12 @@ exports.NetworkManagerServiceException = NetworkManagerServiceException$1;
|
|
|
5477
5967
|
exports.PeeringErrorCode = PeeringErrorCode;
|
|
5478
5968
|
exports.PeeringState = PeeringState;
|
|
5479
5969
|
exports.PeeringType = PeeringType;
|
|
5970
|
+
exports.PutAttachmentRoutingPolicyLabelCommand = PutAttachmentRoutingPolicyLabelCommand;
|
|
5480
5971
|
exports.PutCoreNetworkPolicyCommand = PutCoreNetworkPolicyCommand;
|
|
5481
5972
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
5482
5973
|
exports.RegisterTransitGatewayCommand = RegisterTransitGatewayCommand;
|
|
5483
5974
|
exports.RejectAttachmentCommand = RejectAttachmentCommand;
|
|
5975
|
+
exports.RemoveAttachmentRoutingPolicyLabelCommand = RemoveAttachmentRoutingPolicyLabelCommand;
|
|
5484
5976
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
5485
5977
|
exports.RestoreCoreNetworkPolicyVersionCommand = RestoreCoreNetworkPolicyVersionCommand;
|
|
5486
5978
|
exports.RouteAnalysisCompletionReasonCode = RouteAnalysisCompletionReasonCode;
|
|
@@ -5489,6 +5981,7 @@ exports.RouteAnalysisStatus = RouteAnalysisStatus;
|
|
|
5489
5981
|
exports.RouteState = RouteState;
|
|
5490
5982
|
exports.RouteTableType = RouteTableType;
|
|
5491
5983
|
exports.RouteType = RouteType;
|
|
5984
|
+
exports.RoutingPolicyDirection = RoutingPolicyDirection;
|
|
5492
5985
|
exports.SegmentActionServiceInsertion = SegmentActionServiceInsertion;
|
|
5493
5986
|
exports.SendViaMode = SendViaMode;
|
|
5494
5987
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
@@ -5528,8 +6021,11 @@ exports.paginateGetNetworkTelemetry = paginateGetNetworkTelemetry;
|
|
|
5528
6021
|
exports.paginateGetSites = paginateGetSites;
|
|
5529
6022
|
exports.paginateGetTransitGatewayConnectPeerAssociations = paginateGetTransitGatewayConnectPeerAssociations;
|
|
5530
6023
|
exports.paginateGetTransitGatewayRegistrations = paginateGetTransitGatewayRegistrations;
|
|
6024
|
+
exports.paginateListAttachmentRoutingPolicyAssociations = paginateListAttachmentRoutingPolicyAssociations;
|
|
5531
6025
|
exports.paginateListAttachments = paginateListAttachments;
|
|
5532
6026
|
exports.paginateListConnectPeers = paginateListConnectPeers;
|
|
5533
6027
|
exports.paginateListCoreNetworkPolicyVersions = paginateListCoreNetworkPolicyVersions;
|
|
6028
|
+
exports.paginateListCoreNetworkPrefixListAssociations = paginateListCoreNetworkPrefixListAssociations;
|
|
6029
|
+
exports.paginateListCoreNetworkRoutingInformation = paginateListCoreNetworkRoutingInformation;
|
|
5534
6030
|
exports.paginateListCoreNetworks = paginateListCoreNetworks;
|
|
5535
6031
|
exports.paginateListPeerings = paginateListPeerings;
|