@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
|
@@ -22,6 +22,7 @@ export declare var AssociateTransitGatewayConnectPeerRequest: StaticStructureSch
|
|
|
22
22
|
export declare var AssociateTransitGatewayConnectPeerResponse: StaticStructureSchema;
|
|
23
23
|
export declare var Attachment: StaticStructureSchema;
|
|
24
24
|
export declare var AttachmentError: StaticStructureSchema;
|
|
25
|
+
export declare var AttachmentRoutingPolicyAssociationSummary: StaticStructureSchema;
|
|
25
26
|
export declare var AWSLocation: StaticStructureSchema;
|
|
26
27
|
export declare var Bandwidth: StaticStructureSchema;
|
|
27
28
|
export declare var BgpOptions: StaticStructureSchema;
|
|
@@ -48,6 +49,7 @@ export declare var CoreNetworkPolicy: StaticStructureSchema;
|
|
|
48
49
|
export declare var CoreNetworkPolicyError: StaticStructureSchema;
|
|
49
50
|
export declare var CoreNetworkPolicyException: StaticErrorSchema;
|
|
50
51
|
export declare var CoreNetworkPolicyVersion: StaticStructureSchema;
|
|
52
|
+
export declare var CoreNetworkRoutingInformation: StaticStructureSchema;
|
|
51
53
|
export declare var CoreNetworkSegment: StaticStructureSchema;
|
|
52
54
|
export declare var CoreNetworkSegmentEdgeIdentifier: StaticStructureSchema;
|
|
53
55
|
export declare var CoreNetworkSummary: StaticStructureSchema;
|
|
@@ -57,6 +59,8 @@ export declare var CreateConnectionRequest: StaticStructureSchema;
|
|
|
57
59
|
export declare var CreateConnectionResponse: StaticStructureSchema;
|
|
58
60
|
export declare var CreateConnectPeerRequest: StaticStructureSchema;
|
|
59
61
|
export declare var CreateConnectPeerResponse: StaticStructureSchema;
|
|
62
|
+
export declare var CreateCoreNetworkPrefixListAssociationRequest: StaticStructureSchema;
|
|
63
|
+
export declare var CreateCoreNetworkPrefixListAssociationResponse: StaticStructureSchema;
|
|
60
64
|
export declare var CreateCoreNetworkRequest: StaticStructureSchema;
|
|
61
65
|
export declare var CreateCoreNetworkResponse: StaticStructureSchema;
|
|
62
66
|
export declare var CreateDeviceRequest: StaticStructureSchema;
|
|
@@ -86,6 +90,8 @@ export declare var DeleteConnectPeerRequest: StaticStructureSchema;
|
|
|
86
90
|
export declare var DeleteConnectPeerResponse: StaticStructureSchema;
|
|
87
91
|
export declare var DeleteCoreNetworkPolicyVersionRequest: StaticStructureSchema;
|
|
88
92
|
export declare var DeleteCoreNetworkPolicyVersionResponse: StaticStructureSchema;
|
|
93
|
+
export declare var DeleteCoreNetworkPrefixListAssociationRequest: StaticStructureSchema;
|
|
94
|
+
export declare var DeleteCoreNetworkPrefixListAssociationResponse: StaticStructureSchema;
|
|
89
95
|
export declare var DeleteCoreNetworkRequest: StaticStructureSchema;
|
|
90
96
|
export declare var DeleteCoreNetworkResponse: StaticStructureSchema;
|
|
91
97
|
export declare var DeleteDeviceRequest: StaticStructureSchema;
|
|
@@ -175,12 +181,18 @@ export declare var GlobalNetwork: StaticStructureSchema;
|
|
|
175
181
|
export declare var InternalServerException: StaticErrorSchema;
|
|
176
182
|
export declare var Link: StaticStructureSchema;
|
|
177
183
|
export declare var LinkAssociation: StaticStructureSchema;
|
|
184
|
+
export declare var ListAttachmentRoutingPolicyAssociationsRequest: StaticStructureSchema;
|
|
185
|
+
export declare var ListAttachmentRoutingPolicyAssociationsResponse: StaticStructureSchema;
|
|
178
186
|
export declare var ListAttachmentsRequest: StaticStructureSchema;
|
|
179
187
|
export declare var ListAttachmentsResponse: StaticStructureSchema;
|
|
180
188
|
export declare var ListConnectPeersRequest: StaticStructureSchema;
|
|
181
189
|
export declare var ListConnectPeersResponse: StaticStructureSchema;
|
|
182
190
|
export declare var ListCoreNetworkPolicyVersionsRequest: StaticStructureSchema;
|
|
183
191
|
export declare var ListCoreNetworkPolicyVersionsResponse: StaticStructureSchema;
|
|
192
|
+
export declare var ListCoreNetworkPrefixListAssociationsRequest: StaticStructureSchema;
|
|
193
|
+
export declare var ListCoreNetworkPrefixListAssociationsResponse: StaticStructureSchema;
|
|
194
|
+
export declare var ListCoreNetworkRoutingInformationRequest: StaticStructureSchema;
|
|
195
|
+
export declare var ListCoreNetworkRoutingInformationResponse: StaticStructureSchema;
|
|
184
196
|
export declare var ListCoreNetworksRequest: StaticStructureSchema;
|
|
185
197
|
export declare var ListCoreNetworksResponse: StaticStructureSchema;
|
|
186
198
|
export declare var ListOrganizationServiceAccessStatusRequest: StaticStructureSchema;
|
|
@@ -202,8 +214,11 @@ export declare var PathComponent: StaticStructureSchema;
|
|
|
202
214
|
export declare var Peering: StaticStructureSchema;
|
|
203
215
|
export declare var PeeringError: StaticStructureSchema;
|
|
204
216
|
export declare var PermissionsErrorContext: StaticStructureSchema;
|
|
217
|
+
export declare var PrefixListAssociation: StaticStructureSchema;
|
|
205
218
|
export declare var ProposedNetworkFunctionGroupChange: StaticStructureSchema;
|
|
206
219
|
export declare var ProposedSegmentChange: StaticStructureSchema;
|
|
220
|
+
export declare var PutAttachmentRoutingPolicyLabelRequest: StaticStructureSchema;
|
|
221
|
+
export declare var PutAttachmentRoutingPolicyLabelResponse: StaticStructureSchema;
|
|
207
222
|
export declare var PutCoreNetworkPolicyRequest: StaticStructureSchema;
|
|
208
223
|
export declare var PutCoreNetworkPolicyResponse: StaticStructureSchema;
|
|
209
224
|
export declare var PutResourcePolicyRequest: StaticStructureSchema;
|
|
@@ -213,6 +228,8 @@ export declare var RegisterTransitGatewayResponse: StaticStructureSchema;
|
|
|
213
228
|
export declare var RejectAttachmentRequest: StaticStructureSchema;
|
|
214
229
|
export declare var RejectAttachmentResponse: StaticStructureSchema;
|
|
215
230
|
export declare var Relationship: StaticStructureSchema;
|
|
231
|
+
export declare var RemoveAttachmentRoutingPolicyLabelRequest: StaticStructureSchema;
|
|
232
|
+
export declare var RemoveAttachmentRoutingPolicyLabelResponse: StaticStructureSchema;
|
|
216
233
|
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
217
234
|
export declare var RestoreCoreNetworkPolicyVersionRequest: StaticStructureSchema;
|
|
218
235
|
export declare var RestoreCoreNetworkPolicyVersionResponse: StaticStructureSchema;
|
|
@@ -222,6 +239,8 @@ export declare var RouteAnalysisEndpointOptions: StaticStructureSchema;
|
|
|
222
239
|
export declare var RouteAnalysisEndpointOptionsSpecification: StaticStructureSchema;
|
|
223
240
|
export declare var RouteAnalysisPath: StaticStructureSchema;
|
|
224
241
|
export declare var RouteTableIdentifier: StaticStructureSchema;
|
|
242
|
+
export declare var RoutingInformationNextHop: StaticStructureSchema;
|
|
243
|
+
export declare var RoutingPolicyAssociationDetail: StaticStructureSchema;
|
|
225
244
|
export declare var ServiceInsertionAction: StaticStructureSchema;
|
|
226
245
|
export declare var ServiceInsertionSegments: StaticStructureSchema;
|
|
227
246
|
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
@@ -271,6 +290,7 @@ export declare var NetworkManagerServiceException: StaticErrorSchema;
|
|
|
271
290
|
export declare var AccountStatusList: StaticListSchema;
|
|
272
291
|
export declare var AttachmentErrorList: StaticListSchema;
|
|
273
292
|
export declare var AttachmentList: StaticListSchema;
|
|
293
|
+
export declare var AttachmentRoutingPolicyAssociationsList: StaticListSchema;
|
|
274
294
|
export declare var ConnectionIdList: number;
|
|
275
295
|
export declare var ConnectionList: StaticListSchema;
|
|
276
296
|
export declare var ConnectPeerAssociationList: StaticListSchema;
|
|
@@ -285,6 +305,7 @@ export declare var CoreNetworkEdgeList: StaticListSchema;
|
|
|
285
305
|
export declare var CoreNetworkNetworkFunctionGroupList: StaticListSchema;
|
|
286
306
|
export declare var CoreNetworkPolicyErrorList: StaticListSchema;
|
|
287
307
|
export declare var CoreNetworkPolicyVersionList: StaticListSchema;
|
|
308
|
+
export declare var CoreNetworkRoutingInformationList: StaticListSchema;
|
|
288
309
|
export declare var CoreNetworkSegmentList: StaticListSchema;
|
|
289
310
|
export declare var CoreNetworkSummaryList: StaticListSchema;
|
|
290
311
|
export declare var CustomerGatewayArnList: number;
|
|
@@ -309,9 +330,11 @@ export declare var NetworkTelemetryList: StaticListSchema;
|
|
|
309
330
|
export declare var PathComponentList: StaticListSchema;
|
|
310
331
|
export declare var PeeringErrorList: StaticListSchema;
|
|
311
332
|
export declare var PeeringList: StaticListSchema;
|
|
333
|
+
export declare var PrefixListAssociationList: StaticListSchema;
|
|
312
334
|
export declare var RelationshipList: StaticListSchema;
|
|
313
335
|
export declare var RouteStateList: number;
|
|
314
336
|
export declare var RouteTypeList: number;
|
|
337
|
+
export declare var RoutingPolicyAssociationDetailsList: StaticListSchema;
|
|
315
338
|
export declare var ServiceInsertionActionList: StaticListSchema;
|
|
316
339
|
export declare var SiteIdList: number;
|
|
317
340
|
export declare var SiteList: StaticListSchema;
|
|
@@ -338,6 +361,7 @@ export declare var CreateConnectAttachment: StaticOperationSchema;
|
|
|
338
361
|
export declare var CreateConnection: StaticOperationSchema;
|
|
339
362
|
export declare var CreateConnectPeer: StaticOperationSchema;
|
|
340
363
|
export declare var CreateCoreNetwork: StaticOperationSchema;
|
|
364
|
+
export declare var CreateCoreNetworkPrefixListAssociation: StaticOperationSchema;
|
|
341
365
|
export declare var CreateDevice: StaticOperationSchema;
|
|
342
366
|
export declare var CreateDirectConnectGatewayAttachment: StaticOperationSchema;
|
|
343
367
|
export declare var CreateGlobalNetwork: StaticOperationSchema;
|
|
@@ -352,6 +376,7 @@ export declare var DeleteConnection: StaticOperationSchema;
|
|
|
352
376
|
export declare var DeleteConnectPeer: StaticOperationSchema;
|
|
353
377
|
export declare var DeleteCoreNetwork: StaticOperationSchema;
|
|
354
378
|
export declare var DeleteCoreNetworkPolicyVersion: StaticOperationSchema;
|
|
379
|
+
export declare var DeleteCoreNetworkPrefixListAssociation: StaticOperationSchema;
|
|
355
380
|
export declare var DeleteDevice: StaticOperationSchema;
|
|
356
381
|
export declare var DeleteGlobalNetwork: StaticOperationSchema;
|
|
357
382
|
export declare var DeleteLink: StaticOperationSchema;
|
|
@@ -392,17 +417,22 @@ export declare var GetTransitGatewayPeering: StaticOperationSchema;
|
|
|
392
417
|
export declare var GetTransitGatewayRegistrations: StaticOperationSchema;
|
|
393
418
|
export declare var GetTransitGatewayRouteTableAttachment: StaticOperationSchema;
|
|
394
419
|
export declare var GetVpcAttachment: StaticOperationSchema;
|
|
420
|
+
export declare var ListAttachmentRoutingPolicyAssociations: StaticOperationSchema;
|
|
395
421
|
export declare var ListAttachments: StaticOperationSchema;
|
|
396
422
|
export declare var ListConnectPeers: StaticOperationSchema;
|
|
397
423
|
export declare var ListCoreNetworkPolicyVersions: StaticOperationSchema;
|
|
424
|
+
export declare var ListCoreNetworkPrefixListAssociations: StaticOperationSchema;
|
|
425
|
+
export declare var ListCoreNetworkRoutingInformation: StaticOperationSchema;
|
|
398
426
|
export declare var ListCoreNetworks: StaticOperationSchema;
|
|
399
427
|
export declare var ListOrganizationServiceAccessStatus: StaticOperationSchema;
|
|
400
428
|
export declare var ListPeerings: StaticOperationSchema;
|
|
401
429
|
export declare var ListTagsForResource: StaticOperationSchema;
|
|
430
|
+
export declare var PutAttachmentRoutingPolicyLabel: StaticOperationSchema;
|
|
402
431
|
export declare var PutCoreNetworkPolicy: StaticOperationSchema;
|
|
403
432
|
export declare var PutResourcePolicy: StaticOperationSchema;
|
|
404
433
|
export declare var RegisterTransitGateway: StaticOperationSchema;
|
|
405
434
|
export declare var RejectAttachment: StaticOperationSchema;
|
|
435
|
+
export declare var RemoveAttachmentRoutingPolicyLabel: StaticOperationSchema;
|
|
406
436
|
export declare var RestoreCoreNetworkPolicyVersion: StaticOperationSchema;
|
|
407
437
|
export declare var StartOrganizationServiceAccessUpdate: StaticOperationSchema;
|
|
408
438
|
export declare var StartRouteAnalysis: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-networkmanager",
|
|
3
3
|
"description": "AWS SDK for JavaScript Networkmanager Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.937.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-networkmanager",
|