@aws-sdk/client-networkmanager 3.935.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 +12 -12
|
@@ -18,8 +18,13 @@ const _ALR = "AssociateLinkRequest";
|
|
|
18
18
|
const _ALRs = "AssociateLinkResponse";
|
|
19
19
|
const _ALs = "AssociateLink";
|
|
20
20
|
const _AMS = "ApplianceModeSupport";
|
|
21
|
+
const _AP = "AsPath";
|
|
21
22
|
const _APRN = "AttachmentPolicyRuleNumber";
|
|
22
23
|
const _AR = "AwsRegion";
|
|
24
|
+
const _ARP = "AssociatedRoutingPolicies";
|
|
25
|
+
const _ARPA = "AttachmentRoutingPolicyAssociations";
|
|
26
|
+
const _ARPAL = "AttachmentRoutingPolicyAssociationsList";
|
|
27
|
+
const _ARPAS = "AttachmentRoutingPolicyAssociationSummary";
|
|
23
28
|
const _AS = "AccountStatus";
|
|
24
29
|
const _ASA = "AddSubnetArns";
|
|
25
30
|
const _ASL = "AccountStatusList";
|
|
@@ -47,6 +52,9 @@ const _CCA = "CreateConnectAttachment";
|
|
|
47
52
|
const _CCAR = "CreateConnectAttachmentRequest";
|
|
48
53
|
const _CCARr = "CreateConnectAttachmentResponse";
|
|
49
54
|
const _CCN = "CreateCoreNetwork";
|
|
55
|
+
const _CCNPLA = "CreateCoreNetworkPrefixListAssociation";
|
|
56
|
+
const _CCNPLAR = "CreateCoreNetworkPrefixListAssociationRequest";
|
|
57
|
+
const _CCNPLARr = "CreateCoreNetworkPrefixListAssociationResponse";
|
|
50
58
|
const _CCNR = "CreateCoreNetworkRequest";
|
|
51
59
|
const _CCNRr = "CreateCoreNetworkResponse";
|
|
52
60
|
const _CCP = "CreateConnectPeer";
|
|
@@ -78,6 +86,7 @@ const _CLI = "ConnectedLinkId";
|
|
|
78
86
|
const _CLR = "CreateLinkRequest";
|
|
79
87
|
const _CLRr = "CreateLinkResponse";
|
|
80
88
|
const _CLr = "CreateLink";
|
|
89
|
+
const _CM = "CommunityMatches";
|
|
81
90
|
const _CN = "CoreNetwork";
|
|
82
91
|
const _CNA = "CoreNetworkArn";
|
|
83
92
|
const _CNAI = "CoreNetworkAttachmentId";
|
|
@@ -104,6 +113,8 @@ const _CNPEo = "CoreNetworkPolicyException";
|
|
|
104
113
|
const _CNPV = "CoreNetworkPolicyVersion";
|
|
105
114
|
const _CNPVL = "CoreNetworkPolicyVersionList";
|
|
106
115
|
const _CNPVo = "CoreNetworkPolicyVersions";
|
|
116
|
+
const _CNRI = "CoreNetworkRoutingInformation";
|
|
117
|
+
const _CNRIL = "CoreNetworkRoutingInformationList";
|
|
107
118
|
const _CNS = "CoreNetworkSegment";
|
|
108
119
|
const _CNSE = "CoreNetworkSegmentEdge";
|
|
109
120
|
const _CNSEI = "CoreNetworkSegmentEdgeIdentifier";
|
|
@@ -146,6 +157,7 @@ const _CVAR = "CreateVpcAttachmentRequest";
|
|
|
146
157
|
const _CVARr = "CreateVpcAttachmentResponse";
|
|
147
158
|
const _Ci = "Cidr";
|
|
148
159
|
const _Co = "Connection";
|
|
160
|
+
const _Com = "Communities";
|
|
149
161
|
const _Con = "Configuration";
|
|
150
162
|
const _Conn = "Connections";
|
|
151
163
|
const _Cont = "Context";
|
|
@@ -163,6 +175,9 @@ const _DCGAi = "DirectConnectGatewayAttachment";
|
|
|
163
175
|
const _DCGR = "DisassociateCustomerGatewayRequest";
|
|
164
176
|
const _DCGRi = "DisassociateCustomerGatewayResponse";
|
|
165
177
|
const _DCN = "DeleteCoreNetwork";
|
|
178
|
+
const _DCNPLA = "DeleteCoreNetworkPrefixListAssociation";
|
|
179
|
+
const _DCNPLAR = "DeleteCoreNetworkPrefixListAssociationRequest";
|
|
180
|
+
const _DCNPLARe = "DeleteCoreNetworkPrefixListAssociationResponse";
|
|
166
181
|
const _DCNPV = "DeleteCoreNetworkPolicyVersion";
|
|
167
182
|
const _DCNPVR = "DeleteCoreNetworkPolicyVersionRequest";
|
|
168
183
|
const _DCNPVRe = "DeleteCoreNetworkPolicyVersionResponse";
|
|
@@ -220,6 +235,7 @@ const _Des = "Destinations";
|
|
|
220
235
|
const _Dest = "Destination";
|
|
221
236
|
const _Dev = "Devices";
|
|
222
237
|
const _E = "Edges";
|
|
238
|
+
const _EAPM = "ExactAsPathMatches";
|
|
223
239
|
const _EC = "ErrorCode";
|
|
224
240
|
const _ECM = "ExactCidrMatches";
|
|
225
241
|
const _ECNCS = "ExecuteCoreNetworkChangeSet";
|
|
@@ -337,6 +353,9 @@ const _L = "Location";
|
|
|
337
353
|
const _LA = "LinkAssociation";
|
|
338
354
|
const _LAL = "LinkAssociationList";
|
|
339
355
|
const _LAR = "ListAttachmentsRequest";
|
|
356
|
+
const _LARPA = "ListAttachmentRoutingPolicyAssociations";
|
|
357
|
+
const _LARPAR = "ListAttachmentRoutingPolicyAssociationsRequest";
|
|
358
|
+
const _LARPARi = "ListAttachmentRoutingPolicyAssociationsResponse";
|
|
340
359
|
const _LARi = "ListAttachmentsResponse";
|
|
341
360
|
const _LAS = "LinkAssociationState";
|
|
342
361
|
const _LAi = "LinkAssociations";
|
|
@@ -344,10 +363,16 @@ const _LAin = "LinkArn";
|
|
|
344
363
|
const _LAis = "ListAttachments";
|
|
345
364
|
const _LC = "LimitCode";
|
|
346
365
|
const _LCN = "ListCoreNetworks";
|
|
366
|
+
const _LCNPLA = "ListCoreNetworkPrefixListAssociations";
|
|
367
|
+
const _LCNPLAR = "ListCoreNetworkPrefixListAssociationsRequest";
|
|
368
|
+
const _LCNPLARi = "ListCoreNetworkPrefixListAssociationsResponse";
|
|
347
369
|
const _LCNPV = "ListCoreNetworkPolicyVersions";
|
|
348
370
|
const _LCNPVR = "ListCoreNetworkPolicyVersionsRequest";
|
|
349
371
|
const _LCNPVRi = "ListCoreNetworkPolicyVersionsResponse";
|
|
350
372
|
const _LCNR = "ListCoreNetworksRequest";
|
|
373
|
+
const _LCNRI = "ListCoreNetworkRoutingInformation";
|
|
374
|
+
const _LCNRIR = "ListCoreNetworkRoutingInformationRequest";
|
|
375
|
+
const _LCNRIRi = "ListCoreNetworkRoutingInformationResponse";
|
|
351
376
|
const _LCNRi = "ListCoreNetworksResponse";
|
|
352
377
|
const _LCP = "ListConnectPeers";
|
|
353
378
|
const _LCPR = "ListConnectPeersRequest";
|
|
@@ -359,10 +384,12 @@ const _LME = "LastModificationErrors";
|
|
|
359
384
|
const _LOSAS = "ListOrganizationServiceAccessStatus";
|
|
360
385
|
const _LOSASR = "ListOrganizationServiceAccessStatusRequest";
|
|
361
386
|
const _LOSASRi = "ListOrganizationServiceAccessStatusResponse";
|
|
362
|
-
const _LP = "
|
|
387
|
+
const _LP = "LocalPreference";
|
|
363
388
|
const _LPM = "LongestPrefixMatches";
|
|
389
|
+
const _LPMo = "LocalPreferenceMatches";
|
|
364
390
|
const _LPR = "ListPeeringsRequest";
|
|
365
391
|
const _LPRi = "ListPeeringsResponse";
|
|
392
|
+
const _LPi = "ListPeerings";
|
|
366
393
|
const _LTFR = "ListTagsForResource";
|
|
367
394
|
const _LTFRR = "ListTagsForResourceRequest";
|
|
368
395
|
const _LTFRRi = "ListTagsForResourceResponse";
|
|
@@ -372,10 +399,12 @@ const _Li = "Link";
|
|
|
372
399
|
const _Lin = "Links";
|
|
373
400
|
const _Lo = "Longitude";
|
|
374
401
|
const _M = "Message";
|
|
402
|
+
const _MM = "MedMatches";
|
|
375
403
|
const _MP = "MissingPermission";
|
|
376
404
|
const _MPC = "MissingPermissionsContext";
|
|
377
405
|
const _MR = "MaxResults";
|
|
378
|
-
const _Me = "
|
|
406
|
+
const _Me = "Med";
|
|
407
|
+
const _Met = "Metadata";
|
|
379
408
|
const _Mo = "Model";
|
|
380
409
|
const _Mod = "Mode";
|
|
381
410
|
const _N = "Name";
|
|
@@ -383,6 +412,8 @@ const _NFG = "NetworkFunctionGroups";
|
|
|
383
412
|
const _NFGL = "NetworkFunctionGroupList";
|
|
384
413
|
const _NFGN = "NetworkFunctionGroupName";
|
|
385
414
|
const _NFGe = "NetworkFunctionGroup";
|
|
415
|
+
const _NH = "NextHop";
|
|
416
|
+
const _NHF = "NextHopFilters";
|
|
386
417
|
const _NR = "NetworkResources";
|
|
387
418
|
const _NRC = "NetworkResourceCounts";
|
|
388
419
|
const _NRCL = "NetworkResourceCountList";
|
|
@@ -407,6 +438,9 @@ const _OI = "OrganizationId";
|
|
|
407
438
|
const _OS = "OrganizationStatus";
|
|
408
439
|
const _P = "Protocol";
|
|
409
440
|
const _PA = "PeerAsn";
|
|
441
|
+
const _PARPL = "PutAttachmentRoutingPolicyLabel";
|
|
442
|
+
const _PARPLR = "PutAttachmentRoutingPolicyLabelRequest";
|
|
443
|
+
const _PARPLRu = "PutAttachmentRoutingPolicyLabelResponse";
|
|
410
444
|
const _PAe = "PeerAddress";
|
|
411
445
|
const _PC = "PathComponent";
|
|
412
446
|
const _PCL = "PathComponentList";
|
|
@@ -416,16 +450,24 @@ const _PCNPRu = "PutCoreNetworkPolicyResponse";
|
|
|
416
450
|
const _PD = "PolicyDocument";
|
|
417
451
|
const _PE = "PolicyErrors";
|
|
418
452
|
const _PEC = "PermissionsErrorContext";
|
|
419
|
-
const _PEL = "
|
|
453
|
+
const _PEL = "PeerEdgeLocation";
|
|
454
|
+
const _PELe = "PeerEdgeLocations";
|
|
455
|
+
const _PELee = "PeeringErrorList";
|
|
420
456
|
const _PEe = "PeeringError";
|
|
421
457
|
const _PI = "PeeringId";
|
|
422
458
|
const _PL = "PeeringList";
|
|
459
|
+
const _PLA = "PrefixListArn";
|
|
460
|
+
const _PLAL = "PrefixListAssociationList";
|
|
461
|
+
const _PLAr = "PrefixListAlias";
|
|
462
|
+
const _PLAre = "PrefixListAssociations";
|
|
463
|
+
const _PLAref = "PrefixListAssociation";
|
|
423
464
|
const _PLI = "PrefixListIds";
|
|
424
465
|
const _PLIr = "PrefixListId";
|
|
425
466
|
const _PNFGC = "ProposedNetworkFunctionGroupChange";
|
|
426
|
-
const _PRP = "
|
|
467
|
+
const _PRP = "PendingRoutingPolicies";
|
|
427
468
|
const _PRPR = "PutResourcePolicyRequest";
|
|
428
469
|
const _PRPRu = "PutResourcePolicyResponse";
|
|
470
|
+
const _PRPu = "PutResourcePolicy";
|
|
429
471
|
const _PSC = "ProposedSegmentChange";
|
|
430
472
|
const _PT = "PeeringType";
|
|
431
473
|
const _PV = "PreviousValues";
|
|
@@ -433,7 +475,8 @@ const _PVI = "PolicyVersionId";
|
|
|
433
475
|
const _Pa = "Path";
|
|
434
476
|
const _Pe = "Peering";
|
|
435
477
|
const _Pee = "Peerings";
|
|
436
|
-
const _Pr = "
|
|
478
|
+
const _Pr = "Prefix";
|
|
479
|
+
const _Pro = "Provider";
|
|
437
480
|
const _R = "Relationships";
|
|
438
481
|
const _RA = "ResourceArn";
|
|
439
482
|
const _RAC = "RouteAnalysisCompletion";
|
|
@@ -442,6 +485,9 @@ const _RAEOS = "RouteAnalysisEndpointOptionsSpecification";
|
|
|
442
485
|
const _RAI = "RouteAnalysisId";
|
|
443
486
|
const _RAP = "RouteAnalysisPath";
|
|
444
487
|
const _RAR = "RejectAttachmentRequest";
|
|
488
|
+
const _RARPL = "RemoveAttachmentRoutingPolicyLabel";
|
|
489
|
+
const _RARPLR = "RemoveAttachmentRoutingPolicyLabelRequest";
|
|
490
|
+
const _RARPLRe = "RemoveAttachmentRoutingPolicyLabelResponse";
|
|
445
491
|
const _RARe = "RejectAttachmentResponse";
|
|
446
492
|
const _RAS = "RetryAfterSeconds";
|
|
447
493
|
const _RA_ = "Retry-After";
|
|
@@ -455,10 +501,18 @@ const _RCe = "ReasonCode";
|
|
|
455
501
|
const _RCea = "ReasonContext";
|
|
456
502
|
const _RGA = "RegisteredGatewayArn";
|
|
457
503
|
const _RI = "RequestId";
|
|
504
|
+
const _RINH = "RoutingInformationNextHop";
|
|
458
505
|
const _RIe = "ResourceId";
|
|
459
506
|
const _RL = "RelationshipList";
|
|
460
507
|
const _RNFE = "ResourceNotFoundException";
|
|
461
|
-
const _RP = "
|
|
508
|
+
const _RP = "RoutingPolicy";
|
|
509
|
+
const _RPAD = "RoutingPolicyAssociationDetails";
|
|
510
|
+
const _RPADL = "RoutingPolicyAssociationDetailsList";
|
|
511
|
+
const _RPADo = "RoutingPolicyAssociationDetail";
|
|
512
|
+
const _RPD = "RoutingPolicyDirection";
|
|
513
|
+
const _RPL = "RoutingPolicyLabel";
|
|
514
|
+
const _RPN = "RoutingPolicyNames";
|
|
515
|
+
const _RPe = "ReturnPath";
|
|
462
516
|
const _RSA = "RemoveSubnetArns";
|
|
463
517
|
const _RT = "ResourceType";
|
|
464
518
|
const _RTA = "RouteTableArn";
|
|
@@ -593,6 +647,7 @@ const _WSTSL = "WhenSentToSegmentsList";
|
|
|
593
647
|
const _Z = "Zone";
|
|
594
648
|
const _a = "application/json";
|
|
595
649
|
const _aI = "accountId";
|
|
650
|
+
const _aIt = "attachmentId";
|
|
596
651
|
const _aR = "awsRegion";
|
|
597
652
|
const _aT = "attachmentType";
|
|
598
653
|
const _al = "alias";
|
|
@@ -617,6 +672,7 @@ const _mR = "maxResults";
|
|
|
617
672
|
const _mT = "mediaType";
|
|
618
673
|
const _nT = "nextToken";
|
|
619
674
|
const _p = "provider";
|
|
675
|
+
const _pLA = "prefixListArn";
|
|
620
676
|
const _pT = "peeringType";
|
|
621
677
|
const _pVI = "policyVersionId";
|
|
622
678
|
const _rA = "resourceArn";
|
|
@@ -747,6 +803,14 @@ export var Attachment = [
|
|
|
747
803
|
],
|
|
748
804
|
];
|
|
749
805
|
export var AttachmentError = [3, n0, _AE, 0, [_C, _M, _RA, _RI], [0, 0, 0, 0]];
|
|
806
|
+
export var AttachmentRoutingPolicyAssociationSummary = [
|
|
807
|
+
3,
|
|
808
|
+
n0,
|
|
809
|
+
_ARPAS,
|
|
810
|
+
0,
|
|
811
|
+
[_AI, _PRP, _ARP, _RPL],
|
|
812
|
+
[0, 64 | 0, 64 | 0, 0],
|
|
813
|
+
];
|
|
750
814
|
export var AWSLocation = [3, n0, _AWSL, 0, [_Z, _SA], [0, 0]];
|
|
751
815
|
export var Bandwidth = [3, n0, _B, 0, [_US, _DS], [1, 1]];
|
|
752
816
|
export var BgpOptions = [3, n0, _BO, 0, [_PA], [1]];
|
|
@@ -861,16 +925,34 @@ export var CoreNetworkChangeEventValues = [
|
|
|
861
925
|
n0,
|
|
862
926
|
_CNCEV,
|
|
863
927
|
0,
|
|
864
|
-
[_EL, _SN, _NFGN, _AI, _Ci],
|
|
865
|
-
[0, 0, 0, 0, 0],
|
|
928
|
+
[_EL, _PEL, _RPD, _SN, _NFGN, _AI, _Ci, _RPAD],
|
|
929
|
+
[0, 0, 0, 0, 0, 0, 0, () => RoutingPolicyAssociationDetailsList],
|
|
866
930
|
];
|
|
867
931
|
export var CoreNetworkChangeValues = [
|
|
868
932
|
3,
|
|
869
933
|
n0,
|
|
870
934
|
_CNCV,
|
|
871
935
|
0,
|
|
872
|
-
[_SN, _NFGN, _ELd, _As, _Ci, _DIe, _ICB, _SS, _SIA, _VES, _DSn, _SGRS],
|
|
873
|
-
[
|
|
936
|
+
[_SN, _NFGN, _ELd, _As, _Ci, _DIe, _ICB, _SS, _SIA, _VES, _DSn, _SGRS, _RPD, _RP, _PELe, _AI, _RPAD],
|
|
937
|
+
[
|
|
938
|
+
0,
|
|
939
|
+
0,
|
|
940
|
+
64 | 0,
|
|
941
|
+
1,
|
|
942
|
+
0,
|
|
943
|
+
0,
|
|
944
|
+
64 | 0,
|
|
945
|
+
64 | 0,
|
|
946
|
+
() => ServiceInsertionActionList,
|
|
947
|
+
2,
|
|
948
|
+
2,
|
|
949
|
+
2,
|
|
950
|
+
0,
|
|
951
|
+
0,
|
|
952
|
+
64 | 0,
|
|
953
|
+
0,
|
|
954
|
+
() => RoutingPolicyAssociationDetailsList,
|
|
955
|
+
],
|
|
874
956
|
];
|
|
875
957
|
export var CoreNetworkEdge = [3, n0, _CNE, 0, [_EL, _As, _ICB], [0, 1, 64 | 0]];
|
|
876
958
|
export var CoreNetworkNetworkFunctionGroup = [
|
|
@@ -918,6 +1000,14 @@ export var CoreNetworkPolicyVersion = [
|
|
|
918
1000
|
[_CNI, _PVI, _Al, _D, _CA, _CSS],
|
|
919
1001
|
[0, 1, 0, 0, 4, 0],
|
|
920
1002
|
];
|
|
1003
|
+
export var CoreNetworkRoutingInformation = [
|
|
1004
|
+
3,
|
|
1005
|
+
n0,
|
|
1006
|
+
_CNRI,
|
|
1007
|
+
0,
|
|
1008
|
+
[_Pr, _NH, _LP, _Me, _AP, _Com],
|
|
1009
|
+
[0, () => RoutingInformationNextHop, 0, 0, 64 | 0, 64 | 0],
|
|
1010
|
+
];
|
|
921
1011
|
export var CoreNetworkSegment = [3, n0, _CNS, 0, [_N, _ELd, _SS], [0, 64 | 0, 64 | 0]];
|
|
922
1012
|
export var CoreNetworkSegmentEdgeIdentifier = [3, n0, _CNSEI, 0, [_CNI, _SN, _EL], [0, 0, 0]];
|
|
923
1013
|
export var CoreNetworkSummary = [
|
|
@@ -933,8 +1023,8 @@ export var CreateConnectAttachmentRequest = [
|
|
|
933
1023
|
n0,
|
|
934
1024
|
_CCAR,
|
|
935
1025
|
0,
|
|
936
|
-
[_CNI, _EL, _TAI, _O, _T, _CT],
|
|
937
|
-
[0, 0, 0, () => ConnectAttachmentOptions, () => TagList, [0, 4]],
|
|
1026
|
+
[_CNI, _EL, _TAI, _RPL, _O, _T, _CT],
|
|
1027
|
+
[0, 0, 0, 0, () => ConnectAttachmentOptions, () => TagList, [0, 4]],
|
|
938
1028
|
];
|
|
939
1029
|
export var CreateConnectAttachmentResponse = [
|
|
940
1030
|
3,
|
|
@@ -962,6 +1052,22 @@ export var CreateConnectPeerRequest = [
|
|
|
962
1052
|
[0, 0, 0, () => BgpOptions, 64 | 0, () => TagList, [0, 4], 0],
|
|
963
1053
|
];
|
|
964
1054
|
export var CreateConnectPeerResponse = [3, n0, _CCPRr, 0, [_CP], [() => ConnectPeer]];
|
|
1055
|
+
export var CreateCoreNetworkPrefixListAssociationRequest = [
|
|
1056
|
+
3,
|
|
1057
|
+
n0,
|
|
1058
|
+
_CCNPLAR,
|
|
1059
|
+
0,
|
|
1060
|
+
[_CNI, _PLA, _PLAr, _CT],
|
|
1061
|
+
[0, 0, 0, [0, 4]],
|
|
1062
|
+
];
|
|
1063
|
+
export var CreateCoreNetworkPrefixListAssociationResponse = [
|
|
1064
|
+
3,
|
|
1065
|
+
n0,
|
|
1066
|
+
_CCNPLARr,
|
|
1067
|
+
0,
|
|
1068
|
+
[_CNI, _PLA, _PLAr],
|
|
1069
|
+
[0, 0, 0],
|
|
1070
|
+
];
|
|
965
1071
|
export var CreateCoreNetworkRequest = [
|
|
966
1072
|
3,
|
|
967
1073
|
n0,
|
|
@@ -985,8 +1091,8 @@ export var CreateDirectConnectGatewayAttachmentRequest = [
|
|
|
985
1091
|
n0,
|
|
986
1092
|
_CDCGAR,
|
|
987
1093
|
0,
|
|
988
|
-
[_CNI, _DCGA, _ELd, _T, _CT],
|
|
989
|
-
[0, 0, 64 | 0, () => TagList, [0, 4]],
|
|
1094
|
+
[_CNI, _DCGA, _RPL, _ELd, _T, _CT],
|
|
1095
|
+
[0, 0, 0, 64 | 0, () => TagList, [0, 4]],
|
|
990
1096
|
];
|
|
991
1097
|
export var CreateDirectConnectGatewayAttachmentResponse = [
|
|
992
1098
|
3,
|
|
@@ -1003,7 +1109,7 @@ export var CreateLinkRequest = [
|
|
|
1003
1109
|
n0,
|
|
1004
1110
|
_CLR,
|
|
1005
1111
|
0,
|
|
1006
|
-
[_GNI, _D, _Ty, _B,
|
|
1112
|
+
[_GNI, _D, _Ty, _B, _Pro, _SI, _T],
|
|
1007
1113
|
[[0, 1], 0, 0, () => Bandwidth, 0, 0, () => TagList],
|
|
1008
1114
|
];
|
|
1009
1115
|
export var CreateLinkResponse = [3, n0, _CLRr, 0, [_Li], [() => Link]];
|
|
@@ -1021,8 +1127,8 @@ export var CreateSiteToSiteVpnAttachmentRequest = [
|
|
|
1021
1127
|
n0,
|
|
1022
1128
|
_CSTSVAR,
|
|
1023
1129
|
0,
|
|
1024
|
-
[_CNI, _VCA, _T, _CT],
|
|
1025
|
-
[0, 0, () => TagList, [0, 4]],
|
|
1130
|
+
[_CNI, _VCA, _RPL, _T, _CT],
|
|
1131
|
+
[0, 0, 0, () => TagList, [0, 4]],
|
|
1026
1132
|
];
|
|
1027
1133
|
export var CreateSiteToSiteVpnAttachmentResponse = [
|
|
1028
1134
|
3,
|
|
@@ -1053,8 +1159,8 @@ export var CreateTransitGatewayRouteTableAttachmentRequest = [
|
|
|
1053
1159
|
n0,
|
|
1054
1160
|
_CTGRTAR,
|
|
1055
1161
|
0,
|
|
1056
|
-
[_PI, _TGRTA, _T, _CT],
|
|
1057
|
-
[0, 0, () => TagList, [0, 4]],
|
|
1162
|
+
[_PI, _TGRTA, _RPL, _T, _CT],
|
|
1163
|
+
[0, 0, 0, () => TagList, [0, 4]],
|
|
1058
1164
|
];
|
|
1059
1165
|
export var CreateTransitGatewayRouteTableAttachmentResponse = [
|
|
1060
1166
|
3,
|
|
@@ -1069,8 +1175,8 @@ export var CreateVpcAttachmentRequest = [
|
|
|
1069
1175
|
n0,
|
|
1070
1176
|
_CVAR,
|
|
1071
1177
|
0,
|
|
1072
|
-
[_CNI, _VA, _SAu, _O, _T, _CT],
|
|
1073
|
-
[0, 0, 64 | 0, () => VpcOptions, () => TagList, [0, 4]],
|
|
1178
|
+
[_CNI, _VA, _SAu, _O, _RPL, _T, _CT],
|
|
1179
|
+
[0, 0, 64 | 0, () => VpcOptions, 0, () => TagList, [0, 4]],
|
|
1074
1180
|
];
|
|
1075
1181
|
export var CreateVpcAttachmentResponse = [3, n0, _CVARr, 0, [_VAp], [() => VpcAttachment]];
|
|
1076
1182
|
export var CustomerGatewayAssociation = [
|
|
@@ -1116,6 +1222,25 @@ export var DeleteCoreNetworkPolicyVersionResponse = [
|
|
|
1116
1222
|
[_CNP],
|
|
1117
1223
|
[[() => CoreNetworkPolicy, 0]],
|
|
1118
1224
|
];
|
|
1225
|
+
export var DeleteCoreNetworkPrefixListAssociationRequest = [
|
|
1226
|
+
3,
|
|
1227
|
+
n0,
|
|
1228
|
+
_DCNPLAR,
|
|
1229
|
+
0,
|
|
1230
|
+
[_CNI, _PLA],
|
|
1231
|
+
[
|
|
1232
|
+
[0, 1],
|
|
1233
|
+
[0, 1],
|
|
1234
|
+
],
|
|
1235
|
+
];
|
|
1236
|
+
export var DeleteCoreNetworkPrefixListAssociationResponse = [
|
|
1237
|
+
3,
|
|
1238
|
+
n0,
|
|
1239
|
+
_DCNPLARe,
|
|
1240
|
+
0,
|
|
1241
|
+
[_CNI, _PLA],
|
|
1242
|
+
[0, 0],
|
|
1243
|
+
];
|
|
1119
1244
|
export var DeleteCoreNetworkRequest = [3, n0, _DCNR, 0, [_CNI], [[0, 1]]];
|
|
1120
1245
|
export var DeleteCoreNetworkResponse = [3, n0, _DCNRe, 0, [_CN], [() => CoreNetwork]];
|
|
1121
1246
|
export var DeleteDeviceRequest = [
|
|
@@ -1619,7 +1744,7 @@ export var GetLinksRequest = [
|
|
|
1619
1744
|
n0,
|
|
1620
1745
|
_GLR,
|
|
1621
1746
|
0,
|
|
1622
|
-
[_GNI, _LIi, _SI, _Ty,
|
|
1747
|
+
[_GNI, _LIi, _SI, _Ty, _Pro, _MR, _NT],
|
|
1623
1748
|
[
|
|
1624
1749
|
[0, 1],
|
|
1625
1750
|
[
|
|
@@ -2106,10 +2231,46 @@ export var Link = [
|
|
|
2106
2231
|
n0,
|
|
2107
2232
|
_Li,
|
|
2108
2233
|
0,
|
|
2109
|
-
[_LI, _LAin, _GNI, _SI, _D, _Ty, _B,
|
|
2234
|
+
[_LI, _LAin, _GNI, _SI, _D, _Ty, _B, _Pro, _CA, _S, _T],
|
|
2110
2235
|
[0, 0, 0, 0, 0, 0, () => Bandwidth, 0, 4, 0, () => TagList],
|
|
2111
2236
|
];
|
|
2112
2237
|
export var LinkAssociation = [3, n0, _LA, 0, [_GNI, _DI, _LI, _LAS], [0, 0, 0, 0]];
|
|
2238
|
+
export var ListAttachmentRoutingPolicyAssociationsRequest = [
|
|
2239
|
+
3,
|
|
2240
|
+
n0,
|
|
2241
|
+
_LARPAR,
|
|
2242
|
+
0,
|
|
2243
|
+
[_CNI, _AI, _MR, _NT],
|
|
2244
|
+
[
|
|
2245
|
+
[0, 1],
|
|
2246
|
+
[
|
|
2247
|
+
0,
|
|
2248
|
+
{
|
|
2249
|
+
[_hQ]: _aIt,
|
|
2250
|
+
},
|
|
2251
|
+
],
|
|
2252
|
+
[
|
|
2253
|
+
1,
|
|
2254
|
+
{
|
|
2255
|
+
[_hQ]: _mR,
|
|
2256
|
+
},
|
|
2257
|
+
],
|
|
2258
|
+
[
|
|
2259
|
+
0,
|
|
2260
|
+
{
|
|
2261
|
+
[_hQ]: _nT,
|
|
2262
|
+
},
|
|
2263
|
+
],
|
|
2264
|
+
],
|
|
2265
|
+
];
|
|
2266
|
+
export var ListAttachmentRoutingPolicyAssociationsResponse = [
|
|
2267
|
+
3,
|
|
2268
|
+
n0,
|
|
2269
|
+
_LARPARi,
|
|
2270
|
+
0,
|
|
2271
|
+
[_ARPA, _NT],
|
|
2272
|
+
[() => AttachmentRoutingPolicyAssociationsList, 0],
|
|
2273
|
+
];
|
|
2113
2274
|
export var ListAttachmentsRequest = [
|
|
2114
2275
|
3,
|
|
2115
2276
|
n0,
|
|
@@ -2227,6 +2388,79 @@ export var ListCoreNetworkPolicyVersionsResponse = [
|
|
|
2227
2388
|
[_CNPVo, _NT],
|
|
2228
2389
|
[() => CoreNetworkPolicyVersionList, 0],
|
|
2229
2390
|
];
|
|
2391
|
+
export var ListCoreNetworkPrefixListAssociationsRequest = [
|
|
2392
|
+
3,
|
|
2393
|
+
n0,
|
|
2394
|
+
_LCNPLAR,
|
|
2395
|
+
0,
|
|
2396
|
+
[_CNI, _PLA, _MR, _NT],
|
|
2397
|
+
[
|
|
2398
|
+
[0, 1],
|
|
2399
|
+
[
|
|
2400
|
+
0,
|
|
2401
|
+
{
|
|
2402
|
+
[_hQ]: _pLA,
|
|
2403
|
+
},
|
|
2404
|
+
],
|
|
2405
|
+
[
|
|
2406
|
+
1,
|
|
2407
|
+
{
|
|
2408
|
+
[_hQ]: _mR,
|
|
2409
|
+
},
|
|
2410
|
+
],
|
|
2411
|
+
[
|
|
2412
|
+
0,
|
|
2413
|
+
{
|
|
2414
|
+
[_hQ]: _nT,
|
|
2415
|
+
},
|
|
2416
|
+
],
|
|
2417
|
+
],
|
|
2418
|
+
];
|
|
2419
|
+
export var ListCoreNetworkPrefixListAssociationsResponse = [
|
|
2420
|
+
3,
|
|
2421
|
+
n0,
|
|
2422
|
+
_LCNPLARi,
|
|
2423
|
+
0,
|
|
2424
|
+
[_PLAre, _NT],
|
|
2425
|
+
[() => PrefixListAssociationList, 0],
|
|
2426
|
+
];
|
|
2427
|
+
export var ListCoreNetworkRoutingInformationRequest = [
|
|
2428
|
+
3,
|
|
2429
|
+
n0,
|
|
2430
|
+
_LCNRIR,
|
|
2431
|
+
0,
|
|
2432
|
+
[_CNI, _SN, _EL, _NHF, _LPMo, _EAPM, _MM, _CM, _MR, _NT],
|
|
2433
|
+
[
|
|
2434
|
+
[0, 1],
|
|
2435
|
+
0,
|
|
2436
|
+
0,
|
|
2437
|
+
[2, n0, _FM, 0, 0, 64 | 0],
|
|
2438
|
+
64 | 0,
|
|
2439
|
+
64 | 0,
|
|
2440
|
+
64 | 0,
|
|
2441
|
+
64 | 0,
|
|
2442
|
+
[
|
|
2443
|
+
1,
|
|
2444
|
+
{
|
|
2445
|
+
[_hQ]: _mR,
|
|
2446
|
+
},
|
|
2447
|
+
],
|
|
2448
|
+
[
|
|
2449
|
+
0,
|
|
2450
|
+
{
|
|
2451
|
+
[_hQ]: _nT,
|
|
2452
|
+
},
|
|
2453
|
+
],
|
|
2454
|
+
],
|
|
2455
|
+
];
|
|
2456
|
+
export var ListCoreNetworkRoutingInformationResponse = [
|
|
2457
|
+
3,
|
|
2458
|
+
n0,
|
|
2459
|
+
_LCNRIRi,
|
|
2460
|
+
0,
|
|
2461
|
+
[_CNRI, _NT],
|
|
2462
|
+
[() => CoreNetworkRoutingInformationList, 0],
|
|
2463
|
+
];
|
|
2230
2464
|
export var ListCoreNetworksRequest = [
|
|
2231
2465
|
3,
|
|
2232
2466
|
n0,
|
|
@@ -2340,7 +2574,7 @@ export var NetworkResource = [
|
|
|
2340
2574
|
n0,
|
|
2341
2575
|
_NRet,
|
|
2342
2576
|
0,
|
|
2343
|
-
[_RGA, _CNI, _AR, _AIc, _RT, _RIe, _RA, _Def, _DT, _T,
|
|
2577
|
+
[_RGA, _CNI, _AR, _AIc, _RT, _RIe, _RA, _Def, _DT, _T, _Met],
|
|
2344
2578
|
[0, 0, 0, 0, 0, 0, 0, 0, 4, () => TagList, 128 | 0],
|
|
2345
2579
|
];
|
|
2346
2580
|
export var NetworkResourceCount = [3, n0, _NRCe, 0, [_RT, _Cou], [0, 1]];
|
|
@@ -2419,6 +2653,7 @@ export var PeeringError = [
|
|
|
2419
2653
|
[0, 0, 0, 0, () => PermissionsErrorContext],
|
|
2420
2654
|
];
|
|
2421
2655
|
export var PermissionsErrorContext = [3, n0, _PEC, 0, [_MP], [0]];
|
|
2656
|
+
export var PrefixListAssociation = [3, n0, _PLAref, 0, [_CNI, _PLA, _PLAr], [0, 0, 0]];
|
|
2422
2657
|
export var ProposedNetworkFunctionGroupChange = [
|
|
2423
2658
|
3,
|
|
2424
2659
|
n0,
|
|
@@ -2428,6 +2663,22 @@ export var ProposedNetworkFunctionGroupChange = [
|
|
|
2428
2663
|
[() => TagList, 1, 0],
|
|
2429
2664
|
];
|
|
2430
2665
|
export var ProposedSegmentChange = [3, n0, _PSC, 0, [_T, _APRN, _SN], [() => TagList, 1, 0]];
|
|
2666
|
+
export var PutAttachmentRoutingPolicyLabelRequest = [
|
|
2667
|
+
3,
|
|
2668
|
+
n0,
|
|
2669
|
+
_PARPLR,
|
|
2670
|
+
0,
|
|
2671
|
+
[_CNI, _AI, _RPL, _CT],
|
|
2672
|
+
[0, 0, 0, [0, 4]],
|
|
2673
|
+
];
|
|
2674
|
+
export var PutAttachmentRoutingPolicyLabelResponse = [
|
|
2675
|
+
3,
|
|
2676
|
+
n0,
|
|
2677
|
+
_PARPLRu,
|
|
2678
|
+
0,
|
|
2679
|
+
[_CNI, _AI, _RPL],
|
|
2680
|
+
[0, 0, 0],
|
|
2681
|
+
];
|
|
2431
2682
|
export var PutCoreNetworkPolicyRequest = [
|
|
2432
2683
|
3,
|
|
2433
2684
|
n0,
|
|
@@ -2468,6 +2719,25 @@ export var RegisterTransitGatewayResponse = [
|
|
|
2468
2719
|
export var RejectAttachmentRequest = [3, n0, _RAR, 0, [_AI], [[0, 1]]];
|
|
2469
2720
|
export var RejectAttachmentResponse = [3, n0, _RARe, 0, [_A], [() => Attachment]];
|
|
2470
2721
|
export var Relationship = [3, n0, _Rel, 0, [_F, _To], [0, 0]];
|
|
2722
|
+
export var RemoveAttachmentRoutingPolicyLabelRequest = [
|
|
2723
|
+
3,
|
|
2724
|
+
n0,
|
|
2725
|
+
_RARPLR,
|
|
2726
|
+
0,
|
|
2727
|
+
[_CNI, _AI],
|
|
2728
|
+
[
|
|
2729
|
+
[0, 1],
|
|
2730
|
+
[0, 1],
|
|
2731
|
+
],
|
|
2732
|
+
];
|
|
2733
|
+
export var RemoveAttachmentRoutingPolicyLabelResponse = [
|
|
2734
|
+
3,
|
|
2735
|
+
n0,
|
|
2736
|
+
_RARPLRe,
|
|
2737
|
+
0,
|
|
2738
|
+
[_CNI, _AI, _RPL],
|
|
2739
|
+
[0, 0, 0],
|
|
2740
|
+
];
|
|
2471
2741
|
export var ResourceNotFoundException = [
|
|
2472
2742
|
-3,
|
|
2473
2743
|
n0,
|
|
@@ -2504,7 +2774,7 @@ export var RouteAnalysis = [
|
|
|
2504
2774
|
n0,
|
|
2505
2775
|
_RAo,
|
|
2506
2776
|
0,
|
|
2507
|
-
[_GNI, _OAI, _RAI, _ST, _St, _So, _Dest, _IRP, _UM, _FP,
|
|
2777
|
+
[_GNI, _OAI, _RAI, _ST, _St, _So, _Dest, _IRP, _UM, _FP, _RPe],
|
|
2508
2778
|
[
|
|
2509
2779
|
0,
|
|
2510
2780
|
0,
|
|
@@ -2538,6 +2808,15 @@ export var RouteTableIdentifier = [
|
|
|
2538
2808
|
[_TGRTA, _CNSE, _CNNFG],
|
|
2539
2809
|
[0, () => CoreNetworkSegmentEdgeIdentifier, () => CoreNetworkNetworkFunctionGroupIdentifier],
|
|
2540
2810
|
];
|
|
2811
|
+
export var RoutingInformationNextHop = [
|
|
2812
|
+
3,
|
|
2813
|
+
n0,
|
|
2814
|
+
_RINH,
|
|
2815
|
+
0,
|
|
2816
|
+
[_IA, _CNAI, _RIe, _RT, _SN, _EL],
|
|
2817
|
+
[0, 0, 0, 0, 0, 0],
|
|
2818
|
+
];
|
|
2819
|
+
export var RoutingPolicyAssociationDetail = [3, n0, _RPADo, 0, [_RPN, _SS], [64 | 0, 64 | 0]];
|
|
2541
2820
|
export var ServiceInsertionAction = [
|
|
2542
2821
|
3,
|
|
2543
2822
|
n0,
|
|
@@ -2695,7 +2974,7 @@ export var UpdateLinkRequest = [
|
|
|
2695
2974
|
n0,
|
|
2696
2975
|
_ULR,
|
|
2697
2976
|
0,
|
|
2698
|
-
[_GNI, _LI, _D, _Ty, _B,
|
|
2977
|
+
[_GNI, _LI, _D, _Ty, _B, _Pro],
|
|
2699
2978
|
[[0, 1], [0, 1], 0, 0, () => Bandwidth, 0],
|
|
2700
2979
|
];
|
|
2701
2980
|
export var UpdateLinkResponse = [3, n0, _ULRp, 0, [_Li], [() => Link]];
|
|
@@ -2704,10 +2983,17 @@ export var UpdateNetworkResourceMetadataRequest = [
|
|
|
2704
2983
|
n0,
|
|
2705
2984
|
_UNRMR,
|
|
2706
2985
|
0,
|
|
2707
|
-
[_GNI, _RA,
|
|
2986
|
+
[_GNI, _RA, _Met],
|
|
2708
2987
|
[[0, 1], [0, 1], 128 | 0],
|
|
2709
2988
|
];
|
|
2710
|
-
export var UpdateNetworkResourceMetadataResponse = [
|
|
2989
|
+
export var UpdateNetworkResourceMetadataResponse = [
|
|
2990
|
+
3,
|
|
2991
|
+
n0,
|
|
2992
|
+
_UNRMRp,
|
|
2993
|
+
0,
|
|
2994
|
+
[_RA, _Met],
|
|
2995
|
+
[0, 128 | 0],
|
|
2996
|
+
];
|
|
2711
2997
|
export var UpdateSiteRequest = [
|
|
2712
2998
|
3,
|
|
2713
2999
|
n0,
|
|
@@ -2763,6 +3049,13 @@ TypeRegistry.for(_sm).registerError(NetworkManagerServiceException, __NetworkMan
|
|
|
2763
3049
|
export var AccountStatusList = [1, n0, _ASL, 0, () => AccountStatus];
|
|
2764
3050
|
export var AttachmentErrorList = [1, n0, _AEL, 0, () => AttachmentError];
|
|
2765
3051
|
export var AttachmentList = [1, n0, _AL, 0, () => Attachment];
|
|
3052
|
+
export var AttachmentRoutingPolicyAssociationsList = [
|
|
3053
|
+
1,
|
|
3054
|
+
n0,
|
|
3055
|
+
_ARPAL,
|
|
3056
|
+
0,
|
|
3057
|
+
() => AttachmentRoutingPolicyAssociationSummary,
|
|
3058
|
+
];
|
|
2766
3059
|
export var ConnectionIdList = 64 | 0;
|
|
2767
3060
|
export var ConnectionList = [1, n0, _CL, 0, () => Connection];
|
|
2768
3061
|
export var ConnectPeerAssociationList = [1, n0, _CPAL, 0, () => ConnectPeerAssociation];
|
|
@@ -2783,6 +3076,13 @@ export var CoreNetworkNetworkFunctionGroupList = [
|
|
|
2783
3076
|
];
|
|
2784
3077
|
export var CoreNetworkPolicyErrorList = [1, n0, _CNPEL, 0, () => CoreNetworkPolicyError];
|
|
2785
3078
|
export var CoreNetworkPolicyVersionList = [1, n0, _CNPVL, 0, () => CoreNetworkPolicyVersion];
|
|
3079
|
+
export var CoreNetworkRoutingInformationList = [
|
|
3080
|
+
1,
|
|
3081
|
+
n0,
|
|
3082
|
+
_CNRIL,
|
|
3083
|
+
0,
|
|
3084
|
+
() => CoreNetworkRoutingInformation,
|
|
3085
|
+
];
|
|
2786
3086
|
export var CoreNetworkSegmentList = [1, n0, _CNSL, 0, () => CoreNetworkSegment];
|
|
2787
3087
|
export var CoreNetworkSummaryList = [1, n0, _CNSLo, 0, () => CoreNetworkSummary];
|
|
2788
3088
|
export var CustomerGatewayArnList = 64 | 0;
|
|
@@ -2805,11 +3105,19 @@ export var NetworkRouteDestinationList = [1, n0, _NRDL, 0, () => NetworkRouteDes
|
|
|
2805
3105
|
export var NetworkRouteList = [1, n0, _NRLe, 0, () => NetworkRoute];
|
|
2806
3106
|
export var NetworkTelemetryList = [1, n0, _NTL, 0, () => NetworkTelemetry];
|
|
2807
3107
|
export var PathComponentList = [1, n0, _PCL, 0, () => PathComponent];
|
|
2808
|
-
export var PeeringErrorList = [1, n0,
|
|
3108
|
+
export var PeeringErrorList = [1, n0, _PELee, 0, () => PeeringError];
|
|
2809
3109
|
export var PeeringList = [1, n0, _PL, 0, () => Peering];
|
|
3110
|
+
export var PrefixListAssociationList = [1, n0, _PLAL, 0, () => PrefixListAssociation];
|
|
2810
3111
|
export var RelationshipList = [1, n0, _RL, 0, () => Relationship];
|
|
2811
3112
|
export var RouteStateList = 64 | 0;
|
|
2812
3113
|
export var RouteTypeList = 64 | 0;
|
|
3114
|
+
export var RoutingPolicyAssociationDetailsList = [
|
|
3115
|
+
1,
|
|
3116
|
+
n0,
|
|
3117
|
+
_RPADL,
|
|
3118
|
+
0,
|
|
3119
|
+
() => RoutingPolicyAssociationDetail,
|
|
3120
|
+
];
|
|
2813
3121
|
export var ServiceInsertionActionList = [1, n0, _SIAL, 0, () => ServiceInsertionAction];
|
|
2814
3122
|
export var SiteIdList = 64 | 0;
|
|
2815
3123
|
export var SiteList = [1, n0, _SL, 0, [() => Site, 0]];
|
|
@@ -2923,6 +3231,16 @@ export var CreateCoreNetwork = [
|
|
|
2923
3231
|
() => CreateCoreNetworkRequest,
|
|
2924
3232
|
() => CreateCoreNetworkResponse,
|
|
2925
3233
|
];
|
|
3234
|
+
export var CreateCoreNetworkPrefixListAssociation = [
|
|
3235
|
+
9,
|
|
3236
|
+
n0,
|
|
3237
|
+
_CCNPLA,
|
|
3238
|
+
{
|
|
3239
|
+
[_h]: ["POST", "/prefix-list", 200],
|
|
3240
|
+
},
|
|
3241
|
+
() => CreateCoreNetworkPrefixListAssociationRequest,
|
|
3242
|
+
() => CreateCoreNetworkPrefixListAssociationResponse,
|
|
3243
|
+
];
|
|
2926
3244
|
export var CreateDevice = [
|
|
2927
3245
|
9,
|
|
2928
3246
|
n0,
|
|
@@ -3063,6 +3381,16 @@ export var DeleteCoreNetworkPolicyVersion = [
|
|
|
3063
3381
|
() => DeleteCoreNetworkPolicyVersionRequest,
|
|
3064
3382
|
() => DeleteCoreNetworkPolicyVersionResponse,
|
|
3065
3383
|
];
|
|
3384
|
+
export var DeleteCoreNetworkPrefixListAssociation = [
|
|
3385
|
+
9,
|
|
3386
|
+
n0,
|
|
3387
|
+
_DCNPLA,
|
|
3388
|
+
{
|
|
3389
|
+
[_h]: ["DELETE", "/prefix-list/{PrefixListArn}/core-network/{CoreNetworkId}", 200],
|
|
3390
|
+
},
|
|
3391
|
+
() => DeleteCoreNetworkPrefixListAssociationRequest,
|
|
3392
|
+
() => DeleteCoreNetworkPrefixListAssociationResponse,
|
|
3393
|
+
];
|
|
3066
3394
|
export var DeleteDevice = [
|
|
3067
3395
|
9,
|
|
3068
3396
|
n0,
|
|
@@ -3467,6 +3795,16 @@ export var GetVpcAttachment = [
|
|
|
3467
3795
|
() => GetVpcAttachmentRequest,
|
|
3468
3796
|
() => GetVpcAttachmentResponse,
|
|
3469
3797
|
];
|
|
3798
|
+
export var ListAttachmentRoutingPolicyAssociations = [
|
|
3799
|
+
9,
|
|
3800
|
+
n0,
|
|
3801
|
+
_LARPA,
|
|
3802
|
+
{
|
|
3803
|
+
[_h]: ["GET", "/routing-policy-label/core-network/{CoreNetworkId}", 200],
|
|
3804
|
+
},
|
|
3805
|
+
() => ListAttachmentRoutingPolicyAssociationsRequest,
|
|
3806
|
+
() => ListAttachmentRoutingPolicyAssociationsResponse,
|
|
3807
|
+
];
|
|
3470
3808
|
export var ListAttachments = [
|
|
3471
3809
|
9,
|
|
3472
3810
|
n0,
|
|
@@ -3497,6 +3835,26 @@ export var ListCoreNetworkPolicyVersions = [
|
|
|
3497
3835
|
() => ListCoreNetworkPolicyVersionsRequest,
|
|
3498
3836
|
() => ListCoreNetworkPolicyVersionsResponse,
|
|
3499
3837
|
];
|
|
3838
|
+
export var ListCoreNetworkPrefixListAssociations = [
|
|
3839
|
+
9,
|
|
3840
|
+
n0,
|
|
3841
|
+
_LCNPLA,
|
|
3842
|
+
{
|
|
3843
|
+
[_h]: ["GET", "/prefix-list/core-network/{CoreNetworkId}", 200],
|
|
3844
|
+
},
|
|
3845
|
+
() => ListCoreNetworkPrefixListAssociationsRequest,
|
|
3846
|
+
() => ListCoreNetworkPrefixListAssociationsResponse,
|
|
3847
|
+
];
|
|
3848
|
+
export var ListCoreNetworkRoutingInformation = [
|
|
3849
|
+
9,
|
|
3850
|
+
n0,
|
|
3851
|
+
_LCNRI,
|
|
3852
|
+
{
|
|
3853
|
+
[_h]: ["POST", "/core-networks/{CoreNetworkId}/core-network-routing-information", 200],
|
|
3854
|
+
},
|
|
3855
|
+
() => ListCoreNetworkRoutingInformationRequest,
|
|
3856
|
+
() => ListCoreNetworkRoutingInformationResponse,
|
|
3857
|
+
];
|
|
3500
3858
|
export var ListCoreNetworks = [
|
|
3501
3859
|
9,
|
|
3502
3860
|
n0,
|
|
@@ -3520,7 +3878,7 @@ export var ListOrganizationServiceAccessStatus = [
|
|
|
3520
3878
|
export var ListPeerings = [
|
|
3521
3879
|
9,
|
|
3522
3880
|
n0,
|
|
3523
|
-
|
|
3881
|
+
_LPi,
|
|
3524
3882
|
{
|
|
3525
3883
|
[_h]: ["GET", "/peerings", 200],
|
|
3526
3884
|
},
|
|
@@ -3537,6 +3895,16 @@ export var ListTagsForResource = [
|
|
|
3537
3895
|
() => ListTagsForResourceRequest,
|
|
3538
3896
|
() => ListTagsForResourceResponse,
|
|
3539
3897
|
];
|
|
3898
|
+
export var PutAttachmentRoutingPolicyLabel = [
|
|
3899
|
+
9,
|
|
3900
|
+
n0,
|
|
3901
|
+
_PARPL,
|
|
3902
|
+
{
|
|
3903
|
+
[_h]: ["POST", "/routing-policy-label", 200],
|
|
3904
|
+
},
|
|
3905
|
+
() => PutAttachmentRoutingPolicyLabelRequest,
|
|
3906
|
+
() => PutAttachmentRoutingPolicyLabelResponse,
|
|
3907
|
+
];
|
|
3540
3908
|
export var PutCoreNetworkPolicy = [
|
|
3541
3909
|
9,
|
|
3542
3910
|
n0,
|
|
@@ -3550,7 +3918,7 @@ export var PutCoreNetworkPolicy = [
|
|
|
3550
3918
|
export var PutResourcePolicy = [
|
|
3551
3919
|
9,
|
|
3552
3920
|
n0,
|
|
3553
|
-
|
|
3921
|
+
_PRPu,
|
|
3554
3922
|
{
|
|
3555
3923
|
[_h]: ["POST", "/resource-policy/{ResourceArn}", 200],
|
|
3556
3924
|
},
|
|
@@ -3577,6 +3945,16 @@ export var RejectAttachment = [
|
|
|
3577
3945
|
() => RejectAttachmentRequest,
|
|
3578
3946
|
() => RejectAttachmentResponse,
|
|
3579
3947
|
];
|
|
3948
|
+
export var RemoveAttachmentRoutingPolicyLabel = [
|
|
3949
|
+
9,
|
|
3950
|
+
n0,
|
|
3951
|
+
_RARPL,
|
|
3952
|
+
{
|
|
3953
|
+
[_h]: ["DELETE", "/routing-policy-label/core-network/{CoreNetworkId}/attachment/{AttachmentId}", 200],
|
|
3954
|
+
},
|
|
3955
|
+
() => RemoveAttachmentRoutingPolicyLabelRequest,
|
|
3956
|
+
() => RemoveAttachmentRoutingPolicyLabelResponse,
|
|
3957
|
+
];
|
|
3580
3958
|
export var RestoreCoreNetworkPolicyVersion = [
|
|
3581
3959
|
9,
|
|
3582
3960
|
n0,
|