@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
|
@@ -15,6 +15,7 @@ export declare var AssociateTransitGatewayConnectPeerRequest: StaticStructureSch
|
|
|
15
15
|
export declare var AssociateTransitGatewayConnectPeerResponse: StaticStructureSchema;
|
|
16
16
|
export declare var Attachment: StaticStructureSchema;
|
|
17
17
|
export declare var AttachmentError: StaticStructureSchema;
|
|
18
|
+
export declare var AttachmentRoutingPolicyAssociationSummary: StaticStructureSchema;
|
|
18
19
|
export declare var AWSLocation: StaticStructureSchema;
|
|
19
20
|
export declare var Bandwidth: StaticStructureSchema;
|
|
20
21
|
export declare var BgpOptions: StaticStructureSchema;
|
|
@@ -41,6 +42,7 @@ export declare var CoreNetworkPolicy: StaticStructureSchema;
|
|
|
41
42
|
export declare var CoreNetworkPolicyError: StaticStructureSchema;
|
|
42
43
|
export declare var CoreNetworkPolicyException: StaticErrorSchema;
|
|
43
44
|
export declare var CoreNetworkPolicyVersion: StaticStructureSchema;
|
|
45
|
+
export declare var CoreNetworkRoutingInformation: StaticStructureSchema;
|
|
44
46
|
export declare var CoreNetworkSegment: StaticStructureSchema;
|
|
45
47
|
export declare var CoreNetworkSegmentEdgeIdentifier: StaticStructureSchema;
|
|
46
48
|
export declare var CoreNetworkSummary: StaticStructureSchema;
|
|
@@ -50,6 +52,8 @@ export declare var CreateConnectionRequest: StaticStructureSchema;
|
|
|
50
52
|
export declare var CreateConnectionResponse: StaticStructureSchema;
|
|
51
53
|
export declare var CreateConnectPeerRequest: StaticStructureSchema;
|
|
52
54
|
export declare var CreateConnectPeerResponse: StaticStructureSchema;
|
|
55
|
+
export declare var CreateCoreNetworkPrefixListAssociationRequest: StaticStructureSchema;
|
|
56
|
+
export declare var CreateCoreNetworkPrefixListAssociationResponse: StaticStructureSchema;
|
|
53
57
|
export declare var CreateCoreNetworkRequest: StaticStructureSchema;
|
|
54
58
|
export declare var CreateCoreNetworkResponse: StaticStructureSchema;
|
|
55
59
|
export declare var CreateDeviceRequest: StaticStructureSchema;
|
|
@@ -79,6 +83,8 @@ export declare var DeleteConnectPeerRequest: StaticStructureSchema;
|
|
|
79
83
|
export declare var DeleteConnectPeerResponse: StaticStructureSchema;
|
|
80
84
|
export declare var DeleteCoreNetworkPolicyVersionRequest: StaticStructureSchema;
|
|
81
85
|
export declare var DeleteCoreNetworkPolicyVersionResponse: StaticStructureSchema;
|
|
86
|
+
export declare var DeleteCoreNetworkPrefixListAssociationRequest: StaticStructureSchema;
|
|
87
|
+
export declare var DeleteCoreNetworkPrefixListAssociationResponse: StaticStructureSchema;
|
|
82
88
|
export declare var DeleteCoreNetworkRequest: StaticStructureSchema;
|
|
83
89
|
export declare var DeleteCoreNetworkResponse: StaticStructureSchema;
|
|
84
90
|
export declare var DeleteDeviceRequest: StaticStructureSchema;
|
|
@@ -168,12 +174,18 @@ export declare var GlobalNetwork: StaticStructureSchema;
|
|
|
168
174
|
export declare var InternalServerException: StaticErrorSchema;
|
|
169
175
|
export declare var Link: StaticStructureSchema;
|
|
170
176
|
export declare var LinkAssociation: StaticStructureSchema;
|
|
177
|
+
export declare var ListAttachmentRoutingPolicyAssociationsRequest: StaticStructureSchema;
|
|
178
|
+
export declare var ListAttachmentRoutingPolicyAssociationsResponse: StaticStructureSchema;
|
|
171
179
|
export declare var ListAttachmentsRequest: StaticStructureSchema;
|
|
172
180
|
export declare var ListAttachmentsResponse: StaticStructureSchema;
|
|
173
181
|
export declare var ListConnectPeersRequest: StaticStructureSchema;
|
|
174
182
|
export declare var ListConnectPeersResponse: StaticStructureSchema;
|
|
175
183
|
export declare var ListCoreNetworkPolicyVersionsRequest: StaticStructureSchema;
|
|
176
184
|
export declare var ListCoreNetworkPolicyVersionsResponse: StaticStructureSchema;
|
|
185
|
+
export declare var ListCoreNetworkPrefixListAssociationsRequest: StaticStructureSchema;
|
|
186
|
+
export declare var ListCoreNetworkPrefixListAssociationsResponse: StaticStructureSchema;
|
|
187
|
+
export declare var ListCoreNetworkRoutingInformationRequest: StaticStructureSchema;
|
|
188
|
+
export declare var ListCoreNetworkRoutingInformationResponse: StaticStructureSchema;
|
|
177
189
|
export declare var ListCoreNetworksRequest: StaticStructureSchema;
|
|
178
190
|
export declare var ListCoreNetworksResponse: StaticStructureSchema;
|
|
179
191
|
export declare var ListOrganizationServiceAccessStatusRequest: StaticStructureSchema;
|
|
@@ -195,8 +207,11 @@ export declare var PathComponent: StaticStructureSchema;
|
|
|
195
207
|
export declare var Peering: StaticStructureSchema;
|
|
196
208
|
export declare var PeeringError: StaticStructureSchema;
|
|
197
209
|
export declare var PermissionsErrorContext: StaticStructureSchema;
|
|
210
|
+
export declare var PrefixListAssociation: StaticStructureSchema;
|
|
198
211
|
export declare var ProposedNetworkFunctionGroupChange: StaticStructureSchema;
|
|
199
212
|
export declare var ProposedSegmentChange: StaticStructureSchema;
|
|
213
|
+
export declare var PutAttachmentRoutingPolicyLabelRequest: StaticStructureSchema;
|
|
214
|
+
export declare var PutAttachmentRoutingPolicyLabelResponse: StaticStructureSchema;
|
|
200
215
|
export declare var PutCoreNetworkPolicyRequest: StaticStructureSchema;
|
|
201
216
|
export declare var PutCoreNetworkPolicyResponse: StaticStructureSchema;
|
|
202
217
|
export declare var PutResourcePolicyRequest: StaticStructureSchema;
|
|
@@ -206,6 +221,8 @@ export declare var RegisterTransitGatewayResponse: StaticStructureSchema;
|
|
|
206
221
|
export declare var RejectAttachmentRequest: StaticStructureSchema;
|
|
207
222
|
export declare var RejectAttachmentResponse: StaticStructureSchema;
|
|
208
223
|
export declare var Relationship: StaticStructureSchema;
|
|
224
|
+
export declare var RemoveAttachmentRoutingPolicyLabelRequest: StaticStructureSchema;
|
|
225
|
+
export declare var RemoveAttachmentRoutingPolicyLabelResponse: StaticStructureSchema;
|
|
209
226
|
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
210
227
|
export declare var RestoreCoreNetworkPolicyVersionRequest: StaticStructureSchema;
|
|
211
228
|
export declare var RestoreCoreNetworkPolicyVersionResponse: StaticStructureSchema;
|
|
@@ -215,6 +232,8 @@ export declare var RouteAnalysisEndpointOptions: StaticStructureSchema;
|
|
|
215
232
|
export declare var RouteAnalysisEndpointOptionsSpecification: StaticStructureSchema;
|
|
216
233
|
export declare var RouteAnalysisPath: StaticStructureSchema;
|
|
217
234
|
export declare var RouteTableIdentifier: StaticStructureSchema;
|
|
235
|
+
export declare var RoutingInformationNextHop: StaticStructureSchema;
|
|
236
|
+
export declare var RoutingPolicyAssociationDetail: StaticStructureSchema;
|
|
218
237
|
export declare var ServiceInsertionAction: StaticStructureSchema;
|
|
219
238
|
export declare var ServiceInsertionSegments: StaticStructureSchema;
|
|
220
239
|
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
@@ -264,6 +283,7 @@ export declare var NetworkManagerServiceException: StaticErrorSchema;
|
|
|
264
283
|
export declare var AccountStatusList: StaticListSchema;
|
|
265
284
|
export declare var AttachmentErrorList: StaticListSchema;
|
|
266
285
|
export declare var AttachmentList: StaticListSchema;
|
|
286
|
+
export declare var AttachmentRoutingPolicyAssociationsList: StaticListSchema;
|
|
267
287
|
export declare var ConnectionIdList: number;
|
|
268
288
|
export declare var ConnectionList: StaticListSchema;
|
|
269
289
|
export declare var ConnectPeerAssociationList: StaticListSchema;
|
|
@@ -278,6 +298,7 @@ export declare var CoreNetworkEdgeList: StaticListSchema;
|
|
|
278
298
|
export declare var CoreNetworkNetworkFunctionGroupList: StaticListSchema;
|
|
279
299
|
export declare var CoreNetworkPolicyErrorList: StaticListSchema;
|
|
280
300
|
export declare var CoreNetworkPolicyVersionList: StaticListSchema;
|
|
301
|
+
export declare var CoreNetworkRoutingInformationList: StaticListSchema;
|
|
281
302
|
export declare var CoreNetworkSegmentList: StaticListSchema;
|
|
282
303
|
export declare var CoreNetworkSummaryList: StaticListSchema;
|
|
283
304
|
export declare var CustomerGatewayArnList: number;
|
|
@@ -302,9 +323,11 @@ export declare var NetworkTelemetryList: StaticListSchema;
|
|
|
302
323
|
export declare var PathComponentList: StaticListSchema;
|
|
303
324
|
export declare var PeeringErrorList: StaticListSchema;
|
|
304
325
|
export declare var PeeringList: StaticListSchema;
|
|
326
|
+
export declare var PrefixListAssociationList: StaticListSchema;
|
|
305
327
|
export declare var RelationshipList: StaticListSchema;
|
|
306
328
|
export declare var RouteStateList: number;
|
|
307
329
|
export declare var RouteTypeList: number;
|
|
330
|
+
export declare var RoutingPolicyAssociationDetailsList: StaticListSchema;
|
|
308
331
|
export declare var ServiceInsertionActionList: StaticListSchema;
|
|
309
332
|
export declare var SiteIdList: number;
|
|
310
333
|
export declare var SiteList: StaticListSchema;
|
|
@@ -331,6 +354,7 @@ export declare var CreateConnectAttachment: StaticOperationSchema;
|
|
|
331
354
|
export declare var CreateConnection: StaticOperationSchema;
|
|
332
355
|
export declare var CreateConnectPeer: StaticOperationSchema;
|
|
333
356
|
export declare var CreateCoreNetwork: StaticOperationSchema;
|
|
357
|
+
export declare var CreateCoreNetworkPrefixListAssociation: StaticOperationSchema;
|
|
334
358
|
export declare var CreateDevice: StaticOperationSchema;
|
|
335
359
|
export declare var CreateDirectConnectGatewayAttachment: StaticOperationSchema;
|
|
336
360
|
export declare var CreateGlobalNetwork: StaticOperationSchema;
|
|
@@ -345,6 +369,7 @@ export declare var DeleteConnection: StaticOperationSchema;
|
|
|
345
369
|
export declare var DeleteConnectPeer: StaticOperationSchema;
|
|
346
370
|
export declare var DeleteCoreNetwork: StaticOperationSchema;
|
|
347
371
|
export declare var DeleteCoreNetworkPolicyVersion: StaticOperationSchema;
|
|
372
|
+
export declare var DeleteCoreNetworkPrefixListAssociation: StaticOperationSchema;
|
|
348
373
|
export declare var DeleteDevice: StaticOperationSchema;
|
|
349
374
|
export declare var DeleteGlobalNetwork: StaticOperationSchema;
|
|
350
375
|
export declare var DeleteLink: StaticOperationSchema;
|
|
@@ -385,17 +410,22 @@ export declare var GetTransitGatewayPeering: StaticOperationSchema;
|
|
|
385
410
|
export declare var GetTransitGatewayRegistrations: StaticOperationSchema;
|
|
386
411
|
export declare var GetTransitGatewayRouteTableAttachment: StaticOperationSchema;
|
|
387
412
|
export declare var GetVpcAttachment: StaticOperationSchema;
|
|
413
|
+
export declare var ListAttachmentRoutingPolicyAssociations: StaticOperationSchema;
|
|
388
414
|
export declare var ListAttachments: StaticOperationSchema;
|
|
389
415
|
export declare var ListConnectPeers: StaticOperationSchema;
|
|
390
416
|
export declare var ListCoreNetworkPolicyVersions: StaticOperationSchema;
|
|
417
|
+
export declare var ListCoreNetworkPrefixListAssociations: StaticOperationSchema;
|
|
418
|
+
export declare var ListCoreNetworkRoutingInformation: StaticOperationSchema;
|
|
391
419
|
export declare var ListCoreNetworks: StaticOperationSchema;
|
|
392
420
|
export declare var ListOrganizationServiceAccessStatus: StaticOperationSchema;
|
|
393
421
|
export declare var ListPeerings: StaticOperationSchema;
|
|
394
422
|
export declare var ListTagsForResource: StaticOperationSchema;
|
|
423
|
+
export declare var PutAttachmentRoutingPolicyLabel: StaticOperationSchema;
|
|
395
424
|
export declare var PutCoreNetworkPolicy: StaticOperationSchema;
|
|
396
425
|
export declare var PutResourcePolicy: StaticOperationSchema;
|
|
397
426
|
export declare var RegisterTransitGateway: StaticOperationSchema;
|
|
398
427
|
export declare var RejectAttachment: StaticOperationSchema;
|
|
428
|
+
export declare var RemoveAttachmentRoutingPolicyLabel: StaticOperationSchema;
|
|
399
429
|
export declare var RestoreCoreNetworkPolicyVersion: StaticOperationSchema;
|
|
400
430
|
export declare var StartOrganizationServiceAccessUpdate: StaticOperationSchema;
|
|
401
431
|
export declare var StartRouteAnalysis: StaticOperationSchema;
|
|
@@ -35,6 +35,10 @@ import {
|
|
|
35
35
|
CreateCoreNetworkCommandInput,
|
|
36
36
|
CreateCoreNetworkCommandOutput,
|
|
37
37
|
} from "./commands/CreateCoreNetworkCommand";
|
|
38
|
+
import {
|
|
39
|
+
CreateCoreNetworkPrefixListAssociationCommandInput,
|
|
40
|
+
CreateCoreNetworkPrefixListAssociationCommandOutput,
|
|
41
|
+
} from "./commands/CreateCoreNetworkPrefixListAssociationCommand";
|
|
38
42
|
import {
|
|
39
43
|
CreateDeviceCommandInput,
|
|
40
44
|
CreateDeviceCommandOutput,
|
|
@@ -91,6 +95,10 @@ import {
|
|
|
91
95
|
DeleteCoreNetworkPolicyVersionCommandInput,
|
|
92
96
|
DeleteCoreNetworkPolicyVersionCommandOutput,
|
|
93
97
|
} from "./commands/DeleteCoreNetworkPolicyVersionCommand";
|
|
98
|
+
import {
|
|
99
|
+
DeleteCoreNetworkPrefixListAssociationCommandInput,
|
|
100
|
+
DeleteCoreNetworkPrefixListAssociationCommandOutput,
|
|
101
|
+
} from "./commands/DeleteCoreNetworkPrefixListAssociationCommand";
|
|
94
102
|
import {
|
|
95
103
|
DeleteDeviceCommandInput,
|
|
96
104
|
DeleteDeviceCommandOutput,
|
|
@@ -251,6 +259,10 @@ import {
|
|
|
251
259
|
GetVpcAttachmentCommandInput,
|
|
252
260
|
GetVpcAttachmentCommandOutput,
|
|
253
261
|
} from "./commands/GetVpcAttachmentCommand";
|
|
262
|
+
import {
|
|
263
|
+
ListAttachmentRoutingPolicyAssociationsCommandInput,
|
|
264
|
+
ListAttachmentRoutingPolicyAssociationsCommandOutput,
|
|
265
|
+
} from "./commands/ListAttachmentRoutingPolicyAssociationsCommand";
|
|
254
266
|
import {
|
|
255
267
|
ListAttachmentsCommandInput,
|
|
256
268
|
ListAttachmentsCommandOutput,
|
|
@@ -263,6 +275,14 @@ import {
|
|
|
263
275
|
ListCoreNetworkPolicyVersionsCommandInput,
|
|
264
276
|
ListCoreNetworkPolicyVersionsCommandOutput,
|
|
265
277
|
} from "./commands/ListCoreNetworkPolicyVersionsCommand";
|
|
278
|
+
import {
|
|
279
|
+
ListCoreNetworkPrefixListAssociationsCommandInput,
|
|
280
|
+
ListCoreNetworkPrefixListAssociationsCommandOutput,
|
|
281
|
+
} from "./commands/ListCoreNetworkPrefixListAssociationsCommand";
|
|
282
|
+
import {
|
|
283
|
+
ListCoreNetworkRoutingInformationCommandInput,
|
|
284
|
+
ListCoreNetworkRoutingInformationCommandOutput,
|
|
285
|
+
} from "./commands/ListCoreNetworkRoutingInformationCommand";
|
|
266
286
|
import {
|
|
267
287
|
ListCoreNetworksCommandInput,
|
|
268
288
|
ListCoreNetworksCommandOutput,
|
|
@@ -279,6 +299,10 @@ import {
|
|
|
279
299
|
ListTagsForResourceCommandInput,
|
|
280
300
|
ListTagsForResourceCommandOutput,
|
|
281
301
|
} from "./commands/ListTagsForResourceCommand";
|
|
302
|
+
import {
|
|
303
|
+
PutAttachmentRoutingPolicyLabelCommandInput,
|
|
304
|
+
PutAttachmentRoutingPolicyLabelCommandOutput,
|
|
305
|
+
} from "./commands/PutAttachmentRoutingPolicyLabelCommand";
|
|
282
306
|
import {
|
|
283
307
|
PutCoreNetworkPolicyCommandInput,
|
|
284
308
|
PutCoreNetworkPolicyCommandOutput,
|
|
@@ -295,6 +319,10 @@ import {
|
|
|
295
319
|
RejectAttachmentCommandInput,
|
|
296
320
|
RejectAttachmentCommandOutput,
|
|
297
321
|
} from "./commands/RejectAttachmentCommand";
|
|
322
|
+
import {
|
|
323
|
+
RemoveAttachmentRoutingPolicyLabelCommandInput,
|
|
324
|
+
RemoveAttachmentRoutingPolicyLabelCommandOutput,
|
|
325
|
+
} from "./commands/RemoveAttachmentRoutingPolicyLabelCommand";
|
|
298
326
|
import {
|
|
299
327
|
RestoreCoreNetworkPolicyVersionCommandInput,
|
|
300
328
|
RestoreCoreNetworkPolicyVersionCommandOutput,
|
|
@@ -476,6 +504,25 @@ export interface NetworkManager {
|
|
|
476
504
|
options: __HttpHandlerOptions,
|
|
477
505
|
cb: (err: any, data?: CreateCoreNetworkCommandOutput) => void
|
|
478
506
|
): void;
|
|
507
|
+
createCoreNetworkPrefixListAssociation(
|
|
508
|
+
args: CreateCoreNetworkPrefixListAssociationCommandInput,
|
|
509
|
+
options?: __HttpHandlerOptions
|
|
510
|
+
): Promise<CreateCoreNetworkPrefixListAssociationCommandOutput>;
|
|
511
|
+
createCoreNetworkPrefixListAssociation(
|
|
512
|
+
args: CreateCoreNetworkPrefixListAssociationCommandInput,
|
|
513
|
+
cb: (
|
|
514
|
+
err: any,
|
|
515
|
+
data?: CreateCoreNetworkPrefixListAssociationCommandOutput
|
|
516
|
+
) => void
|
|
517
|
+
): void;
|
|
518
|
+
createCoreNetworkPrefixListAssociation(
|
|
519
|
+
args: CreateCoreNetworkPrefixListAssociationCommandInput,
|
|
520
|
+
options: __HttpHandlerOptions,
|
|
521
|
+
cb: (
|
|
522
|
+
err: any,
|
|
523
|
+
data?: CreateCoreNetworkPrefixListAssociationCommandOutput
|
|
524
|
+
) => void
|
|
525
|
+
): void;
|
|
479
526
|
createDevice(
|
|
480
527
|
args: CreateDeviceCommandInput,
|
|
481
528
|
options?: __HttpHandlerOptions
|
|
@@ -671,6 +718,25 @@ export interface NetworkManager {
|
|
|
671
718
|
options: __HttpHandlerOptions,
|
|
672
719
|
cb: (err: any, data?: DeleteCoreNetworkPolicyVersionCommandOutput) => void
|
|
673
720
|
): void;
|
|
721
|
+
deleteCoreNetworkPrefixListAssociation(
|
|
722
|
+
args: DeleteCoreNetworkPrefixListAssociationCommandInput,
|
|
723
|
+
options?: __HttpHandlerOptions
|
|
724
|
+
): Promise<DeleteCoreNetworkPrefixListAssociationCommandOutput>;
|
|
725
|
+
deleteCoreNetworkPrefixListAssociation(
|
|
726
|
+
args: DeleteCoreNetworkPrefixListAssociationCommandInput,
|
|
727
|
+
cb: (
|
|
728
|
+
err: any,
|
|
729
|
+
data?: DeleteCoreNetworkPrefixListAssociationCommandOutput
|
|
730
|
+
) => void
|
|
731
|
+
): void;
|
|
732
|
+
deleteCoreNetworkPrefixListAssociation(
|
|
733
|
+
args: DeleteCoreNetworkPrefixListAssociationCommandInput,
|
|
734
|
+
options: __HttpHandlerOptions,
|
|
735
|
+
cb: (
|
|
736
|
+
err: any,
|
|
737
|
+
data?: DeleteCoreNetworkPrefixListAssociationCommandOutput
|
|
738
|
+
) => void
|
|
739
|
+
): void;
|
|
674
740
|
deleteDevice(
|
|
675
741
|
args: DeleteDeviceCommandInput,
|
|
676
742
|
options?: __HttpHandlerOptions
|
|
@@ -1216,6 +1282,25 @@ export interface NetworkManager {
|
|
|
1216
1282
|
options: __HttpHandlerOptions,
|
|
1217
1283
|
cb: (err: any, data?: GetVpcAttachmentCommandOutput) => void
|
|
1218
1284
|
): void;
|
|
1285
|
+
listAttachmentRoutingPolicyAssociations(
|
|
1286
|
+
args: ListAttachmentRoutingPolicyAssociationsCommandInput,
|
|
1287
|
+
options?: __HttpHandlerOptions
|
|
1288
|
+
): Promise<ListAttachmentRoutingPolicyAssociationsCommandOutput>;
|
|
1289
|
+
listAttachmentRoutingPolicyAssociations(
|
|
1290
|
+
args: ListAttachmentRoutingPolicyAssociationsCommandInput,
|
|
1291
|
+
cb: (
|
|
1292
|
+
err: any,
|
|
1293
|
+
data?: ListAttachmentRoutingPolicyAssociationsCommandOutput
|
|
1294
|
+
) => void
|
|
1295
|
+
): void;
|
|
1296
|
+
listAttachmentRoutingPolicyAssociations(
|
|
1297
|
+
args: ListAttachmentRoutingPolicyAssociationsCommandInput,
|
|
1298
|
+
options: __HttpHandlerOptions,
|
|
1299
|
+
cb: (
|
|
1300
|
+
err: any,
|
|
1301
|
+
data?: ListAttachmentRoutingPolicyAssociationsCommandOutput
|
|
1302
|
+
) => void
|
|
1303
|
+
): void;
|
|
1219
1304
|
listAttachments(): Promise<ListAttachmentsCommandOutput>;
|
|
1220
1305
|
listAttachments(
|
|
1221
1306
|
args: ListAttachmentsCommandInput,
|
|
@@ -1257,6 +1342,44 @@ export interface NetworkManager {
|
|
|
1257
1342
|
options: __HttpHandlerOptions,
|
|
1258
1343
|
cb: (err: any, data?: ListCoreNetworkPolicyVersionsCommandOutput) => void
|
|
1259
1344
|
): void;
|
|
1345
|
+
listCoreNetworkPrefixListAssociations(
|
|
1346
|
+
args: ListCoreNetworkPrefixListAssociationsCommandInput,
|
|
1347
|
+
options?: __HttpHandlerOptions
|
|
1348
|
+
): Promise<ListCoreNetworkPrefixListAssociationsCommandOutput>;
|
|
1349
|
+
listCoreNetworkPrefixListAssociations(
|
|
1350
|
+
args: ListCoreNetworkPrefixListAssociationsCommandInput,
|
|
1351
|
+
cb: (
|
|
1352
|
+
err: any,
|
|
1353
|
+
data?: ListCoreNetworkPrefixListAssociationsCommandOutput
|
|
1354
|
+
) => void
|
|
1355
|
+
): void;
|
|
1356
|
+
listCoreNetworkPrefixListAssociations(
|
|
1357
|
+
args: ListCoreNetworkPrefixListAssociationsCommandInput,
|
|
1358
|
+
options: __HttpHandlerOptions,
|
|
1359
|
+
cb: (
|
|
1360
|
+
err: any,
|
|
1361
|
+
data?: ListCoreNetworkPrefixListAssociationsCommandOutput
|
|
1362
|
+
) => void
|
|
1363
|
+
): void;
|
|
1364
|
+
listCoreNetworkRoutingInformation(
|
|
1365
|
+
args: ListCoreNetworkRoutingInformationCommandInput,
|
|
1366
|
+
options?: __HttpHandlerOptions
|
|
1367
|
+
): Promise<ListCoreNetworkRoutingInformationCommandOutput>;
|
|
1368
|
+
listCoreNetworkRoutingInformation(
|
|
1369
|
+
args: ListCoreNetworkRoutingInformationCommandInput,
|
|
1370
|
+
cb: (
|
|
1371
|
+
err: any,
|
|
1372
|
+
data?: ListCoreNetworkRoutingInformationCommandOutput
|
|
1373
|
+
) => void
|
|
1374
|
+
): void;
|
|
1375
|
+
listCoreNetworkRoutingInformation(
|
|
1376
|
+
args: ListCoreNetworkRoutingInformationCommandInput,
|
|
1377
|
+
options: __HttpHandlerOptions,
|
|
1378
|
+
cb: (
|
|
1379
|
+
err: any,
|
|
1380
|
+
data?: ListCoreNetworkRoutingInformationCommandOutput
|
|
1381
|
+
) => void
|
|
1382
|
+
): void;
|
|
1260
1383
|
listCoreNetworks(): Promise<ListCoreNetworksCommandOutput>;
|
|
1261
1384
|
listCoreNetworks(
|
|
1262
1385
|
args: ListCoreNetworksCommandInput,
|
|
@@ -1318,6 +1441,19 @@ export interface NetworkManager {
|
|
|
1318
1441
|
options: __HttpHandlerOptions,
|
|
1319
1442
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
1320
1443
|
): void;
|
|
1444
|
+
putAttachmentRoutingPolicyLabel(
|
|
1445
|
+
args: PutAttachmentRoutingPolicyLabelCommandInput,
|
|
1446
|
+
options?: __HttpHandlerOptions
|
|
1447
|
+
): Promise<PutAttachmentRoutingPolicyLabelCommandOutput>;
|
|
1448
|
+
putAttachmentRoutingPolicyLabel(
|
|
1449
|
+
args: PutAttachmentRoutingPolicyLabelCommandInput,
|
|
1450
|
+
cb: (err: any, data?: PutAttachmentRoutingPolicyLabelCommandOutput) => void
|
|
1451
|
+
): void;
|
|
1452
|
+
putAttachmentRoutingPolicyLabel(
|
|
1453
|
+
args: PutAttachmentRoutingPolicyLabelCommandInput,
|
|
1454
|
+
options: __HttpHandlerOptions,
|
|
1455
|
+
cb: (err: any, data?: PutAttachmentRoutingPolicyLabelCommandOutput) => void
|
|
1456
|
+
): void;
|
|
1321
1457
|
putCoreNetworkPolicy(
|
|
1322
1458
|
args: PutCoreNetworkPolicyCommandInput,
|
|
1323
1459
|
options?: __HttpHandlerOptions
|
|
@@ -1370,6 +1506,25 @@ export interface NetworkManager {
|
|
|
1370
1506
|
options: __HttpHandlerOptions,
|
|
1371
1507
|
cb: (err: any, data?: RejectAttachmentCommandOutput) => void
|
|
1372
1508
|
): void;
|
|
1509
|
+
removeAttachmentRoutingPolicyLabel(
|
|
1510
|
+
args: RemoveAttachmentRoutingPolicyLabelCommandInput,
|
|
1511
|
+
options?: __HttpHandlerOptions
|
|
1512
|
+
): Promise<RemoveAttachmentRoutingPolicyLabelCommandOutput>;
|
|
1513
|
+
removeAttachmentRoutingPolicyLabel(
|
|
1514
|
+
args: RemoveAttachmentRoutingPolicyLabelCommandInput,
|
|
1515
|
+
cb: (
|
|
1516
|
+
err: any,
|
|
1517
|
+
data?: RemoveAttachmentRoutingPolicyLabelCommandOutput
|
|
1518
|
+
) => void
|
|
1519
|
+
): void;
|
|
1520
|
+
removeAttachmentRoutingPolicyLabel(
|
|
1521
|
+
args: RemoveAttachmentRoutingPolicyLabelCommandInput,
|
|
1522
|
+
options: __HttpHandlerOptions,
|
|
1523
|
+
cb: (
|
|
1524
|
+
err: any,
|
|
1525
|
+
data?: RemoveAttachmentRoutingPolicyLabelCommandOutput
|
|
1526
|
+
) => void
|
|
1527
|
+
): void;
|
|
1373
1528
|
restoreCoreNetworkPolicyVersion(
|
|
1374
1529
|
args: RestoreCoreNetworkPolicyVersionCommandInput,
|
|
1375
1530
|
options?: __HttpHandlerOptions
|
|
@@ -84,6 +84,10 @@ import {
|
|
|
84
84
|
CreateCoreNetworkCommandInput,
|
|
85
85
|
CreateCoreNetworkCommandOutput,
|
|
86
86
|
} from "./commands/CreateCoreNetworkCommand";
|
|
87
|
+
import {
|
|
88
|
+
CreateCoreNetworkPrefixListAssociationCommandInput,
|
|
89
|
+
CreateCoreNetworkPrefixListAssociationCommandOutput,
|
|
90
|
+
} from "./commands/CreateCoreNetworkPrefixListAssociationCommand";
|
|
87
91
|
import {
|
|
88
92
|
CreateDeviceCommandInput,
|
|
89
93
|
CreateDeviceCommandOutput,
|
|
@@ -140,6 +144,10 @@ import {
|
|
|
140
144
|
DeleteCoreNetworkPolicyVersionCommandInput,
|
|
141
145
|
DeleteCoreNetworkPolicyVersionCommandOutput,
|
|
142
146
|
} from "./commands/DeleteCoreNetworkPolicyVersionCommand";
|
|
147
|
+
import {
|
|
148
|
+
DeleteCoreNetworkPrefixListAssociationCommandInput,
|
|
149
|
+
DeleteCoreNetworkPrefixListAssociationCommandOutput,
|
|
150
|
+
} from "./commands/DeleteCoreNetworkPrefixListAssociationCommand";
|
|
143
151
|
import {
|
|
144
152
|
DeleteDeviceCommandInput,
|
|
145
153
|
DeleteDeviceCommandOutput,
|
|
@@ -300,6 +308,10 @@ import {
|
|
|
300
308
|
GetVpcAttachmentCommandInput,
|
|
301
309
|
GetVpcAttachmentCommandOutput,
|
|
302
310
|
} from "./commands/GetVpcAttachmentCommand";
|
|
311
|
+
import {
|
|
312
|
+
ListAttachmentRoutingPolicyAssociationsCommandInput,
|
|
313
|
+
ListAttachmentRoutingPolicyAssociationsCommandOutput,
|
|
314
|
+
} from "./commands/ListAttachmentRoutingPolicyAssociationsCommand";
|
|
303
315
|
import {
|
|
304
316
|
ListAttachmentsCommandInput,
|
|
305
317
|
ListAttachmentsCommandOutput,
|
|
@@ -312,6 +324,14 @@ import {
|
|
|
312
324
|
ListCoreNetworkPolicyVersionsCommandInput,
|
|
313
325
|
ListCoreNetworkPolicyVersionsCommandOutput,
|
|
314
326
|
} from "./commands/ListCoreNetworkPolicyVersionsCommand";
|
|
327
|
+
import {
|
|
328
|
+
ListCoreNetworkPrefixListAssociationsCommandInput,
|
|
329
|
+
ListCoreNetworkPrefixListAssociationsCommandOutput,
|
|
330
|
+
} from "./commands/ListCoreNetworkPrefixListAssociationsCommand";
|
|
331
|
+
import {
|
|
332
|
+
ListCoreNetworkRoutingInformationCommandInput,
|
|
333
|
+
ListCoreNetworkRoutingInformationCommandOutput,
|
|
334
|
+
} from "./commands/ListCoreNetworkRoutingInformationCommand";
|
|
315
335
|
import {
|
|
316
336
|
ListCoreNetworksCommandInput,
|
|
317
337
|
ListCoreNetworksCommandOutput,
|
|
@@ -328,6 +348,10 @@ import {
|
|
|
328
348
|
ListTagsForResourceCommandInput,
|
|
329
349
|
ListTagsForResourceCommandOutput,
|
|
330
350
|
} from "./commands/ListTagsForResourceCommand";
|
|
351
|
+
import {
|
|
352
|
+
PutAttachmentRoutingPolicyLabelCommandInput,
|
|
353
|
+
PutAttachmentRoutingPolicyLabelCommandOutput,
|
|
354
|
+
} from "./commands/PutAttachmentRoutingPolicyLabelCommand";
|
|
331
355
|
import {
|
|
332
356
|
PutCoreNetworkPolicyCommandInput,
|
|
333
357
|
PutCoreNetworkPolicyCommandOutput,
|
|
@@ -344,6 +368,10 @@ import {
|
|
|
344
368
|
RejectAttachmentCommandInput,
|
|
345
369
|
RejectAttachmentCommandOutput,
|
|
346
370
|
} from "./commands/RejectAttachmentCommand";
|
|
371
|
+
import {
|
|
372
|
+
RemoveAttachmentRoutingPolicyLabelCommandInput,
|
|
373
|
+
RemoveAttachmentRoutingPolicyLabelCommandOutput,
|
|
374
|
+
} from "./commands/RemoveAttachmentRoutingPolicyLabelCommand";
|
|
347
375
|
import {
|
|
348
376
|
RestoreCoreNetworkPolicyVersionCommandInput,
|
|
349
377
|
RestoreCoreNetworkPolicyVersionCommandOutput,
|
|
@@ -417,6 +445,7 @@ export type ServiceInputTypes =
|
|
|
417
445
|
| CreateConnectPeerCommandInput
|
|
418
446
|
| CreateConnectionCommandInput
|
|
419
447
|
| CreateCoreNetworkCommandInput
|
|
448
|
+
| CreateCoreNetworkPrefixListAssociationCommandInput
|
|
420
449
|
| CreateDeviceCommandInput
|
|
421
450
|
| CreateDirectConnectGatewayAttachmentCommandInput
|
|
422
451
|
| CreateGlobalNetworkCommandInput
|
|
@@ -431,6 +460,7 @@ export type ServiceInputTypes =
|
|
|
431
460
|
| DeleteConnectionCommandInput
|
|
432
461
|
| DeleteCoreNetworkCommandInput
|
|
433
462
|
| DeleteCoreNetworkPolicyVersionCommandInput
|
|
463
|
+
| DeleteCoreNetworkPrefixListAssociationCommandInput
|
|
434
464
|
| DeleteDeviceCommandInput
|
|
435
465
|
| DeleteGlobalNetworkCommandInput
|
|
436
466
|
| DeleteLinkCommandInput
|
|
@@ -471,17 +501,22 @@ export type ServiceInputTypes =
|
|
|
471
501
|
| GetTransitGatewayRegistrationsCommandInput
|
|
472
502
|
| GetTransitGatewayRouteTableAttachmentCommandInput
|
|
473
503
|
| GetVpcAttachmentCommandInput
|
|
504
|
+
| ListAttachmentRoutingPolicyAssociationsCommandInput
|
|
474
505
|
| ListAttachmentsCommandInput
|
|
475
506
|
| ListConnectPeersCommandInput
|
|
476
507
|
| ListCoreNetworkPolicyVersionsCommandInput
|
|
508
|
+
| ListCoreNetworkPrefixListAssociationsCommandInput
|
|
509
|
+
| ListCoreNetworkRoutingInformationCommandInput
|
|
477
510
|
| ListCoreNetworksCommandInput
|
|
478
511
|
| ListOrganizationServiceAccessStatusCommandInput
|
|
479
512
|
| ListPeeringsCommandInput
|
|
480
513
|
| ListTagsForResourceCommandInput
|
|
514
|
+
| PutAttachmentRoutingPolicyLabelCommandInput
|
|
481
515
|
| PutCoreNetworkPolicyCommandInput
|
|
482
516
|
| PutResourcePolicyCommandInput
|
|
483
517
|
| RegisterTransitGatewayCommandInput
|
|
484
518
|
| RejectAttachmentCommandInput
|
|
519
|
+
| RemoveAttachmentRoutingPolicyLabelCommandInput
|
|
485
520
|
| RestoreCoreNetworkPolicyVersionCommandInput
|
|
486
521
|
| StartOrganizationServiceAccessUpdateCommandInput
|
|
487
522
|
| StartRouteAnalysisCommandInput
|
|
@@ -506,6 +541,7 @@ export type ServiceOutputTypes =
|
|
|
506
541
|
| CreateConnectPeerCommandOutput
|
|
507
542
|
| CreateConnectionCommandOutput
|
|
508
543
|
| CreateCoreNetworkCommandOutput
|
|
544
|
+
| CreateCoreNetworkPrefixListAssociationCommandOutput
|
|
509
545
|
| CreateDeviceCommandOutput
|
|
510
546
|
| CreateDirectConnectGatewayAttachmentCommandOutput
|
|
511
547
|
| CreateGlobalNetworkCommandOutput
|
|
@@ -520,6 +556,7 @@ export type ServiceOutputTypes =
|
|
|
520
556
|
| DeleteConnectionCommandOutput
|
|
521
557
|
| DeleteCoreNetworkCommandOutput
|
|
522
558
|
| DeleteCoreNetworkPolicyVersionCommandOutput
|
|
559
|
+
| DeleteCoreNetworkPrefixListAssociationCommandOutput
|
|
523
560
|
| DeleteDeviceCommandOutput
|
|
524
561
|
| DeleteGlobalNetworkCommandOutput
|
|
525
562
|
| DeleteLinkCommandOutput
|
|
@@ -560,17 +597,22 @@ export type ServiceOutputTypes =
|
|
|
560
597
|
| GetTransitGatewayRegistrationsCommandOutput
|
|
561
598
|
| GetTransitGatewayRouteTableAttachmentCommandOutput
|
|
562
599
|
| GetVpcAttachmentCommandOutput
|
|
600
|
+
| ListAttachmentRoutingPolicyAssociationsCommandOutput
|
|
563
601
|
| ListAttachmentsCommandOutput
|
|
564
602
|
| ListConnectPeersCommandOutput
|
|
565
603
|
| ListCoreNetworkPolicyVersionsCommandOutput
|
|
604
|
+
| ListCoreNetworkPrefixListAssociationsCommandOutput
|
|
605
|
+
| ListCoreNetworkRoutingInformationCommandOutput
|
|
566
606
|
| ListCoreNetworksCommandOutput
|
|
567
607
|
| ListOrganizationServiceAccessStatusCommandOutput
|
|
568
608
|
| ListPeeringsCommandOutput
|
|
569
609
|
| ListTagsForResourceCommandOutput
|
|
610
|
+
| PutAttachmentRoutingPolicyLabelCommandOutput
|
|
570
611
|
| PutCoreNetworkPolicyCommandOutput
|
|
571
612
|
| PutResourcePolicyCommandOutput
|
|
572
613
|
| RegisterTransitGatewayCommandOutput
|
|
573
614
|
| RejectAttachmentCommandOutput
|
|
615
|
+
| RemoveAttachmentRoutingPolicyLabelCommandOutput
|
|
574
616
|
| RestoreCoreNetworkPolicyVersionCommandOutput
|
|
575
617
|
| StartOrganizationServiceAccessUpdateCommandOutput
|
|
576
618
|
| StartRouteAnalysisCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateCoreNetworkPrefixListAssociationRequest,
|
|
5
|
+
CreateCoreNetworkPrefixListAssociationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NetworkManagerClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NetworkManagerClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateCoreNetworkPrefixListAssociationCommandInput
|
|
15
|
+
extends CreateCoreNetworkPrefixListAssociationRequest {}
|
|
16
|
+
export interface CreateCoreNetworkPrefixListAssociationCommandOutput
|
|
17
|
+
extends CreateCoreNetworkPrefixListAssociationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateCoreNetworkPrefixListAssociationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateCoreNetworkPrefixListAssociationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateCoreNetworkPrefixListAssociationCommandInput,
|
|
24
|
+
CreateCoreNetworkPrefixListAssociationCommandOutput,
|
|
25
|
+
NetworkManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateCoreNetworkPrefixListAssociationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateCoreNetworkPrefixListAssociationCommandInput,
|
|
33
|
+
CreateCoreNetworkPrefixListAssociationCommandOutput,
|
|
34
|
+
NetworkManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateCoreNetworkPrefixListAssociationCommand extends CreateCoreNetworkPrefixListAssociationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateCoreNetworkPrefixListAssociationRequest;
|
|
44
|
+
output: CreateCoreNetworkPrefixListAssociationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateCoreNetworkPrefixListAssociationCommandInput;
|
|
48
|
+
output: CreateCoreNetworkPrefixListAssociationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteCoreNetworkPrefixListAssociationRequest,
|
|
5
|
+
DeleteCoreNetworkPrefixListAssociationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NetworkManagerClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NetworkManagerClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteCoreNetworkPrefixListAssociationCommandInput
|
|
15
|
+
extends DeleteCoreNetworkPrefixListAssociationRequest {}
|
|
16
|
+
export interface DeleteCoreNetworkPrefixListAssociationCommandOutput
|
|
17
|
+
extends DeleteCoreNetworkPrefixListAssociationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteCoreNetworkPrefixListAssociationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteCoreNetworkPrefixListAssociationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteCoreNetworkPrefixListAssociationCommandInput,
|
|
24
|
+
DeleteCoreNetworkPrefixListAssociationCommandOutput,
|
|
25
|
+
NetworkManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteCoreNetworkPrefixListAssociationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteCoreNetworkPrefixListAssociationCommandInput,
|
|
33
|
+
DeleteCoreNetworkPrefixListAssociationCommandOutput,
|
|
34
|
+
NetworkManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteCoreNetworkPrefixListAssociationCommand extends DeleteCoreNetworkPrefixListAssociationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteCoreNetworkPrefixListAssociationRequest;
|
|
44
|
+
output: DeleteCoreNetworkPrefixListAssociationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteCoreNetworkPrefixListAssociationCommandInput;
|
|
48
|
+
output: DeleteCoreNetworkPrefixListAssociationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListAttachmentRoutingPolicyAssociationsRequest,
|
|
5
|
+
ListAttachmentRoutingPolicyAssociationsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NetworkManagerClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NetworkManagerClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListAttachmentRoutingPolicyAssociationsCommandInput
|
|
15
|
+
extends ListAttachmentRoutingPolicyAssociationsRequest {}
|
|
16
|
+
export interface ListAttachmentRoutingPolicyAssociationsCommandOutput
|
|
17
|
+
extends ListAttachmentRoutingPolicyAssociationsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListAttachmentRoutingPolicyAssociationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListAttachmentRoutingPolicyAssociationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListAttachmentRoutingPolicyAssociationsCommandInput,
|
|
24
|
+
ListAttachmentRoutingPolicyAssociationsCommandOutput,
|
|
25
|
+
NetworkManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListAttachmentRoutingPolicyAssociationsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListAttachmentRoutingPolicyAssociationsCommandInput,
|
|
33
|
+
ListAttachmentRoutingPolicyAssociationsCommandOutput,
|
|
34
|
+
NetworkManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListAttachmentRoutingPolicyAssociationsCommand extends ListAttachmentRoutingPolicyAssociationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListAttachmentRoutingPolicyAssociationsRequest;
|
|
44
|
+
output: ListAttachmentRoutingPolicyAssociationsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListAttachmentRoutingPolicyAssociationsCommandInput;
|
|
48
|
+
output: ListAttachmentRoutingPolicyAssociationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|