@aws-sdk/client-networkmanager 3.936.0 → 3.937.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +56 -0
- package/dist-cjs/index.js +527 -31
- package/dist-es/NetworkManager.js +14 -0
- package/dist-es/commands/CreateCoreNetworkPrefixListAssociationCommand.js +16 -0
- package/dist-es/commands/DeleteCoreNetworkPrefixListAssociationCommand.js +16 -0
- package/dist-es/commands/ListAttachmentRoutingPolicyAssociationsCommand.js +16 -0
- package/dist-es/commands/ListCoreNetworkPrefixListAssociationsCommand.js +16 -0
- package/dist-es/commands/ListCoreNetworkRoutingInformationCommand.js +16 -0
- package/dist-es/commands/PutAttachmentRoutingPolicyLabelCommand.js +16 -0
- package/dist-es/commands/RemoveAttachmentRoutingPolicyLabelCommand.js +16 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/enums.js +10 -0
- package/dist-es/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListCoreNetworkPrefixListAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListCoreNetworkRoutingInformationPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +409 -31
- package/dist-types/NetworkManager.d.ts +49 -0
- package/dist-types/NetworkManagerClient.d.ts +9 -2
- package/dist-types/commands/AcceptAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateConnectAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateCoreNetworkPrefixListAssociationCommand.d.ts +101 -0
- package/dist-types/commands/CreateDirectConnectGatewayAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateSiteToSiteVpnAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateTransitGatewayRouteTableAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateVpcAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/DeleteAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCoreNetworkPrefixListAssociationCommand.d.ts +98 -0
- package/dist-types/commands/GetConnectAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetCoreNetworkChangeEventsCommand.d.ts +13 -1
- package/dist-types/commands/GetCoreNetworkChangeSetCommand.d.ts +30 -4
- package/dist-types/commands/GetDirectConnectGatewayAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetSiteToSiteVpnAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetTransitGatewayRouteTableAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetVpcAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/ListAttachmentRoutingPolicyAssociationsCommand.d.ts +104 -0
- package/dist-types/commands/ListAttachmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListCoreNetworkPrefixListAssociationsCommand.d.ts +99 -0
- package/dist-types/commands/ListCoreNetworkRoutingInformationCommand.d.ts +131 -0
- package/dist-types/commands/PutAttachmentRoutingPolicyLabelCommand.d.ts +101 -0
- package/dist-types/commands/RejectAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/RemoveAttachmentRoutingPolicyLabelCommand.d.ts +99 -0
- package/dist-types/commands/UpdateDirectConnectGatewayAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVpcAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/enums.d.ts +18 -0
- package/dist-types/models/models_0.d.ts +506 -1
- package/dist-types/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCoreNetworkPrefixListAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCoreNetworkRoutingInformationPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +30 -0
- package/dist-types/ts3.4/NetworkManager.d.ts +155 -0
- package/dist-types/ts3.4/NetworkManagerClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateCoreNetworkPrefixListAssociationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteCoreNetworkPrefixListAssociationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAttachmentRoutingPolicyAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCoreNetworkPrefixListAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCoreNetworkRoutingInformationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutAttachmentRoutingPolicyLabelCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RemoveAttachmentRoutingPolicyLabelCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/enums.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +126 -0
- package/dist-types/ts3.4/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCoreNetworkPrefixListAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCoreNetworkRoutingInformationPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +30 -0
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ import { CreateConnectAttachmentCommand, } from "./commands/CreateConnectAttachm
|
|
|
8
8
|
import { CreateConnectionCommand, } from "./commands/CreateConnectionCommand";
|
|
9
9
|
import { CreateConnectPeerCommand, } from "./commands/CreateConnectPeerCommand";
|
|
10
10
|
import { CreateCoreNetworkCommand, } from "./commands/CreateCoreNetworkCommand";
|
|
11
|
+
import { CreateCoreNetworkPrefixListAssociationCommand, } from "./commands/CreateCoreNetworkPrefixListAssociationCommand";
|
|
11
12
|
import { CreateDeviceCommand, } from "./commands/CreateDeviceCommand";
|
|
12
13
|
import { CreateDirectConnectGatewayAttachmentCommand, } from "./commands/CreateDirectConnectGatewayAttachmentCommand";
|
|
13
14
|
import { CreateGlobalNetworkCommand, } from "./commands/CreateGlobalNetworkCommand";
|
|
@@ -22,6 +23,7 @@ import { DeleteConnectionCommand, } from "./commands/DeleteConnectionCommand";
|
|
|
22
23
|
import { DeleteConnectPeerCommand, } from "./commands/DeleteConnectPeerCommand";
|
|
23
24
|
import { DeleteCoreNetworkCommand, } from "./commands/DeleteCoreNetworkCommand";
|
|
24
25
|
import { DeleteCoreNetworkPolicyVersionCommand, } from "./commands/DeleteCoreNetworkPolicyVersionCommand";
|
|
26
|
+
import { DeleteCoreNetworkPrefixListAssociationCommand, } from "./commands/DeleteCoreNetworkPrefixListAssociationCommand";
|
|
25
27
|
import { DeleteDeviceCommand, } from "./commands/DeleteDeviceCommand";
|
|
26
28
|
import { DeleteGlobalNetworkCommand, } from "./commands/DeleteGlobalNetworkCommand";
|
|
27
29
|
import { DeleteLinkCommand } from "./commands/DeleteLinkCommand";
|
|
@@ -62,17 +64,22 @@ import { GetTransitGatewayPeeringCommand, } from "./commands/GetTransitGatewayPe
|
|
|
62
64
|
import { GetTransitGatewayRegistrationsCommand, } from "./commands/GetTransitGatewayRegistrationsCommand";
|
|
63
65
|
import { GetTransitGatewayRouteTableAttachmentCommand, } from "./commands/GetTransitGatewayRouteTableAttachmentCommand";
|
|
64
66
|
import { GetVpcAttachmentCommand, } from "./commands/GetVpcAttachmentCommand";
|
|
67
|
+
import { ListAttachmentRoutingPolicyAssociationsCommand, } from "./commands/ListAttachmentRoutingPolicyAssociationsCommand";
|
|
65
68
|
import { ListAttachmentsCommand, } from "./commands/ListAttachmentsCommand";
|
|
66
69
|
import { ListConnectPeersCommand, } from "./commands/ListConnectPeersCommand";
|
|
67
70
|
import { ListCoreNetworkPolicyVersionsCommand, } from "./commands/ListCoreNetworkPolicyVersionsCommand";
|
|
71
|
+
import { ListCoreNetworkPrefixListAssociationsCommand, } from "./commands/ListCoreNetworkPrefixListAssociationsCommand";
|
|
72
|
+
import { ListCoreNetworkRoutingInformationCommand, } from "./commands/ListCoreNetworkRoutingInformationCommand";
|
|
68
73
|
import { ListCoreNetworksCommand, } from "./commands/ListCoreNetworksCommand";
|
|
69
74
|
import { ListOrganizationServiceAccessStatusCommand, } from "./commands/ListOrganizationServiceAccessStatusCommand";
|
|
70
75
|
import { ListPeeringsCommand, } from "./commands/ListPeeringsCommand";
|
|
71
76
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
77
|
+
import { PutAttachmentRoutingPolicyLabelCommand, } from "./commands/PutAttachmentRoutingPolicyLabelCommand";
|
|
72
78
|
import { PutCoreNetworkPolicyCommand, } from "./commands/PutCoreNetworkPolicyCommand";
|
|
73
79
|
import { PutResourcePolicyCommand, } from "./commands/PutResourcePolicyCommand";
|
|
74
80
|
import { RegisterTransitGatewayCommand, } from "./commands/RegisterTransitGatewayCommand";
|
|
75
81
|
import { RejectAttachmentCommand, } from "./commands/RejectAttachmentCommand";
|
|
82
|
+
import { RemoveAttachmentRoutingPolicyLabelCommand, } from "./commands/RemoveAttachmentRoutingPolicyLabelCommand";
|
|
76
83
|
import { RestoreCoreNetworkPolicyVersionCommand, } from "./commands/RestoreCoreNetworkPolicyVersionCommand";
|
|
77
84
|
import { StartOrganizationServiceAccessUpdateCommand, } from "./commands/StartOrganizationServiceAccessUpdateCommand";
|
|
78
85
|
import { StartRouteAnalysisCommand, } from "./commands/StartRouteAnalysisCommand";
|
|
@@ -98,6 +105,7 @@ const commands = {
|
|
|
98
105
|
CreateConnectionCommand,
|
|
99
106
|
CreateConnectPeerCommand,
|
|
100
107
|
CreateCoreNetworkCommand,
|
|
108
|
+
CreateCoreNetworkPrefixListAssociationCommand,
|
|
101
109
|
CreateDeviceCommand,
|
|
102
110
|
CreateDirectConnectGatewayAttachmentCommand,
|
|
103
111
|
CreateGlobalNetworkCommand,
|
|
@@ -112,6 +120,7 @@ const commands = {
|
|
|
112
120
|
DeleteConnectPeerCommand,
|
|
113
121
|
DeleteCoreNetworkCommand,
|
|
114
122
|
DeleteCoreNetworkPolicyVersionCommand,
|
|
123
|
+
DeleteCoreNetworkPrefixListAssociationCommand,
|
|
115
124
|
DeleteDeviceCommand,
|
|
116
125
|
DeleteGlobalNetworkCommand,
|
|
117
126
|
DeleteLinkCommand,
|
|
@@ -152,17 +161,22 @@ const commands = {
|
|
|
152
161
|
GetTransitGatewayRegistrationsCommand,
|
|
153
162
|
GetTransitGatewayRouteTableAttachmentCommand,
|
|
154
163
|
GetVpcAttachmentCommand,
|
|
164
|
+
ListAttachmentRoutingPolicyAssociationsCommand,
|
|
155
165
|
ListAttachmentsCommand,
|
|
156
166
|
ListConnectPeersCommand,
|
|
157
167
|
ListCoreNetworkPolicyVersionsCommand,
|
|
168
|
+
ListCoreNetworkPrefixListAssociationsCommand,
|
|
169
|
+
ListCoreNetworkRoutingInformationCommand,
|
|
158
170
|
ListCoreNetworksCommand,
|
|
159
171
|
ListOrganizationServiceAccessStatusCommand,
|
|
160
172
|
ListPeeringsCommand,
|
|
161
173
|
ListTagsForResourceCommand,
|
|
174
|
+
PutAttachmentRoutingPolicyLabelCommand,
|
|
162
175
|
PutCoreNetworkPolicyCommand,
|
|
163
176
|
PutResourcePolicyCommand,
|
|
164
177
|
RegisterTransitGatewayCommand,
|
|
165
178
|
RejectAttachmentCommand,
|
|
179
|
+
RemoveAttachmentRoutingPolicyLabelCommand,
|
|
166
180
|
RestoreCoreNetworkPolicyVersionCommand,
|
|
167
181
|
StartOrganizationServiceAccessUpdateCommand,
|
|
168
182
|
StartRouteAnalysisCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateCoreNetworkPrefixListAssociation } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateCoreNetworkPrefixListAssociationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkManager", "CreateCoreNetworkPrefixListAssociation", {})
|
|
13
|
+
.n("NetworkManagerClient", "CreateCoreNetworkPrefixListAssociationCommand")
|
|
14
|
+
.sc(CreateCoreNetworkPrefixListAssociation)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteCoreNetworkPrefixListAssociation } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteCoreNetworkPrefixListAssociationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkManager", "DeleteCoreNetworkPrefixListAssociation", {})
|
|
13
|
+
.n("NetworkManagerClient", "DeleteCoreNetworkPrefixListAssociationCommand")
|
|
14
|
+
.sc(DeleteCoreNetworkPrefixListAssociation)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListAttachmentRoutingPolicyAssociations } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListAttachmentRoutingPolicyAssociationsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkManager", "ListAttachmentRoutingPolicyAssociations", {})
|
|
13
|
+
.n("NetworkManagerClient", "ListAttachmentRoutingPolicyAssociationsCommand")
|
|
14
|
+
.sc(ListAttachmentRoutingPolicyAssociations)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListCoreNetworkPrefixListAssociations } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListCoreNetworkPrefixListAssociationsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkManager", "ListCoreNetworkPrefixListAssociations", {})
|
|
13
|
+
.n("NetworkManagerClient", "ListCoreNetworkPrefixListAssociationsCommand")
|
|
14
|
+
.sc(ListCoreNetworkPrefixListAssociations)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListCoreNetworkRoutingInformation } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListCoreNetworkRoutingInformationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkManager", "ListCoreNetworkRoutingInformation", {})
|
|
13
|
+
.n("NetworkManagerClient", "ListCoreNetworkRoutingInformationCommand")
|
|
14
|
+
.sc(ListCoreNetworkRoutingInformation)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { PutAttachmentRoutingPolicyLabel } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class PutAttachmentRoutingPolicyLabelCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkManager", "PutAttachmentRoutingPolicyLabel", {})
|
|
13
|
+
.n("NetworkManagerClient", "PutAttachmentRoutingPolicyLabelCommand")
|
|
14
|
+
.sc(PutAttachmentRoutingPolicyLabel)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { RemoveAttachmentRoutingPolicyLabel } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class RemoveAttachmentRoutingPolicyLabelCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkManager", "RemoveAttachmentRoutingPolicyLabel", {})
|
|
13
|
+
.n("NetworkManagerClient", "RemoveAttachmentRoutingPolicyLabelCommand")
|
|
14
|
+
.sc(RemoveAttachmentRoutingPolicyLabel)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -7,6 +7,7 @@ export * from "./CreateConnectAttachmentCommand";
|
|
|
7
7
|
export * from "./CreateConnectPeerCommand";
|
|
8
8
|
export * from "./CreateConnectionCommand";
|
|
9
9
|
export * from "./CreateCoreNetworkCommand";
|
|
10
|
+
export * from "./CreateCoreNetworkPrefixListAssociationCommand";
|
|
10
11
|
export * from "./CreateDeviceCommand";
|
|
11
12
|
export * from "./CreateDirectConnectGatewayAttachmentCommand";
|
|
12
13
|
export * from "./CreateGlobalNetworkCommand";
|
|
@@ -21,6 +22,7 @@ export * from "./DeleteConnectPeerCommand";
|
|
|
21
22
|
export * from "./DeleteConnectionCommand";
|
|
22
23
|
export * from "./DeleteCoreNetworkCommand";
|
|
23
24
|
export * from "./DeleteCoreNetworkPolicyVersionCommand";
|
|
25
|
+
export * from "./DeleteCoreNetworkPrefixListAssociationCommand";
|
|
24
26
|
export * from "./DeleteDeviceCommand";
|
|
25
27
|
export * from "./DeleteGlobalNetworkCommand";
|
|
26
28
|
export * from "./DeleteLinkCommand";
|
|
@@ -61,17 +63,22 @@ export * from "./GetTransitGatewayPeeringCommand";
|
|
|
61
63
|
export * from "./GetTransitGatewayRegistrationsCommand";
|
|
62
64
|
export * from "./GetTransitGatewayRouteTableAttachmentCommand";
|
|
63
65
|
export * from "./GetVpcAttachmentCommand";
|
|
66
|
+
export * from "./ListAttachmentRoutingPolicyAssociationsCommand";
|
|
64
67
|
export * from "./ListAttachmentsCommand";
|
|
65
68
|
export * from "./ListConnectPeersCommand";
|
|
66
69
|
export * from "./ListCoreNetworkPolicyVersionsCommand";
|
|
70
|
+
export * from "./ListCoreNetworkPrefixListAssociationsCommand";
|
|
71
|
+
export * from "./ListCoreNetworkRoutingInformationCommand";
|
|
67
72
|
export * from "./ListCoreNetworksCommand";
|
|
68
73
|
export * from "./ListOrganizationServiceAccessStatusCommand";
|
|
69
74
|
export * from "./ListPeeringsCommand";
|
|
70
75
|
export * from "./ListTagsForResourceCommand";
|
|
76
|
+
export * from "./PutAttachmentRoutingPolicyLabelCommand";
|
|
71
77
|
export * from "./PutCoreNetworkPolicyCommand";
|
|
72
78
|
export * from "./PutResourcePolicyCommand";
|
|
73
79
|
export * from "./RegisterTransitGatewayCommand";
|
|
74
80
|
export * from "./RejectAttachmentCommand";
|
|
81
|
+
export * from "./RemoveAttachmentRoutingPolicyLabelCommand";
|
|
75
82
|
export * from "./RestoreCoreNetworkPolicyVersionCommand";
|
|
76
83
|
export * from "./StartOrganizationServiceAccessUpdateCommand";
|
|
77
84
|
export * from "./StartRouteAnalysisCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -16,7 +16,9 @@ export const AttachmentErrorCode = {
|
|
|
16
16
|
SUBNET_NO_IPV6_CIDRS: "SUBNET_NO_IPV6_CIDRS",
|
|
17
17
|
SUBNET_UNSUPPORTED_AVAILABILITY_ZONE: "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE",
|
|
18
18
|
VPC_NOT_FOUND: "VPC_NOT_FOUND",
|
|
19
|
+
VPC_UNSUPPORTED_FEATURES: "VPC_UNSUPPORTED_FEATURES",
|
|
19
20
|
VPN_CONNECTION_NOT_FOUND: "VPN_CONNECTION_NOT_FOUND",
|
|
21
|
+
VPN_EXISTING_ASSOCIATIONS: "VPN_EXISTING_ASSOCIATIONS",
|
|
20
22
|
};
|
|
21
23
|
export const AttachmentState = {
|
|
22
24
|
AVAILABLE: "AVAILABLE",
|
|
@@ -87,6 +89,10 @@ export const ChangeType = {
|
|
|
87
89
|
CORE_NETWORK_EDGE: "CORE_NETWORK_EDGE",
|
|
88
90
|
CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT",
|
|
89
91
|
NETWORK_FUNCTION_GROUP: "NETWORK_FUNCTION_GROUP",
|
|
92
|
+
ROUTING_POLICY: "ROUTING_POLICY",
|
|
93
|
+
ROUTING_POLICY_ATTACHMENT_ASSOCIATION: "ROUTING_POLICY_ATTACHMENT_ASSOCIATION",
|
|
94
|
+
ROUTING_POLICY_EDGE_ASSOCIATION: "ROUTING_POLICY_EDGE_ASSOCIATION",
|
|
95
|
+
ROUTING_POLICY_SEGMENT_ASSOCIATION: "ROUTING_POLICY_SEGMENT_ASSOCIATION",
|
|
90
96
|
SEGMENTS_CONFIGURATION: "SEGMENTS_CONFIGURATION",
|
|
91
97
|
SEGMENT_ACTIONS_CONFIGURATION: "SEGMENT_ACTIONS_CONFIGURATION",
|
|
92
98
|
};
|
|
@@ -128,6 +134,10 @@ export const CoreNetworkState = {
|
|
|
128
134
|
DELETING: "DELETING",
|
|
129
135
|
UPDATING: "UPDATING",
|
|
130
136
|
};
|
|
137
|
+
export const RoutingPolicyDirection = {
|
|
138
|
+
INBOUND: "inbound",
|
|
139
|
+
OUTBOUND: "outbound",
|
|
140
|
+
};
|
|
131
141
|
export const SegmentActionServiceInsertion = {
|
|
132
142
|
SEND_TO: "send-to",
|
|
133
143
|
SEND_VIA: "send-via",
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListAttachmentRoutingPolicyAssociationsCommand, } from "../commands/ListAttachmentRoutingPolicyAssociationsCommand";
|
|
3
|
+
import { NetworkManagerClient } from "../NetworkManagerClient";
|
|
4
|
+
export const paginateListAttachmentRoutingPolicyAssociations = createPaginator(NetworkManagerClient, ListAttachmentRoutingPolicyAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListCoreNetworkPrefixListAssociationsCommand, } from "../commands/ListCoreNetworkPrefixListAssociationsCommand";
|
|
3
|
+
import { NetworkManagerClient } from "../NetworkManagerClient";
|
|
4
|
+
export const paginateListCoreNetworkPrefixListAssociations = createPaginator(NetworkManagerClient, ListCoreNetworkPrefixListAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListCoreNetworkRoutingInformationCommand, } from "../commands/ListCoreNetworkRoutingInformationCommand";
|
|
3
|
+
import { NetworkManagerClient } from "../NetworkManagerClient";
|
|
4
|
+
export const paginateListCoreNetworkRoutingInformation = createPaginator(NetworkManagerClient, ListCoreNetworkRoutingInformationCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -15,8 +15,11 @@ export * from "./GetNetworkTelemetryPaginator";
|
|
|
15
15
|
export * from "./GetSitesPaginator";
|
|
16
16
|
export * from "./GetTransitGatewayConnectPeerAssociationsPaginator";
|
|
17
17
|
export * from "./GetTransitGatewayRegistrationsPaginator";
|
|
18
|
+
export * from "./ListAttachmentRoutingPolicyAssociationsPaginator";
|
|
18
19
|
export * from "./ListAttachmentsPaginator";
|
|
19
20
|
export * from "./ListConnectPeersPaginator";
|
|
20
21
|
export * from "./ListCoreNetworkPolicyVersionsPaginator";
|
|
22
|
+
export * from "./ListCoreNetworkPrefixListAssociationsPaginator";
|
|
23
|
+
export * from "./ListCoreNetworkRoutingInformationPaginator";
|
|
21
24
|
export * from "./ListCoreNetworksPaginator";
|
|
22
25
|
export * from "./ListPeeringsPaginator";
|