@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
|
@@ -8,6 +8,7 @@ import { CreateConnectAttachmentCommandInput, CreateConnectAttachmentCommandOutp
|
|
|
8
8
|
import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "./commands/CreateConnectionCommand";
|
|
9
9
|
import { CreateConnectPeerCommandInput, CreateConnectPeerCommandOutput } from "./commands/CreateConnectPeerCommand";
|
|
10
10
|
import { CreateCoreNetworkCommandInput, CreateCoreNetworkCommandOutput } from "./commands/CreateCoreNetworkCommand";
|
|
11
|
+
import { CreateCoreNetworkPrefixListAssociationCommandInput, CreateCoreNetworkPrefixListAssociationCommandOutput } from "./commands/CreateCoreNetworkPrefixListAssociationCommand";
|
|
11
12
|
import { CreateDeviceCommandInput, CreateDeviceCommandOutput } from "./commands/CreateDeviceCommand";
|
|
12
13
|
import { CreateDirectConnectGatewayAttachmentCommandInput, CreateDirectConnectGatewayAttachmentCommandOutput } from "./commands/CreateDirectConnectGatewayAttachmentCommand";
|
|
13
14
|
import { CreateGlobalNetworkCommandInput, CreateGlobalNetworkCommandOutput } from "./commands/CreateGlobalNetworkCommand";
|
|
@@ -22,6 +23,7 @@ import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "./c
|
|
|
22
23
|
import { DeleteConnectPeerCommandInput, DeleteConnectPeerCommandOutput } from "./commands/DeleteConnectPeerCommand";
|
|
23
24
|
import { DeleteCoreNetworkCommandInput, DeleteCoreNetworkCommandOutput } from "./commands/DeleteCoreNetworkCommand";
|
|
24
25
|
import { DeleteCoreNetworkPolicyVersionCommandInput, DeleteCoreNetworkPolicyVersionCommandOutput } from "./commands/DeleteCoreNetworkPolicyVersionCommand";
|
|
26
|
+
import { DeleteCoreNetworkPrefixListAssociationCommandInput, DeleteCoreNetworkPrefixListAssociationCommandOutput } from "./commands/DeleteCoreNetworkPrefixListAssociationCommand";
|
|
25
27
|
import { DeleteDeviceCommandInput, DeleteDeviceCommandOutput } from "./commands/DeleteDeviceCommand";
|
|
26
28
|
import { DeleteGlobalNetworkCommandInput, DeleteGlobalNetworkCommandOutput } from "./commands/DeleteGlobalNetworkCommand";
|
|
27
29
|
import { DeleteLinkCommandInput, DeleteLinkCommandOutput } from "./commands/DeleteLinkCommand";
|
|
@@ -62,17 +64,22 @@ import { GetTransitGatewayPeeringCommandInput, GetTransitGatewayPeeringCommandOu
|
|
|
62
64
|
import { GetTransitGatewayRegistrationsCommandInput, GetTransitGatewayRegistrationsCommandOutput } from "./commands/GetTransitGatewayRegistrationsCommand";
|
|
63
65
|
import { GetTransitGatewayRouteTableAttachmentCommandInput, GetTransitGatewayRouteTableAttachmentCommandOutput } from "./commands/GetTransitGatewayRouteTableAttachmentCommand";
|
|
64
66
|
import { GetVpcAttachmentCommandInput, GetVpcAttachmentCommandOutput } from "./commands/GetVpcAttachmentCommand";
|
|
67
|
+
import { ListAttachmentRoutingPolicyAssociationsCommandInput, ListAttachmentRoutingPolicyAssociationsCommandOutput } from "./commands/ListAttachmentRoutingPolicyAssociationsCommand";
|
|
65
68
|
import { ListAttachmentsCommandInput, ListAttachmentsCommandOutput } from "./commands/ListAttachmentsCommand";
|
|
66
69
|
import { ListConnectPeersCommandInput, ListConnectPeersCommandOutput } from "./commands/ListConnectPeersCommand";
|
|
67
70
|
import { ListCoreNetworkPolicyVersionsCommandInput, ListCoreNetworkPolicyVersionsCommandOutput } from "./commands/ListCoreNetworkPolicyVersionsCommand";
|
|
71
|
+
import { ListCoreNetworkPrefixListAssociationsCommandInput, ListCoreNetworkPrefixListAssociationsCommandOutput } from "./commands/ListCoreNetworkPrefixListAssociationsCommand";
|
|
72
|
+
import { ListCoreNetworkRoutingInformationCommandInput, ListCoreNetworkRoutingInformationCommandOutput } from "./commands/ListCoreNetworkRoutingInformationCommand";
|
|
68
73
|
import { ListCoreNetworksCommandInput, ListCoreNetworksCommandOutput } from "./commands/ListCoreNetworksCommand";
|
|
69
74
|
import { ListOrganizationServiceAccessStatusCommandInput, ListOrganizationServiceAccessStatusCommandOutput } from "./commands/ListOrganizationServiceAccessStatusCommand";
|
|
70
75
|
import { ListPeeringsCommandInput, ListPeeringsCommandOutput } from "./commands/ListPeeringsCommand";
|
|
71
76
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
77
|
+
import { PutAttachmentRoutingPolicyLabelCommandInput, PutAttachmentRoutingPolicyLabelCommandOutput } from "./commands/PutAttachmentRoutingPolicyLabelCommand";
|
|
72
78
|
import { PutCoreNetworkPolicyCommandInput, PutCoreNetworkPolicyCommandOutput } from "./commands/PutCoreNetworkPolicyCommand";
|
|
73
79
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
74
80
|
import { RegisterTransitGatewayCommandInput, RegisterTransitGatewayCommandOutput } from "./commands/RegisterTransitGatewayCommand";
|
|
75
81
|
import { RejectAttachmentCommandInput, RejectAttachmentCommandOutput } from "./commands/RejectAttachmentCommand";
|
|
82
|
+
import { RemoveAttachmentRoutingPolicyLabelCommandInput, RemoveAttachmentRoutingPolicyLabelCommandOutput } from "./commands/RemoveAttachmentRoutingPolicyLabelCommand";
|
|
76
83
|
import { RestoreCoreNetworkPolicyVersionCommandInput, RestoreCoreNetworkPolicyVersionCommandOutput } from "./commands/RestoreCoreNetworkPolicyVersionCommand";
|
|
77
84
|
import { StartOrganizationServiceAccessUpdateCommandInput, StartOrganizationServiceAccessUpdateCommandOutput } from "./commands/StartOrganizationServiceAccessUpdateCommand";
|
|
78
85
|
import { StartRouteAnalysisCommandInput, StartRouteAnalysisCommandOutput } from "./commands/StartRouteAnalysisCommand";
|
|
@@ -143,6 +150,12 @@ export interface NetworkManager {
|
|
|
143
150
|
createCoreNetwork(args: CreateCoreNetworkCommandInput, options?: __HttpHandlerOptions): Promise<CreateCoreNetworkCommandOutput>;
|
|
144
151
|
createCoreNetwork(args: CreateCoreNetworkCommandInput, cb: (err: any, data?: CreateCoreNetworkCommandOutput) => void): void;
|
|
145
152
|
createCoreNetwork(args: CreateCoreNetworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCoreNetworkCommandOutput) => void): void;
|
|
153
|
+
/**
|
|
154
|
+
* @see {@link CreateCoreNetworkPrefixListAssociationCommand}
|
|
155
|
+
*/
|
|
156
|
+
createCoreNetworkPrefixListAssociation(args: CreateCoreNetworkPrefixListAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreateCoreNetworkPrefixListAssociationCommandOutput>;
|
|
157
|
+
createCoreNetworkPrefixListAssociation(args: CreateCoreNetworkPrefixListAssociationCommandInput, cb: (err: any, data?: CreateCoreNetworkPrefixListAssociationCommandOutput) => void): void;
|
|
158
|
+
createCoreNetworkPrefixListAssociation(args: CreateCoreNetworkPrefixListAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCoreNetworkPrefixListAssociationCommandOutput) => void): void;
|
|
146
159
|
/**
|
|
147
160
|
* @see {@link CreateDeviceCommand}
|
|
148
161
|
*/
|
|
@@ -228,6 +241,12 @@ export interface NetworkManager {
|
|
|
228
241
|
deleteCoreNetworkPolicyVersion(args: DeleteCoreNetworkPolicyVersionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCoreNetworkPolicyVersionCommandOutput>;
|
|
229
242
|
deleteCoreNetworkPolicyVersion(args: DeleteCoreNetworkPolicyVersionCommandInput, cb: (err: any, data?: DeleteCoreNetworkPolicyVersionCommandOutput) => void): void;
|
|
230
243
|
deleteCoreNetworkPolicyVersion(args: DeleteCoreNetworkPolicyVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCoreNetworkPolicyVersionCommandOutput) => void): void;
|
|
244
|
+
/**
|
|
245
|
+
* @see {@link DeleteCoreNetworkPrefixListAssociationCommand}
|
|
246
|
+
*/
|
|
247
|
+
deleteCoreNetworkPrefixListAssociation(args: DeleteCoreNetworkPrefixListAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCoreNetworkPrefixListAssociationCommandOutput>;
|
|
248
|
+
deleteCoreNetworkPrefixListAssociation(args: DeleteCoreNetworkPrefixListAssociationCommandInput, cb: (err: any, data?: DeleteCoreNetworkPrefixListAssociationCommandOutput) => void): void;
|
|
249
|
+
deleteCoreNetworkPrefixListAssociation(args: DeleteCoreNetworkPrefixListAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCoreNetworkPrefixListAssociationCommandOutput) => void): void;
|
|
231
250
|
/**
|
|
232
251
|
* @see {@link DeleteDeviceCommand}
|
|
233
252
|
*/
|
|
@@ -469,6 +488,12 @@ export interface NetworkManager {
|
|
|
469
488
|
getVpcAttachment(args: GetVpcAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<GetVpcAttachmentCommandOutput>;
|
|
470
489
|
getVpcAttachment(args: GetVpcAttachmentCommandInput, cb: (err: any, data?: GetVpcAttachmentCommandOutput) => void): void;
|
|
471
490
|
getVpcAttachment(args: GetVpcAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVpcAttachmentCommandOutput) => void): void;
|
|
491
|
+
/**
|
|
492
|
+
* @see {@link ListAttachmentRoutingPolicyAssociationsCommand}
|
|
493
|
+
*/
|
|
494
|
+
listAttachmentRoutingPolicyAssociations(args: ListAttachmentRoutingPolicyAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListAttachmentRoutingPolicyAssociationsCommandOutput>;
|
|
495
|
+
listAttachmentRoutingPolicyAssociations(args: ListAttachmentRoutingPolicyAssociationsCommandInput, cb: (err: any, data?: ListAttachmentRoutingPolicyAssociationsCommandOutput) => void): void;
|
|
496
|
+
listAttachmentRoutingPolicyAssociations(args: ListAttachmentRoutingPolicyAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttachmentRoutingPolicyAssociationsCommandOutput) => void): void;
|
|
472
497
|
/**
|
|
473
498
|
* @see {@link ListAttachmentsCommand}
|
|
474
499
|
*/
|
|
@@ -489,6 +514,18 @@ export interface NetworkManager {
|
|
|
489
514
|
listCoreNetworkPolicyVersions(args: ListCoreNetworkPolicyVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListCoreNetworkPolicyVersionsCommandOutput>;
|
|
490
515
|
listCoreNetworkPolicyVersions(args: ListCoreNetworkPolicyVersionsCommandInput, cb: (err: any, data?: ListCoreNetworkPolicyVersionsCommandOutput) => void): void;
|
|
491
516
|
listCoreNetworkPolicyVersions(args: ListCoreNetworkPolicyVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCoreNetworkPolicyVersionsCommandOutput) => void): void;
|
|
517
|
+
/**
|
|
518
|
+
* @see {@link ListCoreNetworkPrefixListAssociationsCommand}
|
|
519
|
+
*/
|
|
520
|
+
listCoreNetworkPrefixListAssociations(args: ListCoreNetworkPrefixListAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListCoreNetworkPrefixListAssociationsCommandOutput>;
|
|
521
|
+
listCoreNetworkPrefixListAssociations(args: ListCoreNetworkPrefixListAssociationsCommandInput, cb: (err: any, data?: ListCoreNetworkPrefixListAssociationsCommandOutput) => void): void;
|
|
522
|
+
listCoreNetworkPrefixListAssociations(args: ListCoreNetworkPrefixListAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCoreNetworkPrefixListAssociationsCommandOutput) => void): void;
|
|
523
|
+
/**
|
|
524
|
+
* @see {@link ListCoreNetworkRoutingInformationCommand}
|
|
525
|
+
*/
|
|
526
|
+
listCoreNetworkRoutingInformation(args: ListCoreNetworkRoutingInformationCommandInput, options?: __HttpHandlerOptions): Promise<ListCoreNetworkRoutingInformationCommandOutput>;
|
|
527
|
+
listCoreNetworkRoutingInformation(args: ListCoreNetworkRoutingInformationCommandInput, cb: (err: any, data?: ListCoreNetworkRoutingInformationCommandOutput) => void): void;
|
|
528
|
+
listCoreNetworkRoutingInformation(args: ListCoreNetworkRoutingInformationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCoreNetworkRoutingInformationCommandOutput) => void): void;
|
|
492
529
|
/**
|
|
493
530
|
* @see {@link ListCoreNetworksCommand}
|
|
494
531
|
*/
|
|
@@ -516,6 +553,12 @@ export interface NetworkManager {
|
|
|
516
553
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
517
554
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
518
555
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
556
|
+
/**
|
|
557
|
+
* @see {@link PutAttachmentRoutingPolicyLabelCommand}
|
|
558
|
+
*/
|
|
559
|
+
putAttachmentRoutingPolicyLabel(args: PutAttachmentRoutingPolicyLabelCommandInput, options?: __HttpHandlerOptions): Promise<PutAttachmentRoutingPolicyLabelCommandOutput>;
|
|
560
|
+
putAttachmentRoutingPolicyLabel(args: PutAttachmentRoutingPolicyLabelCommandInput, cb: (err: any, data?: PutAttachmentRoutingPolicyLabelCommandOutput) => void): void;
|
|
561
|
+
putAttachmentRoutingPolicyLabel(args: PutAttachmentRoutingPolicyLabelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAttachmentRoutingPolicyLabelCommandOutput) => void): void;
|
|
519
562
|
/**
|
|
520
563
|
* @see {@link PutCoreNetworkPolicyCommand}
|
|
521
564
|
*/
|
|
@@ -540,6 +583,12 @@ export interface NetworkManager {
|
|
|
540
583
|
rejectAttachment(args: RejectAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<RejectAttachmentCommandOutput>;
|
|
541
584
|
rejectAttachment(args: RejectAttachmentCommandInput, cb: (err: any, data?: RejectAttachmentCommandOutput) => void): void;
|
|
542
585
|
rejectAttachment(args: RejectAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectAttachmentCommandOutput) => void): void;
|
|
586
|
+
/**
|
|
587
|
+
* @see {@link RemoveAttachmentRoutingPolicyLabelCommand}
|
|
588
|
+
*/
|
|
589
|
+
removeAttachmentRoutingPolicyLabel(args: RemoveAttachmentRoutingPolicyLabelCommandInput, options?: __HttpHandlerOptions): Promise<RemoveAttachmentRoutingPolicyLabelCommandOutput>;
|
|
590
|
+
removeAttachmentRoutingPolicyLabel(args: RemoveAttachmentRoutingPolicyLabelCommandInput, cb: (err: any, data?: RemoveAttachmentRoutingPolicyLabelCommandOutput) => void): void;
|
|
591
|
+
removeAttachmentRoutingPolicyLabel(args: RemoveAttachmentRoutingPolicyLabelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveAttachmentRoutingPolicyLabelCommandOutput) => void): void;
|
|
543
592
|
/**
|
|
544
593
|
* @see {@link RestoreCoreNetworkPolicyVersionCommand}
|
|
545
594
|
*/
|
|
@@ -16,6 +16,7 @@ import { CreateConnectAttachmentCommandInput, CreateConnectAttachmentCommandOutp
|
|
|
16
16
|
import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "./commands/CreateConnectionCommand";
|
|
17
17
|
import { CreateConnectPeerCommandInput, CreateConnectPeerCommandOutput } from "./commands/CreateConnectPeerCommand";
|
|
18
18
|
import { CreateCoreNetworkCommandInput, CreateCoreNetworkCommandOutput } from "./commands/CreateCoreNetworkCommand";
|
|
19
|
+
import { CreateCoreNetworkPrefixListAssociationCommandInput, CreateCoreNetworkPrefixListAssociationCommandOutput } from "./commands/CreateCoreNetworkPrefixListAssociationCommand";
|
|
19
20
|
import { CreateDeviceCommandInput, CreateDeviceCommandOutput } from "./commands/CreateDeviceCommand";
|
|
20
21
|
import { CreateDirectConnectGatewayAttachmentCommandInput, CreateDirectConnectGatewayAttachmentCommandOutput } from "./commands/CreateDirectConnectGatewayAttachmentCommand";
|
|
21
22
|
import { CreateGlobalNetworkCommandInput, CreateGlobalNetworkCommandOutput } from "./commands/CreateGlobalNetworkCommand";
|
|
@@ -30,6 +31,7 @@ import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "./c
|
|
|
30
31
|
import { DeleteConnectPeerCommandInput, DeleteConnectPeerCommandOutput } from "./commands/DeleteConnectPeerCommand";
|
|
31
32
|
import { DeleteCoreNetworkCommandInput, DeleteCoreNetworkCommandOutput } from "./commands/DeleteCoreNetworkCommand";
|
|
32
33
|
import { DeleteCoreNetworkPolicyVersionCommandInput, DeleteCoreNetworkPolicyVersionCommandOutput } from "./commands/DeleteCoreNetworkPolicyVersionCommand";
|
|
34
|
+
import { DeleteCoreNetworkPrefixListAssociationCommandInput, DeleteCoreNetworkPrefixListAssociationCommandOutput } from "./commands/DeleteCoreNetworkPrefixListAssociationCommand";
|
|
33
35
|
import { DeleteDeviceCommandInput, DeleteDeviceCommandOutput } from "./commands/DeleteDeviceCommand";
|
|
34
36
|
import { DeleteGlobalNetworkCommandInput, DeleteGlobalNetworkCommandOutput } from "./commands/DeleteGlobalNetworkCommand";
|
|
35
37
|
import { DeleteLinkCommandInput, DeleteLinkCommandOutput } from "./commands/DeleteLinkCommand";
|
|
@@ -70,17 +72,22 @@ import { GetTransitGatewayPeeringCommandInput, GetTransitGatewayPeeringCommandOu
|
|
|
70
72
|
import { GetTransitGatewayRegistrationsCommandInput, GetTransitGatewayRegistrationsCommandOutput } from "./commands/GetTransitGatewayRegistrationsCommand";
|
|
71
73
|
import { GetTransitGatewayRouteTableAttachmentCommandInput, GetTransitGatewayRouteTableAttachmentCommandOutput } from "./commands/GetTransitGatewayRouteTableAttachmentCommand";
|
|
72
74
|
import { GetVpcAttachmentCommandInput, GetVpcAttachmentCommandOutput } from "./commands/GetVpcAttachmentCommand";
|
|
75
|
+
import { ListAttachmentRoutingPolicyAssociationsCommandInput, ListAttachmentRoutingPolicyAssociationsCommandOutput } from "./commands/ListAttachmentRoutingPolicyAssociationsCommand";
|
|
73
76
|
import { ListAttachmentsCommandInput, ListAttachmentsCommandOutput } from "./commands/ListAttachmentsCommand";
|
|
74
77
|
import { ListConnectPeersCommandInput, ListConnectPeersCommandOutput } from "./commands/ListConnectPeersCommand";
|
|
75
78
|
import { ListCoreNetworkPolicyVersionsCommandInput, ListCoreNetworkPolicyVersionsCommandOutput } from "./commands/ListCoreNetworkPolicyVersionsCommand";
|
|
79
|
+
import { ListCoreNetworkPrefixListAssociationsCommandInput, ListCoreNetworkPrefixListAssociationsCommandOutput } from "./commands/ListCoreNetworkPrefixListAssociationsCommand";
|
|
80
|
+
import { ListCoreNetworkRoutingInformationCommandInput, ListCoreNetworkRoutingInformationCommandOutput } from "./commands/ListCoreNetworkRoutingInformationCommand";
|
|
76
81
|
import { ListCoreNetworksCommandInput, ListCoreNetworksCommandOutput } from "./commands/ListCoreNetworksCommand";
|
|
77
82
|
import { ListOrganizationServiceAccessStatusCommandInput, ListOrganizationServiceAccessStatusCommandOutput } from "./commands/ListOrganizationServiceAccessStatusCommand";
|
|
78
83
|
import { ListPeeringsCommandInput, ListPeeringsCommandOutput } from "./commands/ListPeeringsCommand";
|
|
79
84
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
85
|
+
import { PutAttachmentRoutingPolicyLabelCommandInput, PutAttachmentRoutingPolicyLabelCommandOutput } from "./commands/PutAttachmentRoutingPolicyLabelCommand";
|
|
80
86
|
import { PutCoreNetworkPolicyCommandInput, PutCoreNetworkPolicyCommandOutput } from "./commands/PutCoreNetworkPolicyCommand";
|
|
81
87
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
82
88
|
import { RegisterTransitGatewayCommandInput, RegisterTransitGatewayCommandOutput } from "./commands/RegisterTransitGatewayCommand";
|
|
83
89
|
import { RejectAttachmentCommandInput, RejectAttachmentCommandOutput } from "./commands/RejectAttachmentCommand";
|
|
90
|
+
import { RemoveAttachmentRoutingPolicyLabelCommandInput, RemoveAttachmentRoutingPolicyLabelCommandOutput } from "./commands/RemoveAttachmentRoutingPolicyLabelCommand";
|
|
84
91
|
import { RestoreCoreNetworkPolicyVersionCommandInput, RestoreCoreNetworkPolicyVersionCommandOutput } from "./commands/RestoreCoreNetworkPolicyVersionCommand";
|
|
85
92
|
import { StartOrganizationServiceAccessUpdateCommandInput, StartOrganizationServiceAccessUpdateCommandOutput } from "./commands/StartOrganizationServiceAccessUpdateCommand";
|
|
86
93
|
import { StartRouteAnalysisCommandInput, StartRouteAnalysisCommandOutput } from "./commands/StartRouteAnalysisCommand";
|
|
@@ -101,11 +108,11 @@ export { __Client };
|
|
|
101
108
|
/**
|
|
102
109
|
* @public
|
|
103
110
|
*/
|
|
104
|
-
export type ServiceInputTypes = AcceptAttachmentCommandInput | AssociateConnectPeerCommandInput | AssociateCustomerGatewayCommandInput | AssociateLinkCommandInput | AssociateTransitGatewayConnectPeerCommandInput | CreateConnectAttachmentCommandInput | CreateConnectPeerCommandInput | CreateConnectionCommandInput | CreateCoreNetworkCommandInput | CreateDeviceCommandInput | CreateDirectConnectGatewayAttachmentCommandInput | CreateGlobalNetworkCommandInput | CreateLinkCommandInput | CreateSiteCommandInput | CreateSiteToSiteVpnAttachmentCommandInput | CreateTransitGatewayPeeringCommandInput | CreateTransitGatewayRouteTableAttachmentCommandInput | CreateVpcAttachmentCommandInput | DeleteAttachmentCommandInput | DeleteConnectPeerCommandInput | DeleteConnectionCommandInput | DeleteCoreNetworkCommandInput | DeleteCoreNetworkPolicyVersionCommandInput | DeleteDeviceCommandInput | DeleteGlobalNetworkCommandInput | DeleteLinkCommandInput | DeletePeeringCommandInput | DeleteResourcePolicyCommandInput | DeleteSiteCommandInput | DeregisterTransitGatewayCommandInput | DescribeGlobalNetworksCommandInput | DisassociateConnectPeerCommandInput | DisassociateCustomerGatewayCommandInput | DisassociateLinkCommandInput | DisassociateTransitGatewayConnectPeerCommandInput | ExecuteCoreNetworkChangeSetCommandInput | GetConnectAttachmentCommandInput | GetConnectPeerAssociationsCommandInput | GetConnectPeerCommandInput | GetConnectionsCommandInput | GetCoreNetworkChangeEventsCommandInput | GetCoreNetworkChangeSetCommandInput | GetCoreNetworkCommandInput | GetCoreNetworkPolicyCommandInput | GetCustomerGatewayAssociationsCommandInput | GetDevicesCommandInput | GetDirectConnectGatewayAttachmentCommandInput | GetLinkAssociationsCommandInput | GetLinksCommandInput | GetNetworkResourceCountsCommandInput | GetNetworkResourceRelationshipsCommandInput | GetNetworkResourcesCommandInput | GetNetworkRoutesCommandInput | GetNetworkTelemetryCommandInput | GetResourcePolicyCommandInput | GetRouteAnalysisCommandInput | GetSiteToSiteVpnAttachmentCommandInput | GetSitesCommandInput | GetTransitGatewayConnectPeerAssociationsCommandInput | GetTransitGatewayPeeringCommandInput | GetTransitGatewayRegistrationsCommandInput | GetTransitGatewayRouteTableAttachmentCommandInput | GetVpcAttachmentCommandInput | ListAttachmentsCommandInput | ListConnectPeersCommandInput | ListCoreNetworkPolicyVersionsCommandInput | ListCoreNetworksCommandInput | ListOrganizationServiceAccessStatusCommandInput | ListPeeringsCommandInput | ListTagsForResourceCommandInput | PutCoreNetworkPolicyCommandInput | PutResourcePolicyCommandInput | RegisterTransitGatewayCommandInput | RejectAttachmentCommandInput | RestoreCoreNetworkPolicyVersionCommandInput | StartOrganizationServiceAccessUpdateCommandInput | StartRouteAnalysisCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateConnectionCommandInput | UpdateCoreNetworkCommandInput | UpdateDeviceCommandInput | UpdateDirectConnectGatewayAttachmentCommandInput | UpdateGlobalNetworkCommandInput | UpdateLinkCommandInput | UpdateNetworkResourceMetadataCommandInput | UpdateSiteCommandInput | UpdateVpcAttachmentCommandInput;
|
|
111
|
+
export type ServiceInputTypes = AcceptAttachmentCommandInput | AssociateConnectPeerCommandInput | AssociateCustomerGatewayCommandInput | AssociateLinkCommandInput | AssociateTransitGatewayConnectPeerCommandInput | CreateConnectAttachmentCommandInput | CreateConnectPeerCommandInput | CreateConnectionCommandInput | CreateCoreNetworkCommandInput | CreateCoreNetworkPrefixListAssociationCommandInput | CreateDeviceCommandInput | CreateDirectConnectGatewayAttachmentCommandInput | CreateGlobalNetworkCommandInput | CreateLinkCommandInput | CreateSiteCommandInput | CreateSiteToSiteVpnAttachmentCommandInput | CreateTransitGatewayPeeringCommandInput | CreateTransitGatewayRouteTableAttachmentCommandInput | CreateVpcAttachmentCommandInput | DeleteAttachmentCommandInput | DeleteConnectPeerCommandInput | DeleteConnectionCommandInput | DeleteCoreNetworkCommandInput | DeleteCoreNetworkPolicyVersionCommandInput | DeleteCoreNetworkPrefixListAssociationCommandInput | DeleteDeviceCommandInput | DeleteGlobalNetworkCommandInput | DeleteLinkCommandInput | DeletePeeringCommandInput | DeleteResourcePolicyCommandInput | DeleteSiteCommandInput | DeregisterTransitGatewayCommandInput | DescribeGlobalNetworksCommandInput | DisassociateConnectPeerCommandInput | DisassociateCustomerGatewayCommandInput | DisassociateLinkCommandInput | DisassociateTransitGatewayConnectPeerCommandInput | ExecuteCoreNetworkChangeSetCommandInput | GetConnectAttachmentCommandInput | GetConnectPeerAssociationsCommandInput | GetConnectPeerCommandInput | GetConnectionsCommandInput | GetCoreNetworkChangeEventsCommandInput | GetCoreNetworkChangeSetCommandInput | GetCoreNetworkCommandInput | GetCoreNetworkPolicyCommandInput | GetCustomerGatewayAssociationsCommandInput | GetDevicesCommandInput | GetDirectConnectGatewayAttachmentCommandInput | GetLinkAssociationsCommandInput | GetLinksCommandInput | GetNetworkResourceCountsCommandInput | GetNetworkResourceRelationshipsCommandInput | GetNetworkResourcesCommandInput | GetNetworkRoutesCommandInput | GetNetworkTelemetryCommandInput | GetResourcePolicyCommandInput | GetRouteAnalysisCommandInput | GetSiteToSiteVpnAttachmentCommandInput | GetSitesCommandInput | GetTransitGatewayConnectPeerAssociationsCommandInput | GetTransitGatewayPeeringCommandInput | GetTransitGatewayRegistrationsCommandInput | GetTransitGatewayRouteTableAttachmentCommandInput | GetVpcAttachmentCommandInput | ListAttachmentRoutingPolicyAssociationsCommandInput | ListAttachmentsCommandInput | ListConnectPeersCommandInput | ListCoreNetworkPolicyVersionsCommandInput | ListCoreNetworkPrefixListAssociationsCommandInput | ListCoreNetworkRoutingInformationCommandInput | ListCoreNetworksCommandInput | ListOrganizationServiceAccessStatusCommandInput | ListPeeringsCommandInput | ListTagsForResourceCommandInput | PutAttachmentRoutingPolicyLabelCommandInput | PutCoreNetworkPolicyCommandInput | PutResourcePolicyCommandInput | RegisterTransitGatewayCommandInput | RejectAttachmentCommandInput | RemoveAttachmentRoutingPolicyLabelCommandInput | RestoreCoreNetworkPolicyVersionCommandInput | StartOrganizationServiceAccessUpdateCommandInput | StartRouteAnalysisCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateConnectionCommandInput | UpdateCoreNetworkCommandInput | UpdateDeviceCommandInput | UpdateDirectConnectGatewayAttachmentCommandInput | UpdateGlobalNetworkCommandInput | UpdateLinkCommandInput | UpdateNetworkResourceMetadataCommandInput | UpdateSiteCommandInput | UpdateVpcAttachmentCommandInput;
|
|
105
112
|
/**
|
|
106
113
|
* @public
|
|
107
114
|
*/
|
|
108
|
-
export type ServiceOutputTypes = AcceptAttachmentCommandOutput | AssociateConnectPeerCommandOutput | AssociateCustomerGatewayCommandOutput | AssociateLinkCommandOutput | AssociateTransitGatewayConnectPeerCommandOutput | CreateConnectAttachmentCommandOutput | CreateConnectPeerCommandOutput | CreateConnectionCommandOutput | CreateCoreNetworkCommandOutput | CreateDeviceCommandOutput | CreateDirectConnectGatewayAttachmentCommandOutput | CreateGlobalNetworkCommandOutput | CreateLinkCommandOutput | CreateSiteCommandOutput | CreateSiteToSiteVpnAttachmentCommandOutput | CreateTransitGatewayPeeringCommandOutput | CreateTransitGatewayRouteTableAttachmentCommandOutput | CreateVpcAttachmentCommandOutput | DeleteAttachmentCommandOutput | DeleteConnectPeerCommandOutput | DeleteConnectionCommandOutput | DeleteCoreNetworkCommandOutput | DeleteCoreNetworkPolicyVersionCommandOutput | DeleteDeviceCommandOutput | DeleteGlobalNetworkCommandOutput | DeleteLinkCommandOutput | DeletePeeringCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSiteCommandOutput | DeregisterTransitGatewayCommandOutput | DescribeGlobalNetworksCommandOutput | DisassociateConnectPeerCommandOutput | DisassociateCustomerGatewayCommandOutput | DisassociateLinkCommandOutput | DisassociateTransitGatewayConnectPeerCommandOutput | ExecuteCoreNetworkChangeSetCommandOutput | GetConnectAttachmentCommandOutput | GetConnectPeerAssociationsCommandOutput | GetConnectPeerCommandOutput | GetConnectionsCommandOutput | GetCoreNetworkChangeEventsCommandOutput | GetCoreNetworkChangeSetCommandOutput | GetCoreNetworkCommandOutput | GetCoreNetworkPolicyCommandOutput | GetCustomerGatewayAssociationsCommandOutput | GetDevicesCommandOutput | GetDirectConnectGatewayAttachmentCommandOutput | GetLinkAssociationsCommandOutput | GetLinksCommandOutput | GetNetworkResourceCountsCommandOutput | GetNetworkResourceRelationshipsCommandOutput | GetNetworkResourcesCommandOutput | GetNetworkRoutesCommandOutput | GetNetworkTelemetryCommandOutput | GetResourcePolicyCommandOutput | GetRouteAnalysisCommandOutput | GetSiteToSiteVpnAttachmentCommandOutput | GetSitesCommandOutput | GetTransitGatewayConnectPeerAssociationsCommandOutput | GetTransitGatewayPeeringCommandOutput | GetTransitGatewayRegistrationsCommandOutput | GetTransitGatewayRouteTableAttachmentCommandOutput | GetVpcAttachmentCommandOutput | ListAttachmentsCommandOutput | ListConnectPeersCommandOutput | ListCoreNetworkPolicyVersionsCommandOutput | ListCoreNetworksCommandOutput | ListOrganizationServiceAccessStatusCommandOutput | ListPeeringsCommandOutput | ListTagsForResourceCommandOutput | PutCoreNetworkPolicyCommandOutput | PutResourcePolicyCommandOutput | RegisterTransitGatewayCommandOutput | RejectAttachmentCommandOutput | RestoreCoreNetworkPolicyVersionCommandOutput | StartOrganizationServiceAccessUpdateCommandOutput | StartRouteAnalysisCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateConnectionCommandOutput | UpdateCoreNetworkCommandOutput | UpdateDeviceCommandOutput | UpdateDirectConnectGatewayAttachmentCommandOutput | UpdateGlobalNetworkCommandOutput | UpdateLinkCommandOutput | UpdateNetworkResourceMetadataCommandOutput | UpdateSiteCommandOutput | UpdateVpcAttachmentCommandOutput;
|
|
115
|
+
export type ServiceOutputTypes = AcceptAttachmentCommandOutput | AssociateConnectPeerCommandOutput | AssociateCustomerGatewayCommandOutput | AssociateLinkCommandOutput | AssociateTransitGatewayConnectPeerCommandOutput | CreateConnectAttachmentCommandOutput | CreateConnectPeerCommandOutput | CreateConnectionCommandOutput | CreateCoreNetworkCommandOutput | CreateCoreNetworkPrefixListAssociationCommandOutput | CreateDeviceCommandOutput | CreateDirectConnectGatewayAttachmentCommandOutput | CreateGlobalNetworkCommandOutput | CreateLinkCommandOutput | CreateSiteCommandOutput | CreateSiteToSiteVpnAttachmentCommandOutput | CreateTransitGatewayPeeringCommandOutput | CreateTransitGatewayRouteTableAttachmentCommandOutput | CreateVpcAttachmentCommandOutput | DeleteAttachmentCommandOutput | DeleteConnectPeerCommandOutput | DeleteConnectionCommandOutput | DeleteCoreNetworkCommandOutput | DeleteCoreNetworkPolicyVersionCommandOutput | DeleteCoreNetworkPrefixListAssociationCommandOutput | DeleteDeviceCommandOutput | DeleteGlobalNetworkCommandOutput | DeleteLinkCommandOutput | DeletePeeringCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSiteCommandOutput | DeregisterTransitGatewayCommandOutput | DescribeGlobalNetworksCommandOutput | DisassociateConnectPeerCommandOutput | DisassociateCustomerGatewayCommandOutput | DisassociateLinkCommandOutput | DisassociateTransitGatewayConnectPeerCommandOutput | ExecuteCoreNetworkChangeSetCommandOutput | GetConnectAttachmentCommandOutput | GetConnectPeerAssociationsCommandOutput | GetConnectPeerCommandOutput | GetConnectionsCommandOutput | GetCoreNetworkChangeEventsCommandOutput | GetCoreNetworkChangeSetCommandOutput | GetCoreNetworkCommandOutput | GetCoreNetworkPolicyCommandOutput | GetCustomerGatewayAssociationsCommandOutput | GetDevicesCommandOutput | GetDirectConnectGatewayAttachmentCommandOutput | GetLinkAssociationsCommandOutput | GetLinksCommandOutput | GetNetworkResourceCountsCommandOutput | GetNetworkResourceRelationshipsCommandOutput | GetNetworkResourcesCommandOutput | GetNetworkRoutesCommandOutput | GetNetworkTelemetryCommandOutput | GetResourcePolicyCommandOutput | GetRouteAnalysisCommandOutput | GetSiteToSiteVpnAttachmentCommandOutput | GetSitesCommandOutput | GetTransitGatewayConnectPeerAssociationsCommandOutput | GetTransitGatewayPeeringCommandOutput | GetTransitGatewayRegistrationsCommandOutput | GetTransitGatewayRouteTableAttachmentCommandOutput | GetVpcAttachmentCommandOutput | ListAttachmentRoutingPolicyAssociationsCommandOutput | ListAttachmentsCommandOutput | ListConnectPeersCommandOutput | ListCoreNetworkPolicyVersionsCommandOutput | ListCoreNetworkPrefixListAssociationsCommandOutput | ListCoreNetworkRoutingInformationCommandOutput | ListCoreNetworksCommandOutput | ListOrganizationServiceAccessStatusCommandOutput | ListPeeringsCommandOutput | ListTagsForResourceCommandOutput | PutAttachmentRoutingPolicyLabelCommandOutput | PutCoreNetworkPolicyCommandOutput | PutResourcePolicyCommandOutput | RegisterTransitGatewayCommandOutput | RejectAttachmentCommandOutput | RemoveAttachmentRoutingPolicyLabelCommandOutput | RestoreCoreNetworkPolicyVersionCommandOutput | StartOrganizationServiceAccessUpdateCommandOutput | StartRouteAnalysisCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateConnectionCommandOutput | UpdateCoreNetworkCommandOutput | UpdateDeviceCommandOutput | UpdateDirectConnectGatewayAttachmentCommandOutput | UpdateGlobalNetworkCommandOutput | UpdateLinkCommandOutput | UpdateNetworkResourceMetadataCommandOutput | UpdateSiteCommandOutput | UpdateVpcAttachmentCommandOutput;
|
|
109
116
|
/**
|
|
110
117
|
* @public
|
|
111
118
|
*/
|
|
@@ -89,7 +89,7 @@ declare const AcceptAttachmentCommand_base: {
|
|
|
89
89
|
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
90
90
|
* // LastModificationErrors: [ // AttachmentErrorList
|
|
91
91
|
* // { // AttachmentError
|
|
92
|
-
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF",
|
|
92
|
+
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF" || "VPN_EXISTING_ASSOCIATIONS" || "VPC_UNSUPPORTED_FEATURES",
|
|
93
93
|
* // Message: "STRING_VALUE",
|
|
94
94
|
* // ResourceArn: "STRING_VALUE",
|
|
95
95
|
* // RequestId: "STRING_VALUE",
|
|
@@ -43,6 +43,7 @@ declare const CreateConnectAttachmentCommand_base: {
|
|
|
43
43
|
* CoreNetworkId: "STRING_VALUE", // required
|
|
44
44
|
* EdgeLocation: "STRING_VALUE", // required
|
|
45
45
|
* TransportAttachmentId: "STRING_VALUE", // required
|
|
46
|
+
* RoutingPolicyLabel: "STRING_VALUE",
|
|
46
47
|
* Options: { // ConnectAttachmentOptions
|
|
47
48
|
* Protocol: "GRE" || "NO_ENCAP",
|
|
48
49
|
* },
|
|
@@ -103,7 +104,7 @@ declare const CreateConnectAttachmentCommand_base: {
|
|
|
103
104
|
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
104
105
|
* // LastModificationErrors: [ // AttachmentErrorList
|
|
105
106
|
* // { // AttachmentError
|
|
106
|
-
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF",
|
|
107
|
+
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF" || "VPN_EXISTING_ASSOCIATIONS" || "VPC_UNSUPPORTED_FEATURES",
|
|
107
108
|
* // Message: "STRING_VALUE",
|
|
108
109
|
* // ResourceArn: "STRING_VALUE",
|
|
109
110
|
* // RequestId: "STRING_VALUE",
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CreateCoreNetworkPrefixListAssociationRequest, CreateCoreNetworkPrefixListAssociationResponse } from "../models/models_0";
|
|
4
|
+
import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateCoreNetworkPrefixListAssociationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateCoreNetworkPrefixListAssociationCommandInput extends CreateCoreNetworkPrefixListAssociationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateCoreNetworkPrefixListAssociationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateCoreNetworkPrefixListAssociationCommandOutput extends CreateCoreNetworkPrefixListAssociationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateCoreNetworkPrefixListAssociationCommand_base: {
|
|
25
|
+
new (input: CreateCoreNetworkPrefixListAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateCoreNetworkPrefixListAssociationCommandInput, CreateCoreNetworkPrefixListAssociationCommandOutput, NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateCoreNetworkPrefixListAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateCoreNetworkPrefixListAssociationCommandInput, CreateCoreNetworkPrefixListAssociationCommandOutput, NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Creates an association between a core network and a prefix list for routing control.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { NetworkManagerClient, CreateCoreNetworkPrefixListAssociationCommand } from "@aws-sdk/client-networkmanager"; // ES Modules import
|
|
35
|
+
* // const { NetworkManagerClient, CreateCoreNetworkPrefixListAssociationCommand } = require("@aws-sdk/client-networkmanager"); // CommonJS import
|
|
36
|
+
* // import type { NetworkManagerClientConfig } from "@aws-sdk/client-networkmanager";
|
|
37
|
+
* const config = {}; // type is NetworkManagerClientConfig
|
|
38
|
+
* const client = new NetworkManagerClient(config);
|
|
39
|
+
* const input = { // CreateCoreNetworkPrefixListAssociationRequest
|
|
40
|
+
* CoreNetworkId: "STRING_VALUE", // required
|
|
41
|
+
* PrefixListArn: "STRING_VALUE", // required
|
|
42
|
+
* PrefixListAlias: "STRING_VALUE", // required
|
|
43
|
+
* ClientToken: "STRING_VALUE",
|
|
44
|
+
* };
|
|
45
|
+
* const command = new CreateCoreNetworkPrefixListAssociationCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // { // CreateCoreNetworkPrefixListAssociationResponse
|
|
48
|
+
* // CoreNetworkId: "STRING_VALUE",
|
|
49
|
+
* // PrefixListArn: "STRING_VALUE",
|
|
50
|
+
* // PrefixListAlias: "STRING_VALUE",
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
55
|
+
* @param CreateCoreNetworkPrefixListAssociationCommandInput - {@link CreateCoreNetworkPrefixListAssociationCommandInput}
|
|
56
|
+
* @returns {@link CreateCoreNetworkPrefixListAssociationCommandOutput}
|
|
57
|
+
* @see {@link CreateCoreNetworkPrefixListAssociationCommandInput} for command's `input` shape.
|
|
58
|
+
* @see {@link CreateCoreNetworkPrefixListAssociationCommandOutput} for command's `response` shape.
|
|
59
|
+
* @see {@link NetworkManagerClientResolvedConfig | config} for NetworkManagerClient's `config` shape.
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
62
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ConflictException} (client fault)
|
|
65
|
+
* <p>There was a conflict processing the request. Updating or deleting the resource can
|
|
66
|
+
* cause an inconsistent state.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link InternalServerException} (server fault)
|
|
69
|
+
* <p>The request has failed due to an internal error.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
72
|
+
* <p>The specified resource could not be found.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
75
|
+
* <p>A service limit was exceeded.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
78
|
+
* <p>The request was denied due to request throttling.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ValidationException} (client fault)
|
|
81
|
+
* <p>The input fails to satisfy the constraints.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link NetworkManagerServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from NetworkManager service.</p>
|
|
85
|
+
*
|
|
86
|
+
*
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
export declare class CreateCoreNetworkPrefixListAssociationCommand extends CreateCoreNetworkPrefixListAssociationCommand_base {
|
|
90
|
+
/** @internal type navigation helper, not in runtime. */
|
|
91
|
+
protected static __types: {
|
|
92
|
+
api: {
|
|
93
|
+
input: CreateCoreNetworkPrefixListAssociationRequest;
|
|
94
|
+
output: CreateCoreNetworkPrefixListAssociationResponse;
|
|
95
|
+
};
|
|
96
|
+
sdk: {
|
|
97
|
+
input: CreateCoreNetworkPrefixListAssociationCommandInput;
|
|
98
|
+
output: CreateCoreNetworkPrefixListAssociationCommandOutput;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
}
|
|
@@ -39,6 +39,7 @@ declare const CreateDirectConnectGatewayAttachmentCommand_base: {
|
|
|
39
39
|
* const input = { // CreateDirectConnectGatewayAttachmentRequest
|
|
40
40
|
* CoreNetworkId: "STRING_VALUE", // required
|
|
41
41
|
* DirectConnectGatewayArn: "STRING_VALUE", // required
|
|
42
|
+
* RoutingPolicyLabel: "STRING_VALUE",
|
|
42
43
|
* EdgeLocations: [ // ExternalRegionCodeList // required
|
|
43
44
|
* "STRING_VALUE",
|
|
44
45
|
* ],
|
|
@@ -99,7 +100,7 @@ declare const CreateDirectConnectGatewayAttachmentCommand_base: {
|
|
|
99
100
|
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
100
101
|
* // LastModificationErrors: [ // AttachmentErrorList
|
|
101
102
|
* // { // AttachmentError
|
|
102
|
-
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF",
|
|
103
|
+
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF" || "VPN_EXISTING_ASSOCIATIONS" || "VPC_UNSUPPORTED_FEATURES",
|
|
103
104
|
* // Message: "STRING_VALUE",
|
|
104
105
|
* // ResourceArn: "STRING_VALUE",
|
|
105
106
|
* // RequestId: "STRING_VALUE",
|
|
@@ -39,6 +39,7 @@ declare const CreateSiteToSiteVpnAttachmentCommand_base: {
|
|
|
39
39
|
* const input = { // CreateSiteToSiteVpnAttachmentRequest
|
|
40
40
|
* CoreNetworkId: "STRING_VALUE", // required
|
|
41
41
|
* VpnConnectionArn: "STRING_VALUE", // required
|
|
42
|
+
* RoutingPolicyLabel: "STRING_VALUE",
|
|
42
43
|
* Tags: [ // TagList
|
|
43
44
|
* { // Tag
|
|
44
45
|
* Key: "STRING_VALUE",
|
|
@@ -96,7 +97,7 @@ declare const CreateSiteToSiteVpnAttachmentCommand_base: {
|
|
|
96
97
|
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
97
98
|
* // LastModificationErrors: [ // AttachmentErrorList
|
|
98
99
|
* // { // AttachmentError
|
|
99
|
-
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF",
|
|
100
|
+
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF" || "VPN_EXISTING_ASSOCIATIONS" || "VPC_UNSUPPORTED_FEATURES",
|
|
100
101
|
* // Message: "STRING_VALUE",
|
|
101
102
|
* // ResourceArn: "STRING_VALUE",
|
|
102
103
|
* // RequestId: "STRING_VALUE",
|
|
@@ -39,6 +39,7 @@ declare const CreateTransitGatewayRouteTableAttachmentCommand_base: {
|
|
|
39
39
|
* const input = { // CreateTransitGatewayRouteTableAttachmentRequest
|
|
40
40
|
* PeeringId: "STRING_VALUE", // required
|
|
41
41
|
* TransitGatewayRouteTableArn: "STRING_VALUE", // required
|
|
42
|
+
* RoutingPolicyLabel: "STRING_VALUE",
|
|
42
43
|
* Tags: [ // TagList
|
|
43
44
|
* { // Tag
|
|
44
45
|
* Key: "STRING_VALUE",
|
|
@@ -96,7 +97,7 @@ declare const CreateTransitGatewayRouteTableAttachmentCommand_base: {
|
|
|
96
97
|
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
97
98
|
* // LastModificationErrors: [ // AttachmentErrorList
|
|
98
99
|
* // { // AttachmentError
|
|
99
|
-
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF",
|
|
100
|
+
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF" || "VPN_EXISTING_ASSOCIATIONS" || "VPC_UNSUPPORTED_FEATURES",
|
|
100
101
|
* // Message: "STRING_VALUE",
|
|
101
102
|
* // ResourceArn: "STRING_VALUE",
|
|
102
103
|
* // RequestId: "STRING_VALUE",
|
|
@@ -48,6 +48,7 @@ declare const CreateVpcAttachmentCommand_base: {
|
|
|
48
48
|
* DnsSupport: true || false,
|
|
49
49
|
* SecurityGroupReferencingSupport: true || false,
|
|
50
50
|
* },
|
|
51
|
+
* RoutingPolicyLabel: "STRING_VALUE",
|
|
51
52
|
* Tags: [ // TagList
|
|
52
53
|
* { // Tag
|
|
53
54
|
* Key: "STRING_VALUE",
|
|
@@ -105,7 +106,7 @@ declare const CreateVpcAttachmentCommand_base: {
|
|
|
105
106
|
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
106
107
|
* // LastModificationErrors: [ // AttachmentErrorList
|
|
107
108
|
* // { // AttachmentError
|
|
108
|
-
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF",
|
|
109
|
+
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF" || "VPN_EXISTING_ASSOCIATIONS" || "VPC_UNSUPPORTED_FEATURES",
|
|
109
110
|
* // Message: "STRING_VALUE",
|
|
110
111
|
* // ResourceArn: "STRING_VALUE",
|
|
111
112
|
* // RequestId: "STRING_VALUE",
|
|
@@ -87,7 +87,7 @@ declare const DeleteAttachmentCommand_base: {
|
|
|
87
87
|
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
88
88
|
* // LastModificationErrors: [ // AttachmentErrorList
|
|
89
89
|
* // { // AttachmentError
|
|
90
|
-
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF",
|
|
90
|
+
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF" || "VPN_EXISTING_ASSOCIATIONS" || "VPC_UNSUPPORTED_FEATURES",
|
|
91
91
|
* // Message: "STRING_VALUE",
|
|
92
92
|
* // ResourceArn: "STRING_VALUE",
|
|
93
93
|
* // RequestId: "STRING_VALUE",
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteCoreNetworkPrefixListAssociationRequest, DeleteCoreNetworkPrefixListAssociationResponse } from "../models/models_0";
|
|
4
|
+
import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteCoreNetworkPrefixListAssociationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteCoreNetworkPrefixListAssociationCommandInput extends DeleteCoreNetworkPrefixListAssociationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteCoreNetworkPrefixListAssociationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteCoreNetworkPrefixListAssociationCommandOutput extends DeleteCoreNetworkPrefixListAssociationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteCoreNetworkPrefixListAssociationCommand_base: {
|
|
25
|
+
new (input: DeleteCoreNetworkPrefixListAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCoreNetworkPrefixListAssociationCommandInput, DeleteCoreNetworkPrefixListAssociationCommandOutput, NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DeleteCoreNetworkPrefixListAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCoreNetworkPrefixListAssociationCommandInput, DeleteCoreNetworkPrefixListAssociationCommandOutput, NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes an association between a core network and a prefix list.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { NetworkManagerClient, DeleteCoreNetworkPrefixListAssociationCommand } from "@aws-sdk/client-networkmanager"; // ES Modules import
|
|
35
|
+
* // const { NetworkManagerClient, DeleteCoreNetworkPrefixListAssociationCommand } = require("@aws-sdk/client-networkmanager"); // CommonJS import
|
|
36
|
+
* // import type { NetworkManagerClientConfig } from "@aws-sdk/client-networkmanager";
|
|
37
|
+
* const config = {}; // type is NetworkManagerClientConfig
|
|
38
|
+
* const client = new NetworkManagerClient(config);
|
|
39
|
+
* const input = { // DeleteCoreNetworkPrefixListAssociationRequest
|
|
40
|
+
* CoreNetworkId: "STRING_VALUE", // required
|
|
41
|
+
* PrefixListArn: "STRING_VALUE", // required
|
|
42
|
+
* };
|
|
43
|
+
* const command = new DeleteCoreNetworkPrefixListAssociationCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // DeleteCoreNetworkPrefixListAssociationResponse
|
|
46
|
+
* // CoreNetworkId: "STRING_VALUE",
|
|
47
|
+
* // PrefixListArn: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
50
|
+
* ```
|
|
51
|
+
*
|
|
52
|
+
* @param DeleteCoreNetworkPrefixListAssociationCommandInput - {@link DeleteCoreNetworkPrefixListAssociationCommandInput}
|
|
53
|
+
* @returns {@link DeleteCoreNetworkPrefixListAssociationCommandOutput}
|
|
54
|
+
* @see {@link DeleteCoreNetworkPrefixListAssociationCommandInput} for command's `input` shape.
|
|
55
|
+
* @see {@link DeleteCoreNetworkPrefixListAssociationCommandOutput} for command's `response` shape.
|
|
56
|
+
* @see {@link NetworkManagerClientResolvedConfig | config} for NetworkManagerClient's `config` shape.
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
59
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ConflictException} (client fault)
|
|
62
|
+
* <p>There was a conflict processing the request. Updating or deleting the resource can
|
|
63
|
+
* cause an inconsistent state.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link InternalServerException} (server fault)
|
|
66
|
+
* <p>The request has failed due to an internal error.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
69
|
+
* <p>The specified resource could not be found.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
72
|
+
* <p>A service limit was exceeded.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
75
|
+
* <p>The request was denied due to request throttling.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ValidationException} (client fault)
|
|
78
|
+
* <p>The input fails to satisfy the constraints.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link NetworkManagerServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from NetworkManager service.</p>
|
|
82
|
+
*
|
|
83
|
+
*
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export declare class DeleteCoreNetworkPrefixListAssociationCommand extends DeleteCoreNetworkPrefixListAssociationCommand_base {
|
|
87
|
+
/** @internal type navigation helper, not in runtime. */
|
|
88
|
+
protected static __types: {
|
|
89
|
+
api: {
|
|
90
|
+
input: DeleteCoreNetworkPrefixListAssociationRequest;
|
|
91
|
+
output: DeleteCoreNetworkPrefixListAssociationResponse;
|
|
92
|
+
};
|
|
93
|
+
sdk: {
|
|
94
|
+
input: DeleteCoreNetworkPrefixListAssociationCommandInput;
|
|
95
|
+
output: DeleteCoreNetworkPrefixListAssociationCommandOutput;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
}
|
|
@@ -88,7 +88,7 @@ declare const GetConnectAttachmentCommand_base: {
|
|
|
88
88
|
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
89
89
|
* // LastModificationErrors: [ // AttachmentErrorList
|
|
90
90
|
* // { // AttachmentError
|
|
91
|
-
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF",
|
|
91
|
+
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF" || "VPN_EXISTING_ASSOCIATIONS" || "VPC_UNSUPPORTED_FEATURES",
|
|
92
92
|
* // Message: "STRING_VALUE",
|
|
93
93
|
* // ResourceArn: "STRING_VALUE",
|
|
94
94
|
* // RequestId: "STRING_VALUE",
|
|
@@ -47,17 +47,29 @@ declare const GetCoreNetworkChangeEventsCommand_base: {
|
|
|
47
47
|
* // { // GetCoreNetworkChangeEventsResponse
|
|
48
48
|
* // CoreNetworkChangeEvents: [ // CoreNetworkChangeEventList
|
|
49
49
|
* // { // CoreNetworkChangeEvent
|
|
50
|
-
* // Type: "CORE_NETWORK_SEGMENT" || "NETWORK_FUNCTION_GROUP" || "CORE_NETWORK_EDGE" || "ATTACHMENT_MAPPING" || "ATTACHMENT_ROUTE_PROPAGATION" || "ATTACHMENT_ROUTE_STATIC" || "CORE_NETWORK_CONFIGURATION" || "SEGMENTS_CONFIGURATION" || "SEGMENT_ACTIONS_CONFIGURATION" || "ATTACHMENT_POLICIES_CONFIGURATION",
|
|
50
|
+
* // Type: "CORE_NETWORK_SEGMENT" || "NETWORK_FUNCTION_GROUP" || "CORE_NETWORK_EDGE" || "ATTACHMENT_MAPPING" || "ATTACHMENT_ROUTE_PROPAGATION" || "ATTACHMENT_ROUTE_STATIC" || "ROUTING_POLICY" || "ROUTING_POLICY_SEGMENT_ASSOCIATION" || "ROUTING_POLICY_EDGE_ASSOCIATION" || "ROUTING_POLICY_ATTACHMENT_ASSOCIATION" || "CORE_NETWORK_CONFIGURATION" || "SEGMENTS_CONFIGURATION" || "SEGMENT_ACTIONS_CONFIGURATION" || "ATTACHMENT_POLICIES_CONFIGURATION",
|
|
51
51
|
* // Action: "ADD" || "MODIFY" || "REMOVE",
|
|
52
52
|
* // IdentifierPath: "STRING_VALUE",
|
|
53
53
|
* // EventTime: new Date("TIMESTAMP"),
|
|
54
54
|
* // Status: "NOT_STARTED" || "IN_PROGRESS" || "COMPLETE" || "FAILED",
|
|
55
55
|
* // Values: { // CoreNetworkChangeEventValues
|
|
56
56
|
* // EdgeLocation: "STRING_VALUE",
|
|
57
|
+
* // PeerEdgeLocation: "STRING_VALUE",
|
|
58
|
+
* // RoutingPolicyDirection: "inbound" || "outbound",
|
|
57
59
|
* // SegmentName: "STRING_VALUE",
|
|
58
60
|
* // NetworkFunctionGroupName: "STRING_VALUE",
|
|
59
61
|
* // AttachmentId: "STRING_VALUE",
|
|
60
62
|
* // Cidr: "STRING_VALUE",
|
|
63
|
+
* // RoutingPolicyAssociationDetails: [ // RoutingPolicyAssociationDetailsList
|
|
64
|
+
* // { // RoutingPolicyAssociationDetail
|
|
65
|
+
* // RoutingPolicyNames: [ // ConstrainedStringList
|
|
66
|
+
* // "STRING_VALUE",
|
|
67
|
+
* // ],
|
|
68
|
+
* // SharedSegments: [
|
|
69
|
+
* // "STRING_VALUE",
|
|
70
|
+
* // ],
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
61
73
|
* // },
|
|
62
74
|
* // },
|
|
63
75
|
* // ],
|